*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
ul,
ol,
li {
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    font: 400 14px/150% Inter, arial, helvetica, sans-serif;
    color: #717171;
    width: 100%;
    max-width: 100%;
}
.wrapper {
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
._container {
    width: 85%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: content-box;
    /* border: 1px solid red; */
}
/* --------------------------------HEADER---------------------------- */
#header {
    /* position: absolute; */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    background: #F5F5F5;
}
.header__container {
    display: flex;
    justify-content: space-between;
    min-height: 134px;
    align-items: center;
}
.header__burger {
    display: none;
}
.logo {
   display: flex;
}
.logo__text {
   font: 400 16px/131% Inika, arial, helvetica, sans-serif; 
   color: #000000;
   margin: 0 0 0 1px;
   padding-top: 4px;
}
.header__menu {
    /* border: 1px solid red; */
}
.menu__list {
    display: flex;
    flex-wrap: wrap;
}
.menu__item {
    margin-right: 47px;
    padding-top: 5px;
}
.menu__item:last-child {
    margin-right: 0;
    padding-right: 2px;
}
.menu__item:nth-child(1) {
    margin-right: 45px;
    padding-bottom: 2px;
  }
.menu__link {
    color: #010201;
    font: 400 16px/313% Inika, arial, helvetica, sans-serif;
}
.menu__link_active {
    color: #E06733;
}
/* ----------------------------768px---------------------------------- */
@media (max-width: 768px) {
  .header__container {
    min-height: 118px;
  }
  ._container {
    width: 88%;
  }
  .logo__text {
    margin-right: 100px;
  }
  .menu__item:nth-child(1) {
    margin-right: 47px;
  }
  .menu__item:last-child {
    padding-right: 3px;
  }
}
/* -----------------------------380px--------------------------------- */
@media (max-width: 380px) {
  body.lock {
    overflow: hidden;
  }
  .header__burger {
    display: block;
    position: relative;
    width: 40px;
    height: 24px;
  }
  .header__burger span {
    position: absolute;
    background-color: #717171;
    width: 100%;
    height: 2px;
    left: 0;
    top: 11px;
    transition: all 0.3s ease 0s;
  }
  .header__burger .header__burger-line-bottom {
    position: absolute;
    background-color: #717171;
    width: 100%;
    height: 2px;
    left: 0;
    top: 33px;
  }
  .header__burger::before,
  .header__burger::after {
    content: '';
    background-color: #717171;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .header__burger::before {
    top: 0;
  }
  .header__burger::after {
    bottom: 0;
  }
  .header__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .header__menu.active {
    top: 117px;
    padding-left: 100px;
    transition: all 0.3s ease 0s;
    overflow: auto;
    height: calc(100vh - 117px);
  }
  .menu__list {
    display: block;
    border: 1px solid yellow;
    text-align: right;
  }
  .menu__list li {
    margin-bottom: 20px;
    margin-right: 100px;
  }
  .menu__item:nth-child(1) {
    margin-right: 100px;
  }
  .menu__item:last-child {
    margin-right: 100px;
    padding-right: 0;
}
  .header__burger.active span {
    transform: scale(0);
  }
  .header__burger.active::before {
    transform: rotate(45deg);
    top: 11px;
  }
  .header__burger.active::after {
    transform: rotate(-45deg);
    bottom: 11px;
  }
}
/* ----------------------------------WELCOME----------------------- */
/* main {
    position: absolute;
    width: 100%;
    top: 132px;
    left: 0;
    z-index: 0;
} */
.main__welcome-container {
    position: relative;
    padding-top: 133px;
    height: 667px;
    z-index: 2;
    align-items: center;
    background: #F5F5F5;
}
.main__welcome-container-block {
    display: flex;
    justify-content: space-between;
    min-height: 417px;
    align-items: center;
    margin-bottom: 138px;
}
.main__welcome-img {
    padding-top: 46px;
}
/* -----------------------------381-767px--------------------------------- */
@media (min-width: 381px) and (max-width: 767px) {
  .main__welcome-img {
    width: 100%;
    height: 100%;
  }
}
.welcome__section {
    width: 549px;
    min-height: 340px;
}
.welcome__section-title {
    color: #717171;
    font: 700 45px/50px Inter, arial, helvetica, sans-serif;
    margin-bottom: 42px;
    padding-top: 49px;
}
@media (min-width: 381px) and (max-width: 767px) {
  .welcome__section-title {
    font: 700 29px/40px Inter, arial, helvetica, sans-serif;
    margin-bottom: 14px;
    padding-top: 17px;
  } 
}
.welcome__section-subtitle {
    color: #717171;
    font: 400 20px/35px Inter, arial, helvetica, sans-serif;
    margin-bottom: 46px;
}
.welcome__section-button {
    width: 158px;
    height: 44px;
    border: 2px solid #E06733;
    border-radius: 10px;
}
.welcome__section-link {
    color: #000000;
    font: 400 16px/20px Inter, arial, helvetica, sans-serif;
}
/* ---------------------------ABOUT------------------------- */
.main__about {
    background: #FFFFFF;
    margin-bottom: 86px
}
.about-container {
    display: flex;
    justify-content: space-between;
    min-height: 479px;
    align-items: center;
    padding-top: 98px;
}
.about-section {
    width: 598px;
    min-height: 350px;
}
.about-section-title {
    color: #499A18;
    font: 400 40px/52px Inika, arial, helvetica, sans-serif;
    margin-bottom: 42px;
}
.about-span__active {
    color: #E06733;
}
.about-section-subtitle {
    color: #636060;
    font: 400 20px/30px Inter, arial, helvetica, sans-serif;
}
/* ---------------------------------------SERVICE--------------------------------- */
.main__service {
    background: #EDF2EC;
    margin-bottom: 39px;
}
.service__container {
    min-height: 1300px;
}
.service-top {
    display: flex;
    margin-bottom: 78px;
}
.service-top__left {
    width: 306px;
}
.service-top__left-title {
    color: #499A18;
    font: 400 40px/52px Inika, arial, helvetica, sans-serif;
    padding-top: 41px;
}
.service-top__right {
    margin-left: 124px;
}
.service-top__right-button {
    width: 162px;
    height: 47px;
    border: 2px solid #E06733;
    border-radius: 5px;
    margin-left: 16px;
    margin-top: 71px;
    margin-right: 21px;
}
.service-top__right-link {
    color: #E06733;
    font: 400 20px/26px Inter, arial, helvetica, sans-serif;
}
.service-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 950px;
}
.service-bottom__block {
    display: flex;
    flex-direction: column;
    min-height: 350px;
    border: 1px solid #E3E1D5;
    border-radius: 20px;
    box-sizing: border-box;
    margin-bottom: 89px;
}
.service-bottom__image {
    display: inline-block;
    border-radius: 20px 20px 0px 0px;
    margin-bottom: 10px;
    
}
.service-bottom__link {
    text-align: center;
    color: #E06733;
    font: 700 20px/20px Inter, arial, helvetica, sans-serif;
    margin-bottom: 14px;
}
.service-bottom__deskciption {
    text-align: center;
    color: #717171;
    font: 400 16px/20px Inter, arial, helvetica, sans-serif;
}
/* -------------------------------PRICES------------------------------ */
.prices-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 91px;
}
.praces-wrap {
    min-height: 282px;
    border: 1px solid #E3E1D5;
    border-radius: 20px;
    padding-left: 12px;
}
.prices-title {
    color: #000000;
    font: 700 40px/48px Inter, arial, helvetica, sans-serif;
    margin-bottom: 60px;
}
.prices-list {
    display: flex;
    flex-direction: column;
    align-content: space-around;
    min-height: 214px;
    padding: 34px 34px 0;
}
.prices-list__item {
    display: flex;
    align-items:center;
    background: #EDF2EC;
    border-radius: 20px; 
    width: 250px;
    height: 50px;
    margin-bottom: 32px;
}
.prices-list__text {
    color: #000000;
    font: 700 20px/20px Inter, arial, helvetica, sans-serif;
    padding-left: 33px;
    margin-right: 36px;
}
.prices-list__text2 {
    margin-right: 13px;
}
.prices-list__text3 {
    margin-right: 20px;
}
.prices-list__image {
    margin-left: 54px;
}
.prices-block-right {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
}
.prices__section-title {
    color: #000000;
    font: 700 40px/50px Inter, arial, helvetica, sans-serif;
    text-align: right;
    margin-bottom: 40px;
}
.prices__section-title-span {
    color: #499A18;
}
.prices__section-button {
    width: 164px;
    height: 49px;
    border: 2px solid #E06733;
    border-radius: 10px;
    cursor: pointer;
}
.prices__section-link {
    color: #E06733;
    font: 700 20px/26px Inika, arial, helvetica, sans-serif;
}
/* ---------------------------CONACTS------------------------- */
.contacts__prices {
    background: #EDF2EC;
}
.contacts-container {
    display: flex;
}
.contacts-title {
    color: #499A18;
    font: 700 40px/52px Inika, arial, helvetica, sans-serif;
    padding-top: 60px;
    margin-right: 65px;
}
.contacts-block-left-img {
    padding-top: 55px;
    margin-right: 114px;
}
.contacts-list__item {
    display: flex;
    justify-content: space-between;
    align-items:center;
    background: #D6E7D2;
    width: 37%;
    height: 50px;
    margin-top: 152px;
    padding-left: 24px;
    padding-right: 34px;
}
.contacts-list__text {
    color: #000000;
    font: 400 20px/40px Inter, arial, helvetica, sans-serif;
}
/* ---------------------FOOTER------------------------ */
.footer {
    
    min-height: 130px;
    background: #FFFFFF;
    align-items: center;
    display: inline-flex;
}
.footer-container {
    
    display: flex;
    justify-content: space-between;
    /* align-content: center; */
    align-items: center;
}
.footer__left {
    display: flex;
    
}
