/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  z-index: 9;
}

.header-container {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.header-logo {
  display: block;
  width: 31px;
}

.header-link {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #fff;
  border-radius: 20px;
  background: #33306a;
  padding: 4px 8px;
  transition: background-color 0.3s ease;
}

.header-link:hover {
  background: #4a469b;
}

.navigation {
  border-radius: 20px;
  background: #fef1db;
  padding: 5px 11px;
  width: 100%;

  /* padding-left: 58px; */
}

.navigation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 58px;
}

.navigation-list {
  display: none;
}

.open-modal,
.close-modal {
  display: block;
  margin-left: auto;
}

.svg {
  stroke: #151515;
}

/* .navigation-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
} */

.navigation-item {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: #151515;
  transition: border-color 0.3s ease;
}

.navigation-item:hover {
}

.modal {
  border-radius: 0 0 40px 40px;
  background: #fef1db;
  /* z-index: 8; */
  /* transform: translateY(-100%); */
  display: none;
  padding: 32px;
  transition: transform 1s ease;
  /* z-index: 8; */
}

.modal-navigation-list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.modal-click {
  /* transform: translateY(0); */
  display: block;
}

@media screen and (min-width: 1437px) {
  .header {
    padding: 18px 0;
  }

  .header-link {
    font-size: 24px;
  }

  .header-container {
    gap: 30px;
  }

  .header-logo {
    width: 53px;
  }

  .navigation {
    padding: 12px 25px;
  }

  .navigation-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
  }
  .navigation-item {
    font-size: 24px;
  }

  .open-modal {
    display: none;
  }
}

/* home */

#home {
  padding-top: 62px;
  padding-bottom: 30px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* или 'contain' если не хочешь обрезания */
}

.home-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 18px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.home-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.home-description {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.hero-link-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 100px;
}

.home-link {
  border: 1.5px solid #fff;
  border-radius: 30px;
  padding: 12px 25px;
  text-align: center;
  transition: background-color 0.3s ease;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #fff;
}

.home-link:hover {
  background: #33306a;
}

.hero-pagination {
  text-align: center;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 50px;
  height: 5px;
  opacity: 1;
  background: transparent;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.2s ease;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

@media screen and (min-width: 1437px) {
  #home {
    padding-top: 156px;
  }

  .home-title {
    font-size: 34px;
    margin-bottom: 4px;
  }
  .home-text {
    font-size: 24px;
    max-width: 833px;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .home-description {
    font-size: 24px;
    max-width: 901px;
    margin: 0 auto;
    margin-bottom: 104px;
  }

  .hero-link-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 70px;
  }

  .home-link {
    font-size: 24px;
  }
}

/* who */

.who-img {
  margin: 0 auto;
  margin-bottom: 20px;
}

.who-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: #151515;
}

.honey1 {
  position: absolute;
  width: 96px;
  top: -17px;
  left: -14px;
}

.honey2 {
  transform: scaleX(-1);
  left: auto;
  right: -17px;
}

@media screen and (min-width: 1437px) {
  .honey1 {
    width: auto;
    top: -67px;
    left: -67px;
  }

  .honey2 {
    left: auto;
    right: -67px;
  }

  .who-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .who-img {
    flex-shrink: 0;
    margin: 0;
  }

  .who-text {
    font-size: 24px;
  }
}

/* services */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;

  li {
    border-radius: 40px;
    background: #fcdeb6;
    padding: 7px;
  }

  img {
    width: 189px;
    margin: 0 auto;
  }

  p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
    color: #151515;
    margin-top: 7px;
    margin-bottom: 23px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #151515;
  }
}

@media screen and (min-width: 1437px) {
  .services-list {
    width: 946px;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;

    li {
      width: calc((100% - 30px) / 2);
    }

    img {
      width: auto;
    }

    p {
      font-size: 24px;
    }

    span {
      font-size: 22px;
    }
  }
}

/* why */

#why {
  position: relative;
}

.vector1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
}

.vector2 {
  transform: scaleX(-1);
  left: auto;
  right: 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 30px;

  p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: #151515;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #151515;
  }
}

.why-item2 {
  padding-left: 80px;
}

@media screen and (min-width: 1437px) {
  .vector1 {
    width: auto;
    left: 50%;
    transform: translateX(-350px);
  }

  .vector2 {
    transform: scaleX(-1) translateX(-170px);
  }

  .why-list {
    align-items: center;

    li {
      width: 532px;
    }

    p {
      font-size: 24px;
    }

    span {
      font-size: 22px;
    }
  }

  .why-item2 {
    padding-left: 0;
  }

  .why-item1 {
    transform: translateX(-220px);
  }

  .why-item3 {
    transform: translateX(220px);
  }
}

/* how */

.how-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background-image: url(../images/road1.png);
  background-position: top 30px center;
  background-repeat: no-repeat;

  li {
    width: 212px;
  }

  p {
    border-radius: 100%;
    background-color: #fcdeb6;
    width: 36px;
    height: 36px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;

    font-family: var(--font-family);
    font-weight: 900;
    font-size: 24px;
    text-transform: capitalize;
    color: #151515;
  }

  h4 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    text-align: center;
    color: #151515;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
    color: #151515;
  }
}

.how-item2 {
  align-self: flex-end;
}

