/* #Fonts
================================================== */
@font-face {
  font-family: "ploni";
  font-weight: 400;
  src: url("../font/ploni-round-regular-aaa.woff2");
}

@font-face {
  font-family: "ploni";
  font-weight: 500;
  src: url("../font/ploni-round-medium-aaa.woff2");
}

@font-face {
  font-family: "ploni";
  font-weight: 600;
  src: url("../font/ploni-round-demibold-aaa.woff2");
}

@font-face {
  font-family: "ploni";
  font-weight: 700;
  src: url("../font/ploni-round-bold-aaa.woff2");
}

@font-face {
  font-family: "ploni";
  font-weight: 900;
  src: url("../font/ploni-round-ultrabold-aaa.woff2");
}

@font-face {
  font-family: "kapriza";
  font-weight: 400;
  src: url("../font/kaprizaregularwebfont.woff");
}

/* #Global
================================================== */
body {
  font-family: 'ploni', sans-serif;
  line-height: 1.4;
}
html {
  scroll-behavior: smooth;
}
@media (max-width: 1023.98px) {
  body {
    line-height: 1.3;
  }
}
img{
  height: auto;
}
.f-kapriza {
  font-family: 'kapriza', sans-serif;
}

.text-blue {
  color: #182E54;
}

.text-light-blue {
  color: #38C2D9;
}

.text-underline {
  text-decoration: underline;
}

/* #Video Popup
================================================== */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 11000;
  overflow-y: auto;

  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;

  transition: all .4s ease;
  backface-visibility: hidden;
}

.video-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.video-popup {
  padding: 0 16.5%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.video-popup .popup-close {
  margin-bottom: 1vw;
  border-radius: 50%;
}

.video-popup .popup-close img {
  width: 2vw;
}

@media (max-width: 1023.98px) {
  .video-popup {
    padding: 0 4%;
  }

  .video-popup .popup-close {
    margin-bottom: 2vw;
  }

  .video-popup .popup-close img {
    width: 6vw;
  }
}

/* #Btns
================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12.5vw;
  height: 3.125vw;
  font-size: 1.5vw;
  font-weight: bold;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn.btn-primary {
  color: white;
  background-image: url('../img/global/btn-primary.svg');
}

.btn.btn-secondary {
  color: #182E54;
  background-image: url('../img/global/btn-secondary.svg');
}

.btn.btn-tertiary {
  color: white;
  background-image: url('../img/global/btn-tertiary.svg');
}

.btn.btn-quintary {
  color: #182E54;
  border: 1px solid #182E54;
  border-radius: 500px;
}

.btn.btn-quinary {
  color: white;
  background-image: url('../img/global/btn-quinary.svg');
}

.btn.btn-senary {
  color: white;
  background-color: #182E54;
  border: 1px solid white;
  border-radius: 500px;
}

.btn.btn-senary img {
  width: 1.2vw;
  margin-right: .5vw;
}

@media (max-width: 1023.98px) {
  .btn {
    width: 37.33vw;
    height: 10.66vw;
    font-size: 4.26vw;
  }

  .btn.btn-senary img {
    width: 5.33vw;
    margin-right: 2vw;
  }
}

/* #Header
================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: all .4s ease;
  padding: 1.3vw 0 .78vw 0;
  z-index: 10000;
}

.header .container {
  display: flex;
  align-items: center;
  width: 95%;
}

.header-hamburger {
  margin-left: 2.6vw;
}

.header-hamburger a {
  display: flex;
}

.header-hamburger svg {
  width: 2vw;
}

.header-logo {
  margin-left: auto;
}

.header-logo img {
  width: 7.6vw;
}

/* Scrolled */
.header.header-scrolled,
.header.header-white {
  background-color: white;
}

.header-hamburger svg * {
  stroke: white;
  transition: all .4s ease;
}

.header.header-scrolled .header-hamburger svg *,
.header.header-white .header-hamburger svg * {
  stroke: #182E54;
}

.header-logo {
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}
.header-btn a{
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}
.header.header-scrolled .header-logo,
.header.header-white .header-logo {
  opacity: 1;
  visibility: visible;
}
.header.header-scrolled .header-btn a,
.header.header-white .header-btn a {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023.98px) {
  .header {
    padding: 3.33vw 0;
  }

  .header .container {
    width: 90%;
    justify-content: space-between;
  }

  .header-hamburger {
    margin-left: auto;
  }

  .header-hamburger svg {
    width: 7.73vw;
  }

  .header-logo {
    margin-left: 0;
  }

  .header-logo img {
    width: 18.66vw;
  }

  .header-btn {
    /* display: none; */
  }
}

/* #Menu
================================================== */
.menu {
  position: fixed;
  top: 0;
  right: -100vw;
  height: 100%;
  width: 20.26vw;
  /*transform: translateX(100%);*/
  transition: all .4s ease;
  background-color: #E1F6F9;
  padding: 2.34vw 2.65vw 2.34vw 2.34vw;
  box-shadow: 0 0 0 2000px #36363600;
  opacity: 0;
  visibility: hidden;
}

.header.show .menu {
  /*transform: translateX(0);*/
  opacity: 1
  visibility: visible;
  right: 0;
  box-shadow: 0 0 0 2000px #363636ab;
}

.menu-close {
  margin-bottom: 2vw;
  display: block;
}

.menu-close img {
  width: 1.5vw;
}

.menu-links {
  margin-bottom: 4.16vw;
}

.menu-links li:not(:last-child) {
  margin-bottom: .78vw;
}

.menu .social {
  padding-top: .78vw;
  padding-bottom: 1vw;
  border-top: 1px solid #182E54;
  margin-top: 7.8vw;
}

@media (max-width: 1023.98px) {
  .menu {
    width: 72%;
    padding: 5.33vw;
  }

  .header.show .menu {
    transform: translateX(0);
    box-shadow: 0 0 0 2000px #363636ab;
  }

  .menu-close {
    margin-bottom: 6.65vw;
  }

  .menu-close img {
    width: 5.6vw;
  }

  .menu-links {
    margin-bottom: 20vw;
  }

  .menu-links li:not(:last-child) {
    margin-bottom: 2.66vw;
  }

  .menu .social {
    padding-top: 2.66vw;
    padding-bottom: 6.65vw;
    margin-top: 28.13vw;
  }
}

/* #Social
================================================== */
.contact a {
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.contact img {
  height: .73vw;
  width: .8vw;
  object-fit: contain;
  object-position: center;
  margin-left: .5vw;
}

@media (max-width: 1023.98px) {
  .contact img {
    height: 3.33vw;
    width: 3.33vw;
    margin-left: 2vw;
  }
}

/* #Social
================================================== */
.social ul {
  display: flex;
  align-items: center;
}

.social ul li:not(:last-child) {
  margin-left: .78vw;
}

.social img {
  width: 1.8vw;
}

@media (max-width: 1023.98px) {
  .social ul li:not(:last-child) {
    margin-left: 4.66vw;
  }

  .social img {
    width: 8.93vw;
  }
}

/* #Banner
================================================== */
.banner {
  background-color: #182E54;
  color: white;
  padding-top: 5.46vw;
}

.banner .container {
  display: flex;
  padding-right: 8.6vw;
}

.banner .text {
  flex: 0 0 35.78vw;
  margin-left: 4.68vw;
}

.banner .img {
  flex-grow: 1;
  padding-top: 6.5vw;
  position: relative;
}

.banner .img img {
  width: 100%;
}

.banner .img>a {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner .img>a img {
  width: 4.5vw;
  margin: auto;
}

.banner .logo {
  margin-bottom: 1.8vw;
}

.banner .logo img {
  width: 12.5vw;
}

.banner h1 {
  line-height: 1;
  margin-bottom: 1vw;
}

.banner .btn {
  margin-top: 1.3vw;
}

.banner p:not(:last-of-type) {
  margin-bottom: 2.6vw;
}

@media (min-width: 1024px) {

  /* Video */
  .banner .video {
    margin-right: auto;
  }

  .banner .video>img {
    height: 16vw;
  }

  .igul-letova-page .banner {
    padding: 9.58vw 0 8.75vw 0;
  }

  .igul-letova-page .banner .container {
    padding-left: 4.16vw;
  }
}

@media (max-width: 1023.98px) {
  .banner {
    padding-top: 20vw;
  }

  .banner .container {
    display: block;
    padding-right: 5.33vw;
  }

  .banner .text {
    margin-left: 0;
    padding-left: 10vw;
  }

  .banner .img {
    padding-top: 4.66vw;
  }

  .banner .img>a {
    top: 50%;
  }

  .banner .img>a img {
    width: 15.46vw;
  }

  .banner .logo {
    margin-bottom: 4vw;
  }

  .banner .logo img {
    width: 35vw;
  }

  .banner h1 {
    margin-bottom: 2vw;
  }

  .banner .btn {
    margin-top: 3.33vw;
  }

  .banner p:not(:last-of-type) {
    margin-bottom: 3.33vw;
  }

  /* Video */
  .banner .video {
    margin-right: 0;
    margin-top: 9.33vw;
    width: 78.4vw;
  }

  .banner .video>img {
    height: 44.26vw;
  }

  .igul-letova-page .banner {
    padding: 24.26vw 0;
  }
}

/* #Banner 2
================================================== */
.banner-2 img {
  width: 100%;
}

/* #Section Top
================================================== */
.section-top {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
}

.section-top img {
  width: 100%;
}

/* #About
================================================== */
.about {
  background-color: #F8D959;
  position: relative;
  padding: 3.65vw 0 10vw 0;
}

.about .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 82%;
}

.about .text {
  flex: 0 0 32.5vw;
}

.about .img {
  flex: 0 0 40.83vw;
  position: relative;
}

.about .shape-1 {
  position: absolute;
  top: -2.6vw;
  right: -6.65vw;
}

.about .shape-1 img {
  width: 17vw;
}

.about .shape-2 {
  position: absolute;
  left: -6vw;
  bottom: -1.5vw;
}

.about .shape-2 img {
  width: 13.38vw;
}

.about .heading {
  width: 26.82vw;
  margin-bottom: 2.6vw;
}

.about .heading p {
  margin-bottom: .5vw;
}

.about .text ul {
  display: flex;
  text-align: center;
  margin: .78vw 0 2.5vw 0;
}

.about .text ul li {
  flex-grow: 1;
  max-width: 10vw;
}

.about .text ul li:not(:last-child) {
  margin-left: 2.34vw;
}

.about .text ul img {
  margin: 0 auto;
  width: 6.77vw;
}

.about .shape-3 {
  position: absolute;
  bottom: -10.93vw;
  right: 0;
  z-index: 10;
}

.about .shape-3 img {
  width: 13.33vw;
}

@media (max-width: 1023.98px) {
  .about {
    padding: 0 0 47.6vw 0;
  }

  .about .container {
    display: block;
    width: 90%;
  }

  .about .text {
    margin-bottom: 22.66vw;
  }

  .about .shape-1 {
    top: -13.33vw;
    right: -3vw;
  }

  .about .shape-1 img {
    width: 36vw;
  }

  .about .shape-2 {
    left: -3vw;
    bottom: -12vw;
  }

  .about .shape-2 img {
    width: 34.66vw;
  }

  .about .heading {
    width: 100%;
    margin-bottom: 4.66vw;
  }

  .about .heading p {
    margin-bottom: 2vw;
  }

  .about .text ul {
    margin: 4vw 0 6.65vw 0;
    justify-content: space-between;
  }

  .about .text ul li {
    flex-grow: 1;
    flex: 0 0 30%;
    max-width: 100%;
  }

  .about .text ul li:not(:last-child) {
    margin-left: 0;
  }

  .about .text ul img {
    width: 21.33vw;
  }

  .about .shape-3 {
    bottom: -32vw;
  }

  .about .shape-3 img {
    width: 41.33vw;
  }
}

/* #Video
================================================== */
.video {
  position: relative;
}

.video>img {
  width: 100%;
  height: 26vw;
  object-fit: cover;
  object-position: center;
  border-radius: 1vw;
}

.video>a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video>a img {
  width: 4.4vw;
}

@media (max-width: 1023.98px) {
  .video>img {
    height: 57vw;
    border-radius: 2.66vw;
  }

  .video>a img {
    width: 12.13vw;
  }
}

/* #Numbers
================================================== */
.numbers {
  background-color: #55CEE2;
  position: relative;
  padding: 5.2vw 0 16vw 0;
  text-align: center;
}

.numbers h2 {
  margin-bottom: 4.16vw;
}

.numbers ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.numbers ul p {
  line-height: 1;
}

.numbers ul p:first-child {
  margin-bottom: 1vw;
}

.numbers ul li:not(:last-child) {
  margin-left: 4.16vw;
  padding-left: 4.16vw;
  position: relative;
}

.numbers ul li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.2vw;
  left: 0;
  width: 1px;
  height: 4.16vw;
  border-left: 2px dashed #182E54;
}

.numbers .shape-1 {
  position: absolute;
  left: 0;
  bottom: -6.25vw;
  width: 100%;
  z-index: 10;
}

.numbers .shape-1 img {
  width: 100%;
}

/* Fixed */
.numbers ul li {
  min-width: 12.5vw;
}

.numbers ul li:nth-child(4) {
  min-width: 16.5vw;
}

.numbers ul li:last-child {
  min-width: 19.5vw;
}

@media (max-width: 1023.98px) {
  .numbers {
    padding: 35.33vw 0 33.33vw 0;
  }

  .numbers .container {
    width: 88%;
  }

  .numbers h2 {
    margin-bottom: 6vw;
  }

  .numbers ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .numbers ul p:first-child {
    margin-bottom: 2vw;
  }

  .numbers ul li:not(:last-child) {
    margin-left: 0;
    padding-left: 0;
    position: relative;
    flex: 0 0 50%;
    padding-bottom: 6.65vw;
    padding-top: 2vw;
  }

  .numbers ul li:last-child {
    padding-top: 4vw;
  }

  .numbers ul li:not(:last-child)::after {
    top: 48%;
    transform: translateY(-50%);
    height: 60%;
  }

  .numbers ul li:nth-child(even)::after {
    display: none;
  }

  .numbers ul li:nth-child(1)::before,
  .numbers ul li:nth-child(3)::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200%;
    height: 1px;
    border-bottom: 2px dashed #182E54;
  }

  .numbers .shape-1 {
    bottom: -4vw;
  }
}

