@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates: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");
@import url("reset.min.css");
:root {
  --blue: #8ad1cb;
  --green: #7cc3a3;
  --pink: #ffb8c0;
  --cream: #ecd4b0;
  --black: #1c1c1c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.05;
}

body {
  font-family: "Montserrat Alternates", sans-serif;
  color: var(--black);
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
}

.title {
  font-size: 40px;
}

.text,
ul li,
ol li {
  font-size: 20px;
}

.list {
  margin-left: 20px;
}
.list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.list li:last-child {
  margin: 0;
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  top: 11px;
}

.btn {
  background: #7cc3a3;
  color: #1c1c1c;
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
  padding: 12px 40px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background: var(--pink);
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1208px;
  padding: 0 40px;
  margin: 0 auto;
}

.inner {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.section-mask {
  position: relative;
}
.section-mask::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--green);
  transition: 0.3s;
}
.header.scroll {
  box-shadow: 0 0 10px 10px rgba(28, 28, 28, 0.1);
}
.header.scroll .header__inner {
  padding: 6px 0;
}
.header__inner {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: 0.3s ease;
}
.header__logo {
  display: flex;
}
.header__logo-img {
  width: 75px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav-list li button {
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.header__nav-list li button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  opacity: 0;
  pointer-events: none;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: #ffb8c0;
  transition: 0.3s;
}
.header__nav-list li button:hover {
  color: var(--pink);
}
.header__nav-list li button:hover::before {
  bottom: -4px;
  opacity: 1;
}
.header__btn {
  display: none;
}

.hero {
  padding-top: 99px;
  background: center/cover no-repeat url("../img/hero-bg.jpg");
}
.hero__inner {
  padding: 144px 0;
}
.hero__info {
  max-width: 600px;
  color: #fff;
}
.hero__info-title {
  font-size: 60px;
}
.hero__info-title span {
  color: var(--green);
}
.hero__info-text {
  font-size: 22px;
  margin: 24px 0;
}

.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about__img {
  max-width: 500px;
  -webkit-mask-image: url("../img/about-mask.png");
  mask-image: url("../img/about-mask.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.about__info {
  max-width: 550px;
  width: 100%;
}
.about__info-title {
  margin-bottom: 16px;
}
.about__info-text {
  margin-bottom: 16px;
}
.about__info-list {
  margin-bottom: 16px;
}
.about__info-accent {
  padding-left: 16px;
  font-style: italic;
  border-left: 5px solid var(--cream);
  max-width: 400px;
}

.product {
  background: var(--cream);
  overflow: hidden;
}
.product__inner::before, .product__inner::after {
  content: "";
  position: absolute;
  background: center/contain no-repeat;
  pointer-events: none;
}
.product__inner::before {
  top: 150px;
  left: -100px;
  width: 200px;
  height: 200px;
  background-image: url("../img/product-img-1.svg");
  rotate: -15deg;
  animation: imgRotate 20s linear 0s infinite;
}
.product__inner::after {
  bottom: -20px;
  right: -190px;
  width: 300px;
  height: 350px;
  background-image: url("../img/product-img-2.svg");
  rotate: 40deg;
  animation: imgMove 5s ease-in-out 0s infinite;
}
.product__title {
  text-align: center;
  margin-bottom: 16px;
}
.product__text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.product__box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.product__item {
  flex: 1;
  padding: 24px;
  border-radius: 16px;
  background: var(--green);
}
.product__item-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 16px;
}
.product__item-list {
  margin: 0;
}
.product__item-list li::before {
  background: var(--cream);
}

@keyframes imgRotate {
  from {
    rotate: 0;
  }
  to {
    rotate: -360deg;
  }
}
@keyframes imgMove {
  0%, 100% {
    right: -190px;
    rotate: 40deg;
  }
  50% {
    rotate: 30deg;
    right: -140px;
  }
}
.business {
  background: var(--black);
  color: #fff;
  text-align: center;
}
.business__title {
  margin-bottom: 16px;
}
.business__text {
  margin-bottom: 40px;
}
.business__list {
  max-width: 750px;
  text-align: left;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.business__list li {
  padding: 24px;
  background: #fff;
  color: #1c1c1c;
  width: 100%;
  border-radius: 16px;
  text-align: center;
}
.business__list li::before {
  display: none;
}
.business__list li:nth-child(1) {
  background: var(--cream);
}
.business__list li:nth-child(2) {
  background: var(--green);
}
.business__list li:nth-child(3) {
  background: var(--pink);
}
.business__list li:nth-child(4) {
  background: var(--blue);
}

.delivery__title {
  text-align: center;
  margin-bottom: 16px;
}
.delivery__text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.delivery__box {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.delivery__item-img {
  width: 170px;
  margin: 0 auto 24px;
}
.delivery__item-text {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
.delivery__item:nth-child(1) .delivery__item-img {
  width: 150px;
}
.delivery__item:nth-child(4) .delivery__item-img {
  width: 200px;
}
.delivery__accent {
  display: table;
  text-align: center;
  font-weight: 600;
  font-style: italic;
  border-left: 5px solid var(--cream);
  padding: 6px 0 6px 16px;
  margin: 40px auto 0;
}

.contact {
  background: center/cover no-repeat url("../img/contact-bg.jpg");
  background-attachment: fixed;
}
.contact__title {
  text-align: center;
  margin-bottom: 16px;
  color: #fff;
}
.contact__text {
  max-width: 570px;
  margin: 0 auto 40px;
  text-align: center;
  color: #fff;
}
.contact__box {
  display: flex;
  justify-content: space-between;
  align-content: center;
  gap: 64px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 550px;
  width: 100%;
  background: var(--green);
  padding: 24px;
  border-radius: 12px;
}
.contact__form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 20px;
}
.contact__form input {
  border-radius: 6px;
  border: none;
  padding: 12px;
}
.contact__form button.btn {
  margin-top: 16px;
  background: var(--black);
  color: #fff;
}
.contact__form button.btn:hover {
  color: var(--black);
  background: var(--pink);
}
.contact__form .iti__country-list {
  width: 400px;
}
.contact__info {
  max-width: 550px;
  width: 100%;
}
.contact__info-list {
  color: #fff;
  margin-bottom: 24px;
  margin-left: 0;
}
.contact__map {
  border-radius: 12px;
  width: 100%;
  height: 520px;
}

.footer {
  background: var(--black);
}
.footer__inner {
  padding: 24px 0;
  text-align: center;
  color: #fff;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #5c5c5c;
}
.footer__logo {
  display: flex;
}
.footer__logo-img {
  width: 50px;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.footer__links-item {
  font-size: 18px;
  transition: 0.3s;
}
.footer__links-item:hover {
  color: var(--pink);
}

.info {
  padding-top: 99px;
  background: var(--black);
  color: #fff;
}
.info h1 {
  font-size: 50px;
  margin-bottom: 40px;
  text-align: center;
}
.info h2,
.info p,
.info ul {
  margin-top: 24px;
}
.info p,
.info ul {
  font-size: 20px;
}

.thanks {
  padding-top: 99px;
  background: var(--pink);
  color: var(--black);
}
.thanks__img {
  max-width: 250px;
  margin: 0 auto 40px;
}
.thanks__title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 24px;
}
.thanks__text {
  text-align: center;
  font-size: 24px;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .inner {
    padding: 64px 0;
  }
  .container {
    padding: 0 16px;
  }
  .header__nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .header__nav-list li button {
    font-size: 24px;
    color: #fff;
  }
  .header.active .header__nav {
    opacity: 1;
    pointer-events: painted;
  }
  .header.active .header__btn span {
    background: #fff;
    rotate: 45deg;
  }
  .header.active .header__btn span::before {
    top: 0;
    rotate: 90deg;
  }
  .header.active .header__btn span::after {
    opacity: 0;
  }
  .header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s ease;
  }
  .header__btn span {
    position: relative;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: 0.3s ease;
  }
  .header__btn span::before, .header__btn span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: inherit;
    left: 0;
    border-radius: 2px;
    transition: 0.3s ease;
  }
  .header__btn span::before {
    top: -8px;
  }
  .header__btn span::after {
    bottom: -8px;
  }
  .hero__inner {
    padding: 96px 0;
  }
  .about__inner {
    flex-direction: column;
  }
  .about__img {
    max-width: 400px;
  }
  .about__info {
    max-width: 100%;
  }
  .product__inner::before, .product__inner::after {
    display: none;
  }
  .product__box {
    position: relative;
    flex-direction: column;
  }
  .product__box::before {
    content: "";
    position: absolute;
    background: center/contain no-repeat;
    pointer-events: none;
    background-image: url("../img/product-img-1.svg");
    rotate: -15deg;
    animation: imgRotate 20s linear 0s infinite;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 500px;
    height: 500px;
    z-index: -1;
  }
  .product__item {
    background: rgba(124, 195, 163, 0.85);
  }
  .delivery__box {
    flex-wrap: wrap;
    gap: 24px;
  }
  .delivery__item {
    width: calc(50% - 12px);
  }
  .delivery__item-text {
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
  }
  .contact__box {
    flex-direction: column;
    align-items: center;
  }
  .contact__form {
    max-width: 100%;
  }
  .contact__info {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 30px;
  }
  .text, ul li, ol li {
    font-size: 16px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  .header__logo-img {
    width: 50px;
  }
  .header__nav-list {
    gap: 30px;
  }
  .header__nav-list li button {
    font-size: 18px;
  }
  .hero {
    padding-top: 74px;
  }
  .hero__inner {
    padding: 64px 0;
  }
  .hero__info-title {
    font-size: 40px;
  }
  .hero__info-btn {
    width: 100%;
  }
  .delivery__item-text {
    font-size: 16px;
  }
  .contact__form {
    gap: 8px;
  }
  .contact__form-field {
    font-size: 14px;
  }
  .info {
    padding-top: 74px;
  }
  .info h1 {
    font-size: 26px;
    text-align: left;
  }
  .info h2 {
    font-size: 20px;
  }
  .info p, .info ul li {
    font-size: 16px;
  }
  .info h2, .info p, .info ul {
    margin-top: 16px;
  }
  .footer__logo {
    width: 40px;
  }
  .footer__links {
    gap: 16px;
  }
  .footer__links-item {
    font-size: 14px;
  }
  .footer__copy {
    font-size: 14px;
  }
  .thanks__img {
    max-width: 150px;
    margin-bottom: 24px;
  }
  .thanks__title {
    font-size: 30px;
  }
  .thanks__text {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */