@charset "UTF-8";
@font-face {
  font-family: "Hatton";
  src: url("../fonts/hatton-font-family/PP Hatton Medium 500.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Hatton";
  src: url("../fonts/hatton-font-family/PP Hatton Bold 700.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Hatton";
  src: url("../fonts/hatton-font-family/PP Hatton Ultralight 200.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
/* Garbata Thin 100 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
/* Garbata Thin Italic 100 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
/* Garbata ExtraLight 200 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
/* Garbata ExtraLight Italic 200 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-ExtralightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
/* Garbata Light 300 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
/* Garbata Light Italic 300 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
/* Garbata Regular 400 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* Garbata Italic 400 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
/* Garbata Medium 500 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
/* Garbata Medium Italic 500 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
/* Garbata Bold 700 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* Garbata Bold Italic 700 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
/* Garbata Black 900 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/* Garbata Black Italic 900 */
@font-face {
  font-family: "Garbata";
  src: url("../fonts/garbata/GarbataTrial-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
/* :root {
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
} */
.numbers-safe {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: normal;
}

h1,
h2,
h3,
.title {
  font-family: "Hatton", serif;
}

body,
p,
li {
  font-family: "Garbata", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Garbata", serif;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Hatton", serif;
  color: #1a1a1a;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0;
}
.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .footer .footer-links {
    flex-direction: column;
    text-align: center;
  }
}
.footer .footer-links__link {
  color: #fff;
  font-family: "Garbata", serif;
}

.navbar {
  background: rgba(247, 247, 247, 0.6745098039);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.navbar .nav-link {
  font-family: "Garbata", serif;
  font-size: 18px;
  padding: 10px 15px;
}
.navbar .nav-link:hover {
  color: #107aca;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 480px;
  max-height: 1080px;
  color: white;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.33);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(2.5px);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5vw;
  max-width: 1100px;
  margin: 0 auto;
}

.hero__title {
  line-height: 1.05;
  margin: 0 0 0.7em 0;
  font-size: 50px;
  font-weight: 300;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.485);
  letter-spacing: 20px;
  color: rgba(0, 0, 0, 0.8274509804);
}

.hero__subtitles {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4em, 2vw, 0.9em);
  /*     letter-spacing: 20px;
   */ /*     margin-top: 10px;
*/
}

.hero__subtitle {
  font-weight: 300;
  margin: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.111);
  line-height: 1.55;
  letter-spacing: 4px;
  color: #000000;
}
.hero__subtitle--uppercase {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8941176471);
}

@media (max-width: 480px) {
  .hero {
    margin: 0;
    min-height: 520px;
  }
  .hero__title {
    color: rgba(0, 0, 0, 0.631372549);
    font-weight: 400;
    letter-spacing: 0.5vw;
    text-shadow: 0 0px 2px rgba(119, 115, 115, 0.2);
  }
  .hero__subtitle {
    color: rgba(0, 0, 0, 0.631372549);
    letter-spacing: 0.3vw;
    font-weight: 400;
    text-shadow: 0 0px 2px rgba(119, 115, 115, 0.2);
  }
  .hero .hero__overlay {
    background: rgba(255, 255, 255, 0.345);
  }
  .hero .hero__content {
    padding: 0 18px;
  }
  /* Очень широкие экраны + retina */
}
@media (max-width: 480px) and (min-width: 481px) and (max-width: 965px) {
  .hero {
    margin: 0;
    min-height: 520px;
  }
  .hero__title {
    color: rgba(0, 0, 0, 0.631372549);
    font-weight: 400;
    letter-spacing: 0.5vw;
    text-shadow: 0 0px 2px rgba(119, 115, 115, 0.2);
  }
  .hero__subtitle {
    color: rgba(0, 0, 0, 0.631372549);
    letter-spacing: 0.3vw;
    font-weight: 400;
    text-shadow: 0 0px 2px rgba(119, 115, 115, 0.2);
  }
  .hero .hero__overlay {
    background: rgba(255, 255, 255, 0.345);
  }
  .hero .hero__content {
    padding: 0 18px;
  }
}
@media (max-width: 480px) and (min-width: 1200px) {
  .hero__title {
    font-size: clamp(1.8rem, 3vw, 2.1rem);
  }
  .hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
  }
}
@media (max-width: 480px) and (min-width: 1800px) {
  .hero__content {
    max-width: 1300px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .hero__image {
    image-rendering: crisp-edges;
  }
}
.intro {
  padding: 80px 0;
  /*         margin-left: 20px;
  */
  /* 
  &__image {
      width: 80%;
      border-radius: 8px;

      height: 80%;
      object-fit: cover;
  }
  &__image-block {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 60%;
      height: 60%;


  } */
  /* &__content {
      margin-top: 5%;
  } */
}
.intro__content-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.intro__layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .intro__layout {
    flex-direction: column;
  }
}
.intro__content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  gap: 40px;
  width: 100%;
}
.intro__image-block {
  display: block;
  margin: 0 auto;
  width: 70%;
  height: 100%;
  border-radius: 8px;
}
.intro__image {
  display: block;
  margin: 0 auto;
  width: 70%;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}