/* #Sandwich
================================================== */
.sandwich {
  background-color: #80DE66;
  position: relative;
  padding: 5.2vw 0 36.45vw 0;
}

.sandwich .container {
  width: 88%;
}

/* Heading */
.sandwich .heading {
  width: 26.8vw;
  position: relative;
  margin-left: 7.55vw;
  margin-right: auto;
}

.sandwich .heading p {
  margin: 1vw 0 1.5vw 0;
}

.sandwich-shape {
  position: absolute;
  top: -6.5vw;
  left: -5vw;
}

.sandwich-shape img {
  width: 13.85vw;
}

/* Body */
.sandwich .body {
  position: relative;
}

.sandwich .main-img {
  position: relative;
  z-index: 1;
}

.sandwich .main-img img {
  margin: 0 auto;
  width: 55.3vw;
}

@media (min-width: 1024px) {
  .sandwich .body li.white {
    width: 13.5vw;
    height: 13.5vw;
    background-color: white;
    color: #182E54;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1.8vw;
    border: 2px dashed #182E54;
  }

  .sandwich .body li.white:nth-of-type(1) {
    border-bottom-left-radius: 0;
  }

  .sandwich .body li.white:nth-of-type(2) {
    border-top-left-radius: 0;
  }

  .sandwich .body li.white:nth-of-type(3) {
    border-bottom-right-radius: 0;
  }

  .sandwich .body li.white:nth-of-type(4) {
    border-bottom-left-radius: 0;
  }

  .sandwich .body li.blue {
    width: 13.22vw;
    height: 9.63vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background-image: url('../img/home/blue-cloud.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 2vw;
  }

  .sandwich .body li.blue h3 {
    line-height: 1;
  }

  .sandwich .body li:nth-child(1) {
    position: absolute;
    right: 0;
    top: 7vw;
  }

  .sandwich .body li:nth-child(2) {
    position: absolute;
    right: 10vw;
    bottom: -9.375vw;
    transform: translateY(100%);
  }

  .sandwich .body li:nth-child(3) {
    position: absolute;
    right: 53vw;
    bottom: -4.84vw;
    transform: translateY(100%);
  }

  .sandwich .body li:nth-child(4) {
    position: absolute;
    left: 0;
    top: 7vw;
  }

  .sandwich .body li:nth-child(5) {
    position: absolute;
    right: 15vw;
    top: -2vw;
  }

  .sandwich .body li:nth-child(6) {
    position: absolute;
    right: 28.85vw;
    bottom: -4.84vw;
    transform: translateY(100%);
  }

  .sandwich .body li:nth-child(7) {
    position: absolute;
    left: 5.2vw;
    bottom: -1.3vw;
    transform: translateY(100%);
  }

  .sandwich-lines img:nth-child(1) {
    position: absolute;
    width: 16.45vw;
    top: 18vw;
    right: 9vw;
  }

  .sandwich-lines img:nth-child(2) {
    position: absolute;
    width: 8.75vw;
    top: 23vw;
    right: 19vw;
  }

  .sandwich-lines img:nth-child(3) {
    position: absolute;
    width: 16.45vw;
    top: 24vw;
    right: 43vw;
  }

  .sandwich-lines img:nth-child(4) {
    position: absolute;
    width: 26.82vw;
    top: 19vw;
    right: 55vw;
  }
}

@media (max-width: 1023.98px) {
  .sandwich {
    background-color: #80DE66;
    position: relative;
    padding: 32vw 0 36.45vw 0;
  }

  .sandwich .container {
    width: 90%;
  }

  /* Heading */
  .sandwich .heading {
    margin-left: 0;
    margin-right: 5vw;
    position: static;
    width: 94%;
  }

  .sandwich .heading h3 {
    width: 50%;
  }

  .sandwich .heading p {
    margin: 3.33vw 0 4vw 0;
  }

  .sandwich-shape {
    position: absolute;
    top: 16vw;
    left: 0;
  }

  .sandwich-shape img {
    width: 57.33vw;
  }

  /* Body */
  .sandwich .body {
    position: relative;
  }

  .sandwich .main-img img {
    margin: 0 auto;
    width: 100%;
  }

  .sandwich .body ul {
    padding-top: 10vw;
    position: relative;
    margin-top: -2vw;
  }

  .sandwich .body ul::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    border-right: 2px dashed #182E54;
    z-index: 1;
  }

  .sandwich .body ul li {
    padding-left: 2vw;
    border-radius: 3.33vw;
    position: relative;
    z-index: 2;
  }

  .sandwich .body ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(75%);
    width: 6.65vw;
    height: 6.65vw;
    background-image: url('../img/icons/chevron-bottom-blue-circled.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.555);
    border-radius: 50%;
  }

  .sandwich .body ul li:not(:last-child) {
    margin-bottom: 10.33vw;
  }

  .sandwich .body ul li.white {
    background-color: white;
    border: 2px dashed #182E54;
    color: #182E54;
  }

  .sandwich .body ul li.blue {
    background-color: #182E54;
    color: white;
  }

  .sandwich .body ul li>div {
    height: 18.93vw;
    display: flex;
    align-items: center;
  }

  .sandwich .body ul li>div>div {
    text-align: center;
    flex: 0 0 27vw;
  }

  .sandwich .body ul h3 {
    line-height: 1;
  }

  .sandwich .body ul li>div>p {
    line-height: 1;
  }
}

/* #Reviews
================================================== */
.reviews {
  background-color: #F8D959;
  position: relative;
  padding: 0 0 14vw 0;
}

.reviews .container {
  width: 48%;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 1.8vw;
}

.reviews .slider {
  position: relative;
  margin-bottom: 2.34vw;
}

.reviews .swiper-arrows img {
  width: 2vw;
}

.reviews .prev,
.reviews .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.reviews .prev {
  right: 0;
}

.reviews .next {
  left: 0;
}

.reviews .swiper {
  margin: 0 auto;
  width: 37vw;
  text-align: center;
}

.reviews .swiper-slide {
  position: relative;
  line-height: 1.5;
}

