* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body{
	background: linear-gradient(90deg, #dfebf5 0%, #a9c4db 30%, #a9c4db 70%, #dfebf5 100%);
	font-size: 15px;
}
.wrapper{
	margin: 0 auto;
	max-width: 1200px;
}

.header{
	z-index: 3;
	position: relative;
    top: 0;
	color: white;
	background: linear-gradient(rgba(0, 0, 0, 0.0) 40%, rgba(36, 94, 101, 0.6) 100%), linear-gradient(90deg, #245E65, #399CA7, #399CA7);
	min-height: 70px;
	display: grid;
	grid-template-rows: 30px 45px;
	grid-template-columns: 200px 1fr;
	transform: translateY(0);
	animation: transform 0.5s;
}

@keyframes headerAppear {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.header_appear_anim{
    animation: headerAppear 0.5s;
}
.header_disappear_anim{
    animation: headerAppear 0.5s;
    animation-direction: reverse;
}

.logo{
	font-size: 24px;
	font-weight: bold;
	order: 1;
	grid-row: 1/-1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo a{
	text-decoration: none;
	color: white;
}
.menu_nav{
	order: 2;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.menu_nav li{
	display: inline;
}
.menu_nav a{
	text-decoration: none;
	color: white;
	text-shadow: 2px 2px 2px #215660;
	margin-right: 20px;
}
.tel{
	text-decoration: none;
	color: white;
}
.tel_imgs{
	display: inline;
	justify-content: center;
}
.menu_nav a:hover, .tel:hover{
	color: #d6fbff;
}
.menu_contacts{
	order: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.menu_contacts .contasts_{
	margin-right: 20px;
	text-shadow: 2px 2px 2px #215660;
	font-size: 13px;
}
.menu_contacts a{
	color: white;
	text-decoration: none;
}
.menu_contacts img{
	width: 12px;
	height: 12px;
	margin-right: 3px;
}

.main{
	background-color: #245E65;
}
.content{
	min-height: 1000px;
}
.content_block{
	padding: 25px 50px;
	background-color: #FAFEFF;
}
.content_block:nth-of-type(odd){
	background-color: #edf3ff;
}
.content_block:last-of-type{
	padding-bottom: 100px;
}


.footer{
	background: linear-gradient(#3c7b82, #245E65);
	padding: 20px;
	text-align: center;
}
.footer li{
	list-style: none;
	margin-bottom: 10px;
}
.footer, .footer a{
	color: #cad7d9;
}
.footer p{
	margin-top: 15px;
	color: white;
}

.footer_info_cols{
	display: grid;
	grid-template-columns: 30% 30% 30%;
	justify-content: center;
}

#menu_btn{
	display: none;
	margin: 10px;
	padding-right: 15px;
}
#menu_btn:hover{
	span{
		background-color: #d6fbff;
	}
}
#menu_btn span{
	display: block;
	width: 30px;
	height: 4px;
	background-color: white;
	border-radius: 10px;
	margin-right: 0;
}
#menu_btn span:first-child{
	margin-bottom: 5px;
}
#menu_btn span:last-child{
	margin-top: 5px;
}

#mobile_menu{
	display: none;
	opacity: 0;
	position: fixed;
	background: rgba(33, 72, 77, 0.7);
	backdrop-filter: blur(3px);
	border-radius: 10px;
	padding: 45px 40px 30px 40px;
	top: 0;
	z-index: 4;
	right: 0;
	transition: transform 0.3s, opacity 0.3s;
	transform: translateX(100%);
	box-shadow: -4px 4px 10px rgba(102, 102, 102, 0.5);
}
#mobile_menu p{
	text-align: center;
	padding: 10px;
}
#mobile_menu p a{
	padding: 10px;
	color: white;
	text-shadow: 2px 2px 2px #215660;
	text-decoration: none;
}
#mobile_menu p a:hover{
	color: #d6fbff;
}
#menu_close{
	z-index: 5;
	position: absolute;
	height: 30px;
	width: 30px;
	right: 10px;
	top: 10px;
	align-items: center;
	justify-content: center;
	display: flex;
}
#menu_close:hover{
	span{
		background-color: #d6fbff;
	}
}
#menu_close span{
	position: absolute;
	display: flex;
	height: 4px;
	width: 25px;
	background-color: white;
	border-radius: 10px;
}
#menu_close span:first-child{
	rotate: 45deg;
}
#menu_close span:last-child{
	rotate: -45deg;
}
.disp{
	height: 0;
	transition: height 1s;
}


.cookies_wrap{
	display: none;
	color: white;
	text-shadow: 1px 1px 1px black;
	background-color: rgba(92, 163, 171, 0.7);
	backdrop-filter: blur(4px);
	z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
	position: sticky;
}
.cookies_wrap a{
	color: white;
}
.cookies{
    padding: 10px 20px;
}
.accept_button button{
	margin-left: 7px;
	padding: 3px;
	border-radius: 7px;
	background-color: #ebfaff;
}
.cookies_wrap a:hover{
	text-decoration: none;
}
.accept_button button:hover{
	background-color: #e6e6e6;
}



@media (max-width:1200px){
    .wrapper{
        max-width: 970px;
    }
}
@media (max-width:970px){
   .wrapper{
        max-width: 100%;
    }
}
@media (max-width:767px){
    .header{
    	padding-bottom: 10px;
    	grid-template-columns: auto 1fr;
    	grid-template-rows: 40px 45px;
    }
	.logo{
		padding-left: 25px;
		grid-row: auto;
	}
	.tel_imgs{
		display: flex;
		margin-bottom: 3px;
	}
	.menu_contacts{
		grid-column: 1/-1;
		justify-content: space-between;
	}
	.menu_contacts .contasts_{
		margin: 0 25px;
	}
    #menu_btn{
    	display: block;
    }
    .menu_nav ul{
    	display: none;
    }
    #mobile_menu{
    	display: block;
    }
    .content_block{
		padding: 20px;
	}
	.footer_info_cols{
		grid-template-columns: 100%;
		gap: 20px;
	}
}
@media (max-width:304px){
    .header{
    	grid-template-rows: 60px 45px;
    }
}




