@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@font-face {
  font-family: "Snell Roundhand";
  src: url("../public/fonts/snellroundhand.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background: #151515;
  color: #fff;
  margin: 0;
  padding: 0;
}

section {
  overflow: hidden;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (max-width: 770px) {
  .container {
    padding: 0 16px;
  }
}

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.center {
  align-items: center;
}

.banner {
  background-image: url("../public/img/banner.png");
  background-size: cover;
  background-position: center;
  height: 800px;
}
.banner .container {
  padding: 42px 10px 60px;
}
@media (max-width: 770px) {
  .banner .container {
    padding: 24px 16px 28px;
  }
}
.banner__logo {
  transition: all 0.3s linear;
}
@media (max-width: 770px) {
  .banner__logo svg {
    width: 43px;
    height: 32px;
  }
}
.banner h1 {
  margin-top: 190px;
  color: #FFF;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 82px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 840px) {
  .banner h1 {
    font-size: 9vw;
  }
}
@media (max-width: 600px) {
  .banner h1 {
    font-size: 48px;
  }
}
.banner h2 {
  color: #FFF;
  text-align: center;
  font-family: "Snell Roundhand";
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}
@media (max-width: 770px) {
  .banner h2 {
    color: #FFF;
    text-align: center;
    font-family: "Snell Roundhand";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
  }
}
.banner__btn {
  margin: 32px 0 120px;
  padding: 16px 24px;
  border-radius: 100px;
  border: 1px solid #FFF;
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  transition: backdrop-filter 0.3s linear;
}
.banner__btn:hover {
  backdrop-filter: brightness(0.5) opacity(0.8) blur(25px);
}
@media (max-width: 770px) {
  .banner__btn {
    margin: 26px 0 90px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
  }
}
.banner ul {
  display: flex;
  flex-direction: row;
  gap: 60px;
  list-style: none;
}
@media (max-width: 770px) {
  .banner ul {
    flex-direction: column;
    gap: 15.5px;
  }
}
.banner li {
  padding-left: 16px;
  border-left: 1px solid #fff;
  color: #FFF;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  max-width: 206px;
}
@media (max-width: 770px) {
  .banner li {
    max-width: 168px;
    color: #FFF;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    padding-left: 0;
    padding-bottom: 11px;
    border-left: none;
  }
  .banner li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50%;
    height: 1px;
    background-color: #FFF;
  }
}

.second__container {
  padding-top: 140px;
}
@media (max-width: 770px) {
  .second__container {
    padding-top: 125px;
  }
}
.second__name {
  color: #FF6E8D;
  text-align: center;
  font-family: "Snell Roundhand";
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (max-width: 770px) {
  .second__name {
    font-size: 36px;
  }
}
.second h2 {
  color: #FFF;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-width: 820px;
  margin: 8px auto 32px;
}
@media (max-width: 770px) {
  .second h2 {
    font-size: 24px;
    margin: 8px auto 24px;
  }
}
.second h3 {
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  max-width: 610px;
  margin: 0 auto 60px;
}
@media (max-width: 770px) {
  .second h3 {
    font-size: 16px;
    margin: 0 auto 48px;
  }
}
.second__imgs {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 46px;
}
@media (max-width: 650px) {
  .second__imgs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .second__imgs {
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 100px;
  }
}
.second__img {
  height: fit-content;
  width: 100%;
}
.second__img:first-child, .second__img:last-child {
  flex: 0.72;
}
@media (max-width: 650px) {
  .second__img:first-child, .second__img:last-child {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .second__img:first-child, .second__img:last-child {
    width: 100%;
  }
}
.second__img:nth-child(2) {
  flex: 1;
}
@media (max-width: 650px) {
  .second__img:nth-child(2) {
    order: 1;
    flex: initial;
  }
}
@media (max-width: 500px) {
  .second__img:nth-child(2) {
    order: 0;
  }
}
.second__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.second ul {
  display: flex;
  flex-direction: row;
  padding-top: 85px;
  width: 100%;
  max-width: 980px;
  margin: 16px auto 0;
  list-style: none;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .second ul {
    flex-wrap: wrap;
    gap: 94px;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .second ul {
    padding-top: 77px;
    gap: 94px;
    flex-direction: column;
    align-items: center;
  }
}
.second li {
  color: #FFF;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  max-width: 240px;
  width: 100%;
  margin-left: 50px;
}
@media (max-width: 770px) {
  .second li {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .second li {
    margin-left: 0;
    text-align: center;
  }
}
.second li span {
  position: absolute;
  color: #444;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 82px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  left: -50px;
  top: -68px;
  z-index: -1;
}
@media (max-width: 600px) {
  .second li span {
    left: 50%;
    transform: translateX(-50%);
  }
}

.third__container {
  padding-top: 140px;
}
@media (max-width: 770px) {
  .third__container {
    padding: 82px 0 0;
  }
}
.third__wrapper {
  padding: 60px 80px;
  background: #F7F4ED;
}
@media (max-width: 940px) {
  .third__wrapper {
    padding: 53px 80px 257px;
  }
}
@media (max-width: 450px) {
  .third__wrapper {
    padding: 53px 16px 257px;
  }
}
.third__name {
  color: #85172E;
  text-align: center;
  font-family: "Snell Roundhand";
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 8px;
}
@media (max-width: 770px) {
  .third__name {
    font-size: 36px;
  }
}
.third h2 {
  color: #101010;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 38px;
}
@media (max-width: 770px) {
  .third h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 450px) {
  .third h2 {
    margin: 0 auto 32px;
    max-width: 314px;
  }
}
.third h3 {
  color: #101010;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  margin-bottom: 16px;
}
@media (max-width: 770px) {
  .third h3 {
    font-size: 16px;
  }
}
.third__buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .third__buttons {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .third__buttons {
    width: 100%;
  }
}
.third__buttons a {
  display: flex;
  flex-direction: row;
  gap: 10px;
  border-radius: 100px;
  background: #85172E;
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  padding: 16px 24px;
  align-items: center;
  transition: background 0.3s linear;
}
.third__buttons a:hover {
  background: #db385b;
  transition: background 0.3s linear;
}
@media (max-width: 450px) {
  .third__buttons a {
    width: 100%;
    justify-content: center;
  }
}
.third__bottom {
  margin-top: 16px;
  color: #101010;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}
@media (max-width: 720px) {
  .third__bottom {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .third__bottom {
    font-size: 16px;
    margin: 16px auto 0;
    max-width: 265px;
  }
}
.third__imgs {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 940px) {
  .third__imgs {
    bottom: 0;
    top: initial;
    height: 47%;
  }
}
.third__img {
  width: fit-content;
  height: fit-content;
  position: absolute;
}
.third__img:first-child {
  top: 57%;
  left: -7%;
  transform: translateY(-50%) rotate(336deg);
}
@media (max-width: 940px) {
  .third__img:first-child {
    left: -138px;
    transform: translateY(-50%) rotate(345deg);
  }
}
.third__img:nth-child(2) {
  top: 41%;
  right: -11%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 940px) {
  .third__img:nth-child(2) {
    height: 205px;
    top: 58%;
    right: -62px;
    transform: translateY(-50%) rotate(356deg);
    z-index: 1;
  }
  .third__img:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.third__img:last-child {
  top: 80%;
  right: -50px;
  transform: translateY(-50%) rotate(343deg);
}
@media (max-width: 940px) {
  .third__img:last-child {
    top: 98%;
    right: initial;
    left: 162px;
    transform: translateY(-50%) rotate(341deg);
    height: 223px;
  }
  .third__img:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.benefits__container {
  margin-top: 140px;
}
@media (max-width: 770px) {
  .benefits__container {
    margin-top: 100px;
  }
}
.benefits__name {
  color: #FF6E8D;
  text-align: center;
  font-family: "Snell Roundhand";
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 8px;
}
@media (max-width: 770px) {
  .benefits__name {
    font-size: 36px;
  }
}
.benefits h2 {
  color: #FFF;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 770px) {
  .benefits h2 {
    font-size: 24px;
  }
}
.benefits__wrapper {
  background-image: url("../public/img/Group 4.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 700px) {
  .benefits__wrapper {
    background-size: 2011px;
    width: calc(100% + 32px);
    margin-left: -32px;
    margin-right: -32px;
  }
}
.benefits ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 78px;
  row-gap: 85px;
  padding-top: 115px;
  padding-bottom: 34px;
  width: 100%;
  max-width: 1028px;
  margin: 16px auto;
  list-style: none;
  justify-content: center;
}
@media (max-width: 700px) {
  .benefits ul {
    flex-direction: column;
    align-items: center;
    padding-top: 93px;
    margin: 0 auto 60px;
    padding-bottom: 0;
    row-gap: 103px;
  }
}
.benefits li {
  color: #FFF;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-left: 50px;
  /* 27px */
  max-width: 240px;
  width: 100%;
}
@media (max-width: 700px) {
  .benefits li {
    text-align: center;
    font-size: 16px;
    margin: 0;
  }
}
.benefits li span {
  position: absolute;
  color: #444;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 82px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  left: -50px;
  top: -68px;
  z-index: -1;
}
@media (max-width: 700px) {
  .benefits li span {
    left: 50%;
    transform: translateX(-50%);
  }
}
.benefits a {
  padding: 16px 24px;
  border-radius: 100px;
  border: 1px solid #FFF;
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  margin: 0 auto;
  display: inline-block;
  transition: backdrop-filter 0.3s linear, background 0.3s linear;
}
.benefits a:hover {
  backdrop-filter: blur(25px);
  background: rgba(133, 23, 46, 0.568627451);
  border: solid 1px transparent;
}
@media (max-width: 450px) {
  .benefits a {
    width: 100%;
  }
}

.footer {
  padding-top: 140px;
}
@media (max-width: 770px) {
  .footer {
    padding-top: 100px;
  }
}
.footer__container {
  padding: 24px 10px 32px;
  border-top: solid 1px #444;
}
@media (max-width: 770px) {
  .footer__container {
    padding: 24px 10px;
  }
}
.footer p {
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}
@media (max-width: 770px) {
  .footer p {
    font-size: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