.reviews .swiper-slide img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6.35vw;
  z-index: -1;
}

.reviews .swiper-slide p:first-child {
  margin-bottom: 1vw;
}

.reviews .img-1 {
  position: absolute;
  top: -17vw;
  left: 0;
  width: 100%;
}

.reviews .img-1 img {
  width: 100%;
}

.reviews .img-2 {
  position: absolute;
  bottom: 10vw;
  right: 0;
}

.reviews .img-2 img {
  width: 20vw;
}

.reviews .img-3 {
  position: absolute;
  bottom: 4vw;
  left: 6.25vw;
  z-index: 10;
}

.reviews .img-3 img {
  width: 16.66vw;
}

@media (max-width: 1023.98px) {
  .reviews .swiper-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10vw;
  }

  .reviews .swiper-arrows img {
    width: 11.73vw;
  }

  .reviews .prev,
  .reviews .next {
    position: static;
    transform: none;
  }

  .reviews .prev {
    margin-left: 2.66vw;
  }

  .reviews {
    padding: 38.66vw 0 45vw 0;
  }

  .reviews .container {
    width: 88%;
  }

  .reviews h2 {
    text-align: center;
    margin-bottom: 6vw;
  }

  .reviews .slider {
    margin-bottom: 8vw;
  }

  .reviews .swiper {
    width: 100%;
  }

  .reviews .swiper-slide {
    position: relative;
    line-height: 1.35;
  }

  .reviews .swiper-slide img {
    bottom: 10.5vw;
    width: 16vw;
  }

  .reviews .swiper-slide p:first-child {
    margin-bottom: 2vw;
  }

  .reviews .img-1 {
    top: -20vw;
  }

  .reviews .img-2 {
    bottom: auto;
    top: 3vw;
  }

  .reviews .img-2 img {
    width: 33.33vw;
  }

  .reviews .img-3 {
    bottom: 10vw;
    left: 5.33vw;
  }

  .reviews .img-3 img {
    width: 35vw;
  }
}

/* #Steps
================================================== */
.steps {
  background-color: #55CEE2;
  position: relative;
  padding: 3.38vw 8.33vw 12.5vw 0;
}

.steps .container {
  display: flex;
  justify-content: space-between;
}

.steps .heading {
  flex: 0 0 26.8vw;
  margin-left: 14.375vw;
  position: relative;
}

.steps .heading p {
  margin: 1vw 0 1.5vw 0;
}

.steps-shape {
  position: absolute;
  top: -6.5vw;
  left: -5vw;
}

.steps-shape img {
  width: 13.85vw;
}

.steps .slider {
  flex-grow: 1;
  min-height: 0;
  max-height: 100%;
  min-width: 0;
  max-width: 100%;
  padding-top: 3.9vw;
  position: relative;
}

.steps .slider::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 5.5vw;
  width: 100%;
  height: 1px;
  border-top: 2px dashed #182E54;
}

.steps .swiper {
  position: static;
}

.steps .swiper-arrows {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

.steps .swiper-arrows img {
  width: 2vw;
}

.steps .prev,
.steps .next {
  cursor: pointer;
}

.steps .prev {
  margin-left: .78vw;
}

.steps .swiper-slide {
  padding-left: 1.5vw;
}

.steps .swiper-slide .img img {
  width: 100%;
  height: 11.56vw;
  object-fit: cover;
  object-position: center;
  border-radius: .5vw;
  margin-bottom: .78vw;
}

.steps .swiper-slide .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.steps .swiper-slide h3 {
  margin: .25vw 0 .78vw 0;
  line-height: 1;
  background-color: #55CEE2;
  width: auto;
  padding-left: .5vw;
}

.steps .shape-3 {
  position: absolute;
  bottom: -5vw;
  right: 0;
  z-index: 10;
}

.steps .shape-3 img {
  width: 13.33vw;
}

@media (max-width: 1023.98px) {
  .steps {
    background-color: #55CEE2;
    position: relative;
    padding: 33.33vw 0 27vw 0;
  }

  .steps .container {
    display: block;
    padding-right: 10.66vw;
  }

  .steps .heading {
    margin-left: 6vw;
    position: static;
  }

  .steps .heading p {
    margin: 3.33vw 0 4vw 0;
  }

  .steps-shape {
    position: absolute;
    top: 0;
    left: 0;
  }

  .steps-shape img {
    width: 57.33vw;
  }

  .steps .slider {
    padding-top: 0;
    position: relative;
    margin-top: 12vw;
  }

  .steps .slider::after {
    bottom: 43.5vw;
  }

  .steps .swiper {
    position: static;
    justify-content: center;
  }

  .steps .swiper-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    margin-top: 6vw;
    padding-left: 10.66vw;
  }

  .steps .swiper-arrows img {
    width: 11.73vw;
  }

  .steps .prev {
    margin-left: 2.66vw;
  }

  .steps .swiper-slide {
    padding-left: 6.8vw;
  }

  .steps .swiper-slide .img img {
    height: 45vw;
    border-radius: 1.33vw;
    margin-bottom: 3.33vw;
  }

  .steps .swiper-slide h3 {
    margin: 1vw 0;
    padding-left: 1vw;
  }

  .steps .shape-3 {
    bottom: -51vw;
  }

  .steps .shape-3 img {
    width: 41.33vw;
  }
}

/* #Partners
================================================== */
.partners {
  background-color: #80DE66;
  position: relative;
  padding: 0 0 15.1vw 0;
}

.partners .container {
  width: 75%;
}

.partners h2 {
  text-align: center;
  margin-bottom: 4.16vw;
}

.partners .slider {
  position: relative;
  margin-bottom: 4.16vw;
}

.partners .swiper-arrows img {
  width: 2vw;
}

.partners .prev,
.partners .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.partners .prev {
  right: 0;
}

.partners .next {
  left: 0;
}

.partners .swiper-wrap {
  width: 63vw;
  margin: 0 auto;
}

.partners .swiper {
  margin: -1vw -.78vw;
}

.partners .swiper-slide {
  padding: 1vw .78vw;
}

.partners .swiper-slide>div {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10.4vw;
  border-radius: .5vw;
}

.partners .swiper-slide img {
  width: 94%;
}

@media (max-width: 1023.98px) {
  .partners {
    padding: 58.26vw 0 34.66vw 0;
  }

  .partners .container {
    width: 87%;
  }

  .partners h2 {
    margin-bottom: 10vw;
  }

  .partners .slider {
    position: relative;
    margin-bottom: 9vw;
  }

  .partners .swiper-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10vw;
  }

  .partners .swiper-arrows img {
    width: 11.73vw;
  }

  .partners .prev,
  .partners .next {
    position: static;
    transform: none;
  }

  .partners .prev {
    margin-left: 2.66vw;
  }

  .partners .swiper-wrap {
    width: 100%;
    margin: 0 auto;
  }

  .partners .swiper {
    margin: -1.66vw -2.53vw;
  }

  .partners .swiper-slide {
    padding: 1.66vw 2.53vw;
  }

  .partners .swiper-slide>div {
    height: 26.66vw;
    border-radius: 1.33vw;
  }
}

/* #Chefs
================================================== */
.chefs {
  background-color: #F8D959;
  position: relative;
  padding: 0 0 10vw 0;
  text-align: center;
}

.chefs .container {
  width: 83%;
}

.chefs .heading {
  margin: 0 auto;
  margin-bottom: 5.2vw;
  width: 28vw;
}

.chefs h2 {
  margin-bottom: 1vw;
}

.chefs ul {
  display: flex;
  flex-wrap: wrap;
  margin: -1.77vw;
}

.chefs ul li {
  padding: 1.77vw;
  flex: 0 0 50%;
}

.chefs .shape-1 {
  position: absolute;
  left: 0;
  bottom: -9.11vw;
  width: 100%;
  z-index: 10;
}

.chefs .shape-1 img {
  width: 100%;
}

.chefs .video>img {
  height: 22.55vw;
  border-radius: 0;
}

@media (max-width: 1023.98px) {
  .chefs {
    padding: 6vw 0 26.66vw 0;
  }

  .chefs .container {
    width: 100%;
  }

  .chefs .heading {
    margin: 0 auto;
    margin-bottom: 8vw;
    width: 88%;
  }

  .chefs h2 {
    margin-bottom: 1vw;
  }

  .chefs ul {
    display: block;
    margin: 0;
  }

  .chefs ul li {
    padding: 0;
  }

  .chefs ul li:not(:last-child) {
    margin-bottom: 6.65vw;
  }

  .chefs .shape-1 {
    bottom: -9.11vw;
  }

  .chefs .video>img {
    height: 64vw;
    border-radius: 0;
  }
}

/* #Collaboration
================================================== */
.collaboration {
  position: relative;
}

.collaboration-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.collaboration-top img {
  width: 100%;
}

.collaboration .bg {
  position: relative;
}

.collaboration .bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.7), transparent);
}

.collaboration .bg img {
  width: 100%;
  height: 58.54vw;
  object-fit: cover;
  object-position: center;
}

.collaboration .container {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  color: white;
  width: 100%;
  padding-top: 13vw;
  padding-right: 7.3vw;
}

.collaboration .container {
  display: flex;
  justify-content: space-between;
}

.collaboration .heading {
  flex: 0 0 26.8vw;
  margin-left: 30vw;
  position: relative;
}

.collaboration .heading h3 {
  line-height: 1.2;
  margin: .25vw 0;
}

.collaboration .heading .btn {
  margin-top: 2.34vw;
}

.collaboration .slider {
  flex-grow: 1;
  min-height: 0;
  max-height: 100%;
  min-width: 0;
  max-width: 100%;
  padding-top: 3.9vw;
  position: relative;
  margin-top: 10.4vw;
}

.collaboration .swiper {
  position: static;
}

.collaboration .swiper-arrows {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

.collaboration .swiper-arrows img {
  width: 2vw;
}

.collaboration .prev,
.collaboration .next {
  cursor: pointer;
}

.collaboration .prev {
  margin-left: .78vw;
}

.collaboration .swiper-slide {
  padding-left: .78vw;
}

.post-card {
  position: relative;
  border-radius: .5vw;
  overflow: hidden;
}

.post-card .text {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: .78vw 1.3vw;
  z-index: 2;
}

.post-card .text>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .7vw;
}

