@keyframes Slide-in-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@font-face {
  font-family: "Manrope";
  src: url("../css/fonts/manrope.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../css/fonts/manrope-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url("../css/fonts/manrope-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Manrope";
  src: url("../css/fonts/manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Manrope";
  src: url("../css/fonts/manrope-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Manrope";
  src: url("../css/fonts/manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "Manrope SemiBold";
  src: url("../css/fonts/Manrope-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope Regular";
  src: url("../css/fonts/Manrope-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../css/fonts/PFDinTextCompPro-Thin.ttf") format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../css/fonts/PFDinTextCompPro-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../css/fonts/PFDinTextCompPro-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../css/fonts/PFDinTextCompPro-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../css/fonts/PFDinTextCompPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../css/fonts/PFDinTextCompPro-BoldItal.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../css/fonts/PFDinTextCompPro-XBlack.ttf") format("truetype");
  font-weight: 1000;
  font-style: normal;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../css/fonts/PFDinTextCompPro-XBlackItal.ttf") format("truetype");
  font-weight: 1000;
  font-style: italic;
}
@font-face {
  font-family: "CF Din";
  src: url("../css/fonts/CF_Din_Rg.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "CF Din";
  src: url("../css/fonts/CF_Din_CnLg.otf") format("opentype");
  font-weight: 200;
}
@font-face {
  font-family: "CF Din Normal";
  src: url("../css/fonts/CF_Din_Light.otf") format("opentype");
  font-weight: 200;
}
@font-face {
  font-family: "CF Din";
  src: url("../css/fonts/CF_Din_CnBook.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "CF Din";
  src: url("../css/fonts/CF_Din_CnBold.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "CF Din";
  src: url("../css/fonts/CF_Din_CnBlack.otf") format("opentype");
  font-weight: 600;
}
header {
  background-color: #222640;
}
@media only screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}
header * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope";
}
header ul {
  margin: 0;
  padding: 0;
}
header p {
  margin: 0;
  padding: 0;
}
header .mobile-nav {
  height: 100dvh;
  max-height: 72px;
  transition: max-height 0.2s linear;
  flex-direction: column;
  display: none;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  header .mobile-nav {
    display: block;
  }
}
header .mobile-nav .top-container {
  padding-block: 9px;
  width: 100%;
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
header .mobile-nav .top-container .logo-container {
  width: 80px;
  background-color: #fff;
  padding: 4px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
header .mobile-nav .top-container .logo-container img {
  display: block;
  width: 51px;
  margin-left: auto;
}
header .mobile-nav .top-container ul {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  margin: 0;
  gap: 14px;
}
@media only screen and (max-width: 767px) {
  header .mobile-nav .top-container ul {
    gap: min(14px, 3.7333333333vw);
    margin: 0;
  }
}
header .mobile-nav .top-container ul li {
  list-style: none;
  width: 36px;
  height: 37px;
  border: 1px solid #fff;
  border-radius: 100%;
}
@media only screen and (max-width: 767px) {
  header .mobile-nav .top-container ul li {
    width: min(36px, max(26px, 9.6vw));
    height: min(37px, max(27px, 9.8666666667vw));
  }
}
header .mobile-nav .top-container ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .mobile-nav .top-container ul li a img {
  max-width: 60%;
  max-height: 60%;
}
header .mobile-nav .top-container .burger {
  width: 35px;
  height: 22px;
  position: relative;
}
header .mobile-nav .top-container .burger .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transform-origin: bottom;
  transition: all 0.2s linear;
}
header .mobile-nav .top-container .burger .line:first-child {
  top: 0;
  transform: translate(0) rotate(0);
}
header .mobile-nav .top-container .burger .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
header .mobile-nav .top-container .burger .line:last-child {
  bottom: 0;
  transform: translate(0) rotate(0);
}
header .mobile-nav .main-nav {
  flex-grow: 1;
  padding-inline: 20px;
}
header .mobile-nav .main-nav .breadCrumbs {
  display: flex;
  align-items: center;
  gap: 40px;
  max-height: 0;
  font-size: 25px;
  padding-block: 0;
  color: #16b89d;
  opacity: 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s linear 0.5s;
}
@media only screen and (max-width: 767px) {
  header .mobile-nav .main-nav .breadCrumbs {
    gap: min(40px, 10.6666666667vw);
  }
}
header .mobile-nav .main-nav .breadCrumbs #text-content {
  text-transform: uppercase;
}
header .mobile-nav .main-nav .breadCrumbs.active {
  opacity: 1;
  max-height: 100px;
  padding-block: 26px;
  border-bottom: 2px solid #fff;
}
header .mobile-nav .main-nav .item-list {
  width: 100%;
  height: 80%;
  position: relative;
  overflow: hidden;
}
header .mobile-nav .main-nav .item-list ul {
  display: none;
  background-color: #222640;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation-name: none;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  box-shadow: rgba(34, 38, 64, 0) 0px 0px 0px 0px;
}
header .mobile-nav .main-nav .item-list ul li {
  list-style: none;
}
header .mobile-nav .main-nav .item-list ul li button,
header .mobile-nav .main-nav .item-list ul li a {
  width: 100%;
  text-decoration: none;
  text-align: left;
  font-size: 20px;
  color: #fff;
  border: none;
  stroke: none;
  outline: none;
  background-color: transparent;
  padding-block: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
header .mobile-nav .main-nav .item-list ul li button .square,
header .mobile-nav .main-nav .item-list ul li a .square {
  width: 10px;
  height: 11px;
  background-color: yellow;
  margin-top: 8px;
  flex-shrink: 0;
}
header .mobile-nav .main-nav .item-list ul li button span,
header .mobile-nav .main-nav .item-list ul li a span {
  font-size: 20px;
  color: #fff;
  flex-shrink: 1;
  display: block;
}
header .mobile-nav .main-nav .item-list ul li button img,
header .mobile-nav .main-nav .item-list ul li a img {
  width: 10px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 8px;
}
header .mobile-nav .main-nav .item-list ul li button .label,
header .mobile-nav .main-nav .item-list ul li a .label {
  font-size: 12px;
  font-weight: 900;
  color: #16b89d;
  padding-block: 4px;
  padding-inline: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  min-width: -moz-max-content;
  min-width: max-content;
  flex-shrink: 0;
  margin-top: 4px;
  margin-left: auto;
}
header .mobile-nav .main-nav .item-list ul li button .double-row .program,
header .mobile-nav .main-nav .item-list ul li a .double-row .program {
  font-size: 14px;
}
header .mobile-nav .main-nav .item-list ul li button .double-row .title,
header .mobile-nav .main-nav .item-list ul li a .double-row .title {
  font-size: 25px;
}
header .mobile-nav .main-nav .item-list ul li .card {
  position: relative;
  margin-top: 20px;
  width: 100%;
  background-color: transparent;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  padding-inline: min(70px, max(50px, 3.6458333333vw));
  padding-block: 30px;
  transition: all 1.5s linear;
  overflow: hidden;
  border-radius: 50px;
}
header .mobile-nav .main-nav .item-list ul li .card .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
header .mobile-nav .main-nav .item-list ul li .card .background-image img {
  width: 100%;
  height: 100%;
}
header .mobile-nav .main-nav .item-list ul li .card .text {
  position: relative;
  z-index: 1;
  color: #fff;
}
header .mobile-nav .main-nav .item-list ul li .card .text span {
  display: block;
}
header .mobile-nav .main-nav .item-list ul li .card .text .program {
  font-size: min(18px, max(14px, 0.9375vw));
  max-width: 100%;
}
header .mobile-nav .main-nav .item-list ul li .card .text .title {
  font-size: min(48px, max(30px, 2.5vw));
  max-width: 100%;
  padding-top: 10px;
}
header .mobile-nav .main-nav .item-list ul li .card .button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  font-size: min(16px, max(12px, 0.8333333333vw));
  gap: 18px;
  padding-block: min(15px, 0.9375em);
  padding-inline: min(30px, 1.875em);
  background-color: rgba(255, 255, 255, 0.2);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 24px;
}
header .mobile-nav .main-nav .item-list ul li .card .button span {
  font-size: min(16px, max(12px, 0.8333333333vw));
  color: #fff;
  font-family: "Manrope Regular";
  letter-spacing: 0.55px;
}
header .mobile-nav .main-nav .item-list ul li .card .button::after {
  content: "";
  width: 26px;
  height: 8px;
  background-image: url("../img/header/swiper-button-arrow.svg");
  background-size: contain;
  background-position: center;
}
header .mobile-nav .main-nav .item-list ul li.is-eco a span:not(.laberl):not(.tag):not(.leaf)::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 20px;
  background-image: url("../img/header/leaf.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 8px;
}
header .mobile-nav .main-nav .item-list ul.active {
  display: block;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: rgb(34, 38, 64) -15px 0px 125px 25px;
}
header .mobile-nav .main-nav .item-list ul.active::-webkit-scrollbar {
  display: none;
}
header .mobile-nav .main-nav .item-list ul.active::after {
  content: "";
  display: block;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(transparent, #222640);
}
@keyframes SlideLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes SlideRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
header .mobile-nav .main-nav .item-list .head-category > li > button {
  text-align: left;
  font-size: 24px;
  color: #fff;
  border: none;
  stroke: none;
  outline: none;
  background-color: transparent;
  padding-block: 40px;
  border-bottom: 2px solid #fff;
  width: 100%;
}
header .mobile-nav .main-nav .item-list .head-category > li button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .mobile-nav .main-nav .item-list .head-category > li button::after {
  content: "";
  display: block;
  background-image: url("../img/white-arrow-right.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 10px;
  min-height: 15px;
  margin-right: 10px;
}
header .mobile-nav .main-nav .item-list .head-category > li .tab-content__contact {
  margin-top: 11px;
}
header .mobile-nav .main-nav .item-list .head-category > li .tab-content__contact .title {
  font-size: 20px;
  color: #fff;
}
header .mobile-nav .main-nav .item-list .head-category > li .tab-content__contact .title span {
  font-size: inherit;
  color: inherit;
}
header .mobile-nav .main-nav .item-list .head-category > li .tab-content__contact .info {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header .mobile-nav .main-nav .item-list .head-category > li .tab-content__contact .info a {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding-inline: 15px;
  padding-block: 8px;
  border: 1px solid #fff;
  border-radius: 100px;
}
header .mobile-nav .bottom-container {
  padding: 20px;
  display: none;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
header .mobile-nav .bottom-container li {
  list-style: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
}
header .mobile-nav .bottom-container li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .mobile-nav .bottom-container li a img {
  width: 60%;
}
header .mobile-nav .bottom-container .contact {
  border: none;
  width: unset;
  height: unset;
}
header .mobile-nav .bottom-container .contact a {
  background-color: #bb1117;
  padding-block: 11px;
  padding-inline: 16px;
  border-radius: 24px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  font-size: 12px;
  color: #fff;
}
header .mobile-nav .bottom-container .language a {
  text-decoration: none;
  font-size: 14px;
  color: #fff;
}
header .mobile-nav .bottom-container .grow {
  flex-grow: 1;
}
header .mobile-nav.active {
  max-height: 100vh;
  display: flex;
}
header .mobile-nav.active .top-container .burger .line:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-52%, -50%) rotate(45deg);
}
header .mobile-nav.active .top-container .burger .line:nth-child(2) {
  opacity: 0;
}
header .mobile-nav.active .top-container .burger .line:last-child {
  bottom: 50%;
  left: 50%;
  transform: translate(-48%, 50%) rotate(-45deg);
}
header .mobile-nav.active .main-nav .head-category {
  display: block;
}
header .mobile-nav.active .bottom-container {
  display: flex;
}
header .desktop-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  display: grid;
  transition: background-image 0.2s linear;
  grid: 1fr/1fr min(231px, 12.03125vw) min(1432px, 74.5833333333vw) 1fr;
}
@media only screen and (max-width: 767px) {
  header .desktop-nav {
    display: none;
  }
}
header .desktop-nav #desktop-close-bt {
  all: unset;
  display: none;
  position: absolute;
  top: 35px;
  right: 30px;
  z-index: 100;
  width: 25px;
  height: 25px;
  background-image: url("../img/light-close.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}
header .desktop-nav #desktop-close-bt:hover {
  filter: drop-shadow(0 0 0px white);
}
header .desktop-nav #desktop-close-bt.active {
  display: block;
}
header .desktop-nav .logo-container {
  grid-column: 1/3;
  grid-row: 1;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 27px;
  padding-block: 18px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  align-self: end;
}
header .desktop-nav .logo-container img {
  max-width: min(204px, 10.625vw);
  margin-left: auto;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-name: Slide-in-left;
}
header .desktop-nav .flex-box {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: min(37px, 1.9270833333vw);
}
header .desktop-nav .flex-box .left-nav nav ul {
  display: flex;
  align-items: center;
  gap: min(10px, 0.5208333333vw);
}
@media only screen and (max-width: 1199px) {
  header .desktop-nav .flex-box .left-nav nav ul {
    gap: 5px;
  }
}
header .desktop-nav .flex-box .left-nav nav ul li {
  list-style: none;
  font-size: min(20px, max(12px, 1.0416666667vw));
  width: min(190px, 9.5em);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  padding-block: 13px;
}
@media only screen and (max-width: 1199px) {
  header .desktop-nav .flex-box .left-nav nav ul li {
    width: -moz-max-content;
    width: max-content;
    padding-inline: 15px;
  }
}
header .desktop-nav .flex-box .left-nav nav ul li:hover {
  background-color: #313c77;
}
header .desktop-nav .flex-box .left-nav nav ul li button {
  font-family: "Manrope";
  width: 100%;
  text-align: center;
  text-wrap: wrap;
  font-size: min(23px, max(12px, 1.1979166667vw));
  border: none;
  outline: none;
  background-color: transparent;
  font-weight: 900;
  color: #fff;
}
header .desktop-nav .flex-box .left-nav nav ul li.active {
  background-color: #313c77;
}
header .desktop-nav .flex-box .right-nav {
  padding-bottom: 13px;
}
header .desktop-nav .flex-box .right-nav__top {
  padding-top: min(37px, max(20px, 1.9270833333vw));
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media only screen and (max-width: 1199px) {
  header .desktop-nav .flex-box .right-nav__top {
    width: 100%;
  }
}
header .desktop-nav .flex-box .right-nav__top ul {
  display: flex;
  align-items: center;
  gap: 20px;
  gap: min(20px, 1.0416666667vw);
}
@media only screen and (max-width: 1199px) {
  header .desktop-nav .flex-box .right-nav__top ul {
    justify-content: flex-end;
  }
}
header .desktop-nav .flex-box .right-nav__top ul li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  background-color: #fff;
  border-radius: 100px;
  gap: 5px;
}
header .desktop-nav .flex-box .right-nav__top ul li img {
  width: 17px;
}
header .desktop-nav .flex-box .right-nav__top ul li a {
  font-size: 14px;
  text-decoration: none;
  color: #313c77;
}
header .desktop-nav .flex-box .right-nav__top ul li span {
  font-size: 14px;
  color: #313c77;
}
header .desktop-nav .flex-box .right-nav__top ul li:not(:first-of-type) {
  width: 32px;
  height: 32px;
}
header .desktop-nav .flex-box .right-nav__top ul li:first-of-type {
  padding-block: 8px;
  padding-inline: 11px;
}
header .desktop-nav .flex-box .right-nav__bottom {
  padding-top: min(27px, max(5px, 1.40625vw));
}
header .desktop-nav .flex-box .right-nav__bottom ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  header .desktop-nav .flex-box .right-nav__bottom ul {
    flex-wrap: wrap;
    -moz-column-gap: 5px;
         column-gap: 5px;
    row-gap: 10px;
    justify-content: flex-end;
  }
}
header .desktop-nav .flex-box .right-nav__bottom ul li {
  list-style: none;
  border: 1px solid #fff;
  border-radius: 100px;
  margin-right: 5px;
}
@media only screen and (max-width: 1199px) {
  header .desktop-nav .flex-box .right-nav__bottom ul li {
    margin-right: 0;
  }
}
header .desktop-nav .flex-box .right-nav__bottom ul li a {
  display: flex;
  align-items: center;
}
header .desktop-nav .flex-box .right-nav__bottom ul li a .image-container {
  width: min(52px, max(30px, 2.7083333333vw));
  height: min(52px, max(30px, 2.7083333333vw));
  border-right: 1.5px solid #fff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  header .desktop-nav .flex-box .right-nav__bottom ul li a .image-container {
    border: none;
  }
}
header .desktop-nav .flex-box .right-nav__bottom ul li a .image-container img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header .desktop-nav .flex-box .right-nav__bottom ul li a span {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 0;
  padding-right: 0;
  padding-left: 0;
  font-size: min(16px, max(12px, 0.8333333333vw));
  color: #fff;
  overflow-x: hidden;
  transition: all 0.2s linear;
}
header .desktop-nav .flex-box .right-nav__bottom ul li a:hover {
  text-decoration: none;
  border: none;
}
@media only screen and (min-width: 1200px) {
  header .desktop-nav .flex-box .right-nav__bottom ul li:hover a span {
    max-width: 150px;
    padding-right: 14px;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  header .desktop-nav .flex-box .right-nav__bottom ul #myHeron a .image-container {
    border: none;
    margin-left: 8px;
  }
}
@media only screen and (min-width: 1200px) {
  header .desktop-nav .flex-box .right-nav__bottom ul #myHeron a span {
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding-right: 14px;
    padding-left: 0;
  }
}
header .desktop-nav .flex-box .right-nav__bottom ul #right-nav_contact {
  font-size: min(16px, max(12px, 0.8333333333vw));
  padding-block: 1em;
  padding-inline: min(23px, 1.4375em);
  background-color: #bb1117;
  text-align: center;
  border: none;
  margin-left: min(30px, 1.5625vw);
  margin-right: 0;
}
@media only screen and (max-width: 1199px) {
  header .desktop-nav .flex-box .right-nav__bottom ul #right-nav_contact {
    margin-left: 0;
  }
}
header .desktop-nav .flex-box .right-nav__bottom ul #right-nav_contact span {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0;
}
header .desktop-menu-tabs {
  max-height: 0px;
  width: 100%;
  height: 100%;
  background-color: #222640;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 767px) {
  header .desktop-menu-tabs {
    display: none;
  }
}
header .desktop-menu-tabs__wrapper {
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  height: -moz-max-content;
  height: max-content;
  padding-top: min(160px, max(100px, 9.4117647059vw));
}
header .desktop-menu-tabs .tab {
  max-width: min(1663px, 86.6145833333vw);
  margin-inline: auto;
  display: none;
  height: 100%;
  justify-content: space-between;
}
header .desktop-menu-tabs .tab.active {
  display: flex;
}
header .desktop-menu-tabs .inner-tab-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .inner-tab-nav ul {
    justify-content: flex-start;
    gap: min(150px, max(50px, 12.5104253545vw));
  }
}
header .desktop-menu-tabs .inner-tab-nav ul li {
  list-style: none;
  border-bottom: 2px solid #fff;
  padding-block: 10px;
  max-width: min(550px, 28.6458333333vw);
  width: 100%;
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.5s linear;
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .inner-tab-nav ul li {
    max-width: 310px;
  }
}
header .desktop-menu-tabs .inner-tab-nav ul li button {
  background-color: transparent;
  border: none;
  stroke: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
header .desktop-menu-tabs .inner-tab-nav ul li button img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header .desktop-menu-tabs .inner-tab-nav ul li button span {
  color: #fff;
  font-size: min(18px, max(14px, 0.9375vw));
  font-family: "Manrope Regular";
}
header .desktop-menu-tabs .inner-tab-nav ul li::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background-color: #313c77;
  width: 0;
  transition: all 0.2s linear;
}
header .desktop-menu-tabs .inner-tab-nav ul li.active,
header .desktop-menu-tabs .inner-tab-nav ul li:hover {
  opacity: 1;
}
header .desktop-menu-tabs .inner-tab-nav ul li.active::after,
header .desktop-menu-tabs .inner-tab-nav ul li:hover::after {
  width: min(237px, 43.0909090909%);
}
header .desktop-menu-tabs .tab-content {
  width: min(1190px, 61.9791666667vw);
  padding-top: 50px;
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .tab-content {
    width: 100%;
  }
}
@media only screen and (max-width: 801px) {
  header .desktop-menu-tabs .tab-content {
    padding-top: 90px;
  }
}
header .desktop-menu-tabs .tab-content__tab-list {
  display: flex;
}
header .desktop-menu-tabs .tab-content__tab-list__container {
  flex: 1;
}
header .desktop-menu-tabs .tab-content__tab-list__container li {
  list-style: none;
}
header .desktop-menu-tabs .tab-content__tab-list__container li a {
  text-decoration: none;
  color: #fff;
  font-size: min(20px, max(14px, 1.0416666667vw));
}
header .desktop-menu-tabs .tab-content__tab-list__container li a:hover {
  text-decoration: underline;
}
header .desktop-menu-tabs .tab-content__tab-list__container__title {
  display: block;
  color: #fff;
  font-size: min(30px, max(21px, 1.5625vw));
  padding-bottom: min(40px, 2.0833333333vw);
}
header .desktop-menu-tabs .tab-content__contact {
  padding-top: min(100px, 5.2083333333vw);
}
header .desktop-menu-tabs .tab-content__contact .title span {
  font-size: min(30px, max(21px, 1.5625vw));
  color: #fff;
}
header .desktop-menu-tabs .tab-content__contact .info {
  display: flex;
  gap: 20px;
  padding-top: 30px;
}
header .desktop-menu-tabs .tab-content__contact .info a {
  text-decoration: none;
  color: #fff;
  font-size: min(20px, max(15px, 1.0416666667vw));
  padding-block: min(15px, 0.75em);
  padding-inline: min(30px, 1.5em);
  border-radius: 100px;
  border: 1px solid #fff;
}
header .desktop-menu-tabs .card-container {
  display: flex;
  justify-content: center;
  gap: min(70px, max(40px, 3.6458333333vw));
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .card-container {
    width: 100%;
  }
}
header .desktop-menu-tabs .card-container .card {
  position: relative;
  margin-top: 50px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  width: min(482px, max(300px, 25.1041666667vw));
  height: min(600px, max(423px, 31.25vw));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-inline: min(70px, max(30px, 3.6458333333vw));
  padding-block: 30px;
  opacity: 0;
  transition: all 1.5s linear;
  overflow: hidden;
  border-radius: 50px;
}
header .desktop-menu-tabs .card-container .card .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
header .desktop-menu-tabs .card-container .card .background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
header .desktop-menu-tabs .card-container .card .text {
  position: relative;
  z-index: 1;
  color: #fff;
}
header .desktop-menu-tabs .card-container .card .text span {
  display: block;
}
header .desktop-menu-tabs .card-container .card .text .program {
  font-size: min(18px, max(14px, 0.9375vw));
  max-width: 100%;
}
header .desktop-menu-tabs .card-container .card .text .title {
  font-size: min(48px, max(30px, 2.5vw));
  max-width: 100%;
  padding-top: 10px;
}
header .desktop-menu-tabs .card-container .card .button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  font-size: min(16px, max(12px, 0.8333333333vw));
  gap: min(18px, 0.9375vw);
  padding-block: min(15px, 0.9375em);
  padding-inline: min(30px, 1.875em);
  background-color: rgba(255, 255, 255, 0.2);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 24px;
}
header .desktop-menu-tabs .card-container .card .button span {
  font-size: min(16px, max(12px, 0.8333333333vw));
  color: #fff;
  font-family: "Manrope Regular";
  letter-spacing: 0.55px;
}
header .desktop-menu-tabs .card-container .card .button::after {
  content: "";
  width: 26px;
  height: 8px;
  background-image: url("../img/header/swiper-button-arrow.svg");
  background-size: contain;
  background-position: center;
  transition: all 0.3s ease-out;
}
header .desktop-menu-tabs .card-container .card .button:hover {
  text-decoration: none !important;
}
header .desktop-menu-tabs .card-container .card .button:hover::after {
  transform: translateX(20%);
}
header .desktop-menu-tabs .card-container .card.active {
  opacity: 1;
}
header .desktop-menu-tabs .inner-tab {
  display: none;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
header .desktop-menu-tabs .inner-tab__category {
  margin-top: 71px;
  flex: 1;
}
@media only screen and (max-width: 1500px) {
  header .desktop-menu-tabs .inner-tab__category {
    max-width: 300px;
    flex: unset;
  }
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .inner-tab__category {
    max-width: min(300px, max(250px, 25.0208507089vw));
  }
}
header .desktop-menu-tabs .inner-tab__category__title {
  font-size: min(30px, max(21px, 1.5625vw));
  color: #fff;
  font-family: "Manrope Regular";
}
header .desktop-menu-tabs .inner-tab__category__list {
  margin-top: min(52px, 2.7083333333vw);
  position: relative;
}
header .desktop-menu-tabs .inner-tab__category__list::after {
  content: attr(note-message);
  display: block;
  font-size: min(12px, max(8px, 0.7142857143vw));
  color: #fff;
  position: absolute;
  bottom: calc(100% + min(5px, 0.4166666667em));
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0.5;
}
header .desktop-menu-tabs .inner-tab__category__list li {
  list-style: none;
}
header .desktop-menu-tabs .inner-tab__category__list li a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  row-gap: 4px;
  -moz-column-gap: min(14px, 0.7291666667vw);
       column-gap: min(14px, 0.7291666667vw);
  margin-top: 5px;
  text-decoration: none;
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .inner-tab__category__list li a {
    gap: 5px;
  }
}
header .desktop-menu-tabs .inner-tab__category__list li a:hover .inner-list-text {
  text-decoration: underline;
}
header .desktop-menu-tabs .inner-tab__category__list__color {
  min-width: min(11px, max(8px, 0.6547619048vw));
  min-height: min(13px, max(9px, 0.7738095238vw));
  background-color: rgb(236, 199, 0);
  margin-top: min(8px, max(4px, 0.4761904762vw));
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .inner-tab__category__list__color {
    min-width: 7px;
    min-height: 8px;
  }
}
header .desktop-menu-tabs .inner-tab__category__list__text {
  font-size: min(20px, max(15px, 1.0416666667vw));
  color: #fff;
  font-family: "Manrope Regular";
  border-bottom: 2px solid transparent;
}
header .desktop-menu-tabs .inner-tab__category__list__leaf {
  width: min(12px, max(10px, 0.7142857143vw));
  max-height: 18px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-left: 5px;
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .inner-tab__category__list__leaf {
    width: 8px;
    height: 12px;
  }
}
header .desktop-menu-tabs .inner-tab__category__list__tag {
  display: inline-block;
  min-width: -moz-max-content;
  min-width: max-content;
  color: rgb(22, 184, 157);
  text-transform: uppercase;
  letter-spacing: 0.99px;
  font-family: "Manrope Regular";
  font-weight: 900;
  font-size: min(11px, max(8px, 0.6547619048vw));
  padding-inline: 1em;
  padding-block: min(4px, 0.3636363636em);
  border: 1px solid rgba(22, 184, 157, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  margin-left: 5px;
  line-height: 1em;
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .inner-tab__category__list__tag {
    font-size: 9px;
  }
}
header .desktop-menu-tabs .inner-tab.active {
  display: flex;
}
header .desktop-menu-tabs .tab .tab-swipers {
  padding-top: min(20px, 1.8518518519vh);
  max-width: min(425px, max(250px, 22.1354166667vw));
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  header .desktop-menu-tabs .tab .tab-swipers {
    display: none;
  }
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container {
  display: none;
  height: 100%;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper {
  width: 100%;
  border: 2px solid #fff;
  border-radius: 24px;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-wrapper {
  height: unset;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide {
  padding-inline: min(30px, max(15px, 1.5625vw));
  padding-block: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide span {
  display: block;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide picture {
  width: 100%;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide .label {
  font-size: min(14px, max(12px, 0.7291666667vw));
  color: #16b89d;
  letter-spacing: 0.09em;
  font-family: "Manrope Regular";
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide .title {
  font-size: min(30px, max(19px, 1.5625vw));
  color: #fff;
  letter-spacing: 0.02em;
  font-family: "Manrope Regular";
  line-height: 1.1;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide p {
  font-size: min(15px, max(13px, 0.78125vw));
  color: #fff;
  font-family: "Manrope Regular";
  letter-spacing: 0.02em;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide p:not(:first-of-type) {
  padding-top: min(16px, 0.8333333333vw);
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide .button {
  display: flex;
  align-items: center;
  gap: min(18px, 0.9375vw);
  padding-block: 8px;
  padding-inline: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 24px;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide .button span {
  font-size: min(11px, max(9px, 0.5729166667vw));
  color: #fff;
  font-family: "Manrope Regular";
  letter-spacing: 0.55px;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-slide .button::after {
  content: "";
  width: 26px;
  height: 8px;
  background-image: url("../img/header/swiper-button-arrow.svg");
  background-size: contain;
  background-position: center;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-pagination {
  max-width: 20%;
  left: unset;
  right: 0;
  bottom: min(24px, 5.1063829787%);
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-size: 100%;
  background-position: center;
  background-image: url("../img/header/header-swiper-pagination.svg");
  background-color: transparent;
  opacity: 1;
  transform: scale(1);
  left: 0 !important;
  right: 0 !important;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-image: url("../img/header/header-swiper-pagination-active.svg");
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper.bottom {
  margin-top: min(35px, 3.2407407407vh);
  max-height: min(232px, max(190px, 12.0833333333vw));
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper.bottom .swiper-slide {
  padding-inline: min(30px, max(15px, 1.5625vw));
  padding-top: min(40px, max(25px, 2.0833333333vw));
  padding-bottom: min(40px, max(25px, 2.0833333333vw));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40xp;
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container .swiper.bottom .title {
  font-size: min(26px, max(19px, 1.3541666667vw));
}
header .desktop-menu-tabs .tab .tab-swipers .swiper-container.active {
  display: block;
}
header .desktop-menu-tabs .tab .swiper-container.active {
  display: block;
}
header .desktop-menu-tabs.active {
  max-height: 100vh;
}
header .desktop-menu-tabs.active::after {
  content: "";
  width: 100%;
  height: min(160px, max(100px, 9.4117647059vw));
  background-color: #222640;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

[src="https://secure.adnxs.com/seg?t=2&add=36429266"] {
  display: none;
}

a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
  background-color: #7b0008;
  border: 1px solid #7b0008;
}

a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  background-color: #188600;
  border: 1px solid #188600;
}/*# sourceMappingURL=header.css.map */