/*!
Theme Name: Narrabeen Swim Academy
Theme URI: http://underscores.me/
Author: Digital Octane
Author URI: http://digitaloctane.co/
Version: 1.0.0
Text Domain: nsa

Narrabeen Swim Academy is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

@font-face {
    font-family: 'Switzer';
    src: url('assets/fonts/Switzer-Regular.woff') format('woff'),
         url('assets/fonts/Switzer-Regular.otf') format('opentype'),
		 url('assets/fonts/Switzer-Regular.ttf')  format('truetype'); /* Safari, Android, iOS */
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Acumin Pro Condensed';
    src: url('assets/fonts/acuminprocond-regular-webfont.woff2') format('woff2'),
		 url('assets/fonts/acuminprocond-regular-webfont.woff') format('woff'),
         url('assets/fonts/acuminprocond-Regular.otf') format('opentype'); /* Safari, Android, iOS */
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Acumin Pro Condensed';
    src: url('assets/fonts/acuminprocond-bold.otf')  format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*** General ***/
:root {
    --mainFontSize: 16px;
    --mainLineHeight: 22px;
    --mainBgColor: #fff;
    --mainFontFamily: 'Switzer', sans-serif;
    --Navy: #152644;
    --Dark-Green: #2ED391;
    --Light-Green: #D7F8EE;
	--teamTitleMinH: auto;
}

body {
    font-family: var(--mainFontFamily);
    font-size: var(--mainFontSize);
    line-height: var(--mainLineHeight);
    font-weight: 400;
    color: var(--Navy, #152644);
    background: var(--mainBgColor);
}
body.body_active_modal {
   height: 100vh;
   overflow-y: hidden;
}

body::-webkit-scrollbar {
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  background: #e5e5e5;
border-radius: 10px;
    border: 4px solid #fff;
}
body::-webkit-scrollbar-track {
  background: transparent;
}

._container {
    max-width: 1440px;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
}

a {
    color: inherit;
}

img {
    width: 100%;
    max-width: 100%;
}

.img_adaptive {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.img_adaptive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
    object-position: 50% 50%;
}

.bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.img_hover_effect {
    transition: 0.35s linear;
}
.img_hover_effect:hover {
    transform: scale(1.05);
}

.title_main {
    font-family: Acumin Pro Condensed;
    font-size: 65px;
    font-style: italic;
    font-weight: 700;
    line-height: 65px;
    text-transform: uppercase;
}
.page_title {
	font-family: Acumin Pro Condensed;
	font-size: 85px;
	font-style: italic;
	font-weight: 700;
	line-height: 85px;
	text-transform: uppercase;
}

.line_block {
    position: relative;
    height: 2px;
    overflow: hidden;
	background: #ebe7e7;
}
._line {
    width: 100%;
    height: 2px;
    background: #FFF;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    position: absolute;
    top: 0;
    left: 0
}
.active ._line {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 4s ease-out;
    transition: -webkit-transform 4s ease-out;
    transition: transform 4s ease-out;
    transition: transform 4s ease-out, -webkit-transform 4s ease-out
}

._text_content a {
	color: var(--Dark-Green, #2ED391);
	background: linear-gradient(currentColor 0 0) var(--p, 0) 100% /var(--d, 100%) 2px no-repeat;
    transition: 0.3s, background-position 0s 0.3s;
}
._text_content a:hover {
	--p: 100%;
    --d: 0%;
}
._text_content p:not(:last-of-type) {
    margin-bottom: 14px;
}
._text_content em a {
    color: var(--Dark-Green, #2ED391);
    text-decoration: none;
}
._text_content ol,
._text_content ul {
	margin: 16px 0;
    padding-left: 28px;
    list-style: auto;
}
._text_content ul li {
    list-style: disc;
}
._text_content ol li {
    list-style: auto;
}
._text_content strong {
    font-weight: bolder;
}
._text_content h2 {
    color: var(--Navy, #152644);
    font-family: Acumin Pro Condensed;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    margin: 17px 0 9px;
}

.btn {
    display: inline-block;
    padding: 14px 20px 9px;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    font-family: Acumin Pro Condensed;
    text-align: center;
    text-transform: uppercase;
    border-radius: 30px;
    color: var(--Light-Green, #D7F8EE);
    background: var(--Dark-Green, #2ED391);
    transition: all .3s ease-out;
	cursor: pointer;
    min-width: 194px;
}
body:not(.type_program) .btn:hover {
    background: var(--Navy, #152644);
}
.site_header:not(.dark_bg) .btn:hover {
    background: var(--Navy, #152644);
}
.btn.no_hover:hover {
    background: var(--Dark-Green, #2ED391) !important;
}
body.type_program .btn:hover {
    color: #fff;
}
.site_header .btn {
	min-width: 170px;
}
@media (min-width: 768px) {
	.site_header .btn_additional {
		margin-left: 22px;
	}
}

.site_header.dark_bg .btn:hover {
    color: #fff;
}
.btn.no_hover:hover {
    color: #fff;
}

.btn_2 {
	display: inline-block;
	position: relative;
	color: var(--Dark-Green, #2ED391);
	font-family: Acumin Pro Condensed;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.3s, background-position 0s 0.3s;
	background: linear-gradient(currentColor 0 0) var(--p, 0) 100% /var(--d, 100%) 2px no-repeat;
	padding-bottom: 1px;
}
.btn_2:hover {
	--p: 100%;
    --d: 0%;
}
/*
.btn_2:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 100%;
	background: var(--Dark-Green, #2ED391);
}
*/
.btn_3 {
	display: inline-block;
    padding: 15px 20px 9px;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    font-family: Acumin Pro Condensed;
    text-align: center;
    text-transform: uppercase;
    color: var(--Dark-Green, #2ED391);
    border-radius: 30px;
    border: 1px solid var(--Dark-Green, #2ED391);
    transition: all .3s ease-out;
	cursor: pointer;
}
.btn_3:hover {
    color: var(--Light-Green, #D7F8EE);
    background: var(--Dark-Green, #2ED391);
}

/* Modal */
._modal ._close {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    background: var(--darkGreen);
    border-radius: 50%;
    z-index: 1;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
._modal {
   position: fixed;
   width: 100%;
   max-width: 800px;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   z-index: 9999;
   display: none;
}
._modal_inner {
 	position: relative;
    padding: 20px;
}
._modal_content {
 	position: relative;
    background-color: #fff;
	border-radius: 20px;
    overflow: auto;
	padding: 24px;
	padding-top: 32px;
    max-height: calc(100vh - 80px);
}
._modal_overlay {
   z-index: 1000;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0,0,0,.6);
   display: none;
}
._modal_overlay.active_overlay {
    display: block;
}
._modal.active_modal {
   display: block;
   transition: linear 0.5s;
}

/* Accordion */
.accordion_block {
    border-top: 1px solid;
	border-color: inherit;
    cursor: pointer;
}
.accordion_block:last-of-type {
    border-bottom: 1px solid;
	border-color: inherit;
}
.accordion_block__header {
    padding: 19px 50px 14px 0;
	font-family: Acumin Pro Condensed;
	font-size: 26px;
	font-style: italic;
	font-weight: 700;
	line-height: 26px;
	text-transform: uppercase;
	position: relative;
}
.accordion_block__header svg {
    position: absolute;
    top: 20px;
    right: 0;
    width: 20px;
	height: 20px;
    transition: 0.3s;
}
.accordion_block__header svg path {
    stroke: currentColor;
}
.accordion_block__main {
    display: grid;
    grid-template-rows: 0fr;
    transition: all 500ms;
}
.accordion_block ._inner {
    overflow: hidden;
}
.accordion_block.active .accordion_block__header svg {
    transform: rotate(90deg);
}
.accordion_block.active .accordion_block__main {
    grid-template-rows: 1fr;
}
.accordion_block ._inner ._text {
	max-width: 870px;
    margin-bottom: 20px;
}


.checkbox__items {
	display: flex;
	gap: 20px;
}
._checkbox_item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 6px 0;
}
._checkbox_label {
    cursor: pointer;
    flex: 2;
}
._checkbox {
	position: relative;
    width: 32px;
	height: 32px;
    vertical-align: top;
    border-radius: 50%;
    margin-right: 8px;
    cursor: pointer;
    flex-shrink: 0;
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	background-image: url(assets/img/checkbox.svg);
}
.checked ._checkbox {
	background-image: url(assets/img/checkbox_checked.svg);
}
	
.input_block + .input_block{
	margin-top: 20px;
}
label {
	color: var(--Navy, #152644);
	font-family: Acumin Pro Condensed;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
}
input, textarea {
	color: var(--Navy, #152644);
	font-family: Acumin Pro Condensed;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	padding: 13px 0 8px;
	width: 100%;
	border-bottom: 1px solid var(--Navy, #152644);
}
textarea {
	line-height: 26px;	
}
input::placeholder, textarea::placeholder {
	color: var(--Navy, #152644);
	font-family: Acumin Pro Condensed;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	text-transform: uppercase;
}
._form {
    transition: 0.3s ease all;
}
._form.loading {
	opacity: 0.5;	
}
.form_result {
    margin: 30px 0 10px;
}
.err {
	color: red;
}
.success {
	color: var(--Dark-Green, #2ED391);	
}

@media (max-width: 768px) {
    
    body {
        font-size: 12px;
        line-height: 18px;
    }
    .title_main {
        font-size: 35px;
        line-height: 35px;
    }
	.page_title {
		font-size: 45px;
		line-height: 45px;
	}
    
    .accordion_block__header {
		padding: 22px 40px 17px 0;
    	font-size: 20px;
    	line-height: 20px;
	}
	
	._modal_content {
    	padding: 16px;
	}
	
	._text_content p:not(:last-of-type) {
		margin-bottom: 8px;
	}
	._text_content ol,
	._text_content ul {
		margin: 8px 0;
	}
	
	.checkbox__items {
		gap: 16px;
	}
	._checkbox {
    	width: 25px;
		margin-right: 6px;
	}
}


.swiper-wrapper {
    align-items: stretch;
}
.swiper-slide {
    height: auto;
    flex: 0 0 auto;
}


/* Header */
.site_header {
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
	z-index: 99;
	transition: all 0.3s ease;
}
.nav-up {
    top: -96px;
}
.site_header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo {
	line-height: 0;
    max-width: 195px;
}
.logo svg {
    width: 100%;
    max-width: 100%;
	height: auto;
}
.site_header__main {
	display: flex;
    align-items: center;
}
.site_header__main .menu_main {
	display: flex;
    align-items: center;
	margin-right: 22px;
}
.site_header__main .menu_main > li + li {
    margin-left: 28px;
}
.site_header__main .menu_main a {
	transition: 0.3s, background-position 0s 0.3s;
	background: linear-gradient(currentColor 0 0) var(--p, 100%) 100% /var(--d, 0) 1px no-repeat;
	padding-bottom: 3px;
}
.site_header__main .menu_main a:hover {
	--p: 0%;
    --d: 100%;
}
.site_header__main .menu_main .curr_page a {
	background: linear-gradient(currentColor 0 0) var(--p, 0) 100% /var(--d, 100%) 1px no-repeat;
	padding-bottom: 3px;
}
.site_header__main .menu_main .curr_page a:hover {
	--p: 100%;
    --d: 0%;
}
.site_header.scroll_down {
	transform: translateY(-100%);
}

.site_header.scroll_up._fixed {
	background-color: #fff;
}
.site_header .open_mob_menu {
	display: none;
	margin-left: 22px;
}
.site_header.open_submenu {
	background-color: #fff;
}

.site_header.dark_bg:not(._fixed, .open_submenu) .logo path {
    fill: var(--Light-Green, #D7F8EE);
}
.site_header.dark_bg:not(._fixed, .open_submenu) .open_mob_menu line {
    stroke: var(--Light-Green, #D7F8EE);
}
.site_header.dark_bg:not(._fixed, .open_submenu) .menu-item a {
    color: var(--Light-Green, #D7F8EE);
}

.mob_menu {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
	font-size: 16px;
	line-height: 22px;
    z-index: 99999;
    transition: 0.2s;
}
.mob_menu.active {
    display: block;
}
.mob_menu.show {
    background-color: rgba(0, 0, 0, 0.2);
}
.mob_menu ._inner {
    position: relative;
    height: 100vh;
    margin-left: auto;
    background: var(--Light-Green, #D7F8EE);
    transition: 0.3s;
    transform: translateX(100%);
}
.mob_menu.show ._inner {
    transform: translateX(0%);
}
.mob_menu ._main {
	padding: 19px 20px 39px;
    height: 100vh;
    overflow-y: auto;
}
.mob_menu ._head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.mob_menu .menu_main {
    margin-top: 24px;
}
.mob_menu .menu_main .parent_link {
	display: block;
	position: relative;
	padding: 22px 50px 16px 0;
    color: var(--Navy, #152644);
    font-family: Acumin Pro Condensed;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
	border-top: 1px solid;
    border-color: inherit;
}
.mob_menu .menu_main li:last-of-type .parent_link {
	border-bottom: 1px solid;
    border-color: inherit;
}
.mob_menu .menu_main .parent_link svg {
    position: absolute;
    top: 20px;
    right: 0;
    width: 20px;
    height: 20px;
    transition: 0.3s;
}
.mob_menu .work_hours {
    margin-top: 32px;
}
.mob_menu .contact_block {
    margin-top: 24px;
}
.mob_menu .btn {
    margin-top: 30px;
    width: 100%;
}
.mob_menu .btn_additional {
	margin-top: 16px;
}
.mob_menu .social {
    margin-top: 29px;
}
.mob_menu .social_item + .social_item {
    margin-left: 23px;
}
.mob_menu .sub_menu_block {
	display: grid;
    grid-template-rows: 0fr;
    transition: all 500ms;
}
.mob_menu .sub_menu_list a {
    font-size: 14px;
}
.mob_menu .menu-item.active .sub_menu_block {
    grid-template-rows: 1fr;
}
.mob_menu .menu-item.active svg {
    transform: rotate(90deg);
}
.mob_menu .sub_menu_block__inner {
    overflow: hidden;
}
.sub_menu_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	grid-template-rows: repeat(7, 1fr);
    grid-auto-flow: column;
}
.mob_menu .sub_menu_list {
	margin-bottom: 18px;
}
.sub_menu_block_mob__title {
    font-family: Acumin Pro Condensed;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 18px;
    line-height: 140%;
}

@media (min-width: 899px) {
	.sub_menu_block {
		position: absolute;
		width: 100%;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		padding: 56px 0 55px;
		transition: all 0.3s;
		opacity: 0;
		visibility: hidden;
	}
	.active .sub_menu_block {
		opacity: 1;
		visibility: visible;
	}
	.sub_menu_block ._container {
		max-width: 1046px;
	}
	.sub_menu_block__inner {
		display: flex;
		gap: 30px;
	}
	.sub_menu_block__title {
		width: 38%;
		font-family: Acumin Pro Condensed;
		font-size: 26px;
		font-style: italic;
		font-weight: 700;
		line-height: 26px;
		text-transform: uppercase;
	}
	.sub_menu_list {
		width: 62%;
		max-width: 425px;
	}
}

@media (max-width: 1100px) {
    
    ._container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .site_header .address {
        display: none;
    }
    .logo {
        max-width: 148px;
    }

    .site_header .btn {
        padding: 9px 10px 4px;
		font-size: 16px;
		line-height: 22px;
		min-width: 107px;
    }
}

@media (max-width: 1300px) {
	
	.site_header__main .menu_main {
		display: none;
	}
	.site_header .open_mob_menu {
		display: block;
	}
	.site_header .btn {
		min-width: 97px;
	}
	.site_header .btn_additional {
		display: none;
	}
}

@media (max-width: 768px) {
    .site_header {
        padding: 19px 0;
    }
}

@media (max-width: 360px) {
	.site_header__inner {
		gap: 10px;
	}
	.site_header .logo {
		max-width: 124px;
	}
	.site_header .open_mob_menu {
		margin-left: 12px;
	}
}


.hero {
    padding: 185px 0 120px;
    background: repeating-linear-gradient( to right, #D7F8EE 0px, #D7F8EE 64px, #fff 65px, #fff 66px );
}
.hero__inner {
    display: flex;
	align-items: center;
    flex-direction: row-reverse;
}
.hero ._left {
    width: 40.3%;
}
.hero ._right {
    width: 59.7%;
    padding-right: 50px;
}
.hero .img_block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 0;
    line-height: 0;
    padding-top: calc(100% / 0.75);
}
.hero ._logo {
    width: 165.773px;
    height: 165.773px;
    background-size: contain;
    position: absolute;
    right: 40.23px;
    bottom: 40.23px;
}
.hero__content {
    max-width: 630px;
}
.hero ._title {
    font-family: Acumin Pro Condensed;
    font-size: 85px;
    font-style: italic;
    font-weight: 700;
    line-height: 85px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.hero ._text {
    max-width: 503px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.hero ._text ~ .btns {
    margin-top: 36px;
}
.hero .btns {
    display: flex;
    flex-wrap: wrap;
    gap: 31px;
}

@media (max-width: 1250px) {

    .hero ._left {
        width: 44%;
    }
    .hero ._right {
        width: 56%;
    }
    .hero ._title {
        font-size: 65px;
        line-height: 65px;
    }
}

@media (max-width: 1100px) {

    .hero ._left {
        width: 40.3%;
    }
    .hero ._right {
        width: 59.7%;
    }
    .hero ._title {
        font-size: 45px;
        line-height: 45px;
    }
}

@media (max-width: 900px) {
	.hero {
		padding: 140px 0 80px;
	}
    .hero__inner {
        display: block;
    }
    .hero ._left {
        width: 100%;
    }
    .hero ._right {
        width: 100%;
        padding-right: 0;
        padding-top: 40px;
    }
    .hero .img_block {
        padding-top: 100%;
    }
    .hero ._logo {
        width: 200px;
    	height: 200px;
        right: 20px;
        bottom: 20px;
    }
    .hero ._text {
        font-size: 16px;
        line-height: 22px;
    }
    .hero ._text ~ .btns {
        margin-top: 30px;
		gap: 16px;
    }

}

@media (max-width: 600px) {

	.hero {
        padding: 91px 0 32px;
    }
    .hero .img_block {
        border-radius: 10px;
    }
	.hero ._logo {
		width: 130px;
		height: 130px;
	}
    .hero .btn {
        width: 100%;
    }
}


.cta__inner {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    background: var(--Navy, #152644);
    color: var(--Light-Green, #D7F8EE);
}
.cta ._left {
    width: 49.6%;
    padding: 103px 50px 103px 113px;
}
.cta ._right {
    width: 50.4%;
    padding: 20px;
}
.cta.type_1 .cta__content {
    max-width: 402px;
}
.cta ._title {
    margin-bottom: 20px;
}
.cta .img_block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.cta .img {
    width: 100%;
    height: 100%;
}
.cta ._logo {
    position: absolute;
    top: 20px;
    right: 20px;
    background-size: contain;
    width: 117px;
    height: 113px;
}
.cta ._text_content a {
    color: inherit;
}
.cta .btn {
    width: 100%;
    max-width: 259px;
}
.cta ._text ~ .btn {
    margin-top: 32px;
}

.cta.type_2 .cta__inner {
    flex-direction: row-reverse;
}
.cta.type_2 ._logo {
    width: 399.996px;
    height: 386.759px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cta.type_2 ._right {
    width: 40.6%;
    padding: 70px 30px 62px 72px;
}
.cta.type_2 ._left {
    width: 59.4%;
    padding: 27px 28px;
}
.cta.type_2 a {
    color: var(--Dark-Green, #2ED391) !important;
    background: none !important;
}

@media (max-width: 1200px) {

    .cta.type_2 ._right {
        padding: 70px 10px 62px 30px;
    }
    .cta.type_2 ._left {
        padding: 20px;
    }
}

@media (max-width: 1000px) {
    .cta ._left {
        padding: 103px 40px;
    }
}

@media (max-width: 900px) {
    .cta.type_2 .cta__inner {
        display: block;
    }
    .cta.type_2 ._right {
        width: 100%;
        padding: 30px 30px 40px;
    }
    .cta.type_2 ._left {
        width: 100%;
    }
    .cta.type_2 .img_block {
        height: 0;
        line-height: 0;
        padding-top: calc(100% / 1.335);
    }
    .cta.type_2 .img_block .img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .cta.type_2 ._logo {
        width: 229.998px;
        height: 224.918px;
    }
    .cta.type_2 .btn {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
	.cta.type_1 .title_main {
		font-size: 45px;
		line-height: 45px;
	}
}

@media (max-width: 600px) {
    
    .cta__inner {
        display: block;
        border-radius: 20px;
    }
    .cta ._left {
        width: 100%;
        padding: 40px 20px;
    }
    .cta ._right {
        width: 100%;
        padding: 0;
    }
    .cta__content {
        max-width: none;
    }
    .ctaa.type_1 ._title {
        font-size: 45px;
        line-height: 45px;
    }
    .cta .img_block {
        height: 0;
        line-height: 0;
        padding-top: calc(100% / 1.335);
        border-radius: 0;
    }
    .cta .img_block .img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .cta ._logo {
        width: 90px;
        height: 86.949px;
    }
    .cta .btn {
        max-width: 100%;
    }
    
    .cta.type_2 ._left {
        padding: 0;
    }
    .cta.type_2 ._right {
        padding: 34px 20px 32px;
    }
    .cta.type_2 ._logo {
        width: 149.998px;
        height: 144.918px;
    }
}


.text_image {
	padding: 44px 0 30px;
}
.text_image__inner {
    display: flex;
	align-items: center;
}
.text_image ._left {
    width: 57.42%;
}
.text_image ._right {
    width: 42.58%;
    padding-left: 100px;
}
.text_image__content {
	max-width: 411px;
}
.text_image ._title {
    margin-bottom: 24px;
}
.text_image .img_block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.text_image .img_block .img {
	width: 100%;
    height: 100%;
    min-height: 568px;
}
.text_image .btn_2 {
	margin-top: 40px;
}

@media (max-width: 1300px) {
	
	.text_image ._right {
		padding-left: 40px;
	}
}

@media (max-width: 1000px) {
	
	.text_image__inner {
    	display: block;
	}
	.text_image ._left {
		width: 100%;
	}
	.text_image ._right {
		width: 100%;
		padding-top: 40px;
		padding-left: 0;
	}
	.text_image__content {
		max-width: none;
	}
}

@media (max-width: 600px) {
	
	.text_image ._title {
		margin-bottom: 16px;
	}
	.text_image .img_block {
    	border-radius: 10px;
	}
	.text_image .img_block .img {
		min-height: 250px;
	}
	.text_image .btn_2 {
		margin-top: 30px;
	}
}


.animated_gallery {
	padding: 80px 0;
}
.animated_gallery__inner {
    display: flex;
}
.type_1 .animated_gallery__inner {
	align-items: center;
}
.animated_gallery ._left {
    width: 57.42%;
}
.animated_gallery ._right {
    width: 42.58%;
    padding-left: 100px;
}
.animated_gallery__content {
	max-width: 411px;
}
.animated_gallery ._title {
    margin-bottom: 24px;
}
.animated_gallery .img_block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.animated_gallery .img_block .img {
	width: 100%;
    height: 100%;
    min-height: 568px;
	display: none;
}
.animated_gallery .img_block .img.active {
	display: block;
}
.animated_gallery .indicator_block {
    position: absolute;
	bottom: 31px;
	left: 27px;
	right: 27px;
	max-width: 405px;
    display: flex;
	align-items: baseline;
    gap: 24px;
	color: #FFF;
	font-family: Acumin Pro Condensed;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	text-transform: uppercase;
}
.animated_gallery .indicators {
	width: 100%;
    display: flex;
    gap: 15px;
}
.animated_gallery .indicator_item {
    width: 100%;
}

.animated_gallery.type_2 {
    background: repeating-linear-gradient( to right, #D7F8EE 0px, #D7F8EE 64px, #fff 65px, #fff 66px );
}
.animated_gallery.type_2 .animated_gallery__inner {
	flex-direction: row-reverse;
}
.animated_gallery.type_2 .animated_gallery__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}
.animated_gallery.type_2 .btn {
    max-width: 259px;
}

@media (max-width: 1300px) {
	
	.animated_gallery ._right {
		padding-left: 40px;
	}
}

@media (max-width: 1000px) {
	
	.animated_gallery__inner {
    	display: block;
	}
	.animated_gallery ._left {
		width: 100%;
	}
	.animated_gallery ._right {
		width: 100%;
		padding-left: 0;
	}
	.animated_gallery.type_1 ._right {
		padding-top: 40px;
	}
	.animated_gallery.type_2 ._right {
		padding-bottom: 40px;
	}
	.animated_gallery__content {
		max-width: none;
	}
}

@media (max-width: 768px) {
	
	.animated_gallery.type_2 .title_main {
		font-size: 45px;
		line-height: 45px;
	}
}

@media (max-width: 600px) {
	
	.animated_gallery {
		padding: 40px 0;
	}
	.animated_gallery ._title {
		margin-bottom: 16px;
		max-width: 325px;
	}
	.animated_gallery .img_block {
    	border-radius: 10px;
	}
	.animated_gallery .img_block .img {
		min-height: 250px;
	}
	.animated_gallery .indicator_block {
		bottom: 17px;
		left: 20px;
		right: 20px;
		gap: 14px;
		font-size: 16px;
		line-height: 16px;
	}
	.animated_gallery .indicators {
		gap: 11px;
	}
	
	.animated_gallery.type_2 .btn {
		max-width: none;
	}
}

.reviews {
	position: relative;
	padding: 80px 0;
	background: repeating-linear-gradient( to right, #D7F8EE 0px, #D7F8EE 64px, #fff 65px, #fff 66px );
}
.reviews__inner {
	display: flex;
	padding-left: 60px;
}
.reviews ._left {
	width: 24.5%;
	padding-right: 60px;
}
.reviews ._right {
	width: 75.5%;
}
.reviews ._head {
	max-width: 259px;
    height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.reviews__slider {
	overflow: hidden;
}
.reviews__slider .swiper-slide {
	max-width: 355px;
	margin-right: 20px;
}
.review_block {
	border-radius: 20px;
	background: #FFF;
	padding: 30px;
	padding-bottom: 37px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.review_block img {
	max-width: 55px;
	margin-bottom: 30px;
}
.review_block ._title {
	font-family: Acumin Pro Condensed;
	font-size: 20px;
	font-style: italic;
	font-weight: 700;
	line-height: 26px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.review_block ._text {
	max-width: 264px;
	margin-bottom: 30px;
}
.review_block ._rate {
    line-height: 0;
}
.review_block ._rate svg + svg {
    margin-left: 5px;
}
.reviews__modal ._modal_title {
	font-family: Acumin Pro Condensed;
    font-size: 38px;
    font-style: italic;
    font-weight: 700;
    line-height: 38px;
    text-transform: uppercase;
	margin-bottom: 26px;
}
.reviews__modal label {
    display: block;
    margin-bottom: 8px;
}
.reviews__modal .submit_btn {
    margin-top: 20px;
}

@media (min-width: 1440px) {
	.reviews__inner {
		padding-left: calc(60px + (1340 - 60) * ((100vw - 1440px) / (4000 - 1440)));
	}
}

@media (max-width: 1200px) {
    
    .reviews ._left {
    	width: 35%;
	}
	.reviews ._right {
		width: 65%;
	}
}
@media (max-width: 1100px) {
    .reviews__inner {
		padding-left: 20px;
	}
}

@media (max-width: 768px) {
    .reviews__inner {
    	display: block;
	}
	.reviews ._left {
    	width: 100%;
		padding-right: 0;
	}
	.reviews ._right {
		width: 100%;
	}
	.reviews ._head {
    	max-width: 345px;
		padding-right: 20px;
		margin-bottom: 40px;
	}
	.reviews .title_main {
		font-size: 45px;
		line-height: 45px;
		margin-bottom: 30px;
	}
	.reviews ._modal_inner {
		padding: 20px 10px;
	}
	.reviews ._modal_content {
		padding: 24px 20px;
    	padding-top: 32px;
	}
}

@media (max-width: 600px) {
	
    .reviews {
    	padding: 40px 0 80px;
	}
	.reviews__slider .swiper-slide {
		max-width: 246px;
	}
	.review_block {
		padding: 28px 20px 25px;
	}
	.review_block img {
		max-width: 45px;
		margin-bottom: 16px;
	}
	.review_block ._title {
		line-height: 20px;
		margin-bottom: 9px;
	}
}

.contact {
	padding-top: 167px;
}
.contact .title_main {
	margin-bottom: 20px;
}
.contact__inner {
	display: flex;
	padding-bottom: 60px;
}
.contact ._left {
	width: 42.66%;
	padding-right: 60px;
}
.contact ._right {
	width: 57.34%;
	padding-top: 18px;
}
.contact ._cta {
	max-width: 454px;
	padding: 28px 30px;
	border-radius: 10px;
	background: var(--Light-Green, #D7F8EE);
}
.contact ._cta ._text {
	max-width: 308px;
}
.contact ._cta .btn {
	max-width: 245px;
	margin-top: 30px;
}
.contact ._map {
    max-width: 100%;
    position: relative;
    overflow: hidden;
    height: 0;
    line-height: 0;
    padding-top: calc(100% / 2.41);
}
._map p {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
._map iframe {
    width: 100%;
    height: 100%;
}

.contact_block {
    font-size: 16px;
    line-height: 22px;
}
.contact_block a {
	text-decoration: underline;
}
.contact_block p + p {
	margin-top: 6px;
}
.contact_block + .contact_block {
	margin-top: 40px;
}

@media (max-width: 1000px) {
	
	.contact ._left {
		width: 55%;
	}
	.contact ._right {
		width: 45%;
	}
}

@media (max-width: 768px) {
	
	.contact {
		padding-top: 120px;
	}
	.contact .title_main {
		margin-bottom: 12px;
	}
	.contact ._left {
		padding-right: 30px;
	}
	.contact ._cta .btn {
		max-width: none;
		margin-top: 17px;
	}
}

@media (max-width: 600px) {
	
	.contact {
		padding: 91px 0 0;
	}
	.contact__inner {
		display: block;
		padding-bottom: 40px;
	}
	.contact ._left {
		width: 100%;
		padding-right: 0;
	}
	.contact ._right {
		width: 100%;
		padding-top: 40px;
	}
	.contact ._cta {
		padding: 40px 20px;
	}
	.contact ._map {
		padding-top: calc(100% / 1.005);
	}
	
	.contact_block p + p {
		margin-top: 4px;
	}
	.contact_block + .contact_block {
		margin-top: 20px;
	}
}

@media (max-width: 400px) {
	
	.contact ._cta .btn {
    	max-width: none;
		width: 100%;
	}
}


/* Page */
.page:not(.page-template-template-builder) main {
	padding: 185px 0 17px;
}
.page:not(.page-template-template-builder) .page_head .page_title {
	margin-bottom: 60px;
}
.page:not(.page-template-template-builder) .page_content {
	max-width: 983px;
}
@media (max-width: 768px) {
	.page:not(.page-template-template-builder) main {
		padding-top: 140px;
	}
	.page:not(.page-template-template-builder) .page_head .page_title {
		margin-bottom: 40px;
	}
}
@media (max-width: 600px) {
	.page:not(.page-template-template-builder) main {
		padding-top: 117px;
	}
}

.policies_page ._text_content ol:first-of-type {
    margin-top: 2px;
}
.policies_page ._text_content ol, .policies_page ._text_content ul {
    margin-bottom: 30px;
}

/* Withdrawal form Page */
.page-template-template-withdrawal-form .page_title {
	margin-bottom: 60px;
}
.page-template-template-withdrawal-form .page_content {
	max-width: 870px;
}

.gform_wrapper.gform-theme--framework {
    width: 100%;
    max-width: 100%;
}
.gform_wrapper .gform_fields {
    grid-gap: 30px !important;
}
.gfield_required.gfield_required_text {
    display: none;
}
body .gform-theme--foundation .gform-grid-row {
    flex-wrap: wrap;
}
body .gform-theme--framework .gfield--type-section {
    border-block-end: 0;
	padding: 0 !important;
    margin: 0 !important;
}
.gform_wrapper .gform_heading {
    display: none;
}
.gsection_title {
	font-family: Acumin Pro Condensed;
	font-size: 26px;
	font-style: italic;
	font-weight: 700;
	line-height: 26px !important;
	text-transform: uppercase;
	border-top: 1px solid var(--Navy, #152644);
	padding-top: 18px;
}
body .gform-theme--framework .gfield_description:not(.validation_message) {
    color: var(--Navy, #152644) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
	margin-block-start: 30px !important;
}
.gsection_title ~ .gsection_description {
    margin-top: 22px;
}
label.gfield_label.gform-field-label, legend.gfield_label.gform-field-label {
    color: var(--Navy, #152644);
    font-family: Acumin Pro Condensed;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
	margin-bottom: 12px;
}
.gfield--type-time legend.gfield_label.gform-field-label {
    margin-bottom: 18px;
}
.gfield_radio {
    flex-direction: row !important;
    gap: 20px !important;
}
.gfield_radio input[type="radio"], .gfield_checkbox input[type="checkbox"] {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 10px;
    display: none !important;
}
.gfield_radio .gchoice label, .gfield_checkbox .gchoice label {
	font-size: 16px !important;
	line-height: 30px !important;
    position: relative;
    padding-left: 40px !important;
	margin-left: 0;
}
.gfield_radio .gchoice label:after, .gfield_checkbox .gchoice label:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(assets/img/checkbox.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 0;
}
.gfield_radio .gchoice.checked label:after, .gfield_checkbox .gchoice.checked label:after {
    background-image: url(assets/img/checkbox_checked.svg);
}
.gform-theme--framework ::placeholder {
	opacity: 1 !important;
	color: var(--Navy, #152644);
	font-family: Acumin Pro Condensed !important;
	font-size: 20px !important;
    font-style: normal !important;
    font-weight: 700 !important;
	line-height: 100% !important;
}
.gform_wrapper input, .gform_wrapper textarea {
	font-family: Acumin Pro Condensed !important;
	font-size: 20px !important;
    font-style: normal !important;
    font-weight: 700 !important;
	line-height: 100% !important;
	outline: none !important;
    box-shadow: none !important;
}
.gform_wrapper input:not([type="submit"], .gform-datepicker) {
    padding: 13px 0 8px !important;
	width: 100%;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
	border-bottom: 1px solid var(--Navy, #152644) !important;
	border-radius: 0 !important;
}
.gform_wrapper textarea {
	border: 1px solid var(--Navy, #152644) !important;
	border-radius: 0 !important;
}
input.gform-datepicker {
    padding: 17px 36px 12px !important;
    border-radius: 30px !important;
    border: 1px solid var(--Navy, #152644) !important;
    width: 195px !important;
    height: auto !important;
	text-align: center;
}
.gfield--type-select select {
    font-family: Acumin Pro Condensed !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 100% !important;
    text-transform: uppercase !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 17px 0 12px !important;
    border-radius: 30px !important;
    border: 1px solid var(--Navy, #152644) !important;
    width: 195px !important;
    height: auto !important;
    text-align: center !important;
	text-align-last: center !important;
}
.gform_wrapper input[type="submit"] {
    border-radius: 30px !important;
    width: 259px !important;
    padding: 14px 10px 9px !important;
    background: var(--Dark-Green, #2ED391) !important;
    color: var(--Light-Green, #D7F8EE) !important;
    text-align: center !important;
    line-height: 26px !important;
    text-transform: uppercase !important;
	border: 0 !important;
}
body .gform-theme--foundation .gform_footer {
    margin-block-start: 50px;
}
.gform_wrapper input[type="submit"]:hover {
    background: var(--Navy, #152644) !important;
}
/*
.gfield.subsection_title {
    color: var(--Navy, #152644);
    font-family: Acumin Pro Condensed;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--Navy, #152644) !important;
}
*/
.gfield_validation_message {
    color: red !important;
}
.gform_confirmation_message {
    font-size: 24px;
	line-height: 130%;
}
/*.gfield--type-select[data-conditional-logic="visible"] ~ .gfield--type-time[data-conditional-logic="hidden"] {
    display: block !important;
    visibility: hidden;
}
.gfield--type-select[data-conditional-logic="visible"] ~ .gfield--type-time[data-conditional-logic="visible"] {
    visibility: visible;
}*/

.withdrawal_note {
    margin: 11px 0 6px;
}
.withdrawal_note a {
	color: var(--Dark-Green, #2ED391);
	text-decoration-line: underline;
}
.withdrawal_note ._banner {
	padding: 20px 26px 19px 22px;
	border-radius: 20px;
	background: var(--Light-Green, #D7F8EE);
}
.withdrawal_note .banner_title {
	font-family: Acumin Pro Condensed;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 22px;
	text-transform: uppercase;
}
.withdrawal_note ._note p + p {
    margin-top: 8px;
}
.withdrawal_note ._text_content ol, .withdrawal_note ._text_content ul {
    margin: 7px 0;
}
.withdrawal_note ._note {
	margin-top: 25px;
}

@media (max-width: 640px) {
	.gfield--type-select select {
		width: 246px !important;
		font-size: 16px !important;
    	line-height: 19px !important;
	}
}

@media (max-width: 370px) {
	body .gform-theme--foundation .gform_fields {
		grid-template-columns: 1fr;
	}
	body .gform-theme--framework .gfield--type-choice .gfield_radio {
		flex-wrap: wrap;
	}
}
@media (max-width: 768px) {
    
	.page-template-template-withdrawal-form .page_title {
		margin-bottom: 40px;
	}
	.gsection_title {
		font-size: 20px;
		line-height: 20px !important;
	}
	body .gform-theme--framework .gfield_description {
		font-size: 12px;
		line-height: 18px;
	}
	label.gfield_label.gform-field-label, legend.gfield_label.gform-field-label {
		font-size: 16px;
		line-height: 20px;
	}
	.gform_wrapper input, .gform_wrapper textarea, .gform_wrapper input::placeholder, .gform_wrapper textarea::placeholder {
		font-size: 16px !important;
		line-height: 16px !important; 
	}
	input.gform-datepicker {
		width: 246px !important;
	}
	body .gform-theme--framework .gfield_description:not(.validation_message) {
    	font-size: 12px;
		line-height: 18px;
		margin-block-start: 20px !important;
	}
    .gform_confirmation_message {
    	font-size: 20px;
	}
	fieldset#field_1_48 .gfield_label {
		max-width: 280px;
	}
	body .gform-theme--foundation .gform_footer {
		margin-block-start: 40px;
	}
	.gform_wrapper input[type="submit"] {
		width: 100% !important;
		font-size: 20px !important;
		line-height: 26px !important;
	}
	
	.withdrawal_note ._banner {
		padding: 20px;
		border-radius: 10px;
	}
	.withdrawal_note .banner_title {
		font-size: 16px;
		line-height: 16px;
	}
	.withdrawal_note ._note {
		margin-top: 35px;
	}
}

/* Events */
.event_card {
	display: flex;
    flex-direction: column;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
}
.event_card ._image {
    position: relative;
    overflow: hidden;
    height: 0;
    line-height: 0;
    padding-top: calc(100% / 1.51);
}
.event_card ._content {
	flex: 1;
	background: #FFF;
	padding: 40px 35px 38px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.event_card ._content_top {
	flex: 2;
}
.event_card .btn_block {
	flex: 0 0 auto;
	margin-top: 22px;
}
.event_card ._title {
	font-family: Acumin Pro Condensed;
	font-size: 26px;
	font-style: italic;
	font-weight: 700;
	line-height: 110%;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.event_card ._text_content p:not(:last-of-type) {
    margin-bottom: 8px;
}


.events {
	padding: 185px 0 100px;
	background: var(--Navy, #152644);
}
.events .page_title {
	max-width: 760px;
	color: var(--Light-Green, #D7F8EE);
	margin-bottom: 75px;
}
.events ._grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

@media (max-width: 1100px) {
	
	.event_card ._content {
    	padding: 27px 27px 32px 27px;
	}
	
	.events ._grid {
		gap: 20px;
	}
}

@media (max-width: 900px) {
	
	.events ._grid {
    	grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.events {
		padding: 117px 0 40px;
	}
}

@media (max-width: 550px) {
	
	.event_card ._title {
		font-size: 20px;
	}
	
	.events .page_title {
    	margin-bottom: 50px;
	}
	.events ._grid {
    	display: block;
	}
	.events ._grid .event_card + .event_card {
		margin-top: 20px;
	}
}

.events_slider {
	position: relative;
	padding: 80px 0;
	background: repeating-linear-gradient( to right, #D7F8EE 0px, #D7F8EE 64px, #fff 65px, #fff 66px );
}
.events_slider__inner {
	display: flex;
	padding-left: 60px;
}
.events_slider ._left {
	width: 24.5%;
	padding-right: 60px;
}
.events_slider ._right {
	width: 75.5%;
}
.events_slider ._head {
	max-width: 259px;
    height: 100%;
}
.events_slider .title_main {
    margin-bottom: 23px;
}
.events_slider ._head .btn_block {
    margin-top: 30px;
}
.events_slider ._slider {
	overflow: hidden;
}
.events_slider .swiper-slide {
	max-width: 355px;
	margin-right: 20px;
}
.events_slider .event_card ._content {
    padding: 34px 30px 32px;
}


@media (min-width: 1440px) {
	.events_slider__inner {
		padding-left: calc(60px + (1340 - 60) * ((100vw - 1440px) / (4000 - 1440)));
	}
}

@media (max-width: 1200px) {
    
    .events_slider ._left {
    	width: 35%;
	}
	.events_slider ._right {
		width: 65%;
	}
}
@media (max-width: 1100px) {
    .events_slider__inner {
		padding-left: 20px;
	}
	.events_slider ._left {
    	padding-right: 20px;
	}
	.events_slider .title_main {
		font-size: 60px;
		line-height: 60px;
		word-break: break-word;
	}
}

@media (max-width: 768px) {

    .events_slider__inner {
    	display: block;
	}
	.events_slider ._left {
    	width: 100%;
		padding-right: 0;
	}
	.events_slider ._right {
		width: 100%;
	}
	.events_slider ._head {
    	max-width: 345px;
		padding-right: 20px;
		margin-bottom: 40px;
	}
	.events_slider .title_main {
		font-size: 45px;
		line-height: 45px;
		margin-bottom: 30px;
	}
}

@media (max-width: 600px) {
	
	.events_slider {
		padding: 40px 0 80px;
	}
	.events_slider ._head {
		margin-bottom: 34px;
	}
	.events_slider .title_main {
		font-size: 35px;
		line-height: 35px;
		margin-bottom: 20px;
	}
	.events_slider ._head .btn_block {
		margin-top: 22px;
	}
	.events_slider .swiper-slide {
		max-width: 246px;
	}
	.events_slider .event_card ._content {
		padding: 20px;
		padding-bottom: 22px;
	}
}

@media (max-width: 400px) {
	
	.events_slider .title_main {
		max-width: 230px;
	}
}


.team_slider {
	padding: 80px 0;
	position: relative;
}
.team_slider__inner {
	display: flex;
	padding-left: 60px;
}
.team_slider ._left {
	width: 33.769%;
	padding-right: 60px;
}
.team_slider ._right {
	width: 66.231%;
}
.team_slider ._head {
	max-width: 324px;
    height: 100%;
}
.swiper-button {
	bottom: 20px;
	right: 40px;
    margin: 0;
    top: unset;
}
.swiper-button.swiper-button-prev {
    left: auto;
    right: 98px;
    transform: rotate(180deg);
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.team_slider .title_main {
    margin-bottom: 30px;
}
.team_slider ._text p + p {
    margin-top: 12px;
}
.team_slider ._slider {
	overflow: hidden;
	margin-bottom: 40px;
}
.team_slider .swiper-slide {
	max-width: 420px;
	margin-right: 30px;
	border-radius: 20px;
    overflow: hidden;
}
.team_slider .swiper_slide__inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	cursor: pointer;
}
.team_slider ._slider ._image {
    position: relative;
    overflow: hidden;
    height: 0;
    line-height: 0;
    padding-top: calc(100% / 0.72);
	flex: 0 0 auto;
}
.team_slider ._slider ._content {
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
	display: flex;
    align-items: flex-end;
}
.team_slider ._content_inner {
	padding: 25px 35px 19px;
	background: var(--Navy, #152644);
	color: var(--Light-Green, #D7F8EE);
    overflow: auto;
    max-height: 100%;
    transition: all 800ms;
	display: grid;
    grid-template-rows: 1fr auto;
    justify-content: center;
	min-height: var(--teamTitleMinH);
}
.team_slider ._slider ._content_head {
	font-family: Acumin Pro Condensed;
	font-size: 26px;
	font-style: italic;
	font-weight: 700;
	line-height: 26px;
	text-transform: uppercase;
	display: flex;
    align-items: center;
}
.team_slider ._bio_block {
    display: grid;
    grid-template-rows: 0fr;
    transition: all 800ms;
}
.team_slider .swiper_slide__inner.active ._bio_block {
	grid-template-rows: 1fr;
}
.team_slider ._bio {
    overflow: hidden;
}
.team_slider ._bio > div {
    padding: 14px 0 10px;
}
/*.team_slider ._slider .swiper_slide__inner.top_0 ._content {
    top: 0;
}*/

@media (min-width: 1440px) {
	.team_slider__inner {
		padding-left: calc(60px + (1340 - 60) * ((100vw - 1440px) / (4000 - 1440)));
	}
}

@media (max-width: 1200px) {
    
    .team_slider ._left {
    	width: 35%;
	}
	.team_slider ._right {
		width: 65%;
	}
}
@media (max-width: 1100px) {
    .team_slider__inner {
		padding-left: 20px;
	}
	.team_slider .swiper-slide {
		max-width: 320px;
		margin-right: 20px;
	}
}

@media (max-width: 768px) {
	.swiper-button {
		right: 16px;
	}
	.swiper-button.swiper-button-prev {
    	left: auto;
		right: 70px;
	}
	.team_slider .title_main {
		font-size: 45px;
		line-height: 45px;
		margin-bottom: 20px;
	}
}

@media (max-width: 900px) {
    .team_slider__inner {
    	display: block;
	}
	.team_slider ._left {
    	width: 100%;
		padding-right: 0;
	}
	.team_slider ._right {
		width: 100%;
	}
	.team_slider ._head {
    	max-width: none;
		padding-right: 20px;
		margin-bottom: 40px;
	}
}

@media (max-width: 600px) {
    .team_slider {
    	padding: 40px 0;
	}
	.team_slider .title_main {
    	max-width: 260px;
	}
	.team_slider .swiper-slide {
		max-width: 246px;
	}
	.team_slider ._slider ._content_inner {
		padding: 21px 17px 16px 18px;
		font-size: 16px;
		line-height: 20px;
	}
}


.programs {
	padding: 185px 0 5px;
}
.programs .page_title {
	max-width: 1200px;
	margin-bottom: 75px;
}
.programs ._grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.programs ._grid_item {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.programs ._grid_item ._image {
    position: relative;
    overflow: hidden;
    height: 0;
    line-height: 0;
    padding-top: calc(100% / 0.862);
	flex: 0 0 auto;
}
.programs ._grid_item ._content {
	padding: 23px 65px 19px 35px;
	background: var(--Navy, #152644);
	color: var(--Light-Green, #D7F8EE);
	font-family: Acumin Pro Condensed;
	font-size: 26px;
	font-style: italic;
	font-weight: 700;
	line-height: 26px;
	text-transform: uppercase;
	flex:1;
    position: relative;
}
.programs ._grid_item svg {
	position: absolute;
	top: 26px;
	right: 33px;
	width: 20px;
	height: 20px;
	transition: 0.35s ease all;
}
.programs ._grid_item svg path {
    stroke: var(--Light-Green, #D7F8EE);
}
.programs ._grid_item:hover svg {
    transform: rotate(-45deg);
}

@media (max-width: 1100px) {
	
	.programs ._grid {
		gap: 20px;
	}
	.programs ._grid_item ._content {
		padding: 21px 50px 16px 20px;
		font-size: 20px;
    	line-height: 20px;
	}
	.programs ._grid_item svg {
		top: 18px;
		right: 20px;
	}
}

@media (max-width: 900px) {
	
	.programs ._grid {
    	grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.programs {
		padding: 117px 0 0;
	}
}

@media (max-width: 550px) {
	
	.programs .page_title {
    	margin-bottom: 50px;
	}
	.programs ._grid {
    	display: block;
	}
	.programs ._grid_item + ._grid_item {
		margin-top: 20px;
	}
	.programs ._grid_item ._image {
    	padding-top: calc(100% / 1.205);
	}
}

/* Program Single */
.program_single {
	padding-top: 181px;
}
.type_program .program_single {
	background: var(--Navy, #152644);
	color: var(--Light-Green, #D7F8EE);
	padding-bottom: 112px;
}
.program_single__inner {
	display: flex;
	flex-direction: row-reverse;
}
.program_single ._left {
	width: 42.5%;
	padding-right: 40px;
}
.program_single ._right {
	width: 57.5%;
}
.program_single ._image {
    position: relative;
	border-radius: 20px;
    overflow: hidden;
    /*height: 0;
    line-height: 0;
    padding-top: calc(100% / 1.338);*/
	height: 567px;
}
.program_single ._left_inner {
	max-width: 421px;
}
.program_single .page_title {
    margin-bottom: 22px;
}
.program_single ._content {
    margin-bottom: 40px;
}
.program_single .btn {
	width: 100%;
	display: block;
	margin-top: 60px;
}

.type_club .program_single ._left_inner {
	max-width: 440px;
}
.type_club .program_single ._content {
    margin-bottom: 28px;
}
.program_single ._logo_slider {
    overflow: hidden;
}
.program_single ._logo_slider .swiper-wrapper {
	align-items: center;
}
.program_single ._logo_slider .swiper-slide {
	margin-right: 12px;
}

@media (max-width: 1100px) {
	
	.program_single .page_title {
		font-size: 74px;
    	line-height: 74px;
		overflow-wrap: break-word;
	}
}

/*
@media (max-width: 900px) and (min-width: 500px) {
	
	.program_single ._logo_slider .swiper-wrapper {
    	justify-content: center;
	}
}
*/

@media (max-width: 900px) {
    
    .program_single__inner {
		display: block;
	}
	.program_single ._left {
		width: 100%;
		padding-right: 0;
		margin-top: 33px;
	}
	.program_single ._right {
		width: 100%;
	}
	.program_single ._image {
		height: 0;
		line-height: 0;
		padding-top: calc(100% / 1.335);
	}
	.program_single ._left_inner {
		max-width: none !important;
	}
	.program_single .page_title {
		margin-bottom: 18px;
	}
	.program_single ._content {
		margin-bottom: 30px;
	}
	.program_single .btn {
		margin-top: 40px;
	}
}

@media (max-width: 768px) {
	
	.program_single {
		padding-top: 120px;
	}
	.type_program .program_single {
		padding-bottom: 60px;
	}
	.program_single .page_title {
		font-size: 45px;
		line-height: 45px;
	}
	.program_single ._logo_slider {
		margin-left: -20px;
		margin-right: -20px;
	}
}

@media (max-width: 600px) {
	.type_program .program_single {
		padding: 91px 0 40px;
	}
	.type_club .program_single {
		padding: 91px 0 0;
	}
}

@media (max-width: 400px) {
	
	.type_club .program_single .page_title {
    	max-width: 297px;
	}
}


.files {
	padding:80px 0;
	color: var(--Dark-Green, #2ED391);
}
.files ._container {
	max-width: 1220px;
}
.files__inner {
	display: flex;
}
.files ._left {
	width: 30.637%;
	padding-right: 40px;
}
.files ._right {
	width: 69.363%;
}
.files ._text {
	margin-top: 15px;
}
.files ._right_inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}
.files ._item {
	padding: 51px 20px 39px;
	border-radius: 30px;
	border: 1px solid var(--Dark-Green, #2ED391);
	text-align: center;
}
.files ._title {
	font-family: Acumin Pro Condensed;
	font-size: 26px;
	font-style: italic;
	font-weight: 700;
	line-height: 26px;
	text-transform: uppercase;
	max-width: 229px;
    margin: 0 auto;
	margin-bottom: 25px;
}
.files .btn_3 {
	width: 100%;
	max-width: 229px;
}

.files__modal ._img {
	padding-top: 28px;
}
.files__modal ._file_link {
	padding: 28px 0;
}
.files__modal .btn_3 {
	margin: 0 auto;
    display: block;
	max-width: 279px;
}

@media (max-width: 1100px) {
    
    .files__inner {
		display: block;
	}
	.files ._left {
		width: 100%;
		padding-right: 0;
		margin-bottom: 44px;
	}
	.files ._right {
		width: 100%;
	}
}

@media (max-width: 768px) {
	
	.files ._right_inner {
    	gap: 26px;
	}
	.files ._item {
		padding: 34px 20px 33px;
	}
	.files ._title {
    	font-size: 20px;
    	line-height: 20px;
	}
	.files .btn_3 {
		max-width: 279px;
	}
	
	.files__modal ._img {
		padding-top: 40px;
	}
	.files__modal ._file_link {
		padding: 48px 0 28px;
	}
}

@media (max-width: 600px) {
	
	.files {
		padding: 40px 0;
	}
}

@media (max-width: 500px) {
	
	.files ._left {
		margin-bottom: 23px;
	}
	.files .title_main {
		max-width: 275px;
	}
	.files ._text {
		margin-top: 24px;
	}
	.files ._right_inner {
    	display: block;
	}
	.files ._item + ._item {
		margin-top: 20px;
	} 
	.files ._title {
		max-width: 200px;
	}
	
	.files__modal ._modal_content {
    	padding: 16px;
	}
}

.programs_overview {
	padding: 80px 0;
	background: var(--Navy, #152644);
	color: var(--Light-Green, #D7F8EE);
}
.programs_overview__inner {
	display: flex;
}
.programs_overview .tabs_container {
	width: 28.72%;
	padding-right: 40px;
}
.programs_overview ._main {
	width: 71.28%;
}
.programs_overview .tabs_container__inner {
	max-width: 308px;
}
.programs_overview ._title {
	font-family: Acumin Pro Condensed;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.programs_overview .tabs__item {
    padding: 19px 50px 14px 0;
	font-family: Acumin Pro Condensed;
	font-size: 26px;
	font-style: italic;
	font-weight: 700;
	line-height: 26px;
	text-transform: uppercase;
	position: relative;
    border-top: 1px solid;
	border-color: inherit;
    cursor: pointer;
}
.programs_overview .tabs__item:last-of-type {
    border-bottom: 1px solid;
	border-color: inherit;
}
.programs_overview .tabs__item svg {
    position: absolute;
    top: 20px;
    right: 0;
    width: 20px;
	height: 20px;
    transition: 0.3s;
	transform: rotate(-45deg);
}
.programs_overview .tabs__item.active svg {
	transform: none;
}
.programs_overview .tabs__item svg path {
    stroke: currentColor;
}
.programs_overview .tabs_container .btn_2 {
	margin-top: 35px;
}
.programs_overview .program_block {
	display: flex;
	flex-direction: row-reverse;
}
.programs_overview .program_block ._left {
	width: 31.46%;
    padding-right: 36px;
}
.programs_overview .program_block ._right {
	width: 68.54%;
}
.programs_overview ._image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 483px;
}
.programs_overview .title_main {
	margin-bottom: 24px;
}
.programs_overview  .program_block .btn_block {
	margin-top: 33px;
}
.programs_overview .specifics_item + .specifics_item {
    margin-top: 8px;
}
.programs_overview .specifics {
	font-family: Acumin Pro Condensed;
	font-size: 16px;
	font-style: normal;
	line-height: 16px;
	margin-top: 33px;
}
.programs_overview  .specifics span {
	font-weight: 700;
	text-transform: uppercase;
	margin-right: 4px;
}
.programs_overview ._main_btn {
	display: none;
}

@media (max-width: 1300px) {
	
	.programs_overview .tabs_container {
		width: 40%;
	}
	.programs_overview ._main {
		width: 60%;
	}
	.programs_overview .tabs_container__inner {
		max-width: 360px;
	}
	.programs_overview .program_block {
    	display: block;
	}
	.programs_overview .program_block ._left {
		width: 100%;
		padding-right: 0;
	}
	.programs_overview .program_block ._right {
		width: 100%;
		margin-bottom: 43px;
	}
	.programs_overview ._image {
		height: 0;
		line-height: 0;
		padding-top: calc(100% / 1.335);
	}
}

@media (min-width: 767px) {
    
	.programs_overview .accordion_block__header {
		display: none;
	}
    .programs_overview .accordion_block__main {
    	display: block;
	}
	.programs_overview .accordion_block {
		border: 0 !important;
	}
	
	.programs_overview ._main_item {
		display: none;
	}
	.programs_overview ._main_item.active {
		display: block;
	}
}

@media (max-width: 768px) {
	
	.programs_overview__inner {
		display: block;
	}
	.programs_overview ._main {
		width: 100%;
	}
	.programs_overview .tabs_container {
    	display: none;
	}
	.programs_overview .program_block ._right {
		width: 100%;
		margin-bottom: 23px;
	}
	.programs_overview .program_block ._left {
		width: 100%;
	}
	.programs_overview .program_block {
		margin-bottom: 39px;
	}
	.programs_overview .title_main {
		margin-bottom: 14px;
	}
	.programs_overview .specifics {
    	font-size: 14px;
		line-height: 14px;
		margin-top: 20px;
	}
	.programs_overview ._main_btn {
		margin-top: 40px;
		display: block;
	}
}

@media (max-width: 600px) {
	.programs_overview {
		padding: 20px 0 40px;
	}
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 1rem));
    }
}

.scroll {
    animation: scroll 30s linear infinite;
}
.reverse {
    animation-direction: reverse;
}

.marquee_section {
	padding: 58px 0 51px;
	border-color: inherit;	
}
.marquee_section ._slider {
	overflow: hidden;
}
.marquee_section .swiper-wrapper {
	transition-timing-function: linear;
}
.marquee_section .swiper-slide {
    width: auto;
}
/*.marquee_section ._slider ._item {
    display: flex;
    align-items: center;
}*/
.marquee {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
	gap: 16px;
}
.marquee-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 100%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.delimiter {
	margin: 0 17px;	
}

@media (max-width: 768px) {
    
   .marquee_section {
		padding: 40px 0 28px;
	} 
}


/* Footer */
.site_footer {
	padding: 73px 0 48px;
}
.site_footer__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	row-gap: 85px;
}
.footer_logo {
	display: block;
	max-width: 97.503px;
}
.site_footer .work_hours p + p {
    margin-top: 6px;
}
.site_footer .site_by {
	text-align: right;
}
.site_footer .site_by a {
    transition: 0.3s, background-position 0s 0.3s;
	background: linear-gradient(currentColor 0 0) var(--p, 0) 100% /var(--d, 100%) 1px no-repeat;
	padding-bottom: 2px;
}
.site_footer .site_by a:hover {
	--p: 100%;
    --d: 0%;
}
.site_footer .contact_block {
	margin-bottom: 34px;
}
.social {
	display: flex;
}
.social_item {
	width: 30px;
}
.social_item + .social_item {
	margin-left: 13px;
}
.site_footer .social {
	margin-bottom: 30px;
} 
.site_footer .menu_policies {
    display: flex;
}
.site_footer .menu_policies a {
    transition: 0.3s, background-position 0s 0.3s;
	background: linear-gradient(currentColor 0 0) var(--p, 0) 100% /var(--d, 100%) 1px no-repeat;
	padding-bottom: 2px;
}
.site_footer .menu_policies a:hover {
	--p: 100%;
    --d: 0%;
}
.site_footer .menu_policies li + li {
	margin-left: 40px;
}
.site_footer .menu_footer a {
	font-size: 20px;
    line-height: 26px;
}
.site_footer .menu_footer li + li {
	margin-top: 14px;
}
.site_footer .btn_3 {
    width: 100%;
}

@media (max-width: 1200px) {
    
   .site_footer__inner {
    	grid-template-columns: 1fr repeat(3, 1.5fr);
	} 
}

@media (min-width: 901px) {
    
   	.site_footer ._col_work_hours {
		grid-column-start: 2;
		grid-row-start: 1;
	}
	.site_footer ._col_copywrite {
		grid-column-start: 1;
		grid-column-end: 3;
		grid-row-start: 2;
	}
	.site_footer ._col_contact {
		grid-column-start: 4;
		grid-row-start: 1;
	}
	.site_footer ._col_policies {
		grid-column-start: 3;
	}
}

@media (max-width: 900px) {
	
	.site_footer__inner {
		grid-template-columns: 1fr 1fr;
		row-gap: 40px;
	}
	.site_footer ._col_menu_footer {
		grid-column-start: 2;
	}
	.site_footer ._col_work_hours {
		grid-row-start: 1;
		grid-column-start: 2;
	}
	.site_footer ._col_contact {
		grid-row-start: 2;
		grid-column-start: 2;
	}
	.site_footer ._col_copywrite {
    	grid-row-start: 4;
	}
}

@media (max-width: 768px) {
	.site_footer .menu_footer a {
		font-size: 16px;
		line-height: 22px;
	}
}

@media (max-width: 550px) {
	
	.site_footer {
		padding: 40px 0 34px;
	}
	.footer_logo {
		max-width: 80px;
		margin-bottom: 20px;	
	}
	.site_footer {
		font-size: 16px;
		line-height: 22px;
	} 
	.site_footer__inner {
		display: block;
	}
	.site_footer ._col_copywrite {
    	display: none;
	}
	.site_footer .menu_footer a {
		font-size: 20px;
		line-height: 26px;
	}
	.site_footer .menu_policies {
		display: block;
		margin: 40px 0;
	}
	.site_footer .menu_policies li + li {
		margin-left: 0;
		margin-top: 15px;
	}
	.site_footer ._col_work_hours {
		margin-bottom: 41px;
	}
	.site_footer .contact_block {
		margin-bottom: 30px;
	}
	.site_footer .social {
		margin-bottom: 40px;
	}
	.site_footer .site_by {
		text-align: left;
		margin-top: 36px;
	}
}