.post-card .img {
  position: relative;
}

.post-card .img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: linear-gradient(to top, white, transparent);
}

.post-card .img img {
  width: 100%;
  height: 23.8vw;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1023.98px) {
  .collaboration .bg::after {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }

  .collaboration .bg img {
    height: 306vw;
  }

  .collaboration .container {
    padding-top: 93.33vw;
    padding-right: 5.33vw;
  }

  .collaboration .container {
    display: block;
  }

  .collaboration .heading {
    margin-left: 6.65vw;
    padding-right: 5.33vw;
  }

  .collaboration .heading h3 {
    margin: 2vw 0 4vw 0;
  }

  .collaboration .heading .btn {
    margin-top: 5vw;
  }

  .collaboration .slider {
    padding-top: 0;
    margin-top: 13.33vw;
  }

  .collaboration .swiper-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    padding-left: 5.33vw;
    margin-top: 6.65vw;
  }

  .collaboration .swiper-arrows img {
    width: 11.73vw;
  }

  .collaboration .prev {
    margin-left: 2.66vw;
  }

  .collaboration .swiper-slide {
    padding-left: 3.33vw;
  }

  .post-card {
    border-radius: 1.33vw;
  }

  .post-card .text {
    padding: 2vw 3.33vw;
  }

  .post-card .text>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .7vw;
  }

  .post-card .img {
    position: relative;
  }

  .post-card .img img {
    height: 90vw;
  }
}

/* #Text Banner
================================================== */
.text-banner {
  background-color: #E1F6F9;
  padding: 1.8vw 2vw 1.3vw 1.5vw;
}

.text-banner .container {
  display: flex;
  text-align: center;
}

.text-banner .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.text-banner p {
  margin-bottom: 1.5vw;
}

.text-banner .img-1 img,
.text-banner .img-2 img {
  width: 18.22vw;
}

.text-banner .img-2 {
  margin-top: auto;
}

.text-banner .text {
  flex-grow: 1;
  padding-top: 2vw;
  padding-bottom: 1.5vw;
}

@media (max-width: 1023.98px) {
  .text-banner {
    padding: 8vw 6.65vw 6.65vw 6.65vw;
  }

  .text-banner .container {
    display: block;
  }

  .text-banner .text {
    padding: 10.33vw 2vw 6vw 2vw;
  }

  .text-banner p {
    margin-bottom: 3.33vw;
  }

  .text-banner .img-1 img,
  .text-banner .img-2 img {
    width: 58.66vw;
  }

  .text-banner .img-2 {
    margin-top: 0;
  }

  .text-banner .img-2 img {
    margin-right: auto;
  }
}

/* #Footer
================================================== */
.footer {
  background-color: #182E54;
  color: white;
  padding: 2vw 0 1.3vw 0;
}

.footer .container {
  width: 82%;
}

/* Top */
.footer-top {
  /* padding-bottom: 4.6vw; */
  display: flex;
  position: relative;
}
.edited{
  font-size: 1.2vw;
}
.footer-info {
  margin-left: 7.8vw;
}

.footer-logo img {
  width: 8.33vw;
}

.footer .social {
  margin: 1vw 0 1.8vw 0;
}

.footer .contact li:not(:last-child) {
  margin-bottom: .78vw;
}

.footer-img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-img img {
  width: 10.9vw;
}

.footer-links {
  margin-left: auto;
  display: flex;
}

.footer-links ul:not(:last-child) {
  margin-left: 6.25vw;
}

.footer-links li:not(:last-child) {
  margin-bottom: 1vw;
  line-height: 1;
}

.footer-form form {
  width: 17.55vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid white;
  border-radius: 500px;
  padding: 5px;
  margin: .78vw 0 2.6vw 0;
}

.footer-form form a img {
  width: 1.7vw;
}

.footer-form input {
  flex-grow: 1;
  background-color: transparent;
  border: none;
  color: white;
  padding-right: .78vw;
}

.footer-form input::placeholder {
  color: white;
}

/* Bottom */
.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media (max-width: 1023.98px) {
  .footer {
    padding: 9.33vw 0 5.33vw 0;
  }

  .footer .container {
    width: 88%;
  }

  /* Top */
  .footer-top {
    padding-bottom: 6vw;
    flex-direction: column;
  }

  .footer-info {
    margin-left: 0;
  }

  .footer-logo img {
    width: 30.66vw;
    margin: 0 auto;
    margin-bottom: 4vw;
  }

  .footer .social {
    margin: 0;
    padding-bottom: 10.66vw;
    border-bottom: 1px solid white;
  }

  .footer .social ul {
    justify-content: center;
  }

  .footer .contact {
    border-bottom: 1px solid white;
    padding: 4vw 0 5.33vw 0;
  }

  .footer .contact li:not(:last-child) {
    margin-bottom: 2vw;
  }

  .footer-img {
    position: static;
    border-bottom: 1px solid white;
    padding: 5.33vw 0;
  }

  .footer-img img {
    width: 52.4vw;
    margin: 0 auto;
  }

  .footer-links {
    padding-top: 5.33vw;
    padding-bottom: 2vw;
    display: block;
    border-bottom: 1px solid white;
    width: 100%;
  }

  .footer-links ul:not(:last-child) {
    margin-left: 0;
  }

  .footer-links ul {
    /* display: flex;
    flex-wrap: wrap; */
  }

  .footer-links li {
    flex: 0 0 50%;
  }

  .footer-links li:not(:last-child),
  .footer-links li:last-child {
    margin-bottom: 3.33vw;
    line-height: 1;
  }

  .footer-form {
    padding-top: 5.33vw;
    display: flex;
    flex-direction: column;
  }

  .footer-form form {
    width: 100%;
    margin: 2.66vw 0 7vw 0;
  }

  .footer-form form a img {
    width: 7.73vw;
  }

  .footer-form input {
    flex-grow: 1;
    background-color: transparent;
    border: none;
    color: white;
    padding-right: .78vw;
  }

  .footer-form input::placeholder {
    color: white;
  }

  .footer-form>a {
    margin: 0 auto;
  }

  /* Bottom */
  .footer-bottom {
    display: block;
    text-align: center;
  }

  .footer-bottom a {
    display: block;
  }

  .footer-bottom>*:not(:last-child) {
    margin-bottom: 2.66vw;
  }
}

/* #Landing Page
================================================== */
.home .chefs {
  background-color: #80DE66;
}

@media (max-width: 1023.98px) {
  .home .banner {
    /* padding-top: 50.8vw; */
    padding-top: 68.8vw;
  }
}

/* #Why
================================================== */
.why {
  position: relative;
  background-color: #F8D959;
  padding: 1.8vw 0 16.45vw 0;
}

.why .container {
  width: 86%;
  display: flex;
  justify-content: space-between;
}

.why .shape {
  position: absolute;
  bottom: -10.93vw;
  right: 0;
  z-index: 10;
}

.why .shape img {
  width: 13.33vw;
}

/* Form */
.why .form {
  flex: 0 0 35.15vw;
}

.why .form>img {
  width: 100%;
  border-radius: .5vw;
  margin-bottom: .94vw;
}

.why .form ul {
  margin-bottom: 2vw;
}

.why .form ul li {
  background-color: #182E54;
  border-radius: 1.3vw;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: .5vw 1.5vw 1.2vw 1.5vw;
}

.why .form ul li:not(:last-child) {
  margin-bottom: .94vw;
}

.why .form ul .img {
  flex: 0 0 7vw;
}

.why .form ul .img img {
  width: 100%;
}

/* Imgs */
.why .imgs {
  flex: 0 0 40.78vw;
  text-align: center;
  color: #182E54;
}

.why h2 {
  margin-bottom: 2.4vw;
}

.why .imgs ul {
  display: flex;
  flex-wrap: wrap;
}

.why .imgs ul li {
  flex: 0 0 50%;
  padding: 0 3vw;
  line-height: 1.3;
  position: relative;
  padding-bottom: 2.34vw;
  padding-top: 1.5vw;
}

.why .imgs ul li:nth-child(1)::after,
.why .imgs ul li:nth-child(3)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  border-right: 2px dashed #182E54;
}

.why .imgs ul li:nth-child(2)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 1px;
  border-bottom: 2px dashed #182E54;
}

.why .imgs img {
  margin: 0 auto;
  width: 8.43vw;
  margin-bottom: .4vw;
}

@media (max-width: 1023.98px) {
  .why {
    padding: 3.33vw 0 33.33vw 0;
  }

  .why .container {
    width: 88%;
    display: block;
  }

  .why .shape {
    bottom: -32vw;
  }

  .why .shape img {
    width: 41.33vw;
  }

  /* Form */
  .why .form {
    margin-bottom: 20vw;
  }

  .why .form>img {
    border-radius: 1.33vw;
    margin-bottom: 3.33vw;
  }

  .why .form ul {
    margin-bottom: 6.65vw;
  }

  .why .form ul li {
    border-radius: 3.33vw;
    padding: 3.33vw;
    align-items: center;
  }

  .why .form ul li:not(:last-child) {
    margin-bottom: .94vw;
  }

  .why .form ul .img {
    flex: 0 0 27.73vw;
    margin-right: 2vw;
  }

  /* Imgs */
  .why h2 {
    margin-bottom: 1.33vw;
  }

  .why .imgs ul li {
    padding: 0 6vw;
    line-height: 1.3;
    position: relative;
    padding-bottom: 3.33vw;
    padding-top: 5.33vw;
  }

  .why .imgs ul li:nth-child(1)::after,
  .why .imgs ul li:nth-child(3)::after {
    top: 52%;
    height: 75%;
  }

  .why .imgs img {
    width: 26.66vw;
    margin-bottom: 1vw;
  }
}

/* #Sandwich Bar
================================================== */
.sandwich-bar {
  width: 24.8vw;
  position: relative;
  text-align: center;
}

.sandwich-bar .sandwich-bg {
  position: relative;
  overflow: hidden;
}

.sandwich-bar .sandwich-bg img {
  width: 24.8vw;
  position: relative;
  z-index: 1;
}

.sandwich-bar .sandwich-fill {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #FFD137;
}