.intro__content-left {
  width: 80%;
}
.intro__title {
  font-family: "Hatton", serif;
  font-weight: 400;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}
.intro__subtitle {
  text-align: center;
  margin: 20px 0 20px 0;
}
@media (max-width: 768px) {
  .intro {
    font-size: 18px;
  }
}
.intro__text {
  /* margbottom: 20px;in- */
  font-size: 18px;
}
@media (max-width: 768px) {
  .intro__text {
    font-size: 16px;
  }
}
.intro__list-item {
  list-style-type: circle;
}

@media (max-width: 480px) {
  .intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
  .intro__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
  .intro__content,
  .intro__image-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
}
@media (min-width: 481px) and (max-width: 965px) {
  .intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
  .intro__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
  .intro__content,
  .intro__image-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
}
.couples {
  padding: 80px 0;
  background: #f7f7f7;
}
.couples__title {
  font-family: "Hatton", serif;
  font-weight: 400;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}
.couples__subtitle {
  /*         font-size: 20px;
  */
  margin-bottom: 20px;
  text-align: center;
}
.couples__text {
  margin-bottom: 20px;
  font-size: 18px;
}
.couples__note {
  padding: 20px;
  color: black;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #f4e7e7;
}
.couples__image {
  margin-top: 40px;
  width: 100%;
  border-radius: 8px;
}
.couples__text-block {
  display: block;
  margin: 0 auto;
  width: 45%;
}
.couples__content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  /* gap: 20px; */
}

