@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body {
  scroll-behavior: smooth;
  max-width: 100vw;
  position: relative;
}

.h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.25em;
}

@media only screen and (max-width: 1600px) {
  .h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1400px) {
  .h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 700px) {
  .h2 {
    font-size: 30px;
  }
}
header {
  height: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: #F2D717;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
}
header .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 100px;
}
header .logo {
  display: flex;
}
header .logo img {
  height: 3.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 35px;
}
header nav a {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: 0.25s ease;
}
header nav a:hover, header nav a.active {
  color: #3F65CF;
}
header .cta__btn a {
  font-size: 20px;
  padding: 0.5em 1.5em;
  color: #F47A4F;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #3F65CF;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 55;
  background: #3F65CF;
  backdrop-filter: blur(5px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 20px;
  text-decoration: none;
  border-bottom: 2px solid #FB753F;
  font-weight: 600;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1400px) {
  header {
    height: 6rem;
  }
  header .logo img {
    height: 2.5rem;
  }
  header .left {
    gap: 35px;
  }
  header nav {
    gap: 25px;
  }
  header nav a {
    font-size: 15px;
  }
  header .cta__btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) {
  header {
    padding: 0 10%;
  }
  header nav {
    display: none;
  }
  header .cta__btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
}
.btn a {
  font-size: 33px;
  border: 3px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  padding: 0.25em 1.5em;
  font-weight: 700;
  transition: 0.2s ease;
  z-index: 2;
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  border-radius: 50px;
}
.btn:hover a {
  transform: translateX(10px);
}

@media only screen and (max-width: 1600px) {
  .btn a {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1400px) {
  .btn a {
    font-size: 26px;
  }
}
@media only screen and (max-width: 900px) {
  .btn a {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .btn a {
    font-size: 19px;
  }
}
footer {
  padding: 3.5rem 5%;
  background: #D9D9D9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer img {
  height: 3.5rem;
}
footer .socials {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
footer .socials span {
  font-size: 20px;
}
footer .socials .links {
  font-size: 27px;
  font-weight: 700;
}
footer .socials .links a {
  text-decoration: none;
  color: #000;
  transition: 0.25s ease;
}
footer .socials .links a:hover {
  color: #3F65CF;
}
footer .link {
  font-size: 23px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.lubocodes-credit {
  background: #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10%;
}
.lubocodes-credit span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
.lubocodes-credit span a {
  color: black;
  text-decoration: underline;
}

@media only screen and (max-width: 700px) {
  .lubocodes-credit {
    padding: 10px 10%;
  }
  .lubocodes-credit span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1400px) {
  footer .socials {
    gap: 10px;
  }
  footer .socials span {
    font-size: 16px;
  }
  footer .socials .links {
    font-size: 21px;
  }
  footer .link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 850px) {
  footer img {
    height: 2.5rem;
  }
  footer .socials {
    flex-flow: column;
    gap: 0;
  }
  footer .link {
    font-size: 15px;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    justify-content: space-around;
    flex-flow: row wrap;
    gap: 5px;
    row-gap: 20px;
  }
  footer img {
    flex: 100%;
    height: auto;
    margin: 0 25%;
  }
  footer .socials {
    flex: 100%;
    flex-flow: row;
    gap: 10px;
    justify-content: center;
  }
  footer .link {
    font-size: 14px;
  }
}
.gallery {
  padding: 5rem 10%;
}
.gallery .slide {
  display: none;
}
.gallery .slide#gallery-slide-1 {
  display: flex;
}
.gallery .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.gallery .content .image {
  width: 100%;
  height: 17.5vw;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
}
.gallery .content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 0.35s ease;
  display: block;
}
.gallery .content .image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: rgba(63, 101, 207, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.gallery .content .image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%233F65CF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center/22px no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery .content .image:hover img {
  transform: scale(1.07);
}
.gallery .content .image:hover::after {
  background: rgba(63, 101, 207, 0.25);
}
.gallery .content .image:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 2.5rem;
}
.gallery .navigation button {
  height: 41px;
  width: 41px;
  border-radius: 50%;
  background: rgba(63, 101, 207, 0.6);
  border: none;
  transition: 0.25s ease;
  cursor: pointer;
}
.gallery .navigation button.active, .gallery .navigation button:hover {
  background: #3F65CF;
}
.gallery .navigation .gallery-nav-arrow {
  width: 69px;
  height: 69px;
  background: none;
  border: none;
  color: #3F65CF;
  font-size: 45px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding-bottom: 1px;
  flex-shrink: 0;
}
.gallery .navigation .gallery-nav-arrow:hover {
  background: none;
}
.gallery .navigation .gallery-nav-arrow:active {
  transform: scale(0.92);
}
.gallery .navigation .gallery-nav-arrow.gallery-nav-prev {
  margin-right: 4px;
}
.gallery .navigation .gallery-nav-arrow.gallery-nav-next {
  margin-left: 4px;
}

#gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

#gallery-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 35, 0.88);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

#gallery-lb-img-wrap {
  position: relative;
  z-index: 2;
  max-width: calc(100vw - 200px);
  max-height: 90vh;
  transition: opacity 0.15s ease;
}
#gallery-lb-img-wrap.switching {
  opacity: 0;
}
#gallery-lb-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

#gallery-lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding-bottom: 2px;
}
#gallery-lb-close:hover {
  background: rgba(63, 101, 207, 0.8);
  border-color: #3F65CF;
  transform: rotate(90deg);
}

