html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 100%;
  background-color: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
  color: #000000;
  font-family: "Inter", sans-serif, sans-serif;

  
}

.wrapper {
  width: 1440px;
  max-width: 1440px;
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

@font-face {
  font-family: "Inter", sans-serif;
  src: local('Sansita'),
       url('../fonts/Sansita-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter", sans-serif;
  src: local('Sansita'),
       url('../fonts/Sansita-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}


@font-face {
  font-family: "Inter", sans-serif;
  src: url("../fonts/Sansita/Sansita-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Inter", sans-serif;
  src: url("../fonts/Sansita/Sansita-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Inter", sans-serif;
  src: url("../fonts/Sansita/Sansita-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}


@font-face {
  font-family: "Inter", sans-serif;
  src: url("../fonts/Sansita/Sansita-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Inter", sans-serif;
  src: url("../fonts/Sansita/Sansita-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "Inter", sans-serif;
  src: url("../fonts/Sansita/Sansita-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}


h1 {
  color: #687864;
  text-align: center;
  font-family: Georgia;
  font-size: 70px;
  font-style: italic;
  font-weight: 700;
  line-height: 62px; 
  letter-spacing: 5.5px;
  text-transform: capitalize;
}

h2 {
  color: #687864;
  text-align: center;
  font-family: Georgia;
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  line-height: 36px; 
  letter-spacing: 3.2px;
}

h3 {
  color: #687864;
  text-align: center;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 40px; 
  letter-spacing: 0.28px;
}

h4 {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-family: "Inter", sans-serif, sans-serif;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}

body._lock {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  h1 {
    color: #687864;
    text-align: center;
    font-family: Georgia;
    font-size: 45px;
    font-style: italic;
    font-weight: 700;
    line-height: 62px; 
    letter-spacing: 5.5px;
    text-transform: capitalize;
  }
  h2 {
    color: #687864;
    text-align: center;
    font-family: Georgia;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 36px; 
    letter-spacing: 3.2px;
  }
  h3 {
    color: #687864;
    text-align: center;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 25px; 
    letter-spacing: 0.28px;
  }
  h4 {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-family: "Inter", sans-serif, sans-serif;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
  }
}
.no_wrap {
  white-space: nowrap;
}
/* ===== КАРУСЕЛЬ ===== */
.hero {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 20px;
}
.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide.active {
    opacity: 1;
}
.slide-content {
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 40px 60px;
    border-radius: 20px;
    max-width: 600px;
}
.slide-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}
.slide-content p {
    font-size: 18px;
    margin-bottom: 20px;
}
.slide-content a {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}
.slide-content a:hover {
    background: #d35400;
}
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}
.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}
.carousel-dots .dot.active {
    background: white;
}
