*{
    padding: 0;
    margin: 0;
}
html{
	scroll-behavior: smooth;
}
body{
    font-family: "Baloo Paaji 2", Sans-serif;
    background-color: #1b1c20;
}
.burger-menu_button {
    position: fixed;
    top: 51px;
    right: 15px;
    z-index: 30;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgb(108 100 100 / 38%);;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: none;
  }
  .burger-menu_button:hover .burger-menu_lines {
    filter: brightness(0.7);
  }
  
  .burger-menu_button:hover {
    background-color: rgba(255, 255, 255, 0.7);
  }
  
  .burger-menu_lines::before,
  .burger-menu_lines::after,
  .burger-menu_lines {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #cf9c6c;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .burger-menu_lines {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .burger-menu_lines::before {
    content: '';
    top: -12px;
  }
  .burger-menu_lines::after {
    content: '';
    top: 12px;
  }
  
  
  .burger-menu_active .burger-menu_lines {
    background-color: transparent;
  }
  .burger-menu_active .burger-menu_lines::before {
    top: 0;
    transform: rotate(45deg);
  }
  .burger-menu_active .burger-menu_lines::after{
    top: 0;
    transform: rotate(-45deg);
  }
  
  .burger-menu_nav {
    padding-top: 120px;
    position: fixed;
    top: 0;
    z-index: 20;
    display: flex;
    flex-flow: column;
    height: 100%;
    background-color: #e5b789;
    overflow-y: auto;
    right: -120%;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
  }
  .burger-menu_active .burger-menu_nav {
    right: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .burger-menu_link {
    padding: 18px 35px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
    color: #1b1c20;
    border-bottom: 1px solid #fff;
  }
  .burger-menu_link:first-child {
    border-top: 1px solid #fff;
  }
  .burger-menu_link:hover {
    filter: brightness(0.9);
  }
  .burger-menu_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
  }
  .burger-menu_active .burger-menu_overlay {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
  }  
.header1{
    width: 100%;
    height: 87vh;
    background-image: url('../img/header.jpg');
    background-position-y: -972px;
    background-repeat: no-repeat;
}
.header_wrap{
    position: relative;
    overflow: hidden;
    padding: 93px 0;
    z-index: 10;
}
.header_wrap::after{
    content: '';
    opacity: 0.7;
    background-color: #1b1c20;
    background-position: center center;
    border-color: transparent;
    position: absolute;
    z-index: -1;
    top: 20px;
    width: 100%;
    height: 100%;
    border-style: solid;
    box-shadow: 2px 2px 3px 1px rgba(0,0,0,0.3);
}