#gallery-lb-prev,
#gallery-lb-next {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding-bottom: 2px;
  margin: 0 16px;
  user-select: none;
}
#gallery-lb-prev:hover,
#gallery-lb-next:hover {
  background: #3F65CF;
  border-color: #3F65CF;
}
#gallery-lb-prev:active,
#gallery-lb-next:active {
  transform: scale(0.92);
}

#gallery-lb-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 16px;
  border-radius: 20px;
}

body.lb-open {
  overflow: hidden;
}

@media only screen and (max-width: 700px) {
  #gallery-lb-img-wrap {
    max-width: calc(100vw - 100px);
  }
  #gallery-lb-prev,
  #gallery-lb-next {
    width: 44px;
    height: 44px;
    font-size: 32px;
    margin: 0 6px;
  }
  #gallery-lb-close {
    width: 42px;
    height: 42px;
    font-size: 26px;
    top: 12px;
    right: 12px;
  }
}
@media only screen and (max-width: 1550px) {
  .gallery .navigation button {
    height: 35px;
    width: 35px;
  }
  .gallery .navigation .gallery-nav-arrow {
    width: 60px;
    height: 60px;
    font-size: 39px;
  }
}
@media only screen and (max-width: 1300px) {
  .gallery .content {
    gap: 25px;
  }
  .gallery .navigation button {
    height: 27px;
    width: 27px;
  }
  .gallery .navigation .gallery-nav-arrow {
    width: 51px;
    height: 51px;
    font-size: 33px;
  }
}
@media only screen and (max-width: 700px) {
  .gallery {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .gallery .content {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    padding: 0 5%;
  }
  .gallery .content .image {
    height: auto;
    aspect-ratio: 16/12;
    border-radius: 15px;
  }
  .gallery .content .image img {
    border-radius: 15px;
  }
  .gallery .navigation {
    margin-top: 1.5rem;
    gap: 12px;
  }
  .gallery .navigation button {
    height: 23px;
    width: 23px;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.6);
  }
  .gallery .navigation button.active, .gallery .navigation button:hover {
    background: #fff;
  }
  .gallery .navigation .gallery-nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 30px;
    color: #fff;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.partners {
  padding: 5rem 10% 7.5rem;
}
.partners h2.h2 {
  text-align: center;
}
.partners .partners__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 35px;
  margin-top: 2rem;
}
.partners .partners__content img {
  width: 140px;
  height: 55px;
  object-fit: contain;
}
.partners .partners__content img[src*=tepe] {
  width: 90px;
}

