
section.publicline {
	display: table;
}



.block1 .block2 div {
}

div.block1 {
	padding: 0px 0 0px 0; 
	width: 100%; 
	background-color: #fff; 
}

div.block2 {
	padding: 0px 0 0 0; 
	width: 100%; 
	background-color: #ddd; 
}

div.blockfooter {
	width: 100%; 
	height: 50px;
	position: relative;
}

div.block4 {
	width: 100%; 
	padding-bottom: 48px;
	position: relative;
}



div.blockheader {
	width: 100%; 
	height: 50px;
	background-image: url('../../../images/topline2.svg'); 
	background-size: 100% 50px; 
	background-position: top; 
	background-repeat: no-repeat; 
	position: relative;
}


div.imageblock {
	display: inline-block; 
	min-width: 370px; 
	width: 49%;
	margin: auto auto;
	padding: 20px;
	display: table-cell;
	vertical-align: middle;
}

div.textblock {
	display: inline-block; 
	width: 49%;
	min-width: 370px; 
	padding: 20px; 
	vertical-align: top; 
	text-align: left;
	display: table-cell;
	font-size: 18px;
	vertical-align: middle;
}

a.graylink {
	padding: 12px 20px;
	border-radius: 20px;
	color: #fff;
	background: #222;
}

a.redlink {
	padding: 12px 20px;
	border-radius: 20px;
	color: #fff;
	background: red;
}


div.block41 {
	width: 100%; 
	padding-bottom: 50px;
	background-image: url('../../../images/mountains-blue-bottom-bg.svg'); 
	background-size: 100% 60px; 
	background-position: bottom; 
	background-repeat: no-repeat; 
	position: relative;
}

div.block_title {
	width: 100%; 
}

div.block_title2 {
	width: 100%; 
	padding-bottom: 50px;
	background-position: bottom; 
	background-repeat: no-repeat; 
	position: relative;
	background-size: 100% ;
	height: 350px;
	top: -250px;
	margin-bottom: -250px;

}



div.block42 {
	width: 100%; 
	min-height: 58px;
	background-size: 100% 100%; 
	background-repeat: no-repeat; 
	background-position: bottom;
}

div.block44 {
	width: 100%; 
	min-height: 58px;
	background-size: 100% 100%; 
	background-position: bottom; 
	background-repeat: no-repeat; 
	margin-top: -10px
}


div.block43 {
	background-repeat: no-repeat, no-repeat, no-repeat; 
	background-position: top, bottom;
	color: #fff;
	padding: 20px 0px 30px 0px;
}
div.block49 {
	background-color: #ddd;
	color: #000;
	padding: 20px 20px 70px 20px;
}



@media (max-width: 450px) {
	div.block1 {
		background-size: 100% 50px; 
		padding: 50px 0; 
	}

	div.block2 {
		background-size: 100% 50px; 
		padding-top: 50px; 
	}

	div.imageblock {
		display: inline-block; 
		vertical-align: top;
	}

	div.textblock {
		display: inline-block; 
		vertical-align: top;
	}


}


.grid * {
	box-sizing: border-box;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	row-gap: 10px;
	padding: 8px 0;
}
	.hideonmobile {
	}


@media only screen and (max-width: 1200px) {
	.grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.hideonmobile {
		display: none;
	}
}

@media only screen and (max-width: 900px) {
	.grid {
		grid-template-columns: 1fr 1fr;
	}
	.hideonmobile {
		display: none;
	}
}

@media only screen and (max-width: 600px) {
	.grid {
		grid-template-columns: 1fr;
	}
	.hideonmobile {
		display: none;
	}
}

.grid-item {
	box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2);
	transition: box-shadow .3s;
	width: 100%;
	height: 100%;  
}

.grid-item .image {
	height: 200px;
	overflow: hidden;
}

.grid-item .info2 {
	position: relative;
	padding: 8;
}

.grid-item .info {
	position: relative;
	height: calc(100% - 240px);
	padding: 16px 14px 80px 14px;
}




.grid-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
}

.grid-item .image img {
	transition: transform 280ms ease-in-out;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;    
}

.grid-item:hover .image img  {
	transform: scale(1.1);
}

.info h2 {
	font-family: 'Roboto', ahoma, sans-serif;
	color: #337AB7;
	font-size: 24px;
	font-weight: normal;
	margin: 0;
	text-align: center;
}

.info-text p {
	font-size: 15px;
	line-height: 20px;
	font-family: Verdana, sans-serif; 
	margin-bottom: 10px;
}

.info-text p:last-child {
	margin-bottom: 0;
}

.grid-item .button-wrap {
	display: block;
	width: 100%;
	position: absolute;
	bottom: 14px;
	left: 0;
	text-align: center;
}

.atuin-btn {
	display: inline-flex;
	text-decoration: none;
	position: relative;
	font-size: 20px;
	line-height: 20px;
	padding: 12px 30px;
	color: #FFF;
	font-weight: bold;
	text-transform: uppercase; 
	font-family: 'Roboto', ahoma, sans-serif;
	background: #337AB7;
	cursor: pointer; 
	border: 2px solid #BFE2FF;
}

.atuin-btn:hover,
.atuin-btn:active,
.atuin-btn:focus {
	color: #FFF;
}

.atuin-btn:after,
.atuin-btn:before {
	position: absolute;
	height: 4px;
	left: 50%;
	background: #337AB7;
	bottom: -6px;
	content: "";
	transition: all 280ms ease-in-out;
	width: 0;
}

.atuin-btn:before {
	top: -6px;
}

.atuin-btn:hover:after,
.atuin-btn:hover:before,
.atuin-btn:active:after,
.atuin-btn:active:before,
.atuin-btn:focus:after,
.atuin-btn:focus:before {
	width: 100%;
	left: 0;
}

img.small-rotate {
   width: 96px; 
   margin: auto auto;
  -webkit-transition: all 1s ease;
          transition: all 1s ease;
}
img.small-rotate:hover {
  -webkit-transform: rotate(15deg); /* Градусы поворота можно изменить по необходимости */
          transform: rotate(15deg); /* Градусы поворота можно изменить по необходимости */
}



.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;

}

.sp-megamenu-parent {
    float: left;

}
