/*Обнуление*/
*,*:before, *:after{
	padding: 0;
	margin: 0;
	border:0;
	box-sizing: border-box;
}
html,body{
	margin: 0;
	height: 100%;
	/*font-family:Arial, Helvetica, sans-serif;*/
	font-family: 'Open Sans',sans-serif;
	
	background-image: linear-gradient(90deg, #cfecd0, #a0cea7, #9ec0db);
}
/*Стили для демонстрации*/
/*.wrapper{
}*/
/*Основные стили*/

/*-----------*/
.img_view{
	display:inline-grid;
	grid-template-columns: repeat(3, 1fr);
  	grid-auto-rows: 100px;
   	grid-column-gap: 20px;}
.img_view_l{
	display:inline-grid;
	grid-template-columns: repeat(3, 1fr);
  	/*grid-auto-rows: 100px;
   	grid-column-gap: 20px;*/}

.box1 {
   grid-column-start: 1;
   grid-column-end: 1;
   grid-row-start: 1;
   grid-row-end: 1;
   z-index: 3;
}
.box2 {
   grid-column-start: 1;
   grid-row-start: 1;
   grid-row-end: 1;
   z-index: 3;
}

@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#img_1{
  animation: spin 5s linear 0s infinite;
}

/*END*/



.grid{
	/*overflow:hidden /*без скорола;*/
	height: 100%;
	display: grid;
	grid-gap: 1px;
	grid-template-columns: auto 1fr;
	grid-template-rows: 80px 1fr auto;
	grid-template-areas: 
		"header header"
		"aside main"
		"aside footer";
}

header{
	grid-area: header;
}
aside{
	grid-area: aside;
}
main{
	grid-area: main;
}
footer{
	grid-area: footer;
		
}

.footer{
	margin-top: auto ;
}
.container{
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 10px;
}
a {
    color: #193975;
    text-decoration: none;
    font-weight: 600;
   }
.header{
	position: fixed;
	width: 100%;
	top:0;
	left: 0;
	z-index: 50;
}
.header:before{
	content: '';
	position:absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #69be9f;/*#00A398*/
	z-index: 2;
	box-shadow: 0px 0px 6px 2px #69be9f;
}
.header__body{
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 80px;
	align-items: center;
	z-index: 2;
}
.header__logo{
	flex:0 0 60px;	
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
.header__logo img{
	max-width: 100%;
	display: block;

}
.header__burger{
	display: none;
}

.header__menu{
	top:0px;

	}


.header__list{
/*	display: flex;
	position: relative;*/	
	width: 100%;
	/*background-color: #0b948b;*/
	display: grid;
	grid-auto-columns: minmax(1fr, auto);	
    grid-auto-flow: column;
	grid-template-columns: auto 1fr;
	grid-column-gap: 1px;
	z-index: 2;
}
.header__list li{
	/*background-color: rgba(0, 0, 0, 0.3);*/
    line-height: 40px;/*80*/
    text-align: center;
    white-space: nowrap;


	list-style: none; 
	margin: 0px 0px 0px 36px;
	color: #000;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
}
.header__link{
	font-size: 24px; /* Размер шрифта */
	text-decoration: none;
	font-weight: bold; /* Жирное начертание */
	color: rgb(175, 74, 74); /* Цвет ссылки */
}

.header__link:hover {

	/*background-color: rgba(58, 184, 156, 0.5);*/
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
  } 	 	

@media (max-width: 767px) {
	aside{
		display: none;
	}
	body.lock{
		overflow: hidden;
	}
	.header__body{
		height: 50px;
	}
	.header__logo{
		flex:0 0 40px;		
	}
	.header__burger{
		display: block;
		position: relative;
		width: 30px;
		height: 20px;
		z-index: 3;
	}
	.header__burger span{
		position: absolute;
		background-color: #fff;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		top:9px;
		transition: all 0.3s ease 0s;
	}
	.header__burger:before,
	.header__burger:after {
		content: '';
		background-color:#fff;
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		transition: all 0.3s ease 0s;
	}
	.header__burger:before{
		top:0;
	}
	.header__burger:after{
		bottom:0;
	}
	.header__burger.active span {
		transform: scale(0);
	}
	.header__burger.active:before{
		transform: rotate(45deg);
		top: 9px;
	}
	.header__burger.active:after{
		transform: rotate(-45deg);
		bottom: 9px;
	}
	 
	.header__menu{
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		transition: all 0.3s ease 0s;
		background-color: #1e978b;
			/*#69be9f;
			*/
		padding: 70px 0px 0px 0px;
	}
	.header__menu.active{
		top:0;
	}
	.header__list{
		display: block;
	}
	.header__list li{
		margin: 0px 0px 20px 0px;
	}
	.header__link{
		font-size: 24px;
	}

	.content__text p{
		margin: 0 0 1px 0;
	}
} 


.content{
	padding: 10px;
}
.content__text{
	font-size: 22px;
	line-height: 25px;
}
.content__text p{
	margin: 0 0 20px 0;
}

.card_tov{

display:flex;
align-items:center;
justify-content:center;
}

.center{
background: url("bg_tov.png");
padding:15px;
background-color: #1e978b;
width:90%;
height:100%;
border: 1px solid #8bc48b;
border-radius:0.5%;
opacity: 0.9;
}

._img_tov{
    
    width:200px;
    height:100px;
    border: 1px solid #8bc48b;
    border-radius: 25%;
    }
.image {
        
        width: 20%;
        height: 20%;
        position:absolute;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: 3%;
		justify-content:right;
		
        }

hr {
  border: 0;
  clear:both;
  display:block;
  width: 96%;
  background-color:#40826d;
  height: 1px;
}