@media only screen and (max-width: 1400px) {
  .partners {
    padding-top: 3rem;
  }
  .partners .partners__content {
    gap: 15px 25px;
  }
  .partners .partners__content img {
    width: 115px;
    height: 45px;
  }
}
@media only screen and (max-width: 900px) {
  .partners {
    padding: 5rem 10%;
  }
}
@media only screen and (max-width: 700px) {
  .partners {
    padding: 3.5rem 10%;
  }
  .partners .partners__content {
    gap: 15px 20px;
  }
  .partners .partners__content img {
    width: 90px;
    height: 35px;
  }
}
.hero {
  background: #F2D717;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  width: 100%;
  padding: 75px 20%;
  row-gap: 50px;
}
.hero .hero__text {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  gap: 25px;
}
.hero .hero__text h1 {
  font-size: 90px;
  line-height: 1.1em;
  text-align: center;
}
.hero .hero__text .btn {
  margin: 2rem 0;
}
.hero .image {
  width: 100%;
}
.hero .image img {
  width: 100%;
  border: 4px solid #000;
  border-radius: 25px;
}

.terms {
  padding: 5rem 10%;
  background: #fff;
}
.terms .h2 {
  text-align: center;
}
.terms .terms__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 2.5rem;
}
.terms .terms__content.single-column {
  grid-template-columns: 1fr;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.terms .terms__content .column {
  border-radius: 20px;
  border: 2px solid #000;
  background: #FB753F;
}
.terms .terms__content .column:hover .column__content {
  transform: translate(7px, 7px);
}
.terms .terms__content .column .column__content {
  border-radius: 18px;
  padding: 35px;
  background: #fff;
  border: 2px solid #000;
  height: 100%;
  transition: 0.25s ease;
}
.terms .terms__content .column h3 {
  font-size: 50px;
  color: #000;
  font-weight: 600;
  text-align: center;
}
.terms .terms__content .column .dates {
  padding: 15px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 10px;
  row-gap: 5px;
  margin: 0.5rem 0 2rem;
  background: #3F65CF;
}
.terms .terms__content .column .dates p {
  text-align: center;
  color: #fff;
  display: block;
  width: 100%;
  font-weight: 500;
}
.terms .terms__content .column .part {
  display: grid;
  grid-template-columns: 41px 1fr;
  gap: 10px;
  margin-top: 1rem;
}
.terms .terms__content .column .part.short {
  align-items: center;
}
.terms .terms__content .column .part .icon {
  height: 41px;
  width: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #3F65CF;
}
.terms .terms__content .column .part .icon svg {
  height: 21px;
  width: 21px;
  color: #fff;
}
.terms .terms__content .column .part .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 5px;
}
.terms .terms__content .column .part .text span {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}
.terms .terms__content .column .part strong {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.terms .terms__content .column .btn {
  margin-top: 2rem;
}
.terms .terms__content .column .btn a {
  font-size: 25px;
  color: #FB753F;
}

.turnus {
  padding: 5rem 10% 0;
  background: #fff;
}
.turnus .h2 {
  text-align: center;
}
.turnus .turnus__list {
  max-width: 70%;
  margin: 35px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.turnus .turnus__list .item {
  border: 2px solid #000;
  border-radius: 20px;
  background: #FB753F;
}
.turnus .turnus__list .item:hover .item__content {
  transform: translate(7px, 7px);
}
.turnus .turnus__list .item .item__content {
  border-radius: 18px;
  border: 2px solid #000;
  padding: 35px;
  transition: 0.25s ease;
  background: #fff;
  height: 100%;
}
.turnus .turnus__list .item .item__content h3 {
  font-size: 35px;
  font-weight: 600;
}
.turnus .turnus__list .item .item__content .part {
  display: grid;
  grid-template-columns: 41px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}
.turnus .turnus__list .item .item__content .part.short {
  align-items: center;
}
.turnus .turnus__list .item .item__content .part .icon {
  height: 41px;
  width: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #3F65CF;
}
.turnus .turnus__list .item .item__content .part .icon svg {
  height: 21px;
  width: 21px;
  color: #fff;
}
.turnus .turnus__list .item .item__content .part strong {
  font-size: 20px;
  font-weight: 600;
}
.turnus .turnus__list .item .item__content .btn {
  margin-top: 20px;
}
.turnus .turnus__list .item .item__content .btn a {
  font-size: 20px;
}
.turnus .turnus__list .item_info {
  padding: 10px;
  width: 100%;
  background: #FB753F;
  border-radius: 10px;
  margin-top: 20px;
}
.turnus .turnus__list .item_info span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.video {
  padding: 7.5rem 20%;
  background: #3F65CF;
}
.video h2.h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}
.video .iframe {
  width: 100%;
  height: 33.75vw;
}
.video .iframe iframe {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  border: 3px solid #000;
}

.program, .meal {
  padding: 7.5rem 20%;
}
.program .h2, .meal .h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.program p, .meal p {
  font-size: 22px;
}
.program p:nth-child(2), .meal p:nth-child(2) {
  margin-bottom: 1rem;
}

.harmonogram {
  padding: 5rem 0;
  background: #3F65CF;
}
.harmonogram .h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
}
.harmonogram .desc {
  padding: 0 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 7px;
}
.harmonogram .desc p {
  line-height: 1.75em;
  font-size: 15px;
  color: #fff;
}
.harmonogram .harmonogram__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
  padding: 3rem 20% 0;
}
.harmonogram .harmonogram__content .item {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 50px;
  width: 100%;
  position: relative;
  padding-bottom: 3rem;
}
.harmonogram .harmonogram__content .item:hover .text {
  background: #FB753F;
}
.harmonogram .harmonogram__content .item:hover .text .text__content {
  transform: translate(5px, 5px);
}
.harmonogram .harmonogram__content .item:hover .line .dot {
  border: 5px solid #FB753F;
  background: #FB753F;
}
.harmonogram .harmonogram__content .item strong {
  font-size: 25px;
}
.harmonogram .harmonogram__content .item strong.time {
  font-size: 22px;
  font-weight: 500;
}
.harmonogram .harmonogram__content .item .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  border: 1px solid #000;
  width: 100%;
  border-radius: 20px;
  background: #3F65CF;
  margin-left: 80px;
}
.harmonogram .harmonogram__content .item .text .text__content {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  border: 1px solid #000;
  padding: 20px;
  width: 100%;
  border-radius: 20px;
  background: #fff;
  transition: 0.25s ease;
}
.harmonogram .harmonogram__content .item .line {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.harmonogram .harmonogram__content .item .line .dot {
  height: 37px;
  width: 37px;
  border: 5px solid #fff;
  border-radius: 50%;
}
.harmonogram .harmonogram__content .item .line .bar {
  width: 3px;
  height: calc(100% - 37px);
  background: #fff;
}

.contact {
  background: #3F65CF;
  padding: 7.5rem 20%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}
.contact .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  gap: 15px;
}
.contact .text .h2 {
  margin-bottom: 1rem;
  color: #fff;
}
.contact .text a {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}
.contact .text .contact__details, .contact .text .billing {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  gap: 10px;
}
.contact .image {
  display: flex;
  justify-content: end;
  align-items: center;
}
.contact .image img {
  height: 30rem;
  border-radius: 20px;
}

