h1{
    font-size: 35px;
}
h2{
    font-size: 28px;
}
h2.page_title{  
    font-size: 35px;
}
.subheader .info h2.custom{
    font-size: 21px;
}
h3.page_subtitle{
    font-size: 21px;
}
p, ul.p_style{
    font-size: 19px;
}
.w_def, .contacts_grid > div:first-of-type{
    width: 92%;
    margin: auto;
}
.ico_subtitle{
    height: 10px;
}
.space{
    clear: both;
    height: 70px;
}
.mid_space{
    clear: both;
    height: 35px;
}
/********* HEADER **********/
header .grid{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
header .logo{
    width: 150px;
}
header #wrap_menu {
    display: flex;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100dvh - 65px);
    background-color: black;
    color: white;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: 400ms ease;
    border-top: 2px solid var(--red);
}
header .menu{
    flex-direction: column;
    gap: 50px;
    height: 100%;
    max-height: 300px;
    width: 100%;
}
header ul li{
    width: 100%;
    margin: auto;
    font-size: 20px;
}
header .parent_wrap_ico_menu{
    justify-content: flex-end;
}
.menu_opened header #wrap_menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms ease;
}
header .menu li span:first-of-type{
    font-size: 35px;
}
header .menu li span:last-of-type{
    font-size: 21px;
}
/********* END HEADER **********/
.subheader{
    height: calc(100svh - 65px);
    margin-top: 65px;
}
/******* ICO_MENU ********/
.wrap_ico_menu{
    width: 35px;
    height: 20px;
}
#ico_menu{
	position: absolute;
	z-index: 70;
	cursor: pointer;
    height: 20px;
    width: 35px;
    right: 0;
}
#ico_menu .line, #ico_menu:before, #ico_menu:after{
	background-color: white;
}
#ico_menu .line{
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: 400ms ease;
}
#ico_menu:before, #ico_menu:after{
	content: ' ';
	position: absolute;
	right: 0;
	height: 2px;
	transition: 400ms ease;
}
#ico_menu:before{
	top: 0;
	width: 100%;
}
#ico_menu:after{
	bottom: 0;
	width: 100%;
}
.menu_opened #ico_menu .line{
	opacity: 0;
} 
.menu_opened #ico_menu:before{
	transform: rotate(45deg);
	top: 50%;
}
.menu_opened #ico_menu:after{
	transform: rotate(-45deg);
	width: 100% !important;
	top: 50%;
}
/******* END ICO_MENU ********/
.grid_info, .contacts_grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.contacts_grid .custom{
    font-size: 25px; 
    line-height: 40px;
}
.gallery{
    grid-template-columns: repeat(2, 1fr);
}
.custom_upsize_menu{
    font-size: 25px;
}
/******* FOOTER ********/
footer .grid{
    grid-template-columns: 1fr;
    gap: 30px;
}
/******* END FOOTER ********/