.sandwich-bar .sandwich-handle {
  position: absolute;
  top: 0;
  z-index: 10;
  transform: translateX(50%) translateY(-20%);
  width: 3.5vw;
}

.sandwich-bar .sandwich-handle img {
  width: 3.5vw;
}

.sandwich-bar .sandwich-handle p {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  color: black;
  line-height: 1;
}

@media (max-width: 1023.98px) {
  .sandwich-bar {
    width: 82.4vw;
  }

  .sandwich-bar .sandwich-bg img {
    width: 82.4vw;
  }

  .sandwich-bar .sandwich-handle {
    width: 18.26vw;
    transform: translateX(50%) translateY(-45%);
  }

  .sandwich-bar .sandwich-handle img {
    width: 18.26vw;
  }
}

/* #Landing Page Sandwich Bar
================================================== */
.home .sandwich-bar {
  position: absolute;
  top: 4.4vw;
  left: 12.18vw;
}

@media (max-width: 1023.98px) {
  .home .sandwich-bar {
    top: 31vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* #Magazine
================================================== */
.magazine {
  position: relative;
  padding: 2vw 0 7.3vw 0;
}

.magazine .container {
  width: 79%;
}

.magazine h2 {
  position: relative;
}

.magazine h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6vw;
  height: 1px;
  border-bottom: 4px dashed #F69A20;
}

/* Heading */
.magazine .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2vw;
}

/* Body */
.magazine .body ul {
  display: flex;
  flex-wrap: wrap;
  margin: -2vw -2.6vw;
}

.magazine .body ul li {
  flex: 0 0 33.33333%;
  padding: 2vw 2.6vw;
}

.magazine .body ul li:nth-child(1) .post-card,
.magazine .body ul li:nth-child(4) .post-card,
.magazine .body ul li:nth-child(7) .post-card,
.magazine .body ul li:nth-child(10) .post-card,
.magazine .body ul li:nth-child(13) .post-card,
.magazine .body ul li:nth-child(16) .post-card {
  border: 5px solid #FFCE00;
}

.magazine .body ul li:nth-child(2) .post-card,
.magazine .body ul li:nth-child(5) .post-card,
.magazine .body ul li:nth-child(8) .post-card,
.magazine .body ul li:nth-child(11) .post-card,
.magazine .body ul li:nth-child(14) .post-card,
.magazine .body ul li:nth-child(17) .post-card {
  border: 5px solid #5FBB46;
}

.magazine .body ul li:nth-child(3) .post-card,
.magazine .body ul li:nth-child(6) .post-card,
.magazine .body ul li:nth-child(9) .post-card,
.magazine .body ul li:nth-child(12) .post-card,
.magazine .body ul li:nth-child(15) .post-card,
.magazine .body ul li:nth-child(18) .post-card {
  border: 5px solid #38C2D9;
}

@media (max-width: 1023.98px) {
  .magazine {
    padding: 0 0 13.33vw 0;
  }

  .magazine .container {
    width: 90%;
  }

  .magazine h2::after {
    width: 16vw;
  }

  /* Heading */
  .magazine .heading {
    margin-bottom: 9.33vw;
  }

  /* Body */
  .magazine .body ul {
    display: block;
    margin: 0;
    margin-bottom: 5.33vw;
  }

  .magazine .body ul li {
    padding: 0;
  }

  .magazine .body ul li:not(:last-child) {
    margin-bottom: 8vw;
  }

  .magazine .action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .magazine .action .btn {
    margin-top: 6vw;
  }
}

/* #Post Slider
================================================== */
.post-slider {
  margin-bottom: 5.2vw;
}

.post-slider .container {
  width: 86%;
}

.post-slider h2 {
  text-align: center;
  margin-bottom: 3.125vw;
}

.post-slider .swiper {
  width: 78vw;
  margin: 0 auto;
  position: static;
}

.post-slider .swiper .swiper-slide {
  padding: 0 1.5vw;
}

.post-slider .slider {
  position: relative;
}

.post-slider .swiper-arrows img {
  width: 2vw;
}

.post-slider .prev,
.post-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.post-slider .prev {
  right: 0;
}

.post-slider .next {
  left: 0;
}

.post-slider .swiper-slide:nth-child(1) .post-card,
.post-slider .swiper-slide:nth-child(4) .post-card,
.post-slider .swiper-slide:nth-child(7) .post-card,
.post-slider .swiper-slide:nth-child(10) .post-card,
.post-slider .swiper-slide:nth-child(13) .post-card,
.post-slider .swiper-slide:nth-child(16) .post-card {
  border: 5px solid #FFCE00;
}

.post-slider .swiper-slide:nth-child(2) .post-card,
.post-slider .swiper-slide:nth-child(5) .post-card,
.post-slider .swiper-slide:nth-child(8) .post-card,
.post-slider .swiper-slide:nth-child(11) .post-card,
.post-slider .swiper-slide:nth-child(14) .post-card,
.post-slider .swiper-slide:nth-child(17) .post-card {
  border: 5px solid #5FBB46;
}

.post-slider .swiper-slide:nth-child(3) .post-card,
.post-slider .swiper-slide:nth-child(6) .post-card,
.post-slider .swiper-slide:nth-child(9) .post-card,
.post-slider .swiper-slide:nth-child(12) .post-card,
.post-slider .swiper-slide:nth-child(15) .post-card,
.post-slider .swiper-slide:nth-child(18) .post-card {
  border: 5px solid #38C2D9;
}

@media (max-width: 1023.98px) {
  .post-slider {
    margin-bottom: 17.33vw;
  }

  .post-slider .container {
    width: 100%;
  }

  .post-slider h2 {
    margin-bottom: 8vw;
  }

  .post-slider .swiper {
    width: 100%;
    padding-right: 2.66vw;
  }

  .post-slider .swiper .swiper-slide {
    padding: 0 2.66vw;
  }

  .post-slider .swiper-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5.33vw;
    margin-top: 8.66vw;
  }

  .post-slider .swiper-arrows img {
    width: 11.73vw;
  }

  .post-slider .prev,
  .post-slider .next {
    position: static;
    transform: none;
  }

  .post-slider .prev {
    margin-left: 2.66vw;
  }
}

/* #Article
================================================== */
.article {
  position: relative;
  margin-bottom: 6.77vw;
}

.article .container {
  width: 56%;
}

/* Heading */
.article .heading {
  padding-bottom: 2.6vw;
  margin-bottom: 3.125vw;
  border-bottom: 1px solid #5FBB46;
  text-align: center;
}

.article .heading h1 {
  margin-bottom: 1vw;
}

.article .heading h3 {
  width: 72%;
  margin: 0 auto;
}

/* Body */
.article .body h3 {
  font-size: 1.25vw;
  font-weight: 400;
  margin-bottom: 1.3vw;
  line-height: 1;
}

.article .body p {
  font-size: 1.04vw;
  margin-bottom: 2.34vw;
}

.article .body .video>img {
  border-radius: 0;
  margin-bottom: .35vw;
  height: 30.5vw;
}

.article .body .video>p {
  font-size: .78vw;
}

@media (max-width: 1023.98px) {
  .article {
    margin-bottom: 6.77vw;
  }

  .article .container {
    width: 100%;
  }

  /* Heading */
  .article .heading {
    padding-bottom: 6.65vw;
    margin: 0 auto;
    margin-bottom: 6.65vw;
    width: 90%;
  }

  .article .heading h1 {
    margin-top: 3.33vw;
    margin-bottom: 2vw;
    line-height: 1;
  }

  .article .heading h3 {
    width: 100%;
    margin: 0 auto;
  }

  /* Body */
  .article .body h3 {
    font-size: 5.33vw;
    margin-bottom: 2.66vw;
  }

  .article .body p {
    font-size: 4vw;
    margin-bottom: 9.33vw;
  }

  .article .body .video>img {
    margin-bottom: 2vw;
    height: 63.2vw;
  }

  .article .body .video>p {
    font-size: 4vw;
    padding: 0 5.33vw;
  }

  .article .body>*:not(.video) {
    padding: 0 5.33vw;
  }
}

/* #Error
================================================== */
.error {
  position: relative;
}

.error .img img {
  width: 100%;
}

.error .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  line-height: 1.2;
  width: 90%;
}

.error .text>img {
  margin: 0 auto;
  width: 10.4vw;
  margin-bottom: 3.125vw;
}

.error .text .btn {
  margin-top: 3.125vw;
}

@media (max-width: 1023.98px) {
  .error .text>img {
    margin: 0 auto;
    width: 34.66vw;
    margin-bottom: 6.65vw;
  }

  .error .text .btn {
    margin-top: 6.65vw;
  }
}

/* #Terms
================================================== */
.terms {
  padding: 9.375vw 0 4.16vw 0;
}

.terms .container {
  width: 67%;
}

.terms h1 {
  text-align: center;
  margin-bottom: 2.34vw;
}

@media (max-width: 1023.98px) {
  .terms {
    padding: 26.66vw 0 16vw 0;
  }

  .terms .container {
    width: 90%;
  }

  .terms h1 {
    margin: 0 auto;
    width: 75%;
    margin-bottom: 6vw;
    line-height: 1.1;
  }
}

/* #Media Boxes
================================================== */
.media-boxes {
  background-color: #F8D959;
  position: relative;
  padding: 3.65vw 0 12.5vw 0;
}

.media-boxes .container {
  width: 82%;
}

.media-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.media-box:not(:last-child) {
  margin-bottom: 11vw;
}

.media-box:nth-child(odd) {
  flex-direction: row-reverse;
}

.media-box .text {
  flex: 0 0 32.5vw;
}

.media-box .img {
  flex: 0 0 40.83vw;
  position: relative;
}

.media-box .shape-1 {
  position: absolute;
  top: -2.6vw;
  right: -6.65vw;
}

.media-box .shape-1 img {
  width: 17vw;
}

.media-box .shape-2 {
  position: absolute;
  left: -6vw;
  bottom: -1.5vw;
}

.media-box .shape-2 img {
  width: 13.38vw;
}

.media-box .text {
  position: relative;
}

.media-box p {
  margin-bottom: .5vw;
}

.media-box .media-box-shape {
  position: absolute;
  top: -6.5vw;
  left: -5vw;
}

