.section {
  scroll-margin-top: 55px;
}

.hero {
  height: 100vh;
}

.sr-only {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

.container {
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
}
@media screen and (min-width: 480px) {
  .container {
    min-width: 480px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 640px) {
  .container {
    width: 640px;
    padding: 0 24px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
    padding: 0 32px;
  }
}
@media screen and (min-width: 960px) {
  .container {
    width: 960px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    width: 1024px;
    padding: 0 40px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    width: 1440px;
    padding: 0 50px;
  }
}

.section {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 45px 0;
  }
}
@media screen and (min-width: 1440px) {
  .section {
    padding: 60px 0;
  }
}

.section-title {
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  font-family: "Sofia Sans", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1440px) {
  .section-title {
    font-size: 48px;
  }
}

.section-text {
  margin-bottom: 24px;
  color: #4B2E2E;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .section-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .section-text {
    max-width: 1200px;
    margin: 0 auto 24px;
    font-size: 24px;
  }
}

h2,
h3 {
  color: #D99152;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #D99152;
}

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

html,
body {
  height: 100%;
  color: #4B2E2E;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button,
input,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
  display: block;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(75, 46, 46, 0.9333333333);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
}
@media screen and (min-width: 768px) {
  .nav .container {
    padding: 0.5rem 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .nav .container {
    padding: 1rem 3rem;
  }
}

.logo {
  cursor: pointer;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}

.burger-icon {
  width: 25px;
  height: 3px;
  background-color: #FAD07B;
  transition: 0.3s;
}

.burger-menu:hover .burger-icon {
  background-color: #D99152;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.nav-menu li {
  font-size: 1.4rem;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #E0A024;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    width: 200px;
    height: 100%;
    background: rgba(75, 46, 46, 0.9333333333);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .burger-menu {
    display: flex;
  }
  .burger-icon:nth-child(1) {
    transform-origin: top left;
  }
  .burger-icon:nth-child(2) {
    opacity: 1;
  }
  .burger-icon:nth-child(3) {
    transform-origin: bottom left;
  }
  .nav-menu li {
    margin: 1rem 0;
    text-align: center;
  }
  .burger-menu.active .burger-icon:nth-child(1) {
    transform: rotate(45deg);
  }
  .burger-menu.active .burger-icon:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-icon:nth-child(3) {
    transform: rotate(-45deg);
  }
}
.hero {
  position: relative;
  height: 100vh;
  background: url("../assets/images/hero/hero-desktop-x1.jpg") no-repeat center center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .container {
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 480px) {
  .hero-content .container {
    width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .hero-content .container {
    width: 768px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-content .container {
    width: 1440px;
    padding: 0 50px;
  }
}

.hero-title {
  position: relative;
  padding-top: 100px;
  margin-bottom: 24px;
  font-weight: 400;
  color: #E0A024;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 4px 4px 8px rgba(0, 0, 0, 0.4), 6px 6px 12px rgba(0, 0, 0, 0.6), 8px 8px 16px rgba(0, 0, 0, 0.8);
  font-family: "Marck Script", cursive;
  line-height: 100%;
  font-size: 100px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-title {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1440px) {
  .hero-title {
    font-size: 156px;
    letter-spacing: -5px;
  }
}

.hero-text {
  margin-bottom: 125px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 4px 4px 8px rgba(0, 0, 0, 0.4), 6px 6px 12px rgba(0, 0, 0, 0.6), 8px 8px 16px rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 768px) {
  .hero-text {
    text-align: left;
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-text {
    margin-bottom: 125px;
    font-size: 24px;
  }
}

.hero-button {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 18px 36px;
  box-shadow: inset 0 6px 12px 12px rgba(131, 75, 29, 0.5);
  background: #E0A024;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .hero-button {
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 1440px) {
  .hero-button {
    font-size: 28px;
  }
}
.hero-button:hover {
  background: #D99152;
  border: 2px solid #FAD07B;
}

.about {
  background-color: #FEF9F0;
}
.about .about-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .about .about-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.about .about-item {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 16px;
  background-color: #fff;
  border: 1px solid #D99152;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.about .about-item h3 {
  margin-bottom: 4px;
  color: #D99152;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .about .about-item h3 {
    font-size: 24px;
  }
}
.about .about-item:hover {
  box-shadow: 0 4px 4px 6px rgba(0, 0, 0, 0.1);
}
.about .icon {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}
.about .about-icon--wallet {
  width: 64px;
  height: 64px;
}
.about .about-menu {
  margin-bottom: 32px;
  font-size: 18px;
}
.about .about-menu p {
  margin-bottom: 8px;
}
.about .about-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  font-size: 18px;
}
.about .about-menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding-right: 16px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 2px 4px 4px rgba(82, 50, 22, 0.1);
  background: #fff;
  border: 4px solid #FAD07B;
  font-size: 16px;
}
@media screen and (min-width: 480px) {
  .about .about-menu-item {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .about .about-menu-item {
    width: 600px;
    font-size: 20px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .about .about-menu-item {
    width: 800px;
    font-size: 24px;
  }
}
.about .about-menu-item .mdi {
  color: #fff;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .about .about-menu-item .mdi {
    font-size: 36px;
  }
}
.about .about-menu-item .about-menu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #D99152;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border: 4px solid #FAD07B;
  border-left: none;
  box-shadow: inset 0 4px 8px 8px rgba(131, 75, 29, 0.3);
}
@media screen and (min-width: 768px) {
  .about .about-menu-item .about-menu-icon {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .about .about-menu-item .about-menu-icon {
    font-size: 24px;
    width: 80px !important;
    height: 80px;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .news-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.news-item {
  max-width: 400px;
  width: 300px;
  min-height: 250px;
  padding: 16px;
  background-color: #FEF9F0;
  border: 2px solid #D99152;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.news-item:hover {
  box-shadow: 0 4px 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .news-item {
    width: 380px;
  }
}
@media screen and (min-width: 1440px) {
  .news-item {
    width: 400px;
  }
}
.news-item img {
  height: 350px;
  width: auto;
  margin: 0 auto;
  border-radius: 9px;
  margin-bottom: 16px;
}
.news-item h3 {
  margin-bottom: 8px;
  color: #D99152;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .news-item h3 {
    font-size: 24px;
  }
}
.news .icon {
  width: 72px;
  height: 20px;
  margin-bottom: 8px;
}
.news .news-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 18px 36px;
  border-radius: 50px;
  border: 4px solid #E0A024;
  box-shadow: inset 0 4px 8px 8px rgba(131, 75, 29, 0.5);
  background: #E0A024;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  font-family: "Sofia Sans", sans-serif;
  transition: all 0.3s ease;
}
.news .news-button:hover {
  background: #D99152;
}
.news .news-button:active {
  box-shadow: inset 0 6px 12px 12px rgba(131, 75, 29, 0.5), 0 6px 12px 12px rgba(131, 75, 29, 0.1);
}
@media screen and (min-width: 480px) {
  .news .news-button {
    width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .news .news-button {
    width: 400px;
  }
}
@media screen and (min-width: 1440px) {
  .news .news-button {
    font-size: 28px;
  }
}

.contacts {
  background-color: #FEF9F0;
}
.contacts .contacts-img {
  min-width: 320px;
  height: 360px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .contacts .contacts-img {
    width: 100%;
    height: auto;
  }
}
.contacts img {
  width: 380px;
}
@media screen and (min-width: 768px) {
  .contacts img {
    width: 100%;
  }
}
.contacts .contacts-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.contacts .contacts-list span {
  width: 60px;
  height: 60px;
  background-color: #D99152;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border: 4px solid #FAD07B;
  border-left: none;
  box-shadow: inset 0 4px 8px 8px rgba(131, 75, 29, 0.5);
}
@media screen and (min-width: 768px) {
  .contacts .contacts-list {
    align-items: flex-start;
  }
}
.contacts .contacts-item {
  display: flex;
  align-items: center;
  width: 100%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 8px 16px 16px rgba(82, 50, 22, 0.1);
  background: #fff;
  border: 4px solid #FAD07B;
  font-size: 16px;
}
@media screen and (min-width: 480px) {
  .contacts .contacts-item {
    width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .contacts .contacts-item {
    width: 400px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .contacts .contacts-item {
    font-size: 24px;
  }
}
.contacts .contacts-item div {
  padding-left: 16px;
  -moz-text-align-last: left;
       text-align-last: left;
}
.contacts .contacts-item a {
  display: inline-block;
}

.contacts .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .contacts .container {
    flex-direction: row;
    gap: 36px;
  }
}

.footer {
  color: #FAD07B;
  padding: 20px 0;
  height: 550px;
  background: url("../assets/images/footer/footer-bg-mobile.png") no-repeat bottom center, #523216;
  background-size: 100%;
}
@media screen and (min-width: 480px) {
  .footer {
    background: url("../assets/images/footer/footer-bg-desktop.png") no-repeat bottom center, #523216;
    background-size: contain;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    height: 400px;
  }
}
.footer h2 {
  font-size: 36px;
  margin-bottom: 54px;
  font-family: Marck Script, cursive;
}
@media screen and (min-width: 768px) {
  .footer h2 {
    font-size: 48px;
  }
}
.footer .footer-menu {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer .footer-menu {
    font-size: 24px;
    margin-bottom: 92px;
  }
}
.footer .footer-menu .footer-link {
  transition: all 0.3s ease;
}
.footer .footer-menu .footer-link:hover {
  color: #D99152;
}
.footer .social-list {
  display: flex;
  gap: 20px;
}
.footer .icon {
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}
.footer .icon:hover {
  transform: scale(1.05);
}

.footer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}/*# sourceMappingURL=main.css.map */