@charset "UTF-8";
/**
 * styles.scss
 * ---
 * Main `sass` file. Import here `sass` files
 */
/**
 * modules/variables
 * ---
 */
/**
 * Typography
 */
/**
 * Colors
 */
/**
 * Grid
 */
/**
 * modules/mixins
 * ---
 */
/**
 * modules/fonts
 * ---
 * Declare fonts here
 */
html,
body {
  font-family: "Montserrat", sans-serif !important; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Jost", sans-serif !important;
  font-weight: 700;
  color: #303638;
  line-height: 1.2; }
  .white h1,
  .white h2,
  .white h3,
  .white h4,
  .white h5,
  .white h6 {
    color: #fff; }

h1 {
  font-size: 8.5rem;
  padding: 0 0 3.2rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1px; }
  @media (max-width: 48em) {
    h1 {
      font-size: 5.2rem; } }

h2 {
  font-size: 7.6rem;
  line-height: 120%;
  padding: 0 0 3.2rem; }
  @media (max-width: 48em) {
    h2 {
      font-size: 4.8rem; } }

h3 {
  font-size: 4.8rem;
  line-height: 5.7rem;
  padding: 0 0 3.2rem;
  letter-spacing: -0.05rem; }
  @media (max-width: 48em) {
    h3 {
      font-size: 3rem;
      line-height: 110%; } }

h4 {
  font-size: 3.2rem;
  padding: 0 0 1.6rem; }
  @media (max-width: 64em) {
    h4 {
      font-size: 2.6rem; } }
  @media (max-width: 48em) {
    h4 {
      font-size: 2.4rem; } }

h5 {
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 0.05rem; }

h6 {
  font-weight: 300;
  font-size: 3.2rem;
  line-height: 2.2;
  color: #3c5662; }

p,
li {
  font-size: 1.6rem;
  line-height: 2.8rem;
  padding: 0 0 1.6rem;
  margin: 0; }
  p:last-child,
  li:last-child {
    padding: 0; }

a {
  color: #1d6fa2;
  text-decoration: none; }

/**
 * partials/animations
 * ---
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.fadeIn {
  animation-name: fade-in; }

/**
 * partials/awards
 * ---
 */
/* Main awards container */
.award-archive {
  column-count: 5;
  column-gap: 1.6em;
  background-color: #e5e5e5;
  padding: 6.4rem 3.2rem; }
  @media (max-width: 90em) {
    .award-archive {
      column-count: 3; } }
  @media (max-width: 64em) {
    .award-archive {
      column-count: 3; } }
  @media (max-width: 48em) {
    .award-archive {
      column-count: 2;
      column-gap: 0.8em; } }
  @media (max-width: 600px) {
    .award-archive {
      column-count: 1;
      padding: 3.2rem 1.6rem; } }

/* Award card styling */
.award-card {
  background-color: #fff;
  display: inline-block;
  margin-bottom: 1.6rem;
  width: 100%;
  box-shadow: -15px 19px 50px rgba(0, 0, 0, 0.15);
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .award-card:hover {
    transform: translateY(-5px);
    box-shadow: -15px 24px 60px rgba(0, 0, 0, 0.2); }

/* Image container */
.award-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden; }
  .award-image-container.no-image {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center; }
    .award-image-container.no-image::after {
      content: "No Image";
      color: #999;
      font-size: 1.4rem; }

.award-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  /* Añade esto para imágenes con sizes=auto */ }
  .award-image[sizes="auto"], .award-image[sizes^="auto,"] {
    -webkit-contain-intrinsic-size: 400px 400px;
    contain-intrinsic-size: 400px 400px; }
  .award-card:hover .award-image {
    transform: scale(1.05); }

/* Award info section - MODIFICADO */
.award-info {
  display: flex;
  min-height: 100%;
  position: relative;
  /* Añadido para mejor control */ }

/* Vertical category label - MEJORADO */
.award-category {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  padding: 1rem 0.5rem;
  /* Ajustado para mejor espaciado */
  line-height: 1.2;
  /* Mejor interlineado */
  font-size: 1.4rem;
  /* Tamaño más adecuado */
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  /* Altura flexible */
  white-space: nowrap;
  color: black;
  background-clip: padding-box;
  /* Category colors - MANTENIDO */ }
  .award-category.Excellence {
    background-color: #f39519; }
  .award-category.Honorary {
    background-color: #979797; }
  .award-category.Future, .award-category.NuclearFuture {
    background-color: #20b4b6; }
  .award-category.Leadership {
    background-color: #cd3d3d; }
  @media (max-width: 48em) {
    .award-category {
      padding: 0.8rem 0.4rem;
      /* Más ajustado en móviles */
      font-size: 1.2rem; } }

/* Award details - MEJORADO */
.award-details {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Centrado vertical */ }
  .award-details .award-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.7rem;
    line-height: 1.3;
    color: #3c5662; }
  .award-details .award-meta {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 0.8rem;
    flex-wrap: wrap; }
    .award-details .award-meta .separator {
      margin: 0 0.3rem; }
  .award-details .award-expertise {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #444; }
  @media (max-width: 48em) {
    .award-details {
      padding: 1rem; }
      .award-details .award-title {
        font-size: 1.5rem; }
      .award-details .award-meta, .award-details .award-expertise {
        font-size: 1.2rem; } }

/* Nuevos estilos añadidos para mejor alineación */
.award-content-wrapper {
  display: flex;
  min-height: 100%;
  width: 100%; }

/* No results styling - MANTENIDO */
.no-results {
  text-align: center;
  padding: 3.2rem;
  grid-column: 1 / -1; }
  .no-results p {
    font-size: 1.6rem;
    color: #666; }

/* Additional awards grid styles - MANTENIDO */
.awardsCat {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 6.4rem;
  overflow: hidden; }
  @media (max-width: 48em) {
    .awardsCat {
      grid-template-columns: 1fr; } }

.awardCatBlock {
  margin-bottom: 1.6rem;
  overflow: hidden; }
  .awardCatBlock img {
    aspect-ratio: 2 / 2.6;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: -1; }
    @media (max-width: 48em) {
      .awardCatBlock img {
        aspect-ratio: 2 / 2; } }

/* Color classes - MANTENIDO */
.gray .itemCatBlockInfo {
  background-color: #c4c4c4; }

.gray {
  background-color: rgba(196, 196, 196, 0.3); }

.orange {
  background-color: rgba(243, 149, 25, 0.3); }

.orange .itemCatBlockInfo {
  background-color: #f39519; }

.green {
  background-color: rgba(32, 180, 182, 0.3); }

.green .itemCatBlockInfo {
  background-color: #20b4b6; }

.red {
  background-color: rgba(205, 61, 61, 0.3); }

.red .itemCatBlockInfo {
  background-color: #cd3d3d; }

/* Nuevos estilos para mejor ajuste */
.award-category-label {
  display: inline-block;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap; }

/* Asegurar que la barra se ajuste al contenido */
.award-info-container {
  display: flex;
  width: 100%;
  align-items: stretch; }

/**
 * partials/reset
 * ---
 * Reset file
 * NOTE: also `normalize.css` is used
 */
*,
*:after,
*:before {
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Montserrat", sans-serif;
  font-size: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #353535;
  background-color: #fff; }

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto; }

a {
  color: #353535;
  text-decoration: none; }
  a:focus, a:hover {
    text-decoration: underline; }

input[type="text"],
input[type="search"] {
  font-size: inherit;
  line-height: inherit; }

::selection {
  background-color: #00baba;
  color: #fff;
  text-shadow: none; }

/**
 * partials/wordpress
 * ---
 * Wordpess core classes
 */
body {
  margin: 0; }

section {
  position: relative; }

.noBox {
  padding: 0 3.2rem;
  width: 100%;
  overflow: hidden; }
  @media (max-width: 36em) {
    .noBox {
      padding: 0 1.6rem; } }

.box {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3.2rem;
  width: 100%;
  overflow: hidden; }
  @media (max-width: 36em) {
    .box {
      padding: 0 1.6rem; } }

.mediumBox {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 3.2rem;
  overflow: hidden; }
  @media (max-width: 36em) {
    .mediumBox {
      padding: 0 1.6rem; } }

.smallBox {
  max-width: 906px;
  margin: 0 auto;
  padding: 0 3.2rem;
  overflow: hidden; }
  @media (max-width: 36em) {
    .smallBox {
      padding: 0 1.6rem; } }

.flex {
  display: flex; }

.topBottomSpace {
  padding-bottom: 12.8rem;
  padding-top: 12.8rem; }
  @media (max-width: 36em) {
    .topBottomSpace {
      padding-bottom: 6.4rem;
      padding-top: 6.4rem; } }

.topBottomMediumSpace {
  padding-bottom: 6.4rem;
  padding-top: 6.4rem; }
  @media (max-width: 36em) {
    .topBottomMediumSpace {
      padding-bottom: 6.4rem;
      padding-top: 6.4rem; } }

.bottomSpace {
  padding-bottom: 12.8rem; }

.lightGrayBg {
  background-color: #e5e5e5; }

.grayBg {
  background-color: #ebebeb; }

.mainBg {
  background-color: #1d6fa2; }

.white {
  color: #fff; }

.btn-primary {
  background-color: #f39519;
  padding: 1.6rem 3.2rem;
  color: #000000;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  border: 2px solid transparent;
  display: inline-block;
  transition: background-color 0.5s ease; }
  @media (max-width: 36em) {
    .btn-primary {
      padding: 0.8rem 1.6rem; } }

.btn-primary:hover {
  background-color: #f4b45c;
  text-decoration: none;
  transition: background-color 0.5s ease; }

.btn-primary:focus {
  background-color: rgba(243, 149, 25, 0.8);
  border: 2px solid #353535;
  text-decoration: none; }

.btn-primary:disabled {
  background-color: rgba(243, 149, 25, 0.6);
  color: #6f6f6f;
  text-decoration: none; }

.btn-primaryGreen {
  background-color: #20b4b6;
  padding: 1.6rem 3.2rem;
  color: #000000;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  border: 2px solid transparent;
  transition: background-color 0.5s ease; }
  @media (max-width: 36em) {
    .btn-primaryGreen {
      padding: 0.8rem 1.6rem; } }

.btn-primaryGreen:hover {
  background-color: rgba(32, 180, 182, 0.8);
  text-decoration: none;
  transition: background-color 0.5s ease; }

.btn-primaryGreen:focus {
  background-color: rgba(32, 180, 182, 0.8);
  border: 2px solid #353535;
  text-decoration: none; }

.btn-primaryGreen:disabled {
  background-color: rgba(32, 180, 182, 0.6);
  color: #6f6f6f;
  text-decoration: none; }

.animateOnScroll, .animateOnScroll .btn-primary, .animateOnScroll .btn-primaryGreen, .animateOnScroll .upPrev {
  opacity: 0;
  transition: 1s ease; }

.animateOnScrollActive, .animateOnScrollActive .btn-primary, .animateOnScrollActive .btn-primaryGreen, .animateOnScrollActive .upPrev {
  opacity: 1;
  transition: 1s ease; }

.btn-secondary {
  border-bottom: 5px solid #f39519;
  color: #353535;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  transition: 0.5s ease; }

.btn-secondary:hover {
  border-bottom: 5px solid rgba(243, 149, 25, 0.8);
  color: rgba(60, 86, 98, 0.9);
  text-decoration: none;
  transition: 0.5s ease; }

.btn-secondary:focus {
  border-bottom: 5px solid rgba(243, 149, 25, 0.8);
  text-decoration: none; }

.btn-secondary:disabled {
  border-bottom: 5px solid rgba(243, 149, 25, 0.6);
  color: #6f6f6f;
  text-decoration: none; }

.btn-download {
  color: #353535;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  background-color: #e5e5e5;
  display: inline-block;
  padding: 1.6rem 3.2rem;
  transition: background-color 0.5s ease; }

.btn-download::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  margin-right: 1.6rem; }

.icon-download::before {
  font: var(--fa-font-solid);
  content: "\f019"; }

.btn-download:hover {
  background-color: #ccc; }

.btn-download:focus {
  border: 1px solid #353535; }

.singleButton.orange:hover {
  background: rgba(243, 149, 25, 0.6);
  transition: background-color 0.5s ease;
  text-decoration: none; }

.singleButton.green:hover {
  background: rgba(32, 180, 182, 0.6);
  transition: background-color 0.5s ease;
  text-decoration: none; }

.singleButton.gray:hover {
  background: rgba(151, 151, 151, 0.6);
  transition: background-color 0.5s ease;
  text-decoration: none; }

/**
 * Alignment
 */
.alignnone {
  margin: 5px 15px 15px 0; }

.aligncenter {
  display: block;
  margin: 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 15px 15px; }

.alignleft {
  float: left;
  margin: 5px 15px 15px 0; }

.textCenter {
  text-align: center; }

/**
 * Gallery & images
 */
.wp-caption {
  background: #fff;
  border: thin solid #f0f0f0;
  max-width: 95%;
  padding: 5px 5px;
  text-align: center; }
  .wp-caption img {
    width: auto;
    max-width: 98.5%;
    height: auto;
    border: 0 none;
    padding: 0;
    margin: 0; }

.wp-caption .wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0 5px 5px;
  font-size: "Montserrat", sans-serif;
  line-height: 1.6; }

.showcase {
  color: #fff;
  height: 100vh;
  position: relative; }

.showcase .showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%; }

.showcase-inner .title {
  max-width: 1440px;
  padding: 0 3.2rem;
  width: 100%; }

.showcase h1 {
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 2;
  line-height: 1;
  text-align: left; }

@media (max-width: 48em) {
  .showcase h1 {
    font-size: 4rem;
    line-height: 1.2; } }
.showcase h1 span {
  font-size: 8rem;
  font-weight: 700; }
  @media (max-width: 48em) {
    .showcase h1 span {
      font-size: 6rem;
      line-height: 1.2; } }

section.noBg {
  padding: 6rem 0; }

.bgCover::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(289.43deg, rgba(151, 151, 151, 0.8) 9.03%, rgba(255, 255, 255, 0.8) 63.14%); }

.bgCover {
  background-image: url(img/showcase.jpg);
  background-size: cover;
  background-position: center bottom;
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.alignMiddle {
  display: flex;
  align-items: center;
  height: 100%; }

.colorBlock {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 3.2rem auto; }
  @media (max-width: 36em) {
    .colorBlock {
      grid-template-rows: 1.6rem auto; } }

@media (max-width: 48em) {
  .homeIntro .colorBlock {
    grid-template-rows: 0 auto; } }

.orangeBg {
  grid-column: 1/3; }

.orangeBg span {
  background: #f39519;
  display: block;
  height: 20rem;
  max-width: 30%; }
  @media (max-width: 36em) {
    .orangeBg span {
      display: none; } }

.greenBg {
  grid-column: 1/3; }

.greenBg span {
  background: #20b4b6;
  display: block;
  height: 20rem;
  max-width: 30%; }
  @media (max-width: 36em) {
    .greenBg span {
      height: 12rem; } }

.homeIntro .box {
  display: grid;
  gap: 3.2rem;
  grid-template-columns: 25.8rem 5.4rem 3.2rem minmax(10ch, 97ch) 1fr;
  grid-template-rows: 3.2rem max-content auto auto 0; }
  @media (max-width: 64em) {
    .homeIntro .box {
      gap: 1.6rem; } }
  @media (max-width: 36em) {
    .homeIntro .box {
      grid-template-columns: 1fr;
      gap: 0; } }

.homeIntroImg {
  grid-column: 1/4;
  grid-row: 1/5; }
  @media (max-width: 48em) {
    .homeIntroImg {
      grid-column: 1/2;
      grid-row: 3/4; } }

.homeIntroImg .imgContainer {
  background-image: url(img/homeIntroIm.jpg);
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom; }

.homeIntroTitle {
  grid-column: 2/5;
  grid-row: 2/3; }
  @media (max-width: 64em) {
    .homeIntroTitle {
      grid-column: 1/5;
      padding-left: 3.2rem; } }
  @media (max-width: 36em) {
    .homeIntroTitle {
      padding-left: 0; } }

.homeIntroTitle h3 {
  padding: 0;
  position: relative;
  z-index: 1; }

.homeIntroContent {
  grid-column: 4/5;
  grid-row: 3/4;
  padding: 3.2rem 0; }
  @media (max-width: 48em) {
    .homeIntroContent {
      grid-column: 2/5; } }

.homeIntroButtons {
  grid-column: 3/5;
  grid-row: 4/6;
  display: flex;
  gap: 0.8rem; }
  @media (max-width: 64em) {
    .homeIntroButtons {
      grid-column: 1/5;
      padding-left: 3.2rem;
      gap: 1.6rem; } }
  @media (max-width: 48em) {
    .homeIntroButtons {
      padding-left: 0;
      flex-wrap: wrap; } }

.homeIntroButtons a {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 50px auto;
  align-content: center;
  padding: 1.6rem 3.2rem;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #000000; }
  @media (max-width: 48em) {
    .homeIntroButtons a {
      grid-template-columns: 30px auto;
      gap: 0.8rem;
      padding: 0.8rem 1.6rem;
      gap: 0.8rem;
      font-size: 1.4rem;
      line-height: 1.8rem; } }

.homeIntroButtons a.orange {
  background: #f39519;
  transition: background-color 0.5s ease; }

.homeIntroButtons a.green {
  background: #20b4b6;
  transition: background-color 0.5s ease; }

.homeIntroButtons a.gray {
  background: #979797;
  transition: background-color 0.5s ease; }

.mainInfo p, .mainInfo {
  font-size: 2rem; }
  @media (max-width: 36em) {
    .mainInfo p, .mainInfo {
      font-size: 1.6rem; } }

.mainInfo a.btn-primary {
  margin-top: 1.6rem; }

.ourOrg {
  margin-bottom: -6rem; }

@media (max-width: 36em) {
  .homeNews .box,
  .ourOrg .box {
    padding-right: 0;
    padding-left: 0; } }

.sectionTitleBox {
  max-width: 1440px;
  margin: 0 auto; }

h2.sectionTitle {
  margin-bottom: -6.6rem;
  position: relative;
  z-index: 1; }
  @media (max-width: 36em) {
    h2.sectionTitle {
      margin-bottom: -4.5rem;
      line-height: 100%;
      padding-left: 1.6rem;
      padding-right: 1.6rem; } }

.featuredNews {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto 12.8rem auto;
  gap: 3.2rem;
  max-width: 1175px;
  margin: 0 auto; }
  @media (max-width: 36em) {
    .featuredNews {
      grid-template-rows: auto 3.2rem auto; } }

.featuredNews_img {
  position: relative;
  width: 100%;
  overflow: hidden;
  grid-column: 1/3;
  grid-row: 1/3; }

.featuredNews_img img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover; }
  @media (max-width: 36em) {
    .featuredNews_img img {
      aspect-ratio: 3/2; } }

.fNews_desc {
  grid-row: 2/4;
  grid-column: 2/3;
  background-color: #fff;
  z-index: 1;
  padding: 4rem 4.8rem;
  box-shadow: -15px 19px 50px rgba(0, 0, 0, 0.15);
  margin-right: -3.2rem; }
  @media (max-width: 36em) {
    .fNews_desc {
      grid-column: 1/3;
      margin: 0 1.6rem;
      padding: 2.4rem 1.6rem; } }

.fNews_desc .newsDate {
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: .05rem;
  font-family: "Jost", sans-serif;
  font-weight: 700; }

.fNews_desc h3 {
  padding-bottom: 1.6rem; }

.fNews_links {
  grid-row: 3/4;
  grid-column: 1/2; }
  @media (max-width: 36em) {
    .fNews_links {
      grid-column: 1/3;
      grid-row: 4/5; } }

@media (max-width: 36em) {
  .fNews_links {
    padding-left: 1.6rem;
    padding-right: 1.6rem; } }

.fNews_links a {
  display: block;
  max-width: max-content; }
  @media (max-width: 36em) {
    .fNews_links a {
      display: inline-block; } }

.fNews_links a.btn-primaryGreen {
  margin-top: 3.2rem; }
  @media (max-width: 36em) {
    .fNews_links a.btn-primaryGreen {
      margin-left: 1.6rem;
      margin-top: 0; } }

.newsList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.2rem;
  margin-top: 6.4rem; }
  @media (max-width: 64em) {
    .newsList {
      grid-template-columns: 1fr 1fr;
      padding-right: 1.6rem;
      padding-left: 1.6rem; } }
  @media (max-width: 36em) {
    .newsList {
      grid-template-columns: 1fr;
      padding-right: 1.6rem;
      padding-left: 1.6rem; } }

.latest-posts-card {
  background-color: #ebebeb;
  padding: 1.6rem;
  display: grid;
  grid-template-rows: max-content max-content 1fr max-content;
  gap: 1.6rem; }

.latest-posts-category {
  padding-bottom: 0; }

.latest-posts-category a {
  list-style: none;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline;
  color: #1d6fa2;
  letter-spacing: 0.05rem; }

.latest-posts-date {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #1d6fa2; }

.latest-posts-card a {
  max-width: max-content; }

.blockRight {
  display: grid;
  align-items: center;
  grid-template-columns: 6fr 4.5fr;
  max-width: 1175px;
  margin: 0 auto;
  margin-top: 6.4rem; }
  @media (max-width: 64em) {
    .blockRight {
      grid-template-columns: 1fr 1.5fr; } }
  @media (max-width: 48em) {
    .blockRight {
      grid-template-columns: 1fr; } }

.blockLeft {
  display: grid;
  align-items: center;
  grid-template-columns: 4.5fr 6fr;
  max-width: 1175px;
  margin: 0 auto;
  margin-top: 6.4rem; }
  @media (max-width: 64em) {
    .blockLeft {
      grid-template-columns: 1.5fr 1fr; } }
  @media (max-width: 48em) {
    .blockLeft {
      grid-template-columns: 1fr; } }

.blockRight img,
.blockLeft img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover; }
  @media (max-width: 64em) {
    .blockRight img,
    .blockLeft img {
      aspect-ratio: 2/3; } }
  @media (max-width: 48em) {
    .blockRight img,
    .blockLeft img {
      aspect-ratio: 3/2; } }

.blockDesc {
  background-color: #ffffff;
  padding: 4rem 3.2rem;
  box-shadow: -15px 19px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 3.2rem; }

.blockRight .blockDesc {
  margin-left: -3.2rem; }
  @media (max-width: 48em) {
    .blockRight .blockDesc {
      margin: -3.2rem 1.6rem 0; } }

.blockLeft .blockDesc {
  margin-right: -3.2rem;
  z-index: 2;
  position: relative;
  text-align: right; }
  @media (max-width: 48em) {
    .blockLeft .blockDesc {
      margin: -3.2rem 1.6rem 0;
      text-align: left; } }

.blockLeft .blockLinks {
  text-align: right;
  padding-bottom: 5px; }
  @media (max-width: 48em) {
    .blockLeft .blockLinks {
      text-align: left;
      margin-top: 1.6rem; } }

.blockLeft .blockLinks a {
  margin-right: 3.2rem; }
  @media (max-width: 48em) {
    .blockLeft .blockLinks a {
      margin-right: 0rem;
      margin-left: 3.2rem; } }

.blockRight .blockLinks a {
  margin-left: 3.2rem; }

@media (max-width: 48em) {
  .blockRight .blockLinks {
    margin-top: 1.6rem; }

  .blockLeft div:nth-child(1) {
    order: 2; } }
.ourMembers {
  background-image: url(img/ourMembers.jpg);
  background-size: cover; }

.ourMembersContainer {
  background: linear-gradient(71.44deg, #b5e2e3 12.04%, rgba(181, 226, 227, 0.8635) 63.36%, rgba(181, 226, 227, 0.8) 81.44%); }

.ourMembers .mySwiper {
  width: 100%;
  height: 100%; }

.swiper-wrapper {
  margin: 0 auto; }

.ourMembers .swiper-button-next {
  right: 24rem; }
  @media (max-width: 90em) {
    .ourMembers .swiper-button-next {
      right: 3.2rem; } }
  @media (max-width: 36em) {
    .ourMembers .swiper-button-next {
      right: 0.8rem; } }

.ourMembers .swiper-button-prev {
  left: 24rem; }
  @media (max-width: 90em) {
    .ourMembers .swiper-button-prev {
      left: 3.2rem; } }
  @media (max-width: 36em) {
    .ourMembers .swiper-button-prev {
      left: 0.8rem; } }

.testimonial {
  text-align: center; }

.testimonial h4 {
  margin-bottom: 3.2rem;
  max-width: 913px;
  margin: 0 auto; }

.testimonial p.author-name {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0;
  margin-top: 1.6rem; }

.testimonial .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto; }

.sponsorsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.2rem;
  justify-items: center;
  align-items: center;
  max-width: 906px;
  margin: 0 auto; }

.sponsorsGrid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  justify-items: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto; }

.sponsorsGrid img, .sponsorsGrid2 img {
  filter: grayscale(100%);
  transition: 0.5s;
  opacity: 0.6; }

.sponsorsGrid img:hover, .sponsorsGrid2 img:hover {
  filter: grayscale(0%);
  transition: 0.5s;
  opacity: 1; }

.chapterImg {
  min-width: 100%; }

.counters {
  background-color: #20b4b6;
  display: flex; }

.memberCounter,
.chapterCounter {
  padding: clamp(1.6rem, 4vw, 3.2rem);
  width: 50%; }

.memberCounter {
  background-color: #19c0c0; }

.counters .counterNumb,
.numberSign {
  font-size: clamp(2rem, 5vw, 5.2rem);
  font-family: "Jost", sans-serif;
  font-weight: 600; }

.counters .title {
  font-size: clamp(1.4rem, 4vw, 3.6rem);
  padding-left: 0.8rem; }

@media (max-width: 48em) {
  .chapterCounter .counterNumb, .memberCounter span.title {
    display: block; } }

.chaptersList {
  columns: 5;
  column-gap: 1.6rem; }
  @media (max-width: 64em) {
    .chaptersList {
      columns: 3; } }
  @media (max-width: 36em) {
    .chaptersList {
      columns: 2; } }

.chaptersList h4 {
  padding-top: 3.2rem; }

.chaptersList > div {
  break-inside: avoid-column; }

.chapterFlag {
  display: flex;
  align-items: center;
  max-height: 60vh;
  overflow: hidden;
  justify-items: center; }
  .chapterFlag p {
    text-align: left; }
  @media (max-width: 36em) {
    .chapterFlag {
      display: block; } }

@media (min-width: 64em) {
  .chapterContentBlock {
    display: flex; } }

.chapterContent {
  margin-right: 3.2rem;
  margin-bottom: 4rem; }

.chapterContactInfo {
  background-color: #e5e5e5;
  padding: 3.2rem;
  min-width: 437px;
  height: max-content; }
  @media (max-width: 36em) {
    .chapterContactInfo {
      min-width: 100%; } }

.chapterSocial {
  padding: 1.6rem 0 3.2rem; }

.chapterSocial i {
  margin-right: 1.6rem; }

.chapterSocial i:hover {
  color: #979797;
  transition: 0.5 ease; }

.singleChapterLeader {
  padding-bottom: 3.2rem; }

.relatedNewsHeader {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.2rem; }

.relatedNewsHeader h3 {
  padding-bottom: 0; }

.newsSwiper .latest-posts-card {
  min-height: 400px; }

.chapterLeaderImg {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  background-position: bottom; }
  @media (max-width: 48em) {
    .chapterLeaderImg {
      aspect-ratio: 3 / 2; } }

.confIntro .mediumBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 3.2rem;
  align-items: center; }
  @media (max-width: 48em) {
    .confIntro .mediumBox {
      grid-template-columns: 1fr; } }

.confIntroImg {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  background-position: bottom;
  filter: grayscale(100%); }
  @media (max-width: 48em) {
    .confIntroImg {
      aspect-ratio: 3 / 2; } }

.iconText {
  display: grid;
  grid-template-columns: 50px auto;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 3.2rem; }

.iconText.last {
  margin-bottom: 0.8rem; }
  @media (max-width: 48em) {
    .iconText.last {
      margin-bottom: 3.2rem; } }

.iconText p {
  grid-column: 1/3;
  grid-row: 2/3; }

.iconText h5 {
  line-height: 2rem;
  padding-bottom: 0.8rem; }

.iconText .subTitle {
  color: #20b4b6;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  line-height: 2rem; }

.upcomingTitle {
  background-color: #fff;
  color: #1d6fa2;
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.05rem;
  padding: 1.6rem 3.2rem;
  max-width: max-content;
  font-weight: 700; }
  @media (max-width: 36em) {
    .upcomingTitle {
      padding: 0.8rem 1.6rem;
      line-height: 2.5rem; } }

.upcomingBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 6.4rem;
  gap: 3.2rem;
  grid-template-rows: max-content; }
  @media (max-width: 48em) {
    .upcomingBlock {
      grid-template-columns: 1fr; } }

.upcomingBlockText {
  text-align: right; }
  @media (max-width: 48em) {
    .upcomingBlockText {
      text-align: left; } }

.upcomingBlock h3 {
  padding-bottom: 0; }

.upcomingBlock h3 a {
  color: #fff; }

.upcomingBlockText .confPara {
  font-size: 2rem;
  line-height: 130%; }

@media (max-width: 64em) {
  .upcomingBlockImg img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover; } }
@media (max-width: 48em) {
  .upcomingBlockImg img {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover; } }

.previousTitle {
  background-color: #1d6fa2;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.05rem;
  padding: 1.6rem 3.2rem;
  max-width: max-content;
  font-weight: 700; }
  @media (max-width: 36em) {
    .previousTitle {
      padding: 0.8rem 1.6rem;
      line-height: 2.5rem; } }

.previousBlock {
  columns: 3;
  column-gap: 1.6rem;
  margin-top: 6.4rem; }
  @media (max-width: 64em) {
    .previousBlock {
      columns: 2; } }
  @media (max-width: 36em) {
    .previousBlock {
      columns: 1; } }

.previousBlock div {
  break-inside: avoid-column;
  margin-bottom: 3.2rem; }

.previousBlock h5 span {
  color: #20b4b6; }

.confInfo h3 {
  padding-bottom: 0.8rem; }

.confInfo .confDate {
  font-weight: 700; }

.confFiles a {
  margin-right: 1.6rem; }

.confSwiper .swiper-buttons,
.newsSwiper .swiper-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1.6rem;
  height: 8rem; }

.confSwiper .swiper-slide {
  background: #fff;
  border: none;
  outline: none; }

.confSwiper .swiper-button-prev,
.confSwiper .swiper-button-next,
.newsSwiper .swiper-button-prev,
.newsSwiper .swiper-button-next {
  position: relative;
  left: 0;
  color: #353535; }

.confSwiperContainer {
  padding: 3.2rem 0; }

.confSwiper {
  min-height: 0;
  min-width: 0; }

img.confGallery {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%; }

.swiper-lazy-preloader {
  border: 4px solid #979797 !important; }

.singlePost .details {
  font-weight: 600;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 3.2rem; }

.singlePost .details > div {
  font-weight: 600;
  display: flex;
  font-size: 1.5rem; }

.singlePost .details a {
  text-decoration: underline; }

.singlePost .details a:hover {
  color: #979797; }

.singlePost .excerpt p {
  font-size: 2rem;
  padding-bottom: 1.6rem; }

.singleContent {
  margin-top: 1.6rem; }

.singlePostCat {
  padding-bottom: 0;
  font-size: "Jost", sans-serif; }

.groupsSection {
  background: #e5e5e5; }

.groupsContainer {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3.2rem;
  max-width: 1440px;
  padding: 0 3.2rem;
  margin: 0 auto; }
  @media (max-width: 48em) {
    .groupsContainer {
      grid-template-columns: 1fr; } }
  @media (max-width: 36em) {
    .groupsContainer {
      padding: 1.6rem; } }

.groupList .sticky {
  position: sticky;
  top: 10px; }

@media (max-width: 48em) {
  .groupList {
    display: none; } }

.groupCard {
  padding: 4rem 6.4rem;
  background: #fff;
  box-shadow: -15px 19px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 4rem; }
  @media (max-width: 48em) {
    .groupCard {
      padding: 3.2rem; } }

.groupCard .groupImg {
  max-width: 50px;
  margin-right: 0.8rem; }

.groupDesc {
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 600; }

.groupCard p {
  padding-top: 0.8rem; }

.singleGloupTitle {
  margin-bottom: 1.6rem; }

/**
 * partials/utils
 * ---
 * Utils classes
 */
/**
 * partials/wrapper
 * ---
 */
.wrapper {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative; }

/**
 * partials/header
 * ---
 */
header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  /* padding: 0.8rem 0;
    overflow: hidden;
    transform: translateZ(0);
    font-size: 1.6rem;
    height: 100vh; */ }

.home header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  /* padding: 0.8rem 0;
    overflow: hidden;
    transform: translateZ(0);
    font-size: 1.6rem;
    height: 100vh; */ }

.logo-img {
  max-width: 110px; }

.header ul li {
  list-style: none;
  padding: 0; }

nav {
  overflow: hidden; }

@media (max-width: 48em) {
  .nav_secondary,
  .nav_primary ul {
    display: none !important; } }

.nav_secondary ul,
.nav_primary ul {
  display: flex;
  justify-content: flex-end;
  align-items: center; }

.nav_secondary ul li a {
  font-size: 1.4rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  padding: 0.8rem 1.6rem; }

.nav_primary ul li a {
  font-size: 1.6rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  padding: 0.8rem 1.6rem; }

.nav_secondary ul li:last-child a {
  padding-right: 0; }

.nav_primary .btn-primary {
  padding: 0.8rem 3.2rem; }

.nav_primary .btn-primary a:hover {
  text-decoration: none; }

.nav-container {
  display: flex;
  justify-content: space-between;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem; }

.nav_primary {
  display: flex;
  min-height: 50px; }

.overlay {
  clip-path: circle(0%);
  position: fixed;
  background: #1d6fa2;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 2em; }
  .overlay .exit {
    position: absolute;
    right: 2em;
    top: 2em; }

.menu {
  display: none;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100vh;
  margin: 10%; }
  @media (max-width: 36em) {
    .menu {
      grid-template-columns: 1fr;
      height: auto;
      margin-top: 0; } }

.menu-container {
  margin-top: 2em;
  display: none;
  transform: translateY(-30px); }
  .menu-container ul {
    list-style-type: none;
    padding: 0; }
  .menu-container li a {
    text-decoration: none; }

p.category {
  font-size: 2rem;
  color: #f39519; }

.exit img {
  width: 23px;
  height: 23px; }

.fullscreen_nav_primary ul li a {
  font-size: clamp(2rem, 10vw, 4rem);
  line-height: 5rem;
  color: #fff;
  font-family: "Jost", sans-serif; }

.fullscreen_nav_primary ul li.btn-primary {
  padding: 0 0.8rem; }

.fullscreen_nav_primary ul li a:hover,
.fullscreen_nav_secondary ul li a:hover {
  text-decoration: underline; }

.fullscreen_nav_secondary ul li a {
  font-size: clamp(1.5rem, 8vw, 3rem);
  line-height: 3.6rem;
  color: #fff;
  font-family: "Jost", sans-serif; }

.lunchMenu {
  display: none; }
  @media (max-width: 48em) {
    .lunchMenu {
      display: inline-block; } }

header nav button {
  position: relative;
  vertical-align: middle;
  padding: 0;
  display: inline-block;
  width: 3.2rem;
  text-indent: 2.5rem;
  font-size: 1.5em;
  color: transparent;
  cursor: pointer;
  border: none;
  background-color: transparent;
  margin-left: 1.6rem; }

header .lunchMenu .hamb:before {
  content: "";
  position: absolute;
  display: block;
  top: -12px;
  right: 0;
  height: 2px;
  width: 100%;
  background: #353535;
  overflow: hidden;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

header .lunchMenu .hamb {
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  width: 100%;
  height: 2px;
  background: #353535; }

header .lunchMenu .hamb:after {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  right: 0;
  height: 2px;
  width: 100%;
  background: #353535;
  overflow: hidden;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.headerL2 {
  padding: 12.8rem 0 3.2rem;
  background-color: #1d6fa2; }

.headerL2 h1 {
  padding-bottom: 0;
  color: #fff; }

.headerL2 p {
  padding-bottom: 0;
  color: #fff; }

.headerL2 .breadcrumb {
  color: #fff;
  font-size: 1.6rem; }

.headerL2 .breadcrumb a {
  color: #fff; }

.headerL3 {
  padding: 6.4rem 0 3.2rem; }

.headerL3 h3 {
  padding-bottom: 0;
  color: #1d6fa2; }

.headerL3 p {
  padding-bottom: 0; }

.headerL3 .breadcrumb {
  font-size: 1.6rem;
  margin-bottom: 0.8rem; }

/**
 * partials/members section
 * ---
 */
.nav_members ul {
  display: flex;
  padding-left: 0;
  flex-wrap: wrap; }

.nav_members ul li {
  list-style: none;
  margin-right: 0.8rem;
  padding-bottom: 0.8rem; }

.nav_members ul li a, .wppb-user-forms .wppb-search-button, .profileChapter a {
  background-color: #fff;
  padding: .8rem 1.6rem;
  color: #000000;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  border: 2px solid transparent;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.5s ease; }
  @media (max-width: 36em) {
    .nav_members ul li a, .wppb-user-forms .wppb-search-button, .profileChapter a {
      padding: 0.8rem 1.6rem; } }

.nav_members ul li a:hover, .wppb-user-forms .wppb-search-button:hover, .profileChapter a:hover {
  background-color: #ccc;
  text-decoration: none;
  transition: background-color 0.5s ease; }

.nav_members ul li a:focus {
  background-color: rgba(243, 149, 25, 0.8);
  border: 2px solid #353535;
  text-decoration: none; }

.nav_members ul li a:disabled {
  background-color: rgba(243, 149, 25, 0.6);
  color: #6f6f6f;
  text-decoration: none; }

.members-filters {
  background-color: rgba(229, 229, 229, 0.2);
  padding: 3.2rem 1.6rem;
  margin-bottom: 4rem; }

#wppb-search-fields {
  font-size: 1.6rem;
  min-height: 42px;
  padding: 0.8rem 1.6rem; }

#wppb-search-fields:focus-visible {
  border-color: #1d6fa2; }

a.wppb-clear-results {
  font-size: 1.6rem; }

.wppb-faceted-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: max-content max-content 1fr;
  gap: 0.8rem; }
  @media (max-width: 48em) {
    .wppb-faceted-list {
      display: block; } }

ul.wppb-faceted-list {
  margin-bottom: 0 !important; }

ul.wppb-faceted-list > li:first-child {
  grid-column: 1/4; }

#wppb-facet-areas_of_intrest div {
  display: inline;
  margin-right: 1.6rem; }

ul.wppb-faceted-list > li {
  max-width: fit-content !important; }

select.wppb-facet-select {
  min-width: 250px;
  padding: 0.8rem;
  background-color: #fff;
  border: none;
  font-size: 1.6rem; }

#wppb-remove-facets-container {
  padding: 0; }

#wppb-remove-facets-container li a {
  font-size: 1.4rem; }

.wppb-facet-search {
  min-width: 250px; }

.wppb-userlisting-container .wppb-faceted-list li h5 {
  margin-top: 0 !important;
  font-size: 1.6rem;
  letter-spacing: 0; }

.wppb-table th {
  background-color: rgba(229, 229, 229, 0.4);
  padding: 1.6rem 0.8rem; }

.wppb-table tr:hover {
  background: rgba(32, 180, 182, 0.2) !important; }

.wppb-table th, .wppb-table th a {
  font-size: 1.6rem;
  font-family: "Jost", sans-serif; }

.wppb-userlisting-container .wppb-table td {
  font-size: 1.4rem;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #e1e1e1;
  padding: 1.6rem 0.8rem; }

.wppb-avatar img {
  border-radius: 50%; }

.amount {
  text-align: right;
  margin-top: 1.6rem; }

.wppb-more-span a {
  border-bottom: 5px solid #f39519;
  color: #353535;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  transition: 0.5s ease; }

.wppb-more-span a:hover {
  border-bottom: 5px solid rgba(243, 149, 25, 0.8);
  color: rgba(60, 86, 98, 0.9);
  text-decoration: none;
  transition: 0.5s ease; }

.wppb-more-span a:focus {
  border-bottom: 5px solid rgba(243, 149, 25, 0.8);
  text-decoration: none; }

.wppb-more-span a:disabled {
  border-bottom: 5px solid rgba(243, 149, 25, 0.6);
  color: #6f6f6f;
  text-decoration: none; }

.wppb-facet-checkbox-repetitions {
  display: none !important; }

.wppb-profile {
  max-width: 906px;
  margin: 0 auto !important;
  padding: 0 3.2rem;
  overflow: hidden; }

.wppb-profile.intro {
  display: grid;
  grid-template-columns: 0 300px 1fr;
  grid-template-rows: min-content 92px auto;
  gap: 3.2rem;
  align-items: center; }
  @media (max-width: 48em) {
    .wppb-profile.intro {
      grid-template-columns: 0 265px 1fr; } }
  @media (max-width: 36em) {
    .wppb-profile.intro {
      display: block;
      padding: 0;
      text-align: center; } }

.wppb-profile.intro h4 {
  padding-bottom: 0.8rem; }

.profileSocial a {
  font-size: 2.5rem;
  margin-right: 0.8rem; }

.profileSocial a:hover {
  color: rgba(60, 86, 98, 0.8); }

.wppb-profile.intro p {
  padding-bottom: 0.8rem; }

.intro .wppb-avatar {
  grid-column: 1/3;
  grid-row: 1/3;
  z-index: 2; }

.intro .wppb-avatar img {
  border-radius: 0%;
  max-width: 100%; }
  @media (max-width: 36em) {
    .intro .wppb-avatar img {
      margin-bottom: 1.6rem;
      border-radius: 50%; } }

.wppb-profile .info {
  grid-column: 1/3;
  margin-left: 10%; }

.wppb-profile .profileChapter {
  grid-column: 2/3; }
  @media (max-width: 36em) {
    .wppb-profile .profileChapter {
      margin-bottom: 3.2rem; } }

.wppb-profile .profileData {
  grid-column: 1/4;
  display: grid;
  grid-template-columns: 30% auto;
  margin-left: 70px;
  gap: 3.2rem;
  background: #e5e5e5;
  grid-row: 2/4;
  padding: 4.8rem 3.2rem 3.2rem 3.2rem; }
  @media (max-width: 48em) {
    .wppb-profile .profileData {
      margin-left: 0;
      grid-template-columns: 110px 1fr; } }
  @media (max-width: 36em) {
    .wppb-profile .profileData {
      grid-row: 3/4;
      display: block;
      text-align: left; } }

#wppb-back-span {
  text-align: center;
  margin-top: 4rem; }

/* .wppb-profile.info {
    margin-left: 100px;
    background-color: $light-gray;
    padding: 3.2rem;
}
.wppb-profile.info div {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 3.2rem;
    margin-bottom: 1.6rem;
} */
.wppb-profile label {
  text-align: right;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 150%; }

#edit_profile, .loginForm .login-submit input, #wppb-back {
  background-color: #f39519;
  padding: 1.6rem 3.2rem;
  color: #000000;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  border: 2px solid transparent;
  display: inline-block;
  transition: background-color 0.5s ease; }
  @media (max-width: 36em) {
    #edit_profile, .loginForm .login-submit input, #wppb-back {
      padding: 0.8rem 1.6rem; } }

#edit_profile:hover, .loginForm .login-submit input:hover, #wppb-back:hover {
  background-color: #f4b45c;
  text-decoration: none;
  transition: background-color 0.5s ease; }

#edit_profile:focus, .loginForm .login-submit input:focus, #wppb-back:focus {
  background-color: rgba(243, 149, 25, 0.8);
  border: 2px solid #353535;
  text-decoration: none; }

#edit_profile:disabled, .loginForm .login-submit input:disabled, #wppb-back:disabled {
  background-color: rgba(243, 149, 25, 0.6);
  color: #6f6f6f;
  text-decoration: none; }

.loginForm {
  background-color: #e5e5e5;
  padding: 4rem 3.2rem;
  max-width: 500px; }

.loginForm #wppb-login-wrap label {
  width: 100% !important;
  font-family: "Jost", sans-serif; }

.loginForm #wppb-login-wrap .login-password input, .loginForm #wppb-login-wrap .login-username input {
  width: 100% !important;
  min-height: 45px;
  padding: 0.8rem; }

/**
 * partials/footer
 * ---
 */
.footer {
  background-color: #353535; }

.footer .box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3.2rem; }
  @media (max-width: 64em) {
    .footer .box {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 36em) {
    .footer .box {
      grid-template-columns: 1fr; } }

.footerLogo img {
  max-width: 120px; }

.socialFooter a {
  color: #fff;
  margin-right: 1.6rem; }

.socialFooter a i {
  font-size: 2rem; }

.socialFooter a:hover {
  color: #e5e5e5; }

/**
 * partials/print
 * ---
 * Print version
 * (from https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css)
 */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group;
    /* h5bp.com/t */ }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }
/**
 * Swiper 5.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 8, 2020
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }
:root {
  --swiper-theme-color: #007aff; }

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap; }

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column; }

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory; }

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory; }

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */ }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto; }

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev'; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto; }

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next'; }

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff; }

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000; }

.swiper-button-lock {
  display: none; }

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */ }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color)); }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff; }

.swiper-pagination-black {
  --swiper-pagination-color: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */ }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000; }

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg); } }
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/*# sourceMappingURL=style.css.map */
