body{
	margin: 0;
	font-family: "avantgardegothicc";
}
a{
	text-decoration: none;
}
/* Header */
.header{
	background-color: white;
    /*position: stickys;*/
    width: 94%;
	z-index: 100;
	margin: 0 3%;
}
	.header .info_header,
	.header .menu_header{
		width: 100%;
		height: 5vw;
		padding: 0;

	}
	.header hr{
		border: 0.1vw solid rgb(176,176,176);
		margin: 0;
	}
	.header a{
		text-decoration: none;
	}
	.header ul{
		list-style: none;
		margin: 0;
		padding: 0;
	}
/* Logo */
.info_header .logo{
   float: left;
	height: 5vw;
	margin: 0 1vw;
}
	.logo img{
		height: 3vw;
		padding:1vw 0;
	}
.icon_link{
    float: left;
	height: 5vw;
	margin-right: 2vw;

}
	.icon_link a{
		display: inline-block;
		height: 2.5vw;
		margin: 1.25vw 0.2vw;
	}
		.icon_link a img{
			height: 2.5vw;
			-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
			filter: grayscale(100%);
		}
		.icon_link a:hover img{
			-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
			filter: grayscale(0%);			
		} 
.contact_tel{
   float: left;
	line-height: 2.5vw;
	font-size: 1.2vw;
	font-weight: bold;
	color: black;
	margin: 1.25vw 2vw;
	padding: 0 1vw;
	letter-spacing: 0.05vw;
}	
.work_time{
    float: left;
	position: relative;
}	
	.work_time h1{
		line-height: 2.5vw;
		font-size: 1.2vw;
		font-weight: bold;
		color: black;
		margin: 1.25vw 1vw;
		padding: 0 1.5vw;
		letter-spacing: 0.05vw;
		cursor: default;
	}
	.work_time h1:hover,
	.contact_tel:hover{
		background-color: rgb(176,176,176);
		color: white;
		border-radius: 0.5vw;		
	}
	.work_time h1:hover +.more_work_time{
		display: block;
	}
	.work_time .more_work_time{
		display: none;
		position: absolute;
		top: 4.5vw;
		left: 1vw;
		right: 1vw;
		background-color: rgb(176,176,176);
		z-index: 1000;
		color: white;
		border-radius: 0.5vw;
	}
		.work_time .more_work_time h2{
			font-size: 1.2vw;
			font-weight: bold;
			text-align: center;
			margin: 0.5vw 0;
		}
		.work_time .more_work_time p{
			width: 30%;
			margin: 0.5vw 10%;
			float: left;
			font-size: 1.1vw;
		}
.link_rent_ad{
		float: right;
}
.link_rent_ad a{
	display: inline-block;
	line-height: 2.5vw;
	width: 7vw;
	font-size: 1.2vw;
	font-weight: bold;
	color: white;
	margin: 1.25vw 0.5vw;
	padding: 0 2vw;
	background-color: rgb(255,231,0);
	border-radius: 0.5vw;
	text-align: center;
	letter-spacing: 0.05vw;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);	
}
	.link_rent_ad a:hover{
		-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
		filter: grayscale(0%);			
	}
/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: white;
    overflow: hidden;
	z-index: 100;

}

.menu a{
    display: block;
    padding: 1vw 3vw;
	font-size: 1.2vw;
	line-height: 3vw;
    color: black;
}
.menu a:hover{
    background-color: var(--gray);
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
	float: left;
}

/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 25px 25px;
	position: absolute;
	top: 0;
	right: 0;
}/* Style label tag */