.gallery {
  background: #3F65CF;
}
.gallery .navigation button {
  background: rgba(255, 255, 255, 0.6);
}
.gallery .navigation button.active, .gallery .navigation button:hover {
  background: #fff;
}
.gallery .navigation button.gallery-nav-arrow {
  background: none;
  color: #fff;
}
.gallery .navigation button.gallery-nav-arrow:hover {
  background: none;
}

.host {
  padding: 7.5rem 20%;
  background: #F2D717;
}
.host * {
  text-align: center;
}
.host .h2 {
  margin-bottom: 2rem;
}
.host p {
  text-align: center;
  font-size: 25px;
}

@media only screen and (max-width: 1550px) {
  .hero .hero__text h1 {
    font-size: 80px;
  }
  .terms .terms__content .column h3 {
    font-size: 45px;
  }
  .terms .terms__content .column .dates p {
    font-size: 14px;
  }
  .terms .terms__content .column .part .text span {
    font-size: 14px;
  }
  .terms .terms__content .column .part strong {
    font-size: 18px;
  }
  .terms .terms__content .column .btn a {
    font-size: 22px;
  }
  .turnus .turnus__list .item .item__content h3 {
    font-size: 27px;
  }
  .turnus .turnus__list .item .item__content .part strong {
    font-size: 17px;
  }
  .turnus .turnus__list .item .item__content .btn a {
    font-size: 18px;
  }
  .turnus .turnus__list .item_info span {
    font-size: 15px;
    font-weight: 500;
  }
  .program p, .meal p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1400px) {
  .hero {
    padding: 50px 10%;
  }
  .hero .hero__text h1 {
    font-size: 55px;
  }
  .hero .hero__text .btn {
    margin: 1rem 0;
  }
  .terms .terms__content {
    gap: 25px;
  }
  .terms .terms__content .column h3 {
    font-size: 30px;
  }
  .terms .terms__content .column .dates {
    grid-template-columns: 1fr 1fr;
  }
  .terms .terms__content .column .dates p {
    font-size: 13px;
  }
  .terms .terms__content .column .part .text span {
    font-size: 12px;
  }
  .terms .terms__content .column .part strong {
    font-size: 16px;
  }
  .terms .terms__content .column .btn a {
    font-size: 20px;
  }
  .turnus .turnus__list {
    grid-template-columns: 1fr;
  }
  .turnus .turnus__list .item .item__content h3 {
    font-size: 27px;
  }
  .turnus .turnus__list .item .item__content .part strong {
    font-size: 17px;
  }
  .turnus .turnus__list .item .item__content .btn a {
    font-size: 18px;
  }
  .video {
    padding: 5rem 10%;
  }
  .video .iframe {
    height: 45vw;
  }
  .program, .meal {
    padding: 5rem 10%;
  }
  .program p, .meal p {
    font-size: 18px;
  }
  .harmonogram .desc {
    padding: 0 10%;
  }
  .harmonogram .desc p {
    font-size: 14px;
  }
  .harmonogram .harmonogram__content {
    padding: 3rem 10% 0;
  }
  .harmonogram .harmonogram__content .item strong {
    font-size: 20px;
  }
  .harmonogram .harmonogram__content .item strong.time {
    width: 150px;
    font-size: 18px;
  }
  .harmonogram .harmonogram__content .item strong.activity {
    width: 400px;
  }
  .harmonogram .harmonogram__content .item .line .dot {
    height: 31px;
    width: 31px;
  }
  .contact {
    padding: 5rem 10%;
  }
  .contact .text a {
    font-size: 25px;
  }
  .contact .image img {
    height: 25rem;
  }
  .host {
    padding: 5rem 10%;
  }
  .host p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .hero {
    padding: 35px 10%;
  }
  .hero .hero__text h1 {
    font-size: 45px;
  }
  .terms .terms__content {
    grid-template-columns: 1fr;
  }
  .program p, .meal p {
    font-size: 16px;
  }
  .harmonogram {
    padding: 5rem 10%;
  }
  .harmonogram .desc {
    padding: 0;
  }
  .harmonogram .harmonogram__content {
    align-items: start;
    padding: 2rem 0 0;
  }
  .harmonogram .harmonogram__content .item {
    gap: 25px;
    position: relative;
    padding-left: 40px;
    flex-flow: column;
    gap: 5px;
    padding-bottom: 55px;
  }
  .harmonogram .harmonogram__content .item .text {
    margin: 0;
  }
  .harmonogram .harmonogram__content .item strong {
    font-size: 16px;
  }
  .harmonogram .harmonogram__content .item strong.time {
    width: 100%;
    font-size: 15px;
  }
  .harmonogram .harmonogram__content .item strong.activity {
    width: 100%;
    font-weight: 700;
  }
  .harmonogram .harmonogram__content .item .line .dot {
    border: 4px solid #fff;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact .image {
    justify-content: start;
  }
}
@media only screen and (max-width: 700px) {
  .hero .hero__text h1 {
    font-size: 30px;
  }
  .hero .hero__text .btn {
    margin: 0.5rem 0;
  }
  .hero .image img {
    border: 3px solid #000;
    border-radius: 15px;
  }
  .terms {
    padding: 3.5rem 5%;
  }
  .terms .terms__content {
    gap: 25px;
    max-width: 90%;
  }
  .terms .terms__content.single-column {
    max-width: 90%;
  }
  .terms .terms__content .column .column__content {
    padding: 25px;
  }
  .terms .terms__content .column h3 {
    font-size: 22px;
  }
  .terms .terms__content .column .dates p {
    font-size: 11px;
  }
  .terms .terms__content .column .part {
    grid-template-columns: 31px 1fr;
  }
  .terms .terms__content .column .part .icon {
    width: 31px;
    height: 31px;
  }
  .terms .terms__content .column .part .icon svg {
    height: 15px;
    width: 15px;
  }
  .terms .terms__content .column .part .text span {
    font-size: 11px;
  }
  .terms .terms__content .column .part strong {
    font-size: 14px;
  }
  .terms .terms__content .column .btn a {
    font-size: 16px;
  }
  .turnus {
    padding: 3.5rem 5% 0;
  }
  .turnus .turnus__list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .turnus .turnus__list .item .item__content {
    padding: 25px;
  }
  .turnus .turnus__list .item .item__content h3 {
    font-size: 22px;
  }
  .turnus .turnus__list .item .item__content .part {
    grid-template-columns: 35px 1fr;
  }
  .turnus .turnus__list .item .item__content .part .icon {
    height: 35px;
    width: 35px;
  }
  .turnus .turnus__list .item .item__content .part .icon svg {
    height: 17px;
    width: 17px;
  }
  .turnus .turnus__list .item .item__content .part strong {
    font-size: 15px;
  }
  .turnus .turnus__list .item .item__content .btn a {
    font-size: 16px;
  }
  .turnus .turnus__list .item_info span {
    font-size: 13px;
  }
  .video {
    padding: 3.5rem 10%;
  }
  .video h2.h2 {
    margin-bottom: 1rem;
  }
  .program, .meal {
    padding: 3.5rem 10%;
  }
  .program .h2, .meal .h2 {
    margin-bottom: 1rem;
  }
  .program p, .meal p {
    font-size: 14px;
  }
  .harmonogram {
    padding: 3.5rem 10%;
  }
  .harmonogram .desc p {
    font-size: 12px;
  }
  .harmonogram .harmonogram__content .item .line .dot {
    height: 27px;
    width: 27px;
  }
  .contact {
    padding: 3.5rem 10%;
    gap: 35px;
  }
  .contact .text .h2 {
    margin-bottom: 1rem;
  }
  .contact .text a {
    font-size: 18px;
  }
  .contact .image img {
    height: 20rem;
  }
  .host {
    padding: 3.5rem 10%;
  }
  .host .h2 {
    margin-bottom: 1rem;
  }
  .host p {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */