
.wrapper {

}
.search_bu {
    background: #007fc4;
    border-radius: 0px;
    padding: 12px 40px;
    text-transform: uppercase;
    color: #fff !important;
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 10px;
    border: 0px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
	border-bottom: solid 1px #c1c1c1;
	margin:0px auto;
	padding: 0px 25px;
}
.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#fff;
    z-index: 2;

}
.header__body {
    position: relative;
    /* z-index: 2; */
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
}
.header__logo{
    flex: 0 0 300px;

    overflow: hidden;
    position: relative;
    z-index: 3;

}

.header__logo  img{
   max-width: 100%;
   display: block;
}
.header__burger{
    display: none;
}
.header__menu{ }

.header__list {
    display: flex;
    position: relative;
    z-index: 2;
}
.header__list li{
    list-style: none;
   
}
.header__list li a:hover {
	color: #007fc4;
}
.header__link{
    color: #4c4c4c;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	padding-right: 14px;
	padding-left: 14px;
}

@media(max-width: 767px){
    body.lock {
        overflow: hidden;
    }

    .header__logo{
        flex: 0 0 180px;
    }
    .header__body {
        height: 80px;
    }
    .header__burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 3;
	
		margin-right: 15px;
    }
    .header__burger span {
        position: absolute;
        background-color: #4c4c4c;
        width: 100%;
        height: 2px;
        left: 0;
        top: 9px;
        transition: all 0.3s ease 0s;
    }
    .header__burger::before,
    .header__burger::after{
        content: '';
        background-color: #4c4c4c;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        top: px;
        transition: all 0.3s ease 0s;
		
    }
    .header__burger::after{
        bottom: 0;
	
    }

    .header__burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }
    .header__burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }
    .header__burger.active span {
        transform: scale(0);
    }
    .header__menu {
        position: fixed;
        top: -120%;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        transition: all 0.3s ease 0s;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 90px 10px 20px 10px;

     }

     .header__menu.active {
         top: 0;
     }

     .header__list{
         display: block;
     }

     .header__list li{
         margin:0px 0px 20px 0px;
     }

     .header__link {
         font-size: 14px;
		 color:#fff!important;
     }
}

.content{
    padding: 0px 0px 0px 0px ;
}
.content__text {
    font-size: 14px;
    line-height: 25px;
	color:#fff!important;
}
.content__text p{
    margin: 0px 0px 20px 0px;
}
@media (max-width: 767px) {
    .content {
        padding: 0px 0px 0px 0px ;
		
    }
}