.media-box .media-box-shape img {
  width: 13.85vw;
}

.media-box .text ul {
  display: flex;
  text-align: center;
  margin: .78vw 0 2.5vw 0;
}

.media-box .text ul li {
  flex-grow: 1;
  max-width: 10vw;
}

.media-box .text ul li:not(:last-child) {
  margin-left: 2.34vw;
}

.media-box .text ul img {
  margin: 0 auto;
  width: 6.77vw;
}

.media-box .shape-3 {
  position: absolute;
  bottom: -10.93vw;
  right: 0;
  z-index: 10;
}

.media-box .shape-3 img {
  width: 13.33vw;
}

/* Heading */
.media-boxes .heading {
  text-align: center;
  margin: 0 auto;
  width: 35.52vw;
  margin-bottom: 7.8vw;
}

.media-boxes .heading h2 {
  margin-bottom: .5vw;
}

/* Icons */
.media-boxes .icons {
  margin-bottom: 11.45vw;
  text-align: center;
}

.media-boxes .icons ul {
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 2.34vw 0 0 0;
}

.media-boxes .icons ul li {
  flex-grow: 1;
  max-width: 14vw;
}

.media-boxes .icons ul li:not(:last-child) {
  margin-left: 2.34vw;
}

.media-boxes .icons ul img {
  margin: 0 auto;
  width: 6.77vw;
}

/* H2 */
.media-boxes .container>h2 {
  text-align: center;
  margin-bottom: 9.68vw;
}

/* Img 1 */
.media-boxes .img-1 {
  position: absolute;
  top: 0;
  right: 0;
}

.media-boxes .img-1 img {
  width: 20vw;
}

/* Img 2 */
.media-boxes .img-2 {
  position: absolute;
  top: 35vw;
  left: 0;
  z-index: 10;
}

.media-boxes .img-2 img {
  width: 13.33vw;
  transform: scaleX(-1);
}

@media (max-width: 1023.98px) {
  .media-boxes {
    padding: 0 0 47.6vw 0;
  }

  .media-boxes .container {
    width: 90%;
  }

  .media-box {
    display: block;
  }

  .media-box:not(:last-child) {
    margin-bottom: 23.33vw;
  }

  .media-box .text {
    margin-bottom: 22.66vw;
  }

  .media-box .shape-1 {
    top: -13.33vw;
    right: -3vw;
  }

  .media-box .shape-1 img {
    width: 36vw;
  }

  .media-box .shape-2 {
    left: -3vw;
    bottom: -12vw;
  }

  .media-box .shape-2 img {
    width: 34.66vw;
  }

  .media-box .text {
    width: 100%;
  }

  .media-box .text p {
    margin-bottom: 2vw;
  }

  .media-box .media-box-shape {
    position: static;
    top: 16vw;
    left: 0;
  }

  .media-box .media-box-shape img {
    width: 57.33vw;
    margin-right: auto;
    margin-bottom: -6vw;
  }

  .media-box .text ul {
    margin: 4vw 0 6.65vw 0;
    justify-content: space-between;
  }

  .media-box .text ul li {
    flex-grow: 1;
    flex: 0 0 30%;
    max-width: 100%;
  }

  .media-box .text ul li:not(:last-child) {
    margin-left: 0;
  }

  .media-box .text ul img {
    width: 21.33vw;
  }

  .media-box .shape-3 {
    bottom: -32vw;
  }

  .media-box .shape-3 img {
    width: 41.33vw;
  }

  /* Heading */
  .media-boxes .heading {
    text-align: center;
    width: 90%;
    margin-bottom: 53.33vw;
  }

  .media-boxes .heading h2 {
    margin-bottom: 1vw;
  }

  /* Icons */
  .media-boxes .icons {
    margin-bottom: 13.33vw;
  }

  .media-boxes .icons ul {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.34vw 0 -5.33vw 0;
  }

  .media-boxes .icons ul li {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 2vw;
    margin-bottom: 5.33vw;
  }

  .media-boxes .icons ul li:not(:last-child) {
    margin-left: 0;
  }

  .media-boxes .icons ul img {
    width: 26.66vw;
  }

  /* H2 */
  .media-boxes .container>h2 {
    text-align: center;
    margin-bottom: 9.68vw;
  }

  /* Img 1 */
  .media-boxes .img-1 {
    position: absolute;
    top: 64vw;
    right: 0;
  }

  .media-boxes .img-1 img {
    width: 50vw;
  }

  /* Img 2 */
  .media-boxes .img-2 {
    display: none;
  }
}

/* #Our Story Page
================================================== */
@media (min-width: 1024px) {
  .our-story-page .steps .container:not(:last-of-type) {
    padding-left: 5.88vw;
    padding-right: 4.16vw;
    margin-bottom: 10.4vw;
  }
}

@media (max-width: 1023.98px) {
  .our-story-page .steps {
    padding-top: 0;
  }

  .our-story-page .steps .heading {
    position: relative;
  }

  .our-story-page .steps .container {
    padding-right: 0;
    width: 90%;
  }

  .our-story-page .steps .container:last-child {
    padding-right: 10.66vw;
    width: 100%;
    margin-top: 50.66vw;
  }

  .our-story-page .steps .steps-shape {
    top: -32vw;
  }
}

/* #Thanks
================================================== */
.thanks {
  background-color: #E1F6F9;
  padding: 9vw 3.125vw 3.9vw 3.125vw;
}

.thanks .container {
  display: flex;
  text-align: center;
}

.thanks .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.thanks .img-1,
.thanks .img-2 {
  flex: 0 0 23.28vw;
}

.thanks .img-1 img {
  width: 17vw;
}

.thanks .img-2 img {
  width: 23.28vw;
}

.thanks .img-2 {
  margin-top: auto;
}

.thanks .text {
  flex-grow: 1;
  padding-top: 2vw;
  padding-bottom: 1.5vw;
}

.thanks .social {
  margin-top: .78vw;
  margin-bottom: 2.34vw;
}

.thanks .heading {
  margin-bottom: 3.9vw;
}

@media (max-width: 1023.98px) {
  .thanks {
    padding: 21.73vw 0 10vw 0;
  }

  .thanks .container {
    display: block;
    width: 90%;
  }

  .thanks .text {
    padding: 2.66vw 2vw;
  }

  .thanks .img-1,
  .thanks .img-2 {
    flex: 0 0 100%;
  }

  .thanks .img-1 img {
    width: 40vw;
    margin: 0 auto;
  }

  .thanks .img-2 img {
    width: 60vw;
    margin: 0 auto;
  }

  .thanks .img-2 {
    margin-top: 0;
  }

  .thanks .social {
    margin-top: 4vw;
    margin-bottom: 8vw;
  }

  .thanks .heading {
    margin-bottom: 8vw;
  }
}

/* #Volunteering
================================================== */
.volunteering {
  background-color: #80DE66;
  position: relative;
  padding: 0 0 15vw 0;
}

.volunteering .container {
  width: 79%;
}

.volunteering .heading {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 5.2vw;
  width: 52vw;
}

.volunteering h2 {
  margin-bottom: 1.3vw;
}

.volunteering ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -3.9vw;
}

.volunteering ul li {
  flex: 0 0 36.35vw;
  display: flex;
  margin-bottom: 3.9vw;
}

.volunteering ul li>div:first-child {
  flex: 0 0 8.5vw;
  margin-left: 1.3vw
}

.volunteering ul img {
  width: 100%;
}

@media (max-width: 1023.98px) {
  .volunteering {
    padding: 0 0 37.33vw 0;
  }

  .volunteering .container {
    width: 90%;
  }

  .volunteering .heading {
    margin-bottom: 5.33vw;
    width: 100%;
  }

  .volunteering h2 {
    line-height: 1.15;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 1.3vw;
  }

  .volunteering ul {
    display: block;
    margin-bottom: -3.9vw;
  }

  .volunteering ul li {
    display: block;
    margin-bottom: 3.33vw;
    text-align: center;
  }

  .volunteering ul li>div:first-child {
    margin-left: 0;
  }

  .volunteering ul img {
    width: 28vw;
    margin: 0 auto;
  }
}

/* #Stories
================================================== */
.stories {
  background-color: #55CEE2;
  position: relative;
  padding: 4.16vw 0 6.25vw 0;
}

.stories .media-box {
  margin: 0 auto;
  width: 79%;
  margin-bottom: 12.5vw;
}

.stories .media-box .img {
  flex: 0 0 36vw;
}

.stories .media-box .video>img {
  height: 22.76vw;
}

.stories-body {
  margin: 0 auto;
  width: 89%;
}

/* Img 2 */
.stories .img-1 {
  position: absolute;
  top: 46.35vw;
  left: 0;
  z-index: 10;
}

.stories .img-1 img {
  width: 13.33vw;
  transform: scaleX(-1);
}

/* Slide */
.stories-body h2 {
  margin-bottom: 6.77vw;
}

.stories .swiper-slide>div {
  background-color: white;
  border: 2px dashed #182E54;
  border-radius: 1vw;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 2.34vw 2vw 1vw 2vw;
  position: relative;
}

.stories .swiper-slide .quottes {
  position: absolute;
  top: -2.34vw;
  right: 2vw;
  width: 4.68vw;
}

.stories .swiper-slide .quottes img {
  width: 4.68vw;
}

.stories .swiper-slide .logo {
  margin: 2.6vw 0 .5vw 0;
  height: 2.6vw;
}

@media (min-width: 1024px) {
  .stories .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .stories .swiper-slide {
    flex: 0 0 25%;
  }

  .stories .swiper {
    margin: -2.6vw -1.3vw;
  }

  .stories .swiper-slide {
    padding: 2.6vw 1.3vw;
  }

  .stories .swiper-slide:nth-child(3) {
    margin-left: 2vw;
  }

  .stories .swiper-arrows {
    display: none;
  }
}

