/*==================================================
  _global
==================================================*/
* {
	margin: 0;
	padding: 0;
	outline: none;
}
html {
	scroll-behavior: smooth; /*плавная прокрутка*/
}
body {
	font-family: 'AvenirNextLTProRegular';
	font-size: 18px;
	line-height: 30px;
	color: #000000;
	overflow-wrap: break-word;
}
h2 {
	font-family: 'SuperclarendonBold';/*Superclarendon-Rg-Bold*/
	font-weight: 700;
	font-size: 36px;
	line-height: 48px;
}
img {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
	outline: none;
	transition: 0.2s all linear;
}
a:hover {
	opacity: 0.8;
	cursor: pointer;
}
ul {
	list-style: none;
}
input,
button {
	transition: 0.2s all linear;
	cursor: pointer;
}
.wrap {
	max-width: 100%;
}
.container {
	max-width: 1280px;
	padding: 0 15px;
	margin: 0 auto;
	/*outline: 1px dotted red;*/
}
.align-center {
	text-align: center;
}
.grid {
	display: grid;
}
.grid-3-col {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.grid-2-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.flex-row {
	display: flex;
	flex-direction: row;
}
.flex-column {
	display: flex;
	flex-direction: column;
}
.video-wrap {
	max-width: calc(100% - 30px);
	/*margin: auto;*/
	/*адаптивное видео*/
	position: relative;
	/*padding-bottom: 56.25%;*/
	/*padding-bottom: 59%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
	padding-bottom: 56%;
	height: 0;
	overflow: hidden;
	background: transparent;
}
.video-wrap iframe {
	/*адаптивное видео*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*==========//==========*/
.translate img,
.translate-down img {
	transition: 0.2s all linear;
}
.translate:hover img {
	margin-left: 20px;
}
.translate-down:hover img {
	transform: translateY(5px);
}
/*==========//==========*/
.btn {
	background-color: white;
	color: black;
	width: 170px;
	height: 48px;
	border: 1px solid #dcdcdc;
	border-radius: 2px;
	font-family: 'AvenirNextLTProDemi';
	font-size: 16px;
	outline: none;
	transition: 0.2s all linear;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.btn:hover {
	background-color: #400099;
	border-color: transparent;
	color: white;
	opacity: 0.8;
}
/*==========//==========*/
.bg-red {background: #fd4f00;}
.color-red {color: #fd4f00;}
.bg-coral {background: #ef5323;}
.color-coral {color: #ef5323;}
.bg-yellow {background: #ffb718;}
.color-yellow {color: #ffb718;}
.color-gold {color: #fab52e;}
.bg-purple {background: #400099;}
.color-purple {color: #400099;}
.color-gray {color: #a9a8ac;}
body h1 .bg-red,
body h1 .bg-coral,
body h1 .bg-yellow {
	padding-left: 10px;
	padding-right: 10px;
}
/*==========//==========*/
.counter {
	animation-duration: 1s;
	animation-delay: 0s;
}
/*==========//==========*/
.el-gallary {
	/*max-width: calc(100% - 30px);*/
	/*margin: auto;*/
	/*адаптивное видео*/
	position: relative;
	padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.el-gallary .slick-wrap {
	/*адаптивное видео*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*=============Yuotube iframe============*/
.video_wrapper {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	position: relative;
	background-color: #000000;
}
#faqs-section-4 .video_wrapper,
#calendar-section-3 .video_wrapper,
#home-section-2 .video_wrapper {
	width: 100%;
	max-width: 640px;
}
#rehab-section-4 .video_wrapper,
#community-section-2 .video_wrapper {
	width: 100%;
	max-width: 1280px;
}
.videoIframe {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
}
.videoPoster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	border: none;
	text-indent: -999em;
	overflow: hidden;
	opacity: 1;
	-webkit-transition: opacity 800ms, height 0s;
	-moz-transition: opacity 800ms, height 0s;
	transition: opacity 800ms, height 0s;
	-webkit-transition-delay: 0s, 0s;
	-moz-transition-delay: 0s, 0s;
	transition-delay: 0s, 0s;
}
.videoPoster:hover {
	cursor: pointer;
}
.videoPoster:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 5px solid #ffffff;
    border-radius: 100%;
    -webkit-transition: border-color 300ms;
    -moz-transition: border-color 300ms;
    transition: border-color 300ms;
    transform: translate(-50%, -50%);
}
.videoPoster:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 25px solid #ffffff;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    -webkit-transition: border-color 300ms;
    -moz-transition: border-color 300ms;
    transition: border-color 300ms;
    transform: translate(-50%, -50%);
    margin-left: 5px;
}
.videoPoster:hover:before, .videoPoster:focus:before {
	border-color: #fd4f00;
}
.videoPoster:hover:after, .videoPoster:focus:after {
	border-left-color: #fd4f00;
}

.videoPoster1:before{
	border:0 !important;
	width:0 !important;
	height:0 !important;
}
.videoPoster1:after{
	border:0 !important;
}

.videoWrapperActive .videoPoster {
	opacity: 0;
	height: 0;
	-webkit-transition-delay: 0s, 800ms;
	-moz-transition-delay: 0s, 800ms;
	transition-delay: 0s, 800ms;
}
.searchform {
	margin-bottom: 80px;
	width: 100%;
	position: relative;
}
.searchinput {
	background: transparent;
	border: none;
	border-bottom: 1px solid #b2b2b3;
	width: 100%;
	padding: 5px 0;
}
.searchsubmit {
	background: url(../images/icon-search.png) no-repeat;
	background-position: 70% center;
	background-size: 13px 14px;
	color: transparent;
	border: none;
	padding: 5px 0;
	width: 43px;
	height: 26px;
	position: absolute;
	top: 4px;
	right: 0;
	font-size: 0 !important;
}
.searchsubmit:hover {
	background-color: transparent !important;
	border-color: transparent !important;
	color: transparent !important;
	opacity: 1 !important;
}
.terms_page h1 {
    margin: 15px 0;
    font-family: 'AvenirNextLTProRegular';
    color: #000000;
}
.terms_page p {
	margin: 15px 0;
	font-family: 'AvenirNextLTProRegular';
font-size: 17px;
line-height: 28px;
	color:#000000;
}
.terms_page  ul li {
	margin-left: 25px;
	list-style: disc;
		font-family: 'AvenirNextLTProRegular';
	font-size: 17px;
line-height: 28px;
}
body.single-newsletter #newsletter-section-4 ul {
    padding: 0px 60px;
    list-style: disc;
}
body.single-newsletter .newsletter-content-inner section {
    padding-bottom: 80px;
}
#ajax-load-more .alm-btn-wrap .alm-load-more-btn{
	border: 2px solid #cccbcd;
background:transparent;
color:#000;
font-family: 'AvenirNextLTPro-Demi';
padding: 5px 45px;
height: auto;
font-size: 16px;
}
.footer-copy__info a {

    color: #808285;
    font-size: 11px;
    text-transform: uppercase;
    margin: 0 11px 0 0;
}
/*====================//====================*/
@media all and (max-width: 991px) {
	.grid-3-col,
	.grid-2-col {
		grid-template-columns: 1fr;
	}
	.video-wrap {
		margin-bottom: 30px;
	}
	h2 {
		font-size: 27px;
		line-height: 36px;
	}
	.searchform {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}
/*====================//====================*/
@media all and (max-width: 767px) {
}
/*====================//====================*/
/* iMac portrait & landscape */
body.os-mac h1 .bg-red,
body.os-mac h1 .bg-coral,
body.os-mac h1 .bg-yellow {
	padding-top: 10px;
}
/* iPad mini in portrait & landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
	h1 .bg-red,
	h1 .bg-coral,
	h1 .bg-yellow {
		/*padding-top: 10px;*/
	}
}
/* iPad in portrait & landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	h1 .bg-red,
	h1 .bg-coral,
	h1 .bg-yellow {
		/*padding-top: 10px;*/
	}
}
/* iphone 6, 6s, 7, 8 */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
	h1 .bg-red,
	h1 .bg-coral,
	h1 .bg-yellow {
		/*padding-top: 10px;*/
	}
}
/* iphone 6+, 6s+, 7+, 8+ */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
	h1 .bg-red,
	h1 .bg-coral,
	h1 .bg-yellow {
		/*padding-top: 10px;*/
	}
}
/* iPhone X in portrait & landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) {
	h1 .bg-red,
	h1 .bg-coral,
	h1 .bg-yellow {
		/*padding-top: 10px;*/
	}
}

.header-bottom__info .searchform.active .searchsubmit {
    background: none;
}

.header-bottom__info p a:hover{
	color:#3e0099;
	text-decoration: underline;
}

#community-section-4 .item-1.block-slider h2{
	color: #400099;
}
#community-section-4 .item-2.block-slider h2{
	color: #ffb718;
}
#community-section-4 .item-3.block-slider h2{
	color: #fd4f00;
}

#community-section-4-new .item-1.block-slider h2{
	color: #400099;
}
#community-section-4-new .item-2.block-slider h2{
	color: #ffb718;
}
#community-section-4-new .item-3.block-slider h2{
	color: #fd4f00;
}

#newsectionnav > .header__menu {
     width: auto !important;
}