.header_wrap_menu{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.logo img{
    width: 300px;
    height: 120px;
    cursor: pointer;
}
.menu_item {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
    margin: 0 15px;
}
.coll{
    text-decoration: none;
    color: #ddae81;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 700;
}
.modal {
    position: fixed; 
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5); 
    z-index: 1050;
    opacity: 0;
    -webkit-transition: opacity 200ms ease-in; 
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
    pointer-events: none; 
    margin: 0;
    padding: 0;
}
.modal:target {
    opacity: 1; 
	  pointer-events: auto; 
    overflow-y: auto; 
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    background-color: #fff;
    text-align: center;
    padding: 40px 25px;
}
@media (min-width: 576px) {
  .modal-dialog {
      max-width: 500px;
      margin: 30px auto;
  }
} 
.modal-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}
@media (min-width: 768px) {
  .modal-content {
      -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
      box-shadow: 0 5px 15px rgba(0,0,0,.5);
  }
}
.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eceeef;
}
.modal-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}
.form_logo{
    font-size: 36px;
    line-height: 1.23;
    font-weight: 700;
}
.form_txt{
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    max-width: 420px;
    padding: 15px 0;
    margin: 0 auto;
}
.label{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}
.label input{
    color: #000000;
    border: 1px solid #c9c9c9;
    height: 60px;
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
}
.label label{
    font-weight: 300;
    color: #000;
    font-size: 20px;
    line-height: 1.55;
    padding-bottom: 5px;
}
.close2{
    color: #ffffff;
    background-color: #000000;
    width: 500px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
.close{
    color: #ffffff;
    background-color: #62c584;
    width: 500px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
h1{
    line-height: 44px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
}
.header_logo p{
    color: #ddae81;
    font-size: 24px;
    line-height: 1.55;
    font-weight: 300;
    max-width: 550px;
}
.header_logo{
    padding: 80px 0 80px 150px;
}
.header_but{
    display: flex;
    margin-left: 40px;
}
.header_but a{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: #ddae81;
    color: #1b1c20;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    width: 350px;
    height: 55px;
    margin: 0 20px ;
    transition: all .4s;
}
.header_but a:hover{
    background-color: #fff;   
}
.support_logo{
    color: #ddae81;
    font-size: 36px;
    font-weight: 400;
    line-height: 38px;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    padding: 50px 0;
}
.support_items{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.support_wrap{
    background-size: cover;
    color: #fff;
    transition: all .4s;
    overflow: hidden;
    width: 560px;
    height: 360px;
    position: relative;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
.support_wrap:after{
    content: '';
    background-color: #000;
    opacity: .7;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.support_wrap1{
    background-image: url('../img/support.jpg');
    margin-bottom: 40px;
}
.support_wrap2{
    background-image: url('../img/support2.jpg');
    margin-bottom: 40px;
}
.support_wrap3{
    background-image: url('../img/support3.jpg');
}
.support_wrap4{
    background-image: url('../img/support4.jpg');
}
.support_wrap h2{
    padding-left: 20px;
    position: relative;
    z-index: 8;
}
.support_wrap_text{
    transition: all .5s;
    width: 100%;
    color: #fff;
    display: flex;
    position: relative;
    z-index: 8;
    justify-content: center;
}

.support_items a{
    color: #ffffff;
    font-size: 14px;
    font-family: 'Montserrat',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 700;
    border-width: 1px;
    border-radius: 30px;
    background-position: center center;
    border-color: #ffffff;
    width: 440px;
    height: 55px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 2px solid #fff;
    border-radius: 60px;
    margin-top: 20px;
    position: relative;
    z-index: 8;
}
.support_item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.advantages_items{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1114px;
    margin: 0 auto;
}
.advantages_item{
    display: flex;
    color: #fff;
    flex-direction: column;
    max-width: 300px;
    margin-bottom: 50px;
}
.advantages_item h3{
    line-height: 21px;
    font-size: 18px;
    font-weight: 700;
    max-width: 150px;
    padding-bottom: 15px;
}
.advantages_item p{
    line-height: 20px;
    font-size: 13px;
    font-weight: 400;
}
.prom_btn{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: #ddae81;
    color: #1b1c20;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
    width: 350px;
    height: 55px;
    margin: 0 20px ;
    transition: all .4s;
    margin: 0 auto;
}
.about{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.about_img img{
    border-radius: 30px;
    width: 500px;
    height: 320px;
}
.about_text h2{
    line-height: 30px;
    color: #ddae81;
    font-size: 23px;
    padding: 40px 0 0 0;
    font-weight: 700;
}
.about_text p{
    text-align: center;
    font-weight: 400;
    line-height: 20px;
    font-size: 13px;
    padding-bottom: 40px;
}
.about_about{
    line-height: 17px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}
.tovar_wrap{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.tovar_item{
    display: flex;
    flex-direction: column;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0px 0.5px 4px 3px rgba(197, 195, 195, 0.2);
    background-color: #ecd8c3;
    max-width: 350px;
    transition: all .6s;
}
.tovar_item:hover{
    background-color: #f6ede5;
}
.tovar_logo{
    color: #cf9c6c;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
}
.tovar_postlogo{
    color: #1b1c20;
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    padding: 10px 0 30px 0;
}
.tovar_about p{
    color: #1b1c20;
    font-size: 13px;
    line-height: 20px;
    max-width: 250px;
}
.tovar_all{
    color: #1b1c20;
    font-size: 13px;
    line-height: 20px;
    padding: 20px 0;
}
.header_button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.header_sait{
    padding-right: 40px;
}
.header_sait a{
    color: #ddae81;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
}
.tovar_pris{
    color: #1b1c20;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    padding: 30px 0;
    text-align: center;
    margin: 0 auto;
}
.tovar_btn{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 30px;
    background-color: #1b1c20;
    line-height: 1.55;
    font-weight: 700;
    font-size: 13px;
    margin: 0 auto;
    width: 250px;
    height: 40px;
}
.reviews{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.reviews_item{
    display: flex;
    flex-direction: column;
    max-width: 560px;
}
.reviews_txt{
    font-size: 15px;
    line-height: 1.55;
    font-weight: 300;
    color: #fff;
}
.reviews_name{
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
    padding: 20px 0 20px 0;
}
.form_wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inp_one{
    color: #ffffff;
    border: 1px solid #000000;
    background-color: #5c5c5c;
    height: 60px;
    padding: 0 20px;
    width: 720px;
    font-size: 20px;
    border-radius: 80px;
    margin-bottom: 30px;
}
.inp_two{
    color: #ffffff;
    border: 1px solid #000000;
    background-color: #5c5c5c;
    height: 85px;
    padding: 0 20px;
    width: 720px;
    font-size: 20px;
    border-radius: 80px;
    margin-bottom: 30px;
}
.form_buuton{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    color: #1b1c20;
    background-color: #ddae81;
    font-weight: 700;
    width: 145px;
    text-decoration: none;
    border-radius: 30px;
}
.footer_logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_logo img{
    width: 300px;
    height: 120px;
    padding: 70px 0 30px 0;
    cursor: pointer;
}
.footer_cont{
    display: flex;
    padding-bottom: 30px;
    justify-content: space-around;
    color: #fff;
    flex-wrap: wrap;
}
.fot1{
    color: #ddae81;
    font-size: 14px;
    line-height: 36px;
}
.fot2{
    font-size: 14px;
    line-height: 36px;
}
#toTop {
    width: 40px;
    height: 40px;
    background: #cf9c6c;
    text-align:center;
    padding:5px;
    position:fixed;
    bottom:30px; 
    right:30px;
    cursor:pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1b1c20;
    font-size:23px;
    border-radius: 50%;
    z-index: 100;
    transform: rotate(270deg);
}
#zwerxu{
    display: flex;
    padding: 30px 0;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}
.er a{
    font-size: 20px;
    color: #fff;
    padding: 0 26px;
    text-decoration: none;
}
.polit{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.polit h1{
    font-size: 30px;
    padding-bottom: 20px;
    color: #cf9c6c;
}
.polit p{
    line-height: 25px;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999;
    animation: fade .6s;
    overflow: auto;
    display: flex;
    text-align: center;
    display: none;
}
.popup {
    top: 25%;
    left: 0;
    right: 0;       
    font-size: 14px;
    margin: auto;
    width: 80%;
    max-width: 462px;
    position: absolute;
    padding: 50px 20px;
    color: #1b1c20;
    background: #fff;
    z-index: 1000;
    font: 14px/18px 'Tahoma', Arial, sans-serif;
    animation: fade .6s;
}
.close3 {
    width: 220px;
    height: 40px;
    border: none;
    background-color: #000;
    cursor: pointer;
    outline: none;
    display: flex;
    margin: 0 auto;
    font-size: 16px;
    transition: all .4s;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-top: 20px;
}
.footer_menu__item{
    text-decoration: none;
    color: #ddae81;
    font-size: 14px;
    line-height: 36px;
}
@media (max-width: 893px){
    .header_button{
        justify-content: center;
    }
    .header_sait {
        padding: 20px 0 0 0;
    }
    .support_wrap3{
        margin-bottom: 40px;
    }
    .support_wrap4{
        margin-bottom: 40px;
    }
}
@media (max-width: 770px){
    .inp_two, .inp_one{
        width: 420px;
    }
    .header_logo{
        padding: 80px 40px 40px 40px;
    }
    .header_wrap_menu{
        flex-direction: column;
    }
    .menu{
        margin: 20px 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .header_wrap{
        padding: 50px 0;
    }
    .logo img {
        height: 95px;
    }
    .header_but{
        flex-wrap: wrap;
    }
    .header_but a{
        margin-bottom: 20px;
    }
    header{
        height: 95vh;
    }
    .header_button{
        justify-content: center;
    }
    .header_sait {
        padding: 20px 0 0 0;
    }
    .tovar_item{
        margin-bottom: 20px;
    }
}
@media (max-width: 610px){
    h1{
        font-size: 30px;
    }
    .header_logo p{
        font-size: 20px;
    }
    .support_wrap{
        width: 360px;
    }
    .support_items a{
        width: 340px;
    }
    .advantages_items{
        justify-content: center;
        text-align: center;
    }
    .advantages_item h3{
        margin: 0 auto;
    }
    .about_img img{
        width: 360px;
        height: 280px;
    }
}
@media (max-width: 580px){
    .header_logo {
        padding: 10px 40px;
    }
    .reviews_item{
        text-align: center;
    }
    .close, .close2{
        width: 350px;
        margin: 0 auto;
    }
    .burger-menu_button {
        display: block;
    }
    .menu{
        display: none;
    }
    header {
        height: 80vh;
    }
    .support_wrap_text{
        font-size: 13px;
    }
}
@media (max-width: 460px){
    .inp_two, .inp_one {
        width: 340px;
    }
    .footer_cont{
        text-align: center;
    }
    .header_wrap {
        padding: 50px 0 20px 0;
    }
}
@media (max-width: 425px){
    .header_but{
        display: none;
    }
    .inp_two, .inp_one {
        width: 320px;
    }
    .reviews_txt {
        max-width: 350px;
    }
    .close,.close2{
        width: 250px;
    }
    .burger-menu_button {
        right: 3px;
        width: 50px;
        top: 28px;
        height: 50px;
    }
    .burger-menu_lines::before, .burger-menu_lines::after, .burger-menu_lines {
        width: 30px;
    }
    header {
        height: 67vh;
    }   
    #zwerxu{
        height: 37vh;
    }
}
@media (max-width: 360px){
    .inp_two, .inp_one {
        width: 280px;
    }
    .reviews_txt {
        max-width: 330px;
    }
    .burger-menu_lines::before, .burger-menu_lines::after, .burger-menu_lines {
        width: 30px;
    }
    header {
        height: 66vh;
    }   
    .support_wrap {
        width: 330px;
    }
    .support_items a {
        width: 320px;
        font-size: 12px;
    }
    .about_img img {
        width: 340px;
        height: 260px;
    }
}