*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    font-weight: normal;
    font-style: normal;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    text-transform: capitalize;
    transition: .3s all linear;

}

.container{
    max-width: 1260px;
    margin: 0 auto;
}
/* header--------------------------------------- */
.header_top{
    background: #1E2327;
    height: 50px;
}
.btn{
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    padding: 10px 29px;
    transition: .4s all linear;
    background: linear-gradient(90.72deg, #F47C25 20.2%, #F9AB34 99.52%);
}
.btn:hover{
 cursor: pointer;
}
#menu-btn{
    display: none;
}

header .header_center{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 24px 24px 23px 41px;
    justify-content: space-between;
}
.header_center .locations .location_item img{
    margin-right: 10px;
}
.header_center .locations .location_item{
    margin-bottom: 6px;
}
.header_center .locations .location_item span{
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.header_center .phone_numbers a{
    font-weight: normal;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
}
.header_center .phone_numbers .last{
    padding-left: 21px;
}
.navigation .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 15px 82px;
}
.navigation .container .navbar a{
    margin-left: 30px;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    position: relative;
    padding: 0 5px;
}
.navigation .container .navbar a::after{
    content: '';
    position: absolute;
    height: 4px;
    width: 0;
    bottom: -4px;
    left: 0;
    background: #C91A19;
    transition: .3s all linear;
}
.navigation .container .navbar a:hover::after{
    width: 100%;
}
.navigation .container img{
    margin-top: 42px;
}
.loc{
    display: none;
}
/* about ----------------------------------------- */

.about .container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
  
}

