@import url("https://fonts.googleapis.com/css2?family=Kreon:wght@300..700&display=swap");
@import url("reset.min.css");
:root {
  --primary-color: #b85c70;
  --secondary-color: #f7e8da;
  --background: #faf4f2;
  --text-color: #3e2c29;
  --text-color-secondary: #7f636e;
  --text-gold-accent: #d6bfa5;
  --btn-hover-bg: #a6475a;
  --black: #1c1c1c;
}

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

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

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

.title {
  font-size: 50px;
}

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

.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(--secondary-color);
  top: 11px;
}

.btn {
  display: table;
  background: var(--text-gold-accent);
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
  padding: 12px 40px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  color: #fff;
  background: var(--btn-hover-bg);
}

.wrapper {
  overflow: hidden;
}

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

.inner {
  position: relative;
  z-index: 1;
  padding: 64px 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;
  transition: 0.3s;
  background: #fff;
}
.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: 200px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav-list li button {
  background: none;
  border: none;
  padding: 0;
  font-size: 24px;
  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: var(--primary-color);
  transition: 0.3s;
}
.header__nav-list li button:hover {
  color: var(--primary-color);
}
.header__nav-list li button:hover::before {
  bottom: -4px;
  opacity: 1;
}
.header__btn {
  display: none;
}

.hero {
  padding-top: 99px;
}
.hero__inner {
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero__info {
  max-width: 500px;
}
.hero__info-title {
  font-size: 60px;
}
.hero__info-title span {
  color: var(--primary-color);
}
.hero__info-text {
  font-size: 22px;
  margin: 24px 0;
}
.hero__img {
  max-width: 500px;
  -webkit-mask-image: url("../img/hero-mask.png");
  mask-image: url("../img/hero-mask.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about__img {
  max-width: 500px;
  height: 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%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 45% 50%;
     object-position: 45% 50%;
}
.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;
}

.offering__title {
  text-align: center;
  margin-bottom: 40px;
}
.offering__box {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.offering__item {
  max-width: 500px;
  width: 100%;
  padding: 24px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 12px;
}
.offering__item:nth-child(2) {
  background: var(--text-color-secondary);
}
.offering__item-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}
.offering__item-list li {
  font-size: 22px;
}
.offering__btn {
  margin: 0 auto;
}

.process__title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.process__box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.process__item {
  flex: 1;
}
.process__item-num {
  background: var(--secondary-color);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-size: 30px;
  font-weight: 600;
  margin: 0 auto 24px;
}
.process__item-text {
  text-align: center;
}
.process__item-text b {
  color: var(--primary-color);
}

.testimonials__title {
  margin-bottom: 40px;
}
.testimonials__box {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.testimonials__item {
  padding: 24px;
  border-radius: 12px;
  background: var(--secondary-color);
  box-shadow: 0 0 10px 1px rgba(28, 28, 28, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testimonials__item-text {
  margin-bottom: 24px;
  display: flex;
  flex-grow: 1;
}
.testimonials__item-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonials__item-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.testimonials__item-name {
  font-size: 18px;
  font-weight: 500;
}

.cta {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
}
.cta__title {
  margin-bottom: 24px;
}
.cta__text {
  max-width: 800px;
  margin: 0 auto 24px;
}
.cta__btn {
  margin: 0 auto;
  background: var(--secondary-color);
}
.cta__btn:hover {
  background: var(--text-color);
}

.contact__title {
  text-align: center;
  margin-bottom: 16px;
}
.contact__text {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 550px;
  width: 100%;
  background: var(--primary-color);
  padding: 24px;
  border-radius: 12px;
  margin: 0 auto 40px;
}
.contact__form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 20px;
  color: #fff;
}
.contact__form input {
  border-radius: 6px;
  border: none;
  padding: 12px;
  color: var(--black);
}
.contact__form button.btn {
  margin-top: 16px;
  background: var(--black);
  color: #fff;
}
.contact__form button.btn:hover {
  color: var(--black);
  background: var(--secondary-color);
}
.contact__form .iti__country-list {
  width: 400px;
  color: var(--black);
}
.contact__form .iti__country-list li {
  font-size: 20px;
}
.contact__form .iti--separate-dial-code .iti__selected-dial-code {
  color: var(--black);
}
.contact__info {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
.contact__info-list {
  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: 200px;
}
.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(--primary-color);
  color: #fff;
}
.thanks__img {
  max-width: 250px;
  height: 250px;
  margin: 0 auto 40px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.thanks__title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 24px;
}
.thanks__text {
  text-align: center;
  font-size: 24px;
  max-width: 700px;
  margin: 24px auto 0;
}

@media (max-width: 1023px) {
  .inner {
    padding: 64px 0;
  }
  .container {
    padding: 0 16px;
  }
  .header__logo {
    max-width: 175px;
  }
  .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 {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .hero__img {
    max-width: 320px;
    height: 300px;
  }
  .hero__info {
    text-align: center;
  }
  .hero__info-btn {
    margin: 0 auto;
  }
  .about__inner {
    flex-direction: column;
  }
  .about__img {
    max-width: 400px;
    height: 350px;
  }
  .about__info {
    max-width: 100%;
  }
  .offering__box {
    gap: 24px;
  }
  .cta__title {
    max-width: 600px;
    margin: 0 auto 24px;
  }
  .contact__box {
    flex-direction: column;
    align-items: center;
  }
  .contact__form {
    max-width: 100%;
  }
  .contact__info {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 40px 0;
  }
  .title {
    font-size: 30px;
  }
  .text,
  ul li,
  ol li {
    font-size: 16px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 20px;
    text-align: center;
  }
  .header__logo-img {
    width: 150px;
  }
  .header__nav-list {
    gap: 30px;
  }
  .hero {
    padding-top: 74px;
  }
  .hero__inner {
    padding: 64px 0;
  }
  .hero__info-title {
    font-size: 40px;
  }
  .hero__info-btn {
    width: 100%;
  }
  .about__img {
    height: 305px;
  }
  .offering__box {
    flex-direction: column;
  }
  .offering__btn {
    width: 100%;
  }
  .process__box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .process__item {
    width: 100%;
    flex: unset;
  }
  .testimonials__box {
    flex-direction: column;
  }
  .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: 100px;
  }
  .footer__links {
    gap: 16px;
  }
  .footer__links-item {
    font-size: 14px;
  }
  .footer__copy {
    font-size: 14px;
  }
  .thanks__img {
    margin-bottom: 24px;
  }
  .thanks__title {
    font-size: 30px;
  }
  .thanks__text {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */