body{
	margin: 0px;
}

header{
	padding-top: 20px;
	display: block;
	min-height: 120px;
	background-color: #fff;
	border-bottom: 6px solid #79D0C4;
}

main{
	display: block;
	position: relative;
	z-index: 2;
	min-height: 945px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	width: 100%;

}

.main__wrapper{
	
	position: relative;
	background-color:  rgba(0, 0, 0, 0.55);
	z-index: 5;
	min-height: 945px;
}


.main__content{
	padding-top: 175px;
}


a{
	text-decoration: none;
}


.container{
	margin: 0px auto;
	max-width: 1096px;
}


.header__con{
	justify-content: space-between;
	flex-wrap: wrap;
	display: flex;
}

.logo{
	width: 25%;
	text-align: center;
}

.logo img{
	max-width: 105px;
}

.logo p{
	margin: 12px 0px;
	font-family: Cuprum;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 16px;
	text-align: center;
	text-transform: uppercase;

	color: #97CFC3;

}

.location .city{
	font-family: Cuprum;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	position: relative;
	bottom: 5px;
	line-height: 17px;
	text-transform: uppercase;
	color: #000000;
	border-bottom:  2px dotted #000;
}
.drop__down__left, .drop__down__rig{
	content: "";
	display: inline-block;
	height: 3px;
	background-color: #000;
	width: 10px;
	position: relative;
	margin-bottom: 7px;

}
.location .adress
{
	font-family: Cuprum;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 17px;
	text-transform: uppercase;

	color: #000000;

}


.social__media p{
	font-family: Tahoma;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	color: #747472;
}


.social__icons{
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: flex;
}



.social__icons li{
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	max-width: 30px;
	height: 30px;
	margin: 4.5px;
	margin-bottom: 0px;
	
}
.social__icons li:first-child{
	margin-left: -3px;
}


.social__icons li a{
	display: inline-block;
	width: 100%;
	height: 100%;
}

.location a{}


.callback .callback__title{
	font-family: Tahoma;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 17px;
	


	color: #747472;
}


.callback p{
	margin: 5px 0px;
}

.callback p:first-child{
	margin-top: 12px;
}


p.phone a{
	font-family: Cuprum;
	font-style: normal;
	font-weight: normal;
	font-size: 22px;
	line-height: 24px;
	color: #000;
}	


.callback p:last-child{
	font-family: Cuprum;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	color: #000000;
}


.callback p:last-child span{
	border-bottom: 1px dotted #000;
}

.main__title{
	max-width: 925px;
	margin: auto;
	font-family: Cuprum;
	font-style: normal;
	font-weight: bold;
	font-size: 64px;
	line-height: 74px;
	text-align: center;
	text-transform: uppercase;

	color: #FFFFFF;
}

.sub__title{
	margin: 36px auto 76px;
	box-sizing: border-box;
	max-width: 925px;
	padding: 0px 30px;
	font-family: Tahoma;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	text-align: center;

	color: #FFFFFF;
}

.consultation{
	text-align: center;
}

.consultation button{
	background: #79D0C4;
	border: none;
}	

.consultation button a{
	display: inline-block;
	padding: 15px;
	font-family: Cuprum;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 17px;
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
}

.consultation button a:hover {
	color: #000000;  
}

.social__icons li:hover {
	background: #ffffff
}


.overlay {
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: 10000;
   visibility: hidden;
/* фон затемнения */
   background-color: rgba(0, 0, 0, 0.8);
   opacity: 0;
   position: fixed; /* фиксированное позиционирование */
/* трансформация прозрачности при открытии  */
   -webkit-transition: opacity .5s;
   -moz-transition: opacity .5s;
   -ms-transition: opacity .5s;
   -o-transition: opacity .5s;
   transition: opacity .5s;
}
/* активируем при клике */
.overlay:target {
   visibility: visible;
   opacity: 1;
}
/** стили модального блока */
.modal {
   top: 0;
   right: 0;
   left: 0;
   width: 50%;
   z-index: 10001;
/** полная прозрачность изначально */
   opacity: 0;
   display: block;
   visibility: hidden;
   position: absolute;
/* трансформация прозрачности при открытии  */
   -webkit-transition: opacity 500ms ease-in;
   -moz-transition: opacity 500ms ease-in;
   transition: opacity 500ms ease-in; 
   margin: 0 auto;
   padding: 24px;
   min-width: 320px;
   max-width: 1024px;
   width: 100%;
   border: 1px solid rgba(120,120,120,.7);
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
   background: rgba(60, 63, 65, 0.9); 
   -webkit-background-clip: padding-box;
   -moz-background-clip: padding;
   background-clip: padding-box;
   -webkit-box-shadow: 0 0 13px 3px rgba(0,0,0,.5);
   -moz-box-shadow: 0 0 13px 3px rgba(0,0,0,.5);
   box-shadow: 0 0 13px 3px rgba(0,0,0,.5);
}
/* активируем при клике */
.overlay:target+.modal{
   top: 15%;
   visibility: visible;
   opacity: 1;
}
/* планшет */
@media only screen and (min-width: 768px) and (max-width: 959px) {
.modal {
    width: 95%;
  }
}
/* смарт */
@media only screen and (min-width: 459px) and (max-width: 767px) {
.modal {
    width:85%;  
  }
}
/* кнопка закрытия */
.close {
   position: absolute;
   width: 30px;
   height: 30px;
   right: 15px;
   top: 15px;
   z-index: 999999;
   cursor: pointer;
   text-align: center;
   text-decoration: none;
   line-height: 32px;
   color: #97CFC3;
}
@media (max-width: 530px) {
.close {
   top: 6px;
  }
}
.close:after {
   content: 'X';
   display:block;
   width: 30px;
   height: 30px;
   -moz-border-radius: 50%;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   border: 2px solid #fff;
   -moz-transition: all 0.6s;
   -webkit-transition: all 0.6s;
   transition: all 0.6s;
   -moz-transform: scale(0.85);
   -ms-transform: scale(0.85);
   -webkit-transform: scale(0.85);
   transform: scale(0.85);
}
 
.close:hover:after {
   transform: scale(1);
}
/* блок заголовка видео */
.video__title {
   height: auto;
   width: 70%;
   padding: 0px 5px 15px 5px;
   color: white;
   font: normal 16px/22px 'Open Sans', Calibri, Arial, sans-serif;
}
@media (max-width: 530px) {
.video__title {
   height: 38px;
   font-size: 12px;
   line-height: 18px;
  }
}
/* адаптивный блок видео */
.video { 
   position: relative; 
   padding-bottom: 56.25%; 
   height: 0; 
   overflow:hidden; 
} 
.video iframe, 
.video object, 
.video embed {
   position: absolute; 
   top: 0; 
   left: 0; 
   width: 100%;
   height: 100%; 
}
/* -- */

.youtube {
	text-align: center;
}

.youtube button{
	background: #79D0C4;
	border: none;
}	

.youtube button a{
	font-weight: bold;
	font-size: 18px;
	display: inline-block;
	padding: 15px;
	font-family: Cuprum;
	font-style: normal;
	line-height: 17px;
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
}

.youtube button a:hover {
	color: #000000;  
}