.about .about_right{
    flex: 0 0 40%;
    display: flex;
    margin-bottom: 50px;
}
.about .about_right .black_rectangle{
    margin-right: 12px;
}
.about .about_right .img_item{
    position: relative;
}
.about .about_right .about_right_content{
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    text-align: center;
    color: #ccc;
    padding: 39px 31px;
    background: linear-gradient(90deg, #F47C25 12.21%, #F8A632 129.34%);
    border-radius: 20px 0px 20px 20px;
    display: inline-block;
    position: absolute;
    bottom: -47px;
    left: -30px;

}
.about .about_left{
    flex: 0 0 57%;
}
.about_left .about_title{
    font-weight: bold;
    font-size: 40px;
    line-height: 30px;
    text-transform: uppercase;
    color: #CC2429;
    margin-bottom: 20px;
}
.about_left .about_min_title{
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000000;
}
.about_left .about_text_item{
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
}
/* price ----------------------------------------------- */

.price{
    background: #F77223;
    margin-top: 50px ;
}
.price .container{
    padding: 50px 0 78px 0;
}
.price .price_title{
    font-weight: bold;
    font-size: 40px;
    line-height: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.price .box_container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.price .box_container .box{
    flex: 0 0 23.5%;
    background: #FFFFFF;
  
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25); 
    padding: 20px 19px 87px 20px;
    position: relative;
    /* margin-right: 20px; */
}
.price .box_container .box:hover{

   box-shadow: 0 1.5rem 1.5rem rgba(0,0,0,.7);
    cursor: pointer;
}

.price .box_container .box img{
    margin-bottom: 20px;
}
.price .box_container .box .content h3{
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    margin-bottom: 10px;

}
.price .box_container .box .content p{
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    margin-bottom: 20px;

}
.price .box_container .box .arrow{
    padding: 15px 11px;
    background: #000;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.price .box_container .box .arrow:hover{
    cursor: pointer;
    background: #F27023;
}

.sertificat{
    background: #F8F8F8;
}
.sertificat .container{
    padding: 50px 0 70px 0;
}
.sertificat .main_title{
    font-weight: bold;
    font-size: 40px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}
.sertificat .box_container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.sertificat .box_container .box{
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);  
    text-align: center; 
}
.sertificat .box_container .box:nth-child(2n){
    margin-right: 0;
}
.sertificat .box_container .box h3{
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}
.min_section{
    background: #F77223;
}
.min_section .container{
    padding: 50px 0;
}
.min_section .container h3{
    font-weight: bold;
    font-size: 40px;
    line-height: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.maps{
    position:relative;
}
.maps .map{
    width: 100%;
    
}

.maps .maps_location .locations{
    display: inline-block;
    background: #FFFFFF;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
    padding:45px 30px;
    position: absolute;
    top: 70px;
    left: 80px;
}
.maps .maps_location .locations .number_item {
    
    margin: 11px 0;
}
.maps .maps_location .locations .number_item a{
    color: #000;
}
.maps .contact_form{
    position: absolute;
    padding: 25px 30px 21px 30px;
    background: #FFFFFF;
    border: 1px solid #CFCFCF;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    bottom: 0;
    right: 70px;
}
.maps .contact_form h3{
    font-weight: bold;
    font-size: 25px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 15px;
}
.maps .contact_form .form_control{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.maps .contact_form input{
    flex: 0 0 47%;
    display: block;
    padding: 10px 0 10px 15px;
    font-size: 16px;
    line-height: 19px;
    color: #969696;
    border: 1px solid #919191;
}

.maps .contact_form input:first-child{
    margin-right: 10px;
}

.maps .contact_form .number_phone{
    width: 100%;
    margin-bottom: 15px;
}
.maps .contact_form .button{
    text-align: right;
}

footer{
    background: #27283C;
}
footer .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 0;
}

footer .container .footer_item .links a{
    display: block;
}
footer .container .footer_item .links a:hover{
   color: #F27023;
}
footer .container .footer_item .text{
    font-size: 14px;
    line-height: 20px;
    color: #ABACC1;
    margin: 20px 0;
}
footer .container .footer_item .locations span{
    font-size: 14px;
    line-height: 20px;
    color: #ABACC1;
}
.footer_item .locations .number_item {
    margin: 6px 0;
}

.footer_item .locations .number_item a{
    color: #ABACC1;
} 
footer .container .footer_item .item_title{
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
footer .container .footer_item .item_title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 4px;
    background: #F77223;
}
footer .container .footer_item a{
    font-size: 14px;
    line-height: 24px;
    color: #ABACC1;
    margin-bottom: 10px;
}

footer .container .footer_item form{
    position: relative;
}
footer .container .footer_item form input{
    font-size: 16px;
    line-height: 19px;
    color: #969696;
    padding: 10px 83px 10px 15px;
}
footer .container .footer_item .buton{
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;;
    color: #FFFFFF;
    background: #F47C25;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    right: 0;
}
footer .container .footer_item .buton:hover{
    cursor: pointer;
}

footer .credit{
    margin: 20px;
    border-top: 1px solid #F27023;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 200;
}
footer .credit span{
    color: #F27023;
    font-weight: 200;
}

/* media queries  */

@media only screen and (max-width: 1025px){
    .header_center .locations .location_item span {
        font-size: 15px;
    }
    .header_center .phone_numbers a {
        font-size: 15px;
    }
    .loc{
        display: block;
    }
    .adress,.numbers{
        display: none;
    }
    .about .about_left {
        flex: 0 0 48%;
    }
    .price .box_container {
        gap: 19px;
    }
    .price .container {
        padding: 50px 15px 78px 15px;
    }
    .sertificat .main_title {
        text-align: center;
    }
    .sertificat .container{
        padding: 50px 15px 70px 16px;
    }
    .sertificat .box_container{
        text-align: center;
    }
    .sertificat .box_container .box{
        margin-bottom: 20px;
    }
    footer .container{
        padding: 50px 20px;
    }
    .maps .contact_form {
        padding: 15px 17px 15px 17px;
    }
    .maps .maps_location .locations {
        padding: 26px 20px;
    }
    
}
@media only screen and (max-width: 768px){
    .header_center .header_logo{
        flex: 0 0 40%;
    }
    .header_center .loc{
        flex: 0 0 45%;
    }
    .header_center .header_logo img{
        width: 100%;
    }
    .navigation .container img {
        display: none;
    }
    .about .container{
        padding: 0 20px;
    }
    .about .container .about_right{
        flex: 0 0 100%;
    }
    .about .about_left {
        margin-top: 20px;
        flex: 0 0 100%;
    }
    .price .box_container {
        gap: 15px;
    }
    
    .price .box_container .box .content h3 {
        font-size: 15px;
        line-height: 22px;
    }
    .price .box_container .box .content p {
        font-size: 13px;
        line-height: 17px;
        margin-bottom: 14px;   
    }
    .price .box_container .box img {
        margin-bottom: 8px;
    }
    .price .box_container .box {
        flex: 0 0 31.5%;
    }
    .sertificat .box_container {
        justify-content: space-evenly;
    }
    .sertificat .box_container .box{
        flex: 0 0 45%;
    }
    .min_section h3{
        margin-left: 30px;
    }

    .maps .maps_location .locations {
        padding:15px;
    }
    .maps .maps_location .locations span{
        font-size: 14px;
    }
    .maps .maps_location .locations .number_item a{
        font-size: 14px;
    }
    .maps .contact_form input {
        font-size: 14px;
    }
    footer .container{
        gap: 30px;
        justify-content: space-evenly;
        align-items: center;
    }
    footer .footer_item{
        flex: 0 0 45%;
    }
    /* footer .container .footer_item .item_title::after{
        content: none;
    } */
    .min_section .container h3{
        text-align: center;
    }
}
@media only screen and (max-width: 425px){
    .header_center .header_logo {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .header_center .loc {
        flex: 0 0 100%;
    }
    .header_center .loc .phone_numbers{
        display: flex;
    }
    .about .about_right .img_item img{
        width: 100%;
    }
    .navigation .container{
        position: relative;
        padding: 0 24px 0 40px;
    }
    .navigation .navbar{
        position: absolute;
        left:0;
        background: #fff;
        top: 100%;
        z-index: 1000;
        width: 100%;
        padding: 15px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }.navigation .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    .navigation .navbar a{
        display: block;
        margin-bottom: 10px;
        padding-bottom: 10px;
        font-weight: normal;
    }
    #menu-btn{
        display: block;
        color: #F27023;
        height: 5rem;
        width: 5rem;
        line-height: 5rem;
        font-size: 2rem;
     
    }

    header .header_center {
        padding: 24px 24px 0 41px;
    }
    .price .box_container .box {
        flex: 0 0 100%;
    }
    .min_section .container{
        margin-left:0;
    }
    .min_section h3 {
       margin: 0    ;
    }
  
    .maps .maps_location .locations{
        left: 0;
    }
    .maps .contact_form input {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }
    .maps .contact_form .form_control{
        margin-bottom: 0;
    }
    .contact_form .btn{
        width: 100%;
    }
    /* footer .container .footer_item .item_title::after{
        content: none;
    } */
    footer .footer_item {
        flex: 0 0 100%;
        /* text-align: center; */
    }
    footer .credit {
        font-size: 23px;
    }
}

@media only screen and (max-width: 375px){
    .header_center .phone_numbers .last {
        padding-left: 13px;
    }
    .header_center .phone_numbers a {
        font-size: 13px;
    }
    .price .box_container .box {
        flex: 0 0 100%;
    }
    .price .price_title {
        font-size: 36px;
    }
    .price .price_title {
        font-size: 30px;
    }
    .min_section .container h3 {
        font-size: 30px;
    }
    footer .container .footer_item .buton {
        font-size: 13px;
        padding: 10px;
    }
    footer .container .footer_item form input {
        font-size: 13px;
    }
    footer .credit {
        font-size: 21px;
    }
}

@media only screen and (max-width: 320px){
    footer .credit {
        font-size: 17px;
    }
}


   