@media (max-width: 1023.98px) {
  .stories {
    padding: 2vw 0 30.66vw 0;
  }

  .stories .media-box {
    margin: 0 auto;
    width: 90%;
    margin-bottom: 42.66vw;
  }

  .stories .media-box .video>img {
    height: 57.33vw;
  }

  .stories-body {
    margin: 0 auto;
    width: 100%;
  }

  /* Img 2 */
  .stories .img-1 {
    display: none;
  }

  /* Slide */
  .stories-body h2 {
    margin-bottom: 10vw;
    padding: 0 20%;
    text-align: center;
    line-height: 1.15;
  }

  .stories .swiper-slide {
    padding: 0 2vw;
    padding-top: 10vw;
  }

  .stories .swiper-slide>div {
    border-radius: 3.33vw;
    padding: 8vw 8vw 6.65vw 6vw;
    position: relative;
  }

  .stories .swiper-slide .quottes {
    position: absolute;
    top: -10vw;
    right: 8vw;
    width: 18.66vw;
  }

  .stories .swiper-slide .quottes img {
    width: 18.66vw;
  }

  .stories .swiper-slide .logo {
    margin: 6vw 0 2vw 0;
    height: 10.33vw;
  }

  .stories .swiper-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6.65vw;
  }

  .stories .swiper-arrows img {
    width: 11.73vw;
  }

  .stories .swiper-arrows .prev {
    margin-left: 2.66vw;
  }
}

/* #Form Elements
================================================== */
.input-primary,
.select-primary {
  height: 3.125vw;
  border-radius: 500px;
  padding: 0 1vw;
  width: 23.64vw;
  background-color: transparent;
  border: 1px solid #182E54;
}

.select-primary {
  appearance: none;
  background-image: url('../img/icons/chevron-down.svg');
  background-repeat: no-repeat;
  background-size: .6vw auto;
  background-position: 1.5vw 50%;
}

@media (max-width: 1023.98px) {

  .input-primary,
  .select-primary {
    height: 11.33vw;
    padding: 0 5.33vw;
    width: 100%;
  }

  .select-primary {
    background-size: 2.66vw auto;
    background-position: 5.33vw 50%;
  }
}

/* #Contact Form
================================================== */
.contact-form {
  padding: 2.6vw 0 3.65vw 0;
  position: relative;
}

.contact-form .container {
  padding: 0 7.8vw;
}

/* Img */
.contact-form .img {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
}

.contact-form .img,
.contact-form .img img {
  width: 38.54vw;
}

/* Text */
.contact-form .heading {
  margin-bottom: 3.125vw;
}

.contact-form form {
  margin-bottom: 1.1vw;
}

.contact-form form>div:not(:last-child) {
  margin-bottom: 1.3vw;
}

@media (max-width: 1023.98px) {
  .contact-form {
    padding: 6vw 0 13.33vw 0;
    position: relative;
  }

  .contact-form .container {
    padding: 0;
    width: 90%;
  }

  /* Img */
  .contact-form .img {
    position: static;
    transform: none;
  }

  .contact-form .img,
  .contact-form .img img {
    width: 81.33vw;
    margin: 0 auto;
  }

  /* Text */
  .contact-form .text {
    margin-top: 4vw;
  }

  .contact-form .heading {
    margin-bottom: 6vw;
  }

  .contact-form form {
    margin-bottom: 6vw;
  }

  .contact-form form>div:not(:last-child) {
    margin-bottom: 3.33vw;
  }
}

/* #Igul Letova Page
================================================== */
.igul-letova-page .chefs {
  background-color: #80DE66;
}

.igul-letova-page .chefs .container:last-of-type {
  margin-top: 7vw;
}

@media (max-width: 1023.98px) {
  .igul-letova-page .chefs .container:last-of-type {
    margin-top: 26.6vw;
  }
}

/* #Igul Letova
================================================== */
.igul-letova {
  position: relative;
  padding: 1.8vw 0 15vw 0;
}

.igul-letova .container {
  width: 85%;
  display: flex;
  justify-content: space-between;
}

/* Text */
.igul-letova .text {
  flex: 0 0 35.677vw;
}

.igul-letova h2 {
  line-height: 1.2;
}

.igul-letova form {
  margin-top: 1vw;
}

.igul-letova form>div {
  margin-bottom: 1.3vw;
}

.igul-letova .credit-card ul {
  display: flex;
  margin-bottom: 1.5vw;
  margin-top: .78vw;
}

.igul-letova .credit-card ul li:not(:last-child) {
  margin-left: 1.8vw
}

.igul-letova .credit-card ul img {
  width: 5.88vw;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.igul-letova .credit-card>div {
  display: flex;
  align-items: center;
}

.igul-letova .credit-card>div .btn {
  margin-right: 1.5vw;
}

/* Imgs */
.igul-letova .imgs .logos img {
  width: 22vw;
  margin: 0 auto;
  margin-bottom: 2vw;
}

.igul-letova .imgs {
  flex: 0 0 39.16vw;
  text-align: center;
  color: #182E54;
}

.igul-letova .imgs ul {
  display: flex;
  flex-wrap: wrap;
}

.igul-letova .imgs ul li {
  flex: 0 0 50%;
  padding: 0 3vw;
  line-height: 1.3;
  position: relative;
  padding-bottom: 2.34vw;
  padding-top: 1.5vw;
}


.igul-letova .imgs ul li:nth-child(1)::after,
.igul-letova .imgs ul li:nth-child(3)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  border-right: 2px dashed #182E54;
}

.igul-letova .imgs ul li:nth-child(2)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 1px;
  border-bottom: 2px dashed #182E54;
}

.igul-letova .imgs ul img {
  margin: 0 auto;
  width: 8.43vw;
  margin-bottom: .4vw;
}

/* Shape */
.igul-letova .shape-3 {
  position: absolute;
  bottom: -10.93vw;
  right: 0;
  z-index: 10;
}

.igul-letova .shape-3 img {
  width: 13.33vw;
}

@media (max-width: 1023.98px) {
  .igul-letova {
    padding: 2vw 0 30vw 0;
  }

  .igul-letova .container {
    width: 90%;
    display: block;
  }

  /* Text */
  .igul-letova .heading {
    text-align: center;
  }

  .igul-letova form {
    margin-top: 4vw;
  }

  .igul-letova form>div {
    margin-bottom: 4vw;
  }

  .igul-letova .credit-card ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3.33vw;
    margin-top: 4vw;
  }

  .igul-letova .credit-card ul li {
    margin-bottom: 4.66vw;
  }

  .igul-letova .credit-card ul li:not(:last-child) {
    margin-left: 8vw;
  }

  .igul-letova .credit-card ul img {
    width: 27.46vw;
  }

  .igul-letova .credit-card>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .igul-letova .credit-card>div .btn {
    margin-right: 0;
    margin-top: 4.66vw;
  }

  .igul-letova .checkbox {
    padding-left: 14vw;
  }

  /* Imgs */
  .igul-letova .imgs {
    margin-top: 13.33vw;
  }

  .igul-letova .imgs .logos img {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 0;
  }

  .igul-letova .imgs ul li {
    padding: 0 6vw;
    line-height: 1.3;
    position: relative;
    padding-bottom: 3.33vw;
    padding-top: 5.33vw;
  }

  .igul-letova .imgs ul li:nth-child(1)::after,
  .igul-letova .imgs ul li:nth-child(3)::after {
    top: 52%;
    height: 75%;
  }

  .igul-letova .imgs ul img {
    width: 26.66vw;
    margin-bottom: 1vw;
  }

  /* Text */

  /* Shape */
  .igul-letova .shape-3 {
    bottom: -32vw;
  }

  .igul-letova .shape-3 img {
    width: 41.33vw;
  }
}

/* #Partners Page
================================================== */
.partners-page .stories .img-1 {
  top: 10.35vw;
}

.partners-page .partners .container:not(:last-of-type) {
  margin-bottom: 8.5vw;
}

.partners-page .stories {
  padding: 4.16vw 0 15.25vw 0;
}

@media (max-width: 1023.98px) {
  .partners-page .partners {
    padding: 6.26vw 0 34.66vw 0;
  }

  .partners-page .partners .container:not(:last-of-type) {
    margin-bottom: 22.6vw;
  }
}

/* #Concept
================================================== */
.concept {
  position: relative;
  background-color: white;
  padding-bottom: 18.2vw;
}

.concept .container {
  width: 74%;
}

.concept .heading {
  text-align: center;
  margin: 0 auto;
  width: 43.75vw;
  margin-bottom: 4.16vw;
}

.concept .heading h2 {
  margin-bottom: 1vw;
}

.concept .scale {
  display: flex;
}

.concept .scale .col {
  flex: 0 0 19.3vw;
}

.concept .scale .col:last-child {
  padding-right: 5.2vw;
}

.concept .scale .img img {
  margin: 0 auto;
  width: 35.5vw;
}

.concept .scale ul li {
  display: flex;
  align-items: center;
  margin-bottom: .4vw;
}

.concept .scale ul img {
  width: 2.18vw;
  margin-left: .3vw;
}

.concept .scale h3 {
  position: relative;
  line-height: 1.2;
  margin-bottom: 1.1vw;
  padding-bottom: .5vw;
}

.concept .scale h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12vw;
  height: 1px;
  border-bottom: 2px dashed #182E54;
}

@media (max-width: 1023.98px) {
  .concept {
    padding-top: 2vw;
    padding-bottom: 35vw;
  }

  .concept .container {
    width: 90%;
  }

  .concept .heading {
    width: 100%;
    margin-bottom: 6.65vw;
  }

  .concept .heading h2 {
    margin-bottom: 2vw;
  }

  .concept .scale {
    display: flex;
    flex-direction: column;
  }

  .concept .scale .col {
    flex: 0 0 19.3vw;
  }

  .concept .scale .col:last-child {
    padding-right: 0;
    margin-top: 8vw;
  }

  .concept .scale .img {
    order: -1;
    margin-bottom: 6.65vw;
  }

  .concept .scale .img img {
    margin: 0 auto;
    width: 100%;
  }

  .concept .scale ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -3.33vw;
  }

  .concept .scale ul li {
    display: flex;
    align-items: center;
    margin-bottom: 3.33vw;
    flex: 0 0 50%;
  }

  .concept .scale ul img {
    width: 9.33vw;
    margin-left: 2vw;
  }

  .concept .scale h3 {
    margin-bottom: 4vw;
    padding-bottom: 3.33vw;

    text-align: center;
  }

  .concept .scale h3::after {
    width: 100%;
  }
}

