header{
    background: no-repeat #fff top url(../img/header_img.png);
}
.header_block{
    background-color: #fff;
    display: flex;
    justify-content: center;
    border-radius: 0px 0px 20px 20px;
    padding-bottom: 20px;
    position: fixed;
    width: 100%;
    z-index: 100;
}
.header_logo img{
    width: 90%;
    float: right;
}
.header_block_menu{
    display: table;
    margin: 0px 20px;
}
.header_block_menu ul{
    display: table-cell;
    vertical-align: bottom;
    padding: 0px;
}

.header_block_menu ul a{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #000000;
}

.header_block_menu li{
    display: inline-block;
    margin: 0px 10px;
    margin-bottom: 9px;
}

.header_blocks_whatsapp{
    display: flex;
    margin-top: 6px;
    margin-bottom: 2px;
}
.header_blocks_whatsapp .whatsapp_phone_block{
    padding-top: 2px;
}
.header_blocks_whatsapp img{
    width: 45px;
}
.header_blocks_email{
    margin-left: -58%;
    display: table;
    margin-right: 15px;
}
.header_blocks_email div{
    display: table-cell;
    vertical-align: middle;
}
.header_blocks_email .fa-envelope::before{
    color: #5EC5FC;
    margin-right: 5px;
}


.header_blocks_contacts a{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1px;
    color: #000000;
}
.header_block_bottom{
    padding: 20px 0px;
}
.header_block_bottom .container{
    margin-top: 115px;
}

.forms_block{
    margin: 20px 0px;
    display: flex;
    color: #8a8e91;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 15px;
}
.forms_block .formClass{
    font-size: 15px;
}
.forms_block p{
    font-size: 16px;
}
.forms_block .forms_block_text{
    font-size: 16px;
    margin: 5px 0px;
}
#form1{
    margin-top: 54px;
}
.error{
    color: red;
}

.video_block{
    margin: 20px 0px;
    /*margin: 20px auto;*/
    /*не было*/
    /*width: 55%;*/
}
.video{
    display: flex;
}
.header_bottom_title{
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
}
.header_mobile_block{
    display: none;
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 100;
}
.header_mobile_block .row{
    width: 99%;
}
.header_whatsapp_mobile_block{
    display: flex;
    margin-top: 10px;
}
.header_whatsapp_mobile_block a{
    color: #000000;
}
.contact_mobile_block{
    margin: 5px;
}
.contact_mobile_block a{
    color: #000;
}
.mobile_logo img{
    width: 85%;
    margin-left: 5px;
    margin-top: 7px;
}

@media (max-width: 1548px) {
    .header_blocks_email{
        position: relative;
        top: 50px;
        left: 50px;
    }
}

@media (max-width: 750px) {
    .header_block{
        display: none;
    }
    .header_bottom_title_pc{
        display: none;
    }
    .header_mobile_block{
        display: block;
    }
    header{
        background: no-repeat #6CB2E0;
    }
    .forms_block{
        display: block;
    }

    .video_block{
        width: 100%;
    }
}
@media (min-width: 751px) {
    .header_bottom_title_mobile{
        display: none;
    }
}




.menu-btn {
	width: 30px;
	height: 30px;
	position: relative;
	z-index:2;
	overflow: hidden;
    z-index: 101;
    margin-top: 18px;
    float: right;
    margin-right: -20px;
}
.menu-btn span {
	width: 30px;
	height: 2px;
	position: absolute;
    margin-top: 3px;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #222222;
	transition: all 0.5s;
}
.menu-btn span:nth-of-type(2) {
	top: calc(50% - 5px);
}
.menu-btn span:nth-of-type(3) {
	top: calc(50% + 5px);
}
/* Меняем гамбургер иконку, когда меню открыто */
.menu-btn.active span:nth-of-type(1) {
  display: none;
}
.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}

/* Меню, которое будет появляться */
.mobile_menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 70%;
	height: 100%;
	padding: 15px;
    background: #6CB2E0;
	transform: translateX(-100%);
	transition: transform 0.5s; 
    z-index: 100;
}
.mobile_menu.active {
	transform: translateX(0);
}
.mobile_menu li {
	list-style-type: none;
}
.mobile_menu a{
    color: #fff;
    font-size: 22px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 400px) {
    .header_whatsapp_mobile_block img{
        width: 90%;
    }
}

@media (max-width: 1199px) {
    .header_bottom_title{
        font-size: 20px;
    }
}