.hamb-line {
    background: rgb(176,176,176);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: rgb(176,176,176);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav{
     max-height: 100%; 
	 	background-color: #f1f1f1;

	/* border-top: 3px solid rgb(228,110,98); */
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
.mobile_menu{
	display:none;
}



.news_list{
	width: 100%;
	background-color:rgb(242,242,242);
	overflow: auto;
	padding: 2vw 0;
}
	.news_list .news_block{
		width: 30.7%;
		height: 30.7vw;
		display: block;
		float: left;
		margin-left: 2%;
		position: relative;
		background-color: gray;
		overflow: hidden;		
	}
	.news_list .news_block a{
		width: 100%;
	}
	.news_list .news_block img{
		 width: 100%; 
		 height: 100%; 
		 object-fit: cover; 
	}
.news_fancy_box{
	width: 60%;
	
}
.stories_fancy_box{
	padding: 0 !important;
	width: 40%;
}
	.stories_fancy_box h1{
		font-size: 2.5vw;
		font-weight: 500;
		background-color: rgb(255,231,0);
		margin-top: 3vw;
		margin-bottom: 1vw;
		padding: 1vw 5vw;
	}
	.stories_fancy_box .stories_desc{
		padding: 1vw 5vw;		
	}
	.stories_fancy_box h2{
		font-size: 1.5vw;
		line-height: 2vw;
		font-weight: 500;
		margin: 0;
	}
	.stories_fancy_box h2 img{
		height: 2vw;
		float: left;
		display: block;
		padding-right: 0.5vw;

	}	
	.stories_fancy_box p,
	.stories_fancy_box ul{
		font-size: 1.2vw;
		margin: 0;
		margin-bottom: 1vw;
		padding-left: 2.5vw;
	}	
	.news_fancy_box h1{
		font-size: 2vw;
		text-align: center;
	}
	.news_fancy_box p{
		font-size: 1.2vw;
	}
	.news_fancy_box span{
		font-size: 1vw;
		float: right;
	}
	.news_fancy_box .main_news_img{
		height: 30vw;		
		overflow: hidden;
		display: flex;
		justify-content: center; 
		align-items: center;		
	}	
	.news_fancy_box .main_news_img img{
		display: block;
		height: 100%;	
		margin:auto;

	}


.blocks_list{
	overflow: auto;
	width: 90%;
	margin: 4vw auto;
}
	.blocks_list .blocks_line{
		overflow: auto;
		text-align: center;
		position: relative;
	}
	.blocks_list .line_1{
		float: left;
	}	
	.blocks_list .line_2{
		float: right;
	}	
	.blocks_list .blocks_line a,
	.blocks_list .blocks_line .disabled_block{
		border: 0.5vw solid rgb(255,231,0);
		font-size: 9vw;
		width: 12vw;
		height: 12vw;
		text-align: center;
		display: inline-block;
		color: black;
		text-decoration: none;
		margin: 1.5vw;
	}
	.blocks_list .blocks_line .disabled_block{
	    cursor: default;
	}	
	.blocks_list .blocks_line a:hover,
	.blocks_list .blocks_line .disabled_block:hover{
		background-color: rgb(255,231,0);
	}
	.blocks_list .blocks_line b{
		position: relative;
		top: -0.5vw;
	}
	.blocks_list .blocks_line span{
		display: block;
		text-align: center;
		font-size: 2vw;
		margin-top: -1vw;
	}
	.blocks_list .blocks_line p{
		width: 13vw;
		margin: 0 1.5vw;
		font-size: 2.8vw;
		line-height: 5vw;
		background-color: rgb(255,231,0);
		position: relative;
	}
	.blocks_list .blocks_line::before{
		content:"";
		display:block;
		position: absolute;
		bottom: 5vw;
		left: 1.5vw;
		right:1.5vw;
		height: 0.5vw;
		background-color: rgb(255,231,0);
	}
	
.bottom{
	width: 90%;
	background-color: rgb(255,231,0);
	overflow: auto;
	padding: 2% 5%;
}	
	.bottom .block_1{
		width: 30%;
		float: left;
	}
		.bottom .block_1 .logo{
		 width: 80%;
		}
		.bottom .block_1 .info_block{
			height: 3vw;
			margin: 0.5vw 0;
		}
		.bottom .block_1 .info_block img{
			height: 2vw;
			float: left;
			margin: 0.5vw 1vw;
		}

		.bottom .block_1 .info_block p,
		.bottom .block_1 .info_block a,
		.bottom .block_1 .info_block span{
			text-decoration: none;
			line-height: 3vw;
			margin: 0;
			font-size: 1vw;
			font-weight: bold;
			color: black;
		}
		.bottom .block_1 .info_block a:hover{
			text-decoration: underline;
		}
		.bottom .block_1 .address_block p,
		.bottom .block_1 .address_block a{
			text-decoration: none;
			line-height: 1.5vw;
			margin: 0;
			font-size: 1vw;
			font-weight: bold;
		}	
	.bottom .block_2{
		width: 60%;
		float: right;
        overflow: visible;
		margin-top: 2vw;		
	}
	.bottom .block_2 .social_icons{
		float: left;		
	}
		.bottom .block_2 .social_icons a{
			
		}
		.bottom .block_2 .social_icons a img{
			height: 2.5vw;
			margin: 0 0.5vw;
		}
		.bottom .block_2 .social_icons a:hover img{
			transform: scale(1.2);
			transition-duration: 0.5s;			
		}		
	.bottom .block_2 .users_info{
		float: left;
		margin-left: 3vw;
	}
		.bottom .block_2 .users_info a{
			display: inline-block;
			line-height: 2.5vw;
			width: 11vw;
			font-size: 1vw;
			font-weight: bold;
			color: black;
			margin: 0 0.5vw;
			padding: 0 0.25vw;
			background-color: rgba(255,255,255,0.5);
			border-radius: 1vw;
			text-align: center;			
		}
		.bottom .block_2 .users_info a:hover{
			background-color: rgba(255,255,255,1);
		}
		.bottom .block_2 p{
			font-size: 1.1vw;
			margin-top: 4vw;	
		}
			.bottom .block_2 p a{
				color: black;
				text-decoration: underline;
			}
	.form_sent{
		width: 30%;
		padding: 0 !important;
	}	
		.form_sent h1{
			text-align: center;
			font-size: 2vw;
		    background-color: rgb(255,231,0);
		    padding: 1vw 0;
		    margin: 0;
		    margin-top: 3vw;
		    margin-bottom: 1vw;
		}
		.form_sent form{
		    padding: 0 2vw;
		}
		.form_sent .contact_form .form-control{
			font-size: 1.2vw;
			padding: 1vw;
			margin: 2vw 0;
			display: block;
			width: 91%;
			border-radius: 0.5vw;
			border: 1px solid #c9c9c9;
		}
		.form_sent  .contact_form textarea{
			font-size: 1.2vw;
			font-family: Arial;
			padding: 1vw;
			margin: 2vw 0;
			display: block;
			min-width: 91%;
			max-width: 91%;
			min-height: 5vw;
			max-height: 30vw;			
			border-radius: 0.5vw;
			border: 1px solid #c9c9c9;			
		}
		.form_sent  .contact_form  .btn_send{
			font-size: 1.2vw;
			padding: 1vw;
			margin: 2vw 0;
			display: block;
			width: 100%;		
			border-radius: 0.5vw;
			border: 1px solid rgb(255,231,0);	
			background-color: rgb(255,231,0);
        	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        	filter: grayscale(100%);			
		}
		.form_sent  .contact_form  .btn_send:hover{
    		-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    		filter: grayscale(0%);	
			cursor: pointer;
		}
		
	
	
		
		
/* Responsiveness */
@media (min-width: 800px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        width: fit-content;
		width: 100%;
		text-align: center;
    }
    .menu li{
       display: inline-block;
    }
    .menu a:hover{
        background-color: rgb(176,176,176);
        color: white;

    }

    .hamb{
        display: none;
    }
}	


@media (max-width: 800px){	
.header {
	position: fixed;
	top: 0;
    width: 100%;
    z-index: 100;
    margin: 0;
}
.header .info_header{
	height: 50px;
	width: auto;
	padding: 0 10px;
}
.info_header .icon_link{
	display: none;
}
.info_header .work_time{
	display: none;
}
.info_header .link_rent_ad{
	display: none;
}

.info_header .logo{
	height: 50px;	
}
.logo img {
    height: 20px;
    padding: 15px 0;
}
.contact_tel {
    line-height: 20px;
    font-size: 15px;
    margin: 15px 20px;
    padding: 0 5px;
}

 .header .menu_header{
	height: 0;
}
.menu a {
    padding: 15px 30px;
    font-size: 15px;
    line-height: 20px;
	border-bottom: 1px solid #f1f1f1;
	background-color: white;
}
.mobile_menu{
	display:block;
	background-color: #f1f1f1;
}
.mobile_menu .icon_link{
	float: none;
	 height: 40px;
	 padding: 10px 0;
	 margin: 0;
	 text-align: center;
}
.mobile_menu .icon_link a {
    display: inline-block;
    height: 40px;
    margin:0 25px;
}
.mobile_menu  .icon_link a img {
    height: 40px;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.mobile_menu .work_time{
	float: none;
	 padding: 10px 0;
	 overflow: auto;
	
}
.mobile_menu .work_time h2{
	text-align: center;
	font-size: 20px;
	margin: 0;
}
.mobile_menu .work_time p{
	width: 20%;
	margin: 5px 15%;
	float: left;
	font-size: 15px;
}
.mobile_menu .link_rent_ad{
	float: none;	
	 padding: 10px 0;	
	 text-align: center;
}
.mobile_menu  .link_rent_ad a {
	
    line-height: 40px;
    width: 120px;
    font-size: 20px;
    margin: 0 10px;
    padding: 0 5px;
    border-radius: 5px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


.news_list {
    width: 90%;
    padding: 5%;
	margin-top: 50px;
}
.news_list .news_block{
    width: 90vw;
    height: 90vw;
    display: block;
    float: left;
    margin: 0;
    position: relative;
    background-color: gray;
    overflow: hidden;
}
.news_fancy_box{
	width: 100%;
}
.news_fancy_box h1 {
    font-size: 20px;
	margin: 5px 0
}
.news_fancy_box .main_news_img {
    height: 200px;
	margin-bottom: 5px;
}
.news_fancy_box p {
    font-size: 15px;
	margin-top: 30px;
}
.news_fancy_box span {
	font-size: 15px;
}


.blocks_list {
    margin: 5%;
	text-align: center;
}
.blocks_list .blocks_line {
    margin: 20px auto;
	float: none;
	display: inline-block;
}
.blocks_list .blocks_line::before {
    bottom: 28px;
    left: 10px;
    right: 10px;
    height: 3px;

}
.blocks_list .blocks_line a, .blocks_list .blocks_line .disabled_block{
    border: 3px solid rgb(237, 217, 26);
    font-size: 55px;
    width: 80px;
    height: 80px;
    margin: 10px;
}
.blocks_list .blocks_line a span, .blocks_list .blocks_line .disabled_block span{
    font-size: 15px;
    margin-top: -5px;
}
.blocks_list .blocks_line p {
    width: 100px;
    margin: auto;
    font-size: 20px;
    line-height: 30px;
    background-color: rgb(237, 217, 26);
    position: relative;
}

.bottom {
	 width: 80%;
    padding: 5% 10%;
}
.bottom .block_1 {
    width: 100%;
    float: none;
}
.bottom .block_1 .logo {
    margin: auto;
    display: block;
}
.bottom .block_1 .info_block {
    height: 40px;
    margin: 20px 0;
}
.bottom .block_1 .info_block img {
    height: 30px;
    float: left;
    margin: 5px 0;
	margin-right: 10px;
}
	.bottom .block_1 .info_block p,
	.bottom .block_1 .info_block a,
	.bottom .block_1 .info_block span{
		line-height: 40px;
		font-size: 15px;

	}
	.bottom .block_1 .info_block a:hover{
		text-decoration: underline;
	}
	.bottom .block_1 .address_block p,
	.bottom .block_1 .address_block a{
		line-height: 15px;
		font-size: 15px;
	}	
.bottom .block_2 {
    width: 100%;
    float: none;
    overflow: auto;
    margin-top: 20px;
}	
.bottom .block_2 .social_icons {
    float: none;
	text-align: center;
}
.bottom .block_2 .social_icons a img {
    height: 40px;
    margin: 0 20px;
}
.bottom .block_2 .users_info {
    float: none;
    margin: 20px 0;

}
.bottom .block_2 .users_info a {
	display: block;
	line-height: 40px;
	width: 100%;
	font-size: 15px;
	margin: 10px auto;
	padding: 0;
	border-radius: 5px;
}
.bottom .block_2 p {
    font-size: 10px;
    margin-top: 10px;
}
.form_sent {
    width: 100%;
}
.form_sent h1{
    font-size: 25px;
    padding: 10px 0;
    margin-top: 40px;
    margin-bottom: 10px;
}
.form_sent form {
    padding: 0 10px;
}
.form_sent .contact_form .form-control {
    font-size: 15px;
    padding: 10px;
    margin: 20px 0;
    width: 93%;
    border-radius: 3px;
    border: 1px solid #c9c9c9;
}
.form_sent .contact_form textarea {
    font-size: 15px;
    padding: 10px;
    margin: 20px 0;
    min-width: 93%;
    max-width: 93%;
    min-height: 60px;
    max-height: 200px;
    border-radius: 3px;
}
.form_sent .contact_form .btn_send {
    font-size: 15px;
    padding: 10px;
    margin: 20px 0;
    border-radius: 3px;
}
.stories_fancy_box{
	width: 100%;
}
.stories_fancy_box h1{
	font-size: 25px;
	padding: 10px 0;
	margin-top: 40px;
	margin-bottom: 10px;
	padding: 10px 10px;
}
.stories_fancy_box .stories_desc{
	padding: 10px 10px;
}
.stories_fancy_box h2{
	font-size: 20px;
	line-height: 25px
}
.stories_fancy_box h2 img{
	height: 25px;
	padding-right: 5px;

}	
.stories_fancy_box p,
.stories_fancy_box ul{
	font-size: 15px;
	margin: 0;
	margin-bottom:  15px;
	padding-left:  30px;
}	
}


@font-face{
	font-family: "avantgardegothiccr";
	src: url("/fonts/avantgardegothicc.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}	