/* #Programs
================================================== */
.programs {
  position: relative;
  background-color: #F8D959;
  padding: .5vw 0 11.7vw 0;
}

.programs .container {
  width: 74%;
}

.programs .heading {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 5.2vw;
  width: 48vw;
}

.programs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.programs ul li {
  flex: 0 0 30.45vw;
  display: flex;
  align-items: center;
  margin-bottom: 2.6vw;
}

.programs ul li > div:first-child {
  flex: 0 0 9.375vw;
}

.programs ul li img {
  border-radius: 1.3vw;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 7.8vw;
  height: 6.77vw;
  object-fit: cover;
  object-position: center;
}

.programs .shape-1 {
  position: absolute;
  left: 0;
  top: -17vw;
  width: 100%;
  z-index: 10;
}

.programs .shape-1 img {
  width: 100%;
}

@media (max-width: 1023.98px) {
  .programs {
    padding: 6vw 0 33.33vw 0;
  }

  .programs .container {
    width: 85%;
  }

  .programs .heading {
    margin-bottom: 6.65vw;
    width: 100%;
  }

  .programs h2 {
    line-height: 1.1;
    margin: 0 auto;
    margin-bottom: 4vw;
    width: 90%;
  }

  .programs ul {
    display: block;
  }

  .programs ul li {
    display: block;
    margin-bottom: 8vw;
    text-align: center;
  }

  .programs ul li img {
    border-radius: 3.33vw;
    width: 26.66vw;
    height: 23.33vw;
    margin: 0 auto;
    margin-bottom: 2vw;
  }

  .programs .shape-1 {
    top: auto;
    bottom: 5vw;
  }
}

/* #Activity
================================================== */
.activity {
  position: relative;
  background-color: #80DE66;
  padding-bottom: 7.8vw;
}

.activity .container {
  width: 68%;
  position: relative;
}

.activity h2 {
  text-align: center;
  margin-bottom: 3.9vw;
  line-height: 1;
}

.activity .swiper-arrows {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
}

.activity .swiper-arrows img {
  width: 2.86vw;
}

.activity .swiper-arrows .prev {
  margin-left: 1vw;
}

.activity .swiper-arrows .prev,
.activity .swiper-arrows .next {
  cursor: pointer;
}

.activity .swiper-slide img {
  width: 100%;
  height: 38.43vw;
  object-fit: cover;
  object-position: center;
  border-radius: 1vw;
  margin-bottom: .5vw;
}

@media (max-width: 1023.98px) {
  .activity {
    padding-top: 10vw;
    padding-bottom: 22vw;
  }

  .activity .container {
    width: 100%;
  }

  .activity h2 {
    margin-bottom: 11.33vw;
  }

  .activity .swiper-arrows {
    position: static;
  }

  .activity .swiper-arrows img {
    width: 11.73vw;
  }

  .activity .swiper-arrows .prev {
    margin-left: 0;
    position: absolute;
    top: 28.2vw;
    transform: translateY(-50%) translateX(35%);
    right: 0;
    z-index: 20;
  }

  .activity .swiper-arrows .next {
    position: absolute;
    top: 28.2vw;
    transform: translateY(-50%) translateX(-35%);
    left: 0;
    z-index: 20;
  }

  .activity .swiper-slide img {
    height: 56.4vw;
    border-radius: 2.66vw;
    margin-bottom: 2vw;
  }

  .activity .swiper-slide .text {
    padding: 0 4vw;
  }
}

/* #Contact Page
================================================== */
.contact-page {
  padding-top: 6.25vw;
}

@media (max-width: 1023.98px) {
  .contact-page {
    padding-top: 17vw;
  }
}

/* #Contact Info
================================================== */
.contact-info {
  padding: 2.34vw 0 5.2vw 0;
  position: relative;
}

.contact-info .container {
  width: 79%;
}

.contact-info .img {
  margin-top: 4.16vw;
}

.contact-info .img img {
  width: 100%;
  height: 33.22vw;
  object-fit: cover;
  object-position: center;
  border-radius: 1.3vw;
  border: 2px dashed #182E54;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 2.6vw;
}

.contact-info ul {
  display: flex;
  justify-content: center;
}

.contact-info ul li:not(:last-child) {
  margin-left: 5.2vw;
}

.contact-info ul li {
  display: flex;
  white-space: nowrap;
}

.contact-info ul li > div:first-child {
  flex: 0 0 3.125vw;
}

.contact-info ul li > div:first-child img {
  width: 1.8vw;
  height: 1.6vw;
  object-fit: contain;
  object-position: center;
}

.contact-info ul li > div:last-child {
  flex-grow: 1;
}

.contact-info .shape-1 {
  position: absolute;
  top: -13vw;
  left: 0;
  width: 100%;
}

.contact-info .shape-1 img {
  width: 100%;
}

@media (max-width: 1023.98px) {
  .contact-info {
    padding: 5.33vw 0 0 0;
    position: relative;
  }

  .contact-info .container {
    width: 100%;
  }

  .contact-info .img {
    margin-top: 10vw;
  }

  .contact-info .img img {
    height: 111vw;
    border-radius: 0;
    border: 2px solid #182E54;
  }

  .contact-info h2 {
    text-align: center;
    margin-bottom: 8vw;
  }

  .contact-info ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: -9.33vw;
  }

  .contact-info ul li:not(:last-child) {
    margin-left: 0;
  }

  .contact-info ul li {
    display: flex;
    white-space: nowrap;
    flex: 0 0 44vw;
    margin-bottom: 9.33vw;
  }

  .contact-info ul li > div:first-child {
    flex: 0 0 8vw;
  }

  .contact-info ul li > div:first-child img {
    width: 5.73vw;
    height: 5.33vw;
  }

  .contact-info .shape-1 {
    top: -13vw;
  }
}

/* #Donate Page
================================================== */
@media (min-width: 1024px) {
  .donate-page .banner {
    padding-top: 9.11vw;
  }

  .donate-page .banner .img {
    padding-top: 0;
  }

  .donate-page .why .img img {
    width: 100%;
  }

  .donate-page .why .shape-1 {
    position: absolute;
    bottom: 3vw;
    left: 0;
  }

  .donate-page .why .shape-1 img {
    width: 29.27vw;
  }
}

@media (max-width: 1023.98px) {
  .donate-page .why .shape-1 {
    display: none;
  }

  .donate-page .why .container {
    width: 100%;
  }

  .donate-page .why .form {
    padding: 0 5%;
    margin-bottom: 11.33vw;
  }
}

/* #Donate Accordion
================================================== */
.donate-accordion {
  position: relative;
  background-color: #55CEE2;
  padding: 0 0 5.2vw 0;
}

.donate-accordion h2 {
  text-align: center;
  margin-bottom: 3.125vw;
}

.donate-accordion .container {
  width: 84%;
}

.donate-accordion .collapse > div {
  padding-bottom: 2.6vw;
  padding-right: 6.77vw;
}

.donate-accordion .collapse ul li:not(:last-child) {
  margin-bottom: .45vw;
}

.donate-accordion .collapsible:not(:last-child) {
  border-bottom: 1px solid #405880;
}

.donate-accordion .collapse-toggler {
  display: flex;
  align-items: center;
  padding: 1.5vw 0;
}

.donate-accordion .collapse-toggler .simbol {
  margin-left: 1vw;
}

.donate-accordion .collapse-toggler img {
  width: 1.5vw;
  transition: all .5s ease;
}

.donate-accordion .collapsible.show .simbol img {
  transform: rotate(180deg);
}

@media (max-width: 1023.98px) {
  .donate-accordion {
    padding: 0 0 13.33vw 0;
  }

  .donate-accordion h2 {
    margin-bottom: 6vw;
  }

  .donate-accordion .container {
    width: 90%;
  }

  .donate-accordion .collapse > div {
    padding-bottom: 4.66vw;
    padding-right: 10.33vw;
  }

  .donate-accordion .collapse ul {
    width: 64vw;
  }

  .donate-accordion .collapse ul li:not(:last-child) {
    margin-bottom: 2vw;
  }

  .donate-accordion .collapse-toggler {
    padding: 4.66vw 0;
  }

  .donate-accordion .collapse-toggler .simbol {
    margin-left: 3.33vw;
  }

  .donate-accordion .collapse-toggler img {
    width: 5vw;
  }
}
.video-cta{
  margin-top: 1vw;
  text-shadow: 1px 1px 2px black;
}
@media (min-width: 1023.98px) {
  .banner .text .regular{
    margin-top: 3vw;
  }
  iframe{
    width: 35.15vw;
    height: 21.15vw;

  }

  .footer-links{
    width: 10vw;
  }
  .footer-links ul li a{
    display: flex;
    align-items: center;
    line-height: 1.2;
  }
  .footer-links ul li a img{
    height: 0.73vw;
    width: 0.8vw;
    object-fit: contain;
    object-position: center;
    margin-left: 0.5vw;
  }
}

@media (max-width: 1023.98px) {
  .video-cta{
    margin-top: 3vw;
    text-shadow: 3px 3px 3px black;
  }
  iframe{
    width: 100%;
    height: 116vw;
    border-radius: 3.33vw;
  }
  .footer-links ul li a img{
    height: 3.33vw;
    width: 3.33vw;
    margin-left: 2vw;
  }
  .footer-links ul li a {
    display: flex;
    align-items: center;
    line-height: 1.2;
  }
  .edited {
    font-size: 4.26vw;
    width: 46.33vw;
  }
  .center{
    text-align: center;
    margin-top: 3vw;
  }
  .footer .contact:last-child{
    border-bottom : unset  !important;
    padding: unset !important;
  }
}

.justify{
  text-align: justify;
}
@media(max-width: 1024px){
  .d-desktop{
    display: none;
  }
  .header{
    opacity: : 1 !important;
  }
  body,html{
    overflow-x: hidden;
  }
}


.frame{
  position: relative;
}
.frame .loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    height: auto;
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 250%;
}

.frame iframe{
  position: relative;
  z-index: 1;
}

.frame .loading span{
  align-self: center;
}


@media (min-width: 1023.98px){
  iframe {
      width: 35.15vw;
      height: 30.15vw;
  }
}
