/* CSS Reset */
*,
*:before,
*:after {
	box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font: inherit;
	font-size: 100%;

	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

input {
	border-radius: 0;

	-webkit-appearance: none;
}

/* End CSS Reset */
.grid-2 {
	display: flex;
	flex-flow: row wrap;
	margin-left: -75px;
	width: calc(100% - -150px);
}

.grid-2 > * {
	margin: 0 75px;
	width: calc(99.99% * 1 / 2 - 150px);
}

.grid-2.grid-tight {
	display: flex;
	flex-flow: row wrap;
	margin-left: -20px;
	width: calc(100% - -40px);
}

.grid-2.grid-tight > * {
	margin: 0 20px;
	width: calc(99.99% * 1 / 2 - 40px);
}

.grid-3 {
	display: flex;
	flex-flow: row wrap;
	margin-left: -50px;
	width: calc(100% - -100px);
}

.grid-3 > * {
	margin: 0 50px;
	width: calc(99.99% * 1 / 3 - 100px);
}

@media screen and (max-width: 1024px) {
	[class^="grid"] .column {
		margin-bottom: 30px;
		width: 100%;
	}
	[class^="grid"] .column:last-of-type {
		margin-bottom: 0;
	}
}

body {
	position: relative;
	overflow-x: hidden;
	width: 100%;
	color: #000;
	font-family: "Muli", Arial, Helvetica, sans-serif;
}

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

p {
	font-size: 1.125rem;
	line-height: 1.4;
}

@media screen and (max-width: 420px) {
	p {
		text-align: center;
		font-size: 1rem;
	}
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
}

.header-subtitle {
	margin-bottom: calc(1.4375rem + 2.25vw);
	font-size: 1.25rem;
}

@media (min-width: 1200px) {
	.header-subtitle {
		margin-bottom: 3.125rem;
	}
}

.header.mobile {
	display: none;
	overflow: hidden;
	width: 100vw;
	height: 100px;
	transition: all 0.5s ease-out;
}

.header.mobile.menu-opened {
	height: 100vh;
}

@media screen and (max-width: 1024px) {
	.header.mobile {
		display: block;
	}
}

.header.desktop {
	display: block;
}

.header.desktop:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	display: block;
	background-color: rgba(255, 255, 255, 0.2);
	content: "";
	backdrop-filter: blur(20px);
	backdrop-filter: saturate(1) blur(15px);
}

@media screen and (max-width: 1024px) {
	.header.desktop {
		display: none;
	}
}

.header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	height: 100px;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	backdrop-filter: saturate(1) blur(15px);
}

.header-logo {
	flex: 0 0 30%;
	margin-top: 7px;
}

.header-logo img {
	max-height: 90px;
}

.header-burger {
	position: relative;
	width: 18px;
	height: 18px;
}

.header-burger:hover {
	cursor: pointer;
}

.header-menu {
	display: flex;
	flex-direction: column;
	padding: 15px;
	height: calc(100vh - 100px);
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: saturate(1) blur(15px);
}

.header-links {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
	padding: 15vh 30px;
}

.header-links a {
	display: block;
	padding: 0.625rem;
	color: inherit;
	text-align: center;
	text-decoration: none;
	font-size: calc(1.3125rem + 0.75vw);
}

@media (min-width: 1200px) {
	.header-links a {
		font-size: 1.875rem;
	}
}

.header-contacts {
	flex-shrink: 0;
	padding: 30px 15px;
	border-top: 1px solid #E6E6E6;
	text-align: center;
}

.header-nav {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 5px 0;
	max-width: 100%;
	width: 1200px;
}

.header-nav a {
	padding: 10px 20px;
	color: inherit;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.25;
	filter: drop-shadow( 1px 2px 2px rgba(17, 57, 61, 0.4));
	color: #fff;
}

.header-nav-middle {
	flex: 0 0 280px;
}

.header-nav-middle img {
	max-width: 225px;
	height: auto;
}

.header-nav-left,
.header-nav-right {
	display: flex;
	align-items: center;
	flex: 1 0 calc((50% - 280px) / 2);
	justify-content: space-around;
}

.burger-bar {
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #FFF;
	transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.burger-bar-top {
	transform: translateY(0) rotate(0);
}

.menu-opened .burger-bar-top {
	transform: translateY(7px) rotate(45deg);
}

.burger-bar-middle {
	visibility: visible;
	opacity: 1;
	transform: translateY(6px) rotate(0);
}

.menu-opened .burger-bar-middle {
	visibility: hidden;
	opacity: 0;
}

.burger-bar-bottom {
	transform: translateY(12px) rotate(0);
}

.menu-opened .burger-bar-bottom {
	transform: translateY(3px) rotate(-45deg);
}

.section-title-container {
	position: relative;
	padding-top: calc(1.75rem + 6vw);
	padding-bottom: 0.625rem;
}

@media (min-width: 1200px) {
	.section-title-container {
		padding-top: 6.25rem;
	}
}

.section-title-container svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(11rem + 3vw);
	transform: translate(-50%, -50%);

	fill: #FFF;
}