@media (max-width: 480px) {
  .couples {
    padding: 80px 0;
    background: #f7f7f7;
    /*    &__content {
        padding: 40px;
    } */
  }
  .couples__content-wrapper {
    flex-direction: column;
  }
  .couples__subtitle {
    text-align: center;
    margin: 10px 0 20px 0;
  }
  .couples__text-block {
    width: 90%;
    margin-bottom: 20px;
  }
  .couples__title {
    text-align: center;
    margin-top: -40px;
  }
  .couples__text {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 965px) {
  .couples {
    padding: 80px 0;
    background: #f7f7f7;
    /*    &__content {
        padding: 40px;
    } */
  }
  .couples__content-wrapper {
    flex-direction: column;
  }
  .couples__subtitle {
    text-align: center;
    margin: 10px 0 20px 0;
  }
  .couples__text-block {
    width: 90%;
    margin-bottom: 20px;
  }
  .couples__title {
    text-align: center;
    margin-top: -20px;
  }
  .couples__text {
    font-size: 16px;
  }
}
.qualification {
  padding: 80px 0;
}
.qualification__layout {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .qualification__layout {
    flex-direction: column;
  }
}
.qualification__content {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .qualification__content {
    width: 90%;
    margin-top: 40px;
  }
}
.qualification__image {
  width: 70%;
  height: 100%;
  border-radius: 8px;
  /* gap: -50px; */
}
.qualification__title {
  font-family: "Hatton", serif;
  font-weight: 400;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}
.qualification__subtitle {
  text-align: center;
  margin: 20px 0 20px 0;
}
.qualification__item {
  font-size: 18px;
  margin-bottom: 10px;
}
.qualification__image-block {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.qualification__content-block {
  width: 100%;
}

@media (max-width: 480px) {
  .qualification__qualification-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .qualification__image-block {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .qualification__title {
    text-align: center;
  }
  .qualification__subtitle {
    text-align: center;
    margin: 10px 0 20px 0;
  }
}
@media (min-width: 481px) and (max-width: 965px) {
  .qualification__qualification-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .qualification__image-block {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .qualification__title {
    text-align: center;
  }
  .qualification__subtitle {
    text-align: center;
    margin: 30px 0 20px 0;
  }
}
.conditions {
  padding: clamp(60px, 12vw, 120px) 0;
  background: #f7f7f7;
  /*  &__text {
      font-size: clamp(1rem, 2vw, 1rem);
      line-height: 1.65;
      color: #444;
      max-width: 780px;
      margin: 0 auto 1.8em;

      &:last-child {
          margin-bottom: 0;
      }
  } */
}
.conditions__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}
.conditions__title {
  font-family: "Hatton", serif;
  font-weight: 400;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  margin-bottom: clamp(1.2em, 4vw, 2em);
  text-align: center;
}
.conditions__text {
  margin-bottom: 20px;
  font-size: 18px;
}
@media (max-width: 640px) {
  .conditions__text {
    font-size: 16px;
  }
}

.pricing {
  padding: 80px 0;
}
.pricing__title {
  font-family: "Hatton", serif;
  font-weight: 400;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}
.pricing__table {
  width: 100%;
  border-collapse: collapse;
}
.pricing__table td {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}
@media (max-width: 576px) {
  .pricing__table tr {
    display: block;
    margin-bottom: 20px;
  }
  .pricing__table td {
    display: block;
  }
}
.pricing__button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #107aca;
  color: #fff;
  border-radius: 6px;
}

@media (max-width: 480px) {
  .pricing {
    padding: 40px 0;
  }
  .pricing__title {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .pricing__button {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 481px) and (max-width: 965px) {
  .pricing {
    padding: 40px 0;
  }
  .pricing__title {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .pricing__button {
    width: 100%;
    text-align: center;
  }
  .pricing__table {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.contact {
  padding: 80px 0;
  background: #f7f7f7;
}
.contact__title {
  font-family: "Hatton", serif;
  font-weight: 400;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}
.contact__layout {
  display: flex;
  justify-content: space-around;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .contact__layout {
    flex-direction: column;
  }
}
.contact__image {
  display: block;
  margin: 0 auto;
  width: 80%;
  border-radius: 8px;
}
.contact__text {
  margin-bottom: 15px;
  font-size: 18px;
}
.contact__contact-info {
  width: 30%;
}
@media (max-width: 768px) {
  .contact__contact-info {
    width: 90%;
  }
}
.contact__image-block {
  width: 70%;
}
@media (max-width: 768px) {
  .contact__image-block {
    width: 90%;
    margin-top: 40px;
  }
}
.contact__map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  margin-top: 40px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .contact__map iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact__layout {
    flex-direction: column;
  }
  .contact__title {
    text-align: center;
    margin: -20px 0 35px 0;
  }
  .contact__contact-info {
    text-align: center;
  }
  .contact__text {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 965px) {
  .contact__title {
    text-align: center;
    margin: -20px 0 35px 0;
  }
  .contact__contact-info {
    text-align: center;
  }
  .contact__text {
    font-size: 16px;
  }
}