* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-main {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    padding: 15px;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    background-color: #F1DEC9;
}

.open {
    display: flex !important;
}

.header,
.footer {
    background-color: #1A233E;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-left: 5px;
    cursor: pointer;
}

.header-nav {
    width: 39%;
    margin-right: 35px;
}

.nav {
    display: flex;
    justify-content: space-between;
}

.nav li {
    list-style: none;
}

.nav li a {
    font-size: 20px;
    text-decoration: none;
    color: #f5f5f5;
}
.nav li a.active {
    color: #f56308;
}

.nav li a:hover {
    color: #f56308;
}

.active {
    color: #f56308;
}

/* Menu burger */
.burger {
    display: none;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 50;
    width: 40px;
    margin-right: 7px;
  }

.burger span {
    height: 2px; 
    width: 80%;
    transform: scale(1);
    background-color: #D9D9D9;
}

  .burger::before, /* рисуем линии - одна сверху и вторая снизу */
  .burger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #D9D9D9;
    transition: all 0.3s ease 0s;
  }
  .burger::before {
    top: 10px;
  }
  .burger::after {
    bottom: 10px;
  } 

  /* Добавляем класс active-menu для анимации иконки бургера */
  .burger.active-menu span {
    transform: scale(0); /* чтобы средняя полоска при клике спряталась*/ 
  }

  .burger.active-menu::before {
    /* width: 35px; */
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
  }

  .burger.active-menu::after {
    /* width: 35px; */
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
  }



.section-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* margin-top: 75px;
    margin-bottom: 86px; */
}

.main-image {
    border-radius: 22px;
    box-shadow: inset 0 4px 10px 10px rgba(0, 0, 0, 0.25);
    margin-left: 78px;
}

.section-title {
    font-family: "Mochiy Pop P One", sans-serif;
    font-weight: 500;
    font-size: 55px;
    color: #15265b;
    text-align: center;
    margin-bottom: 50px;
}

.section-text {
    font-weight: 400;
    font-size: 35px;
    text-align: center;
    color: #1a233e;
    margin-bottom: 168px;
    max-width: 593px;
}

.button {
    display: block;
    border-radius: 10px;
    width: 284px;
    height: 74px;
    background-color: #bb4e0a;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    cursor: pointer;
    border: transparent;
}

.button:hover,
.btn:hover {
    background-color: #de670c;

}

.btn {
    font-size: 30px;
    color: #f5f5f5;
}

.menu-container {
    position: relative;
}

.menu-image {
    text-align: center;
}

.menu-image img,
.contact-image img {
    max-width: 100%;
}

.adorno-azul {
    position: absolute;
    top: 37px;
    left: 24px;
    z-index: -1;
}

.adorno-amarillo {
    position: absolute;
    top: 349px;
    left: 170px;
    z-index: -1;
}

.adorno-naranja {
    position: absolute;
    bottom: -15px;
    left: 0;
    z-index: -1;
}

.adorno-amarillo-dos {
    position: absolute;
    top: 67px;
    right: 158px;
    z-index: -1;
}

.adorno-azul-dos {
    position: absolute;
    bottom: 107px;
    right: 153px;
    z-index: -1;
}

.adorno-naranja-dos {
    position: absolute;
    top: 271px;
    right: 0;
    z-index: -1;
}

.about-container {
    display: flex;
    justify-content: space-around;
}

.about-image {
    text-align: center;
    margin-top: 29px;
}

.about-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 576px;
}

.about-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 60px;
    color: #1A233E;
    margin-bottom: 69px;
    text-align: center;
}

.about-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-text span {
    font-weight: 700;
}

.about-advert {
    font-size: 22px;
    color: #1a233e;
    margin-bottom: 79px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    margin-top: 33px;
}

.contact {
    margin-left: 84px;
}

.contact-title {
    font-weight: 500;
    font-size: 48px;
    margin-bottom: 50px;
}

.form {
    display: flex;
    flex-direction: column;
    width: 320px;
}

label {
    margin-bottom: 10px;
    font-size: 18px;
}

input {
    margin-bottom: 25px;
    height: 37px;
    padding: 5px 10px;
    font-size: 18px;
    border-radius: 5px;
    border: transparent;
}

input::placeholder {
    font-size: 18px;
    color: #7c7878;
}

#check {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.contact-button {
    margin-top: 50px;
    width: 320px;
}

.footer-logo {
    margin-left: 17px;
}

.footer-text {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 27%;
    margin-right: 44px;
}

.footer-description {
    display: flex;
    flex-direction: column;
}

.footer-description span {
    font-size: 18px;
    color: #f5f5f5;
}