@media screen and (max-width: 420px) {
	.section-title-container svg {
		top: 40%;
		width: calc(9rem + 3vw);
	}
}

.section-title-container.grey-palm svg {
	fill: #DFDFDF;
}

.section-title {
	position: relative;
	z-index: 1;
	color: inherit;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	font-weight: 700;
	font-size: calc(1.5rem + 3vw);
}

@media (min-width: 1200px) {
	.section-title {
		font-size: 3.75rem;
	}
}

.section-title span {
	position: relative;
}

.section-title span:after {
	position: absolute;
	top: 50%;
	right: -0.3rem;
	left: -0.3rem;
	z-index: -1;
	height: 25%;
	background-color: #FFC979;
	content: "";
	transform: translateY(-50%);
}

.section-subtitle {
	position: relative;
	z-index: 1;
	margin-top: 1.25rem;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.25rem;
}

@media screen and (max-width: 420px) {
	.section-subtitle {
		margin-top: 0.5rem;
	}
}

.box-title {
	position: relative;
	margin-bottom: calc(1.375rem + 1.5vw);
	padding-left: calc(1.375rem + 1.5vw);
	max-width: 360px;
	text-align: left;
	text-transform: uppercase;
	font-weight: 700;
	font-size: calc(1.40625rem + 1.875vw);
}

@media (min-width: 1200px) {
	.box-title {
		font-size: 2.8125rem;
	}
}

@media (min-width: 1200px) {
	.box-title {
		padding-left: 2.5rem;
	}
}

@media (min-width: 1200px) {
	.box-title {
		margin-bottom: 2.5rem;
	}
}

@media screen and (max-width: 1024px) {
	.box-title {
		max-width: none;
	}
}

@media screen and (max-width: 420px) {
	.box-title {
		padding-left: 0;
		text-align: center;
		line-height: 1.3;
	}
}

.box-title:before {
	position: absolute;
	top: 0.35em;
	left: 0;
	display: block;
	width: 0.3em;
	height: 0.3em;
	background-color: #000;
	content: "";
}

@media screen and (max-width: 420px) {
	.box-title:before {
		display: none;
	}
}

.container {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 100%;
	width: 1720px;
}

.double {
	position: relative;
	display: block;
	overflow-x: hidden;
	background-image: url("/assets/images/summit-2024/beach_middle_section.jpg");
	background-position: center center;
	background-size: cover;
}

.bottom {
	position: relative;
	display: block;
	padding-bottom: 300px;
	background-image: url("/assets/images/summit-2021/img/beach_footer.jpg");
	background-position: center center;
	background-size: cover;
}

@media screen and (max-width: 768px) {
	.bottom {
		padding-bottom: 410px;
	}
}