@media screen and (min-width: 768px) {
  .how-list {
    width: 468px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1437px) {
  .how-list {
    background-image: url(../images/road2.png);
    gap: 152px 86px;
    align-items: normal;
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;

    li {
      width: 486px;
    }

    p {
      width: 50px;
      height: 50px;
      font-size: 34px;
    }

    h4 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    span {
      font-size: 22px;
    }
  }

  .how-item1 {
    transform: translateX(-40px);
  }

  .how-item2 {
    align-self: normal;
    transform: translateY(80px);
  }

  .how-item4 {
    transform: translateY(0) translateX(80px);
  }
}

/* testimonials */

.testimonials-slide {
  border-radius: 60px;
  background: #afc2ce;
  padding: 20px;
  min-height: 210px;

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    text-align: center;
    color: #151515;
    margin-bottom: 20px;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    text-transform: capitalize;
    text-align: center;
    color: #151515;
  }
}

.swiper-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 13px;
  transform: translateY(-10px);
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .testimonials-slide {
    p,
    h5 {
      font-size: 20px;
    }
  }
}

@media screen and (min-width: 1437px) {
  .testimonials-slide {
    padding: 95px 231px;
    min-height: 399px;

    p,
    h5 {
      font-size: 24px;
    }
  }
}

/* serve */

.serve-text {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  text-align: center;
  color: #151515;
  margin-bottom: 30px;
}

.serve-list {
  display: flex;
  flex-direction: column;
  gap: 18px;

  li {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  img {
    width: 50px;
    flex-shrink: 0;
  }

  p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    color: #151515;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #151515;
  }
}

@media screen and (min-width: 1437px) {
  .serve-text {
    max-width: 901px;
    margin: 0 auto;
    margin-bottom: 63px;
    font-size: 24px;
  }
  .serve-list {
    width: 924px;
    margin: 0 auto;

    li {
      gap: 50px;
    }

    img {
      width: auto;
    }

    p {
      font-size: 24px;
    }

    span {
      font-size: 22px;
    }
  }
}

/* marketing */

.marketing-text {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  text-align: center;
  color: #151515;
  margin-bottom: 30px;
}

.marketing-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;

  li {
    width: 254px;
    max-width: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: #fcdeb6;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #151515;
    padding: 26px 14px;
  }
}

@media screen and (min-width: 768px) {
  .marketing-list {
    gap: 50px;

    li {
      width: 391px;
    }

    p {
      font-size: 22px;
      padding: 26px 20px;
    }
  }
}

@media screen and (min-width: 1437px) {
  .marketing-text {
    font-size: 24px;
    max-width: 901px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .marketing-list {
    flex-direction: row;
    align-items: normal;
    justify-content: center;
  }
}

/* ready */

.book-link {
  padding: 10px;
  margin: 0 auto;
  display: block;
  margin: 0 auto;
  width: 243px;
  text-align: center;
}

@media screen and (min-width: 1437px) {
  .book-link {
    padding: 15px;
    width: 395px;
  }
}

/* contact */

.contact-text {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  text-align: center;
  color: #151515;
  margin-bottom: 30px;
}

.mail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;

  img {
    flex-shrink: 0;
  }

  a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #151515;
  }

  a:hover {
    text-decoration: underline;
  }
}

.contact-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;

  li {
    width: 28px;
  }
}

.tag {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #151515;
}

@media screen and (min-width: 1437px) {
  .contact-text {
    font-size: 24px;
    max-width: 901px;
    margin: 0 auto;
    margin-bottom: 50px;
  }

  .contact-list {
    li {
      width: 48px;
    }
  }

  .tag {
    font-size: 22px;
    text-align: center;
  }
}

/* footer */

.footer {
  padding: 20px 0;
  padding-top: 90px;
  position: relative;
}

.footer-honey1 {
  width: 116px;
  position: absolute;
  top: -30px;
  left: 0;
}

.footer-honey2 {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

.footer-list {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 39px;

  li {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 10px;
    text-align: center;
    color: #151515;
  }

  a:hover {
    text-decoration: underline;
  }
}

.footer-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: rgba(21, 21, 21, 0.7);
}

@media screen and (min-width: 1437px) {
  .footer {
    padding-top: 80px;
  }

  .footer-honey1 {
    width: auto;
    top: -80px;
  }

  .footer-list {
    justify-content: center;
    gap: 84px;
    margin-bottom: 58px;

    li {
      font-size: 20px;
    }
  }

  .footer-description {
    font-size: 24px;
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 50%;
  border-radius: 30px 30px 0 0;

  padding: 44px 28px;
  background: #fcdeb6;
  transform: translateX(-50%);
  transition: transform 0.5s ease;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: #151515;
  margin-bottom: 40px;
}

.popup-btn {
  border: 3px solid #151515;
  border-radius: 19px;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  width: 213px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #151515;

  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  color: #fff;
  background-color: #33306a;
  border-color: #33306a;
}

.popup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.popup-click {
  transform: translateY(120%) translateX(-50%);
}

@media screen and (min-width: 1437px) {
  .popup {
    padding: 60px 100px;
  }

  .popup-text {
    font-size: 24px;
    margin-bottom: 80px;
  }

  .popup-wrap {
    flex-direction: row;
    gap: 105px;
  }

  .popup-btn {
    width: 302px;
    font-size: 30px;
  }
}