.contacts {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contacts .contact {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-decoration: none;
}

.contacts .contact-image {
	width: 50px;
	height: 50px;
}

.contacts .contact-image svg {
	fill: #F5A31C;
}

.contacts .contact-text {
	color: #000;
	font-size: 0.875rem;
}

.intro {
	position: relative;
	padding-top: calc(1.96875rem + 8.625vw);
}

.intro .video-overlay {
	background: rgba(25, 91, 96, 0.1);
	z-index: -1;
}

@media (min-width: 1200px) {
	.intro {
		padding-top: 8.4375rem;
	}
}

.intro-background {
	position: absolute;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	transform: rotate(180deg);

	object-fit: cover;
}

.intro-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.intro-logo img {
	margin-bottom: calc(1.5625rem + 3.75vw);
	opacity: 1;
	filter: drop-shadow( 1px 2px 2px rgba(17, 57, 61, 0.5));
	width: 650px;
	margin-top: 30px;
}

@media (min-width: 1200px) {
	.intro-logo img {
		margin-bottom: 30px;
	}
}

.intro-container {
	margin: 0 auto;
	padding: calc(2.25rem + 12vw) 1.25rem;
	max-width: 100%;
	width: 1120px;
}

@media (min-width: 1200px) {
	.intro-container {
		padding: 2.25rem 1.25rem 5.25rem;
	}
}

.intro-content {
	text-align: center;
}

.intro-title {
	margin-bottom: 1.25rem;
	font-weight: 700;
	font-size: calc(1.3625rem + 1.35vw);
}

@media (min-width: 1200px) {
	.intro-title {
		font-size: 2.375rem;
	}
}

.intro-text {
	font-weight: 700;
	line-height: 1.6;
	color: #265b60;
	/* text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4); */
}

@media screen and (max-width: 420px) {
	.intro-text {
		font-weight: 600;
	}
}

.intro-video {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: calc(1.5rem + 3vw) auto 1.25rem auto;
	max-width: 100%;
	text-decoration: none;
}

@media (min-width: 1200px) {
	.intro-video {
		margin: 3.75rem auto 1.25rem auto;
	}
}

.intro-video:hover {
	cursor: pointer;
}

.intro-video-text {
	padding: 0.625rem calc(1.3125rem + 0.75vw);
	background-color: #FFF;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1;
}

@media (min-width: 1200px) {
	.intro-video-text {
		padding: 0.625rem 1.875rem;
	}
}

.intro-video-text:first-child {
	margin-right: -5px;
}

.intro-video-text:last-child {
	margin-left: -5px;
}

@media screen and (max-width: 420px) {
	.intro-video-text {
		padding: 0.625rem;
		font-size: 0.875rem;
	}
}

.intro-video-icon {
	width: 130px;
	height: 130px;
}

@media screen and (max-width: 768px) {
	.intro-video-icon {
		width: 80px;
		height: 80px;
	}
}

.intro-covid {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	max-width: 320px;
	color: #E92232;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.25rem;
}

@media screen and (max-width: 420px) {
	.intro-covid {
		font-size: 0.875rem;
	}
}

.intro-covid-icon {
	margin-right: 10px;
	width: 50px;
	height: 50px;
}

@media screen and (max-width: 420px) {
	.intro-covid-icon {
		width: 30px;
		height: 30px;
	}
}

.about {
	padding-top: calc(1.625rem + 4.5vw);
	padding-bottom: calc(2.625rem + 16.5vw);
}

@media (min-width: 1200px) {
	.about {
		padding-top: 5rem;
	}
}

@media (min-width: 1200px) {
	.about {
		padding-bottom: 15rem;
	}
}

.about .column:nth-child(2) {
	margin-top: 80px;
}

@media screen and (max-width: 1024px) {
	.about .column:nth-child(2) {
		margin-top: 0;
	}
}

.about-image-container {
	position: relative;
	padding-top: calc(1.59375rem + 4.125vw);
	padding-bottom: calc(1.59375rem + 4.125vw);
}

@media (min-width: 1200px) {
	.about-image-container {
		padding-bottom: 4.6875rem;
	}
}

@media (min-width: 1200px) {
	.about-image-container {
		padding-top: 4.6875rem;
	}
}

.about-image {
	position: relative;
	display: block;
	width: 100%;
}

.about-image img {
	position: relative;
	z-index: 1;
	width: 100%;
}

.about-splash {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;

	object-fit: contain;
}

.about-splash.green {
	filter: invert(46%) sepia(77%) saturate(6132%) hue-rotate(154deg) brightness(98%) contrast(99%);
}

.about-splash.orange {
	filter: invert(70%) sepia(12%) saturate(2303%) hue-rotate(351deg) brightness(97%) contrast(86%);
}

.about-splash.pink {
	filter: invert(14%) sepia(84%) saturate(7484%) hue-rotate(326deg) brightness(94%) contrast(105%);
}


@media screen and (max-width: 1024px) {
	.about-splash {
		position: absolute;
		width: 100%;
		height: 110%;

		object-fit: contain;
	}
}

.exclusivity .about-splash {
	left: 5%;
}

@media screen and (max-width: 1024px) {
	.exclusivity .about-splash {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

.friendships .about-splash {
	left: 15%;
}

@media screen and (max-width: 1024px) {
	.friendships .about-splash {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

.roots .about-splash {
	top: 9%;
	right: -21%;
}

@media screen and (max-width: 1024px) {
	.roots .about-splash {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

.redux {
	padding-top: calc(1.625rem + 4.5vw);
	padding-bottom: calc(2.375rem + 13.5vw);
}

@media (min-width: 1200px) {
	.redux {
		padding-top: 5rem;
	}
}

@media (min-width: 1200px) {
	.redux {
		padding-bottom: 12.5rem;
	}
}

.redux p {
	margin-bottom: calc(1.3625rem + 1.35vw);
	font-size: 1.25rem;
}

@media (min-width: 1200px) {
	.redux p {
		margin-bottom: 2.375rem;
	}
}

@media screen and (max-width: 420px) {
	.redux p {
		margin-bottom: 0.75rem;
		font-size: 1rem;
	}
}

.redux p:last-child {
	margin-bottom: 0;
}

.redux .section-title-container {
	margin-bottom: calc(1.90625rem + 7.875vw);
}

@media (min-width: 1200px) {
	.redux .section-title-container {
		margin-bottom: 7.8125rem;
	}
}

@media screen and (max-width: 420px) {
	.redux .section-title-container {
		margin-bottom: 2rem;
	}

	.about .section-title-container {
		margin-top: 2rem;
		margin-bottom: 2.5rem;
	}
}

.teaser {
	padding-top: calc(2.5rem + 15vw);
	padding-bottom: calc(3rem + 21vw);
}

@media (min-width: 1200px) {
	.teaser {
		padding-top: 13.75rem;
	}
}

@media (min-width: 1200px) {
	.teaser {
		padding-bottom: 18.75rem;
	}
}

.teaser-box {
	position: relative;
	z-index: 1;
	display: block;
	text-align: center;
	text-decoration: none;
}

@media screen and (max-width: 1024px) {
	.teaser-box:first-of-type {
		margin-bottom: 80px;
	}
}

.teaser-image {
	position: relative;
	z-index: -1;
	display: block;
	width: 100%;
}

.teaser-image img {
	width: 100%;
}

.teaser-image:after {
	position: absolute;
	right: 30px;
	bottom: -28px;
	left: 30px;
	display: block;
	height: 30px;
	content: "";
}

@media screen and (max-width: 420px) {
	.teaser-image:after {
		right: 15px;
		bottom: -18px;
		left: 15px;
		height: 20px;
	}
}

.left .teaser-image:after {
	background-color: #193f73;
}

.right .teaser-image:after {
	background-color: #F5A31C;
}

.teaser-btn {
	position: absolute;
	right: 20px;
	bottom: -68px;
	left: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: calc(1.35rem + 1.2vw) calc(1.5625rem + 3.75vw);
	outline: none;
	border: none;
	color: #FFF;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 700;
	font-size: calc(1.325rem + 0.9vw);
	font-family: inherit;

	appearance: none;
}

@media (min-width: 1200px) {
	.teaser-btn {
		padding: 2.25rem 4.375rem;
	}
}

@media (min-width: 1200px) {
	.teaser-btn {
		font-size: 2rem;
	}
}

@media screen and (max-width: 1024px) {
	.teaser-btn {
		padding: calc(1.35rem + 1vw) calc(1.5625rem + 1vw);
		font-size: calc(1.325rem + 0.4vw);
	}
}

@media screen and (max-width: 420px) {
	.teaser-btn {
		bottom: -40px;
		padding: 15px 20px;
		font-size: 18px;
	}
}

.teaser-btn:hover {
	cursor: pointer;
}

.teaser-btn:hover img {
	margin-right: -5px;
	margin-left: 15px;
	transition: all 0.3s ease-in-out;
}

.left .teaser-btn {
	background-color: #F5A31C;
}

.right .teaser-btn {
	background-color: #193f73;
}

.teaser-btn img {
	margin-right: 0;
	margin-left: 10px;
	width: 40px;
	transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 420px) {
	.teaser-btn img {
		width: 20px;
	}
}

.teaser-btn:before {
	position: absolute;
	top: -10px;
	right: -10px;
	bottom: 40px;
	left: -10px;
	z-index: -1;
	background-color: #FFF;
	content: "";
}

@media screen and (max-width: 420px) {
	.teaser-btn:before {
		top: -5px;
		right: -5px;
		bottom: 22px;
		left: -5px;
	}
}

.footer {
	position: relative;
	margin-top: -300px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #018886 60%);
}

@media screen and (max-width: 768px) {
	.footer {
		margin-top: -410px;
	}
}

.footer-container {
	margin: 0 auto;
	padding-top: calc(1.59375rem + 4.125vw);
	padding-right: 20px;
	padding-bottom: calc(1.9375rem + 8.25vw);
	padding-left: 20px;
	max-width: 100%;
	width: 680px;
	color: #FFF;
	text-align: center;
}

@media (min-width: 1200px) {
	.footer-container {
		padding-top: 4.6875rem;
	}
}

@media (min-width: 1200px) {
	.footer-container {
		padding-bottom: 8.125rem;
	}
}

.footer-logo {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo img {
	width: 420px;
	height: auto;
	filter: drop-shadow( 1px 2px 2px rgba(17, 57, 61, 0.5));
}

.footer-subtitle {
	margin-top: calc(1.4375rem + 2.25vw);
	margin-bottom: calc(1.5rem + 3vw);
	font-size: 1.25rem;
}

@media (min-width: 1200px) {
	.footer-subtitle {
		margin-top: 3.125rem;
	}
}

@media (min-width: 1200px) {
	.footer-subtitle {
		margin-bottom: 3.75rem;
	}
}

.footer .contact-text {
	color: #FFF;
	font-size: 1.25rem;
}

.footer .contact-image {
	margin-bottom: 10px;
	width: 80px;
	height: auto;
}

@media screen and (max-width: 768px) {
	.footer .contacts {
		flex-direction: column;
	}

	.footer .contact {
		margin-bottom: 30px;
	}
}

.footer .contact-image svg {
	fill: #CFEBE7;
}

.video-modal,
.video-modal-overlay {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.video-modal {
	position: fixed;
	z-index: 20;
	display: flex;
	overflow: hidden;
	align-items: center;
	opacity: 0;
	transition: transform 0s linear 0s;
	transform: translate(500%, 0);

	transform-style: preserve-3d;
}

.video-modal-overlay {
	position: absolute;
	z-index: 0;
	opacity: 0;
	transition: opacity 0.2s ease-out 0.05s;

	backdrop-filter: saturate(1) blur(30px);
}

.video-modal-content {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	z-index: 1;
	overflow-y: visible;
	margin: 0 auto;
	padding-top: calc((100% - 12em) * 0.5625);
	width: calc(100% - 12em);
	height: 0;
	background-color: transparent;
}

@media (min-aspect-ratio: 16/9) {
	.video-modal-content {
		padding-top: 0;
		padding-left: calc((100vh - 10em) * 1.7778);
		width: 0;
		height: calc(100vh - 10em);
	}
}

@media screen and (max-width: 640px) {
	.video-modal-content {
		padding-top: calc((100% - 1em) * 0.5625);
		width: calc(100% - 1em);
	}
}

.video-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	background-color: transparent;
	box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.show-video-modal .video-modal {
	opacity: 1;
	transform: translate(0,0);
}

.show-video-modal .video-modal .video-modal-overlay {
	opacity: 1;
}

.show-video-modal .video-modal-content {
	transform: translate(0,0);
}

.video-modal .close-button {
	position: absolute;
	top: -35px;
	left: 0;
}

.close-button {
	width: 20px;
	height: 20px;
	text-decoration: none;
	cursor: pointer;
}

.close-button:before,
.close-button:after {
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000;
	content: "";
}

.close-button:before {
	transform: translateY(5px) rotate(45deg);
}

.close-button:after {
	transform: translateY(3px) rotate(-45deg);
}

.covid-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.36, 0.66, 0.04, 1);

	backdrop-filter: saturate(1) blur(30px);
}

.covid-modal.show-modal {
	z-index: 3;
	opacity: 1;
}

.animated-from-top {
	transform: translateY(-200%);
}

.covid-modal.show-modal .animated-from-top {
	transform: translateY(0);
}

.covid-modal-content {
	position: relative;
	margin: 5em auto;
	padding: 20px;
	max-width: 40em;
	background-color: #FFF;
	transition: all 0.3s cubic-bezier(0.36, 0.66, 0.04, 1);
}

.covid-modal-inner-content {
	overflow-y: auto;
	max-height: 65vh;
}

.covid-modal .close-button {
	position: absolute;
	top: -35px;
	left: 0;
}

.covid-modal h3 {
	margin-bottom: 0.75rem;
	font-weight: 700;
	font-size: calc(1.3125rem + 0.75vw);
}

@media screen and (max-width: 420px) {
	.covid-modal h3 {
		text-align: center;
	}
}

.covid-modal p {
	margin-bottom: 0.5rem;
}

.testimonials {
	padding-top: calc(1.96875rem + 8.625vw);
	padding-bottom: 300px;
	background-image: url("/assets/images/summit-2024/beach_middle_section.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

@media (min-width: 900px) {
	.testimonials {
		padding-top: 175px;
	}
}

@media (min-width: 1200px) {
	.testimonials {
		padding-top: 275px;
	}
}

@media screen and (max-width: 768px) {
	.testimonials {
		padding-bottom: 410px;
	}
}

.testimonials .section-title-container {
	margin-bottom: 100px;
}

.testimonials .grid-2 {
	margin-bottom: 100px;
}

@media screen and (max-width: 1024px) {
	.testimonials .grid-2 {
		margin-bottom: 0;
	}

	.testimonials .column,
	.testimonials .column:last-of-type {
		margin-bottom: 100px;
	}
}

.testimonial {
	position: relative;
	padding: 180px 50px 80px 50px;
	background-color: #193f73;
	color: #FFF;
	margin-bottom: 100px;
}

.testimonial:after {
	position: absolute;
	right: 20px;
	bottom: -10px;
	left: 20px;
	display: block;
	height: 10px;
	background-color: #F5A31C;
	content: "";
}

.testimonial-name,
.testimonial-function {
	text-align: center;
}

.testimonial-name {
	margin-bottom: 0.25rem;
	font-weight: 700;
	font-size: calc(2.25rem + 0.25vw);
}

.testimonial-function {
	margin-bottom: 1.25rem;
	color: #AAE4EB;
	font-weight: 700;
	font-size: calc(1.25rem + 0.25vw);
}

.testimonial-text {
	font-size: calc(1rem + 0.25vw);
	text-align: center;
}

.testimonial-image {
	position: absolute;
	top: -130px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.testimonials-content {
	margin-top: 200px;
}


.previous-summits-section {
	display: flex;
	width: 97%;
	flex-direction: row;
	max-width: 1600px;
	margin: 0px auto 60px;
	box-sizing: border-box;
	/* box-shadow: 0 4px 15px 0 rgba(0,0,0,0.60);
	border-radius: 8px;
	background: rgba(4,31,22,0.7);
	backdrop-filter: saturate(1) blur(4px); */
}

.previous-summit-date span {
	opacity: .5;
}

.slick-current.previous-summit-date span {
	opacity: 1;
}

.previous-summit-date img {
	max-width: 70%;
	margin: 0 auto;
}

.slick-slide:focus {
	outline: none;
}

.single-summit {
	padding: 0px;
	box-sizing: border-box;
}

.single-summit-intro {
	display: flex;
	align-items: center;
}

.single-summit-logo {
	filter: drop-shadow(0px 3px 1px rgba(39,39,39,.5));
	max-height: 100px;
}

.single-summit-text {
	color: #191919;
}

.slick-prev, .slick-next {
	background: #f6a31f !important;
	width: 70px !important;
	height: 50px !important;
	border-radius: 0px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border: 5px solid #fff;
}

.slick-next {
	right: -40px !important;
}

.slick-prev {
	left: -40px !important;
}

.slick-prev:before {
	font-family: "Font Awesome 5 Free";
	content: "\f053";
	font-size: 24px;
	font-weight: 900;
	padding-right: 3px;
}

.slick-next:before {
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900; 
	content: "\f054";
	font-size: 24px;
	padding-left: 3px;
}

.previous-summit-img {
	padding: 3px;
	background: linear-gradient(25deg, rgb(128, 63, 0) 0%, rgb(205, 175, 146) 33%, rgb(205, 175, 146) 66%, rgb(128, 63, 0) 100%);
}

.summit-0 .previous-summit-img {
	background: linear-gradient(25deg, rgb(128, 63, 0) 0%, rgb(205, 175, 146) 33%, rgb(205, 175, 146) 66%, rgb(128, 63, 0) 100%);
}

.summit-1 .previous-summit-img {
	background: linear-gradient(25deg, rgba(0,192,255,1) 0%, rgba(75,216,165,1) 33%, rgba(0,192,255,1) 66%, rgba(75,216,165,1) 100%);
}

.summit-2 .previous-summit-img {
	background: linear-gradient(25deg, rgba(25,183,238,1) 0%, rgba(36,221,79,1) 33%, rgba(25,183,238,1) 66%, rgba(36,221,79,1) 100%);
}

.summit-3 .previous-summit-img {
	background: linear-gradient(25deg, rgba(228,123,30,1) 0%, rgba(253,177,94,1) 33%, rgba(228,123,30,1) 66%, rgba(253,177,94,1) 100%);
}

.summit-4 .previous-summit-img {
	background: linear-gradient(25deg, rgba(61,195,217,1) 0%, rgba(86,65,110,1) 33%, rgba(61,195,217,1) 66%, rgba(86,65,110,1) 100%);
}

.summit-5 .previous-summit-img {
	background: linear-gradient(25deg, rgba(255,210,248,1) 0%, rgba(231,92,207,1) 33%, rgba(255,210,248,1) 66%, rgba(231,92,207,1) 100%);
}

.summit-6 .previous-summit-img {
	background: linear-gradient(25deg, rgba(255,233,134,1) 0%, rgba(255,72,66,1) 33%, rgba(255,233,134,1) 66%, rgba(255,72,66,1) 100%);
}

.summit-7 .previous-summit-img {
	background: linear-gradient(25deg, rgba(65,195,255,1) 0%, rgba(223,223,223,1) 33%, rgba(65,195,255,1) 66%, rgba(223,223,223,1) 100%);
}

.summit-8 .previous-summit-img {
	background: linear-gradient(25deg, rgba(131,240,124,1) 0%, rgba(0,66,0,1) 33%, rgba(131,240,124,1) 66%, rgba(0,66,0,1) 100%);
}

.summit-9 .previous-summit-img {
	background: linear-gradient(25deg, rgba(254,210,86,1) 0%, rgba(255,242,206,1) 33%, rgba(254,210,86,1) 66%, rgba(255,242,206,1) 100%);
}

.summit-10 .previous-summit-img {
	background: linear-gradient(25deg, rgba(255,210,248,1) 0%, rgba(231,92,207,1) 33%, rgba(255,210,248,1) 66%, rgba(231,92,207,1) 100%);
}

.previous-summits-l-content {
	max-width: 100%;
	box-shadow: unset;
	border-radius: 0;
	background: #71bcb9;
	backdrop-filter: saturate(1) blur(4px);
	text-align: center;
	padding: 0px;
	box-sizing: border-box;
}

.previous-summits-l-content h2 {
	margin: 0px 0 10px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	filter: drop-shadow( 1px 2px 2px rgba(17, 57, 61, 0.5));
}

.previous-summits-main-container {
	
}

.previous-summits-main-container .slider-nav {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	margin: 0 auto;
	background-color: #018886;
	padding: 20px 0px 20px 20px;
}

.previous-summits-main-container .slider-nav.slick-initialized .previous-summit-date {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
}

.previous-summit-date:hover span {
	opacity: 1;
	cursor: pointer;
}

.previous-summits-main-container .slider-nav .previous-summit-date span {
	
}

.previous-summits-main-container #swipe-horizontal-container {
	height: 20px;
	margin: -15px 0 5px;
}

#swipe-horizontal {
	width: 70px;
	perspective: 100px;
	transform-origin: 50% 50%;
}

.hand-x {
	fill: rgba(255, 255, 255, 0.5);
	stroke: rgba(0, 0, 0, 0.2);
	stroke-width: 3px;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform-origin: 50% 50%;
}

.hand-x {
	animation: swipe-x 1.25s ease-in-out backwards;
	animation-iteration-count: infinite;
}

.swipe-gone {
	display: none;
}

@keyframes swipe-x {
	0% {
		transform: translateX(0px);
	}
	25% {
		transform: translateX(50px) rotateZ(10deg);
	}
	50% {
		transform: translateX(0px);
	}
	75% {
		transform: translateX(-50px) rotateZ(-10deg);
	}
}

.previous-summits-main-container .slider-single {
	
}

.previous-summits-main-container .slider-single .single-summit {

}

.previous-summits-main-container .slick-initialized.slider-single .single-summit {
	height: auto;
}

.single-summit .single-summit-intro {
	flex-direction: column;
	text-align: center;
}

.single-summit-intro .single-summit-logo {
	display: none;
}

.single-summit-intro .single-summit-text {
	margin: 20px 0 -10px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	filter: unset;
	width: 100%;
	display: flex;
	padding: 10px 20px;
	background-color: #fff;
	color: #000;
}

.single-summit .single-summit-gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: unset;
	margin-top: 25px;
}

.single-summit-gallery .col-md-3 {
	max-width: 24%;
	height: auto;
	margin: 10px 0;
}

.single-summit-gallery .col-md-3 .previous-summit-img {
	max-width: 95%;
}

@media screen and (max-width: 1275px) {
	.slick-next {
		right: -10px !important;
	}
	
	.slick-prev {
		left: -10px !important;
	}

	.single-about-section h2 {
		font-size: 14px;
		font-weight: 600;
	}
}

@media screen and (max-width: 450px) {
	.single-summit-gallery .col-md-3 {
		max-width: 49%;
	}
}

.about-summit-content {
	max-width: 900px;
	text-align: center;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	padding: 50px;
}

.about-summit-content p {
	margin: 10px 0;
}

.summit-redux-gallery {
	
}

.summit-redux-gallery-row-1 {
	display: flex;
	position: relative;
}

.summit-redux-gallery-row-2 {
	display: flex;
	position: relative;
}

.summit-redux-gallery-row-3 {
	display: flex;
	position: relative;
}

.summit-redux-gallery-image-1 {
	max-width: 535px;
}

.summit-redux-gallery-image-1:after {
	content: '';
	background-color: #f6a31f;
	width: 55%;
	height: 15px;
	position: absolute;
	left: -210px;
	z-index: 1;
	top: -15px;
	right: 0;
	margin: 0 auto;
}

.summit-redux-gallery-image-2 {
	width: 260px;
	position: absolute;
	left: -30px;
	top: 20px;
}

.summit-redux-gallery-image-2:after {
	content: '';
	background-color: #193f73;
	width: 15px;
	height: 90px;
	position: absolute;
	left: -15px;
	z-index: 1;
	top: 55px;
	margin: 0 auto;
}

.summit-redux-gallery-image-2:before {
	content: '';
	background-color: #193f73;
	width: 105px;
	height: 15px;
	position: absolute;
	left: -15px;
	z-index: 1;
	top: 130px;
	margin: 0 auto;
}

.summit-redux-gallery-image-3 {
	width: 380px;
	position: absolute;
	right: 125px;
	top: -90px;
}

.summit-redux-gallery-image-3:after {
	content: '';
	background-color: #0ba8a6;
	width: 15px;
	height: 175px;
	position: absolute;
	right: -15px;
	z-index: 1;
	top: 30px;
	margin: 0 auto;
}

.summit-redux-gallery-image-4 {
	max-width: 350px;
	position: absolute;
	right: 155px;
	top: 170px;
}

.summit-redux-gallery-image-4:after {
	content: '';
	background-color: #c90451;
	width: 150px;
	height: 15px;
	position: absolute;
	right: -15px;
	z-index: 1;
	bottom: -13px;
	margin: 0 auto;
}

.summit-redux-gallery-image-4:before {
	content: '';
	background-color: #c90451;
	width: 15px;
	height: 125px;
	position: absolute;
	right: -15px;
	z-index: 1;
	top: 50px;
	margin: 0 auto;
}

.summit-redux-gallery-view-gallery {
	position: absolute;
	top: 250px;
	font-size: 21px;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
	left: -50px;
}

.summit-redux-gallery-view-gallery:after {
	content: '';
	background-color: #ffc979;
	width: 120px;
	height: 8px;
	position: absolute;
	left: 0px;
	top: 30px;
}

@media screen and (max-width: 1700px) {
	.summit-redux-gallery-image-3 {
		width: 350px;
		position: absolute;
		right: 125px;
		top: -80px;
	}
}

@media screen and (max-width: 1600px) {
	.summit-redux-gallery-image-3 {
		width: 320px;
		right: 100px;
	}

	.summit-redux-gallery-image-3:after {
		height: 125px;
	}
}

@media screen and (max-width: 1515px) {
	.summit-redux-gallery-image-4 {
		right: 85px;
	}
}

@media screen and (max-width: 1500px) {
	.summit-redux-gallery-image-3 {
		width: 290px;
		right: 90px;
	}
}

@media screen and (max-width: 1430px) {
	.summit-redux-gallery-image-3 {
		width: 260px;
		right: 90px;
	}
}

@media screen and (max-width: 1375px) {
	.summit-redux-gallery-image-3 {
		right: 60px;
	}

	.summit-redux-gallery-view-gallery {
		left: -90px;
	}
}

@media screen and (max-width: 1315px) {
	.summit-redux-gallery-image-3 {
		right: 40px;
	}

	.summit-redux-gallery-image-4 {
		right: 25px;
	}

	.summit-redux-gallery-view-gallery {
		left: -100px;
	}
}

@media screen and (max-width: 1265px) {
	.summit-redux-gallery-image-3 {
		right: 15px;
	}
}

@media screen and (max-width: 1200px) {
	.summit-redux-gallery-image-2 {
		left: -50px;
	}

	.summit-redux-gallery-image-3 {
		width: 245px;
	}

	.summit-redux-gallery-image-3:after {
		height: 95px;
	}
}

@media screen and (max-width: 1160px) {
	.summit-redux-gallery-image-4 {
		max-width: 275px;
	}
	
	.summit-redux-gallery-image-4:before {
		height: 95px;
	}
}

@media screen and (max-width: 1145px) {
	.summit-redux-gallery-image-3 {
		width: 235px;
	}
}

@media screen and (max-width: 1115px) {
	.summit-redux-gallery-image-2 {
		left: -70px;
	}

	.summit-redux-gallery-image-3 {
		width: 215px;
	}
}

.summit-redux-gallery-mobile {
	display: none;
}

@media screen and (max-width: 1024px) {
	.summit-redux-gallery-mobile {
		display: block;
	}
	
	.summit-redux-gallery-desktop {
		display: none;
	}

	.summit-redux-gallery-view-gallery {
		position: relative;
		left: unset;
		margin: 0px 0px 20px 50px;
		top: 20px;
	}

	.section-title-container {
		margin-top: 60px;
	}
}

.summit-redux-gallery-image-1-mobile {
	width: 85%;
	display: flex;
	margin: 40px auto 0;
	position: relative;
}

.summit-redux-gallery-image-1-mobile:after {
	content: '';
	background-color: #f6a31f;
	position: absolute;
	width: 75%;
	height: 10px;
	top: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.summit-redux-gallery-image-2-mobile {
	width: 85%;
	display: flex;
	margin: 40px auto 0;
	position: relative;
}

.summit-redux-gallery-image-2-mobile:after {
	content: '';
	background-color: #193f73;
	position: absolute;
	width: 75%;
	height: 10px;
	top: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.summit-redux-gallery-image-3-mobile {
	width: 85%;
	display: flex;
	margin: 40px auto 0;
	position: relative;
}

.summit-redux-gallery-image-3-mobile:after {
	content: '';
	background-color: #0ba8a6;
	position: absolute;
	width: 75%;
	height: 10px;
	top: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.summit-redux-gallery-image-4-mobile {
	width: 85%;
	display: flex;
	margin: 40px auto 0;
	position: relative;
}

.summit-redux-gallery-image-4-mobile:after {
	content: '';
	background-color: #c90451;
	position: absolute;
	width: 75%;
	height: 10px;
	top: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.fancybox-thumbs li[data-index="4"] {
	display: none;
}

.fancybox-slide .summit-redux-gallery-view-gallery {
	display: none !important;
}


/* 2022 bg changes */

/* .double,
.bottom,
.footer {
	background-image: unset;
}

body {
	background-image: url('/assets/images/summit-2022/img/bg-test-2.png');
	background-size: cover;
	background-position: center;
} */

@media screen and (max-width: 767px) {
	.header-menu {
		background-color: rgba(255, 255, 255, 1);
	}
}