@font-face {
	font-family: "Gotham";
	src: url('../fonts/Gotham-Font/Gotham-Bold.otf') format('truetype'),
		url('../fonts/Gotham-Font/Gotham-Bold.woff') format('woff');
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

@font-face {
	font-family: "Gotham-light";
	src: url('../fonts/Gotham-Font/14008.otf') format('truetype'),
		url('../fonts/Gotham-Font/Gotham-Book.woff') format('woff'),
		url('../fonts/Gotham-Font/Gotham-Book.woff2') format('woff2');
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Gotham-light";
	max-width: 100vw;
	overflow-x: hidden
}

.flex_space {
	max-width: 100vw;
	overflow: hidden;
	position: relative;
}

a {
	cursor: pointer;
}

section.top {
	position: relative;
}

section.top>img {
	width: 100%;
}

.top .text_block {
	position: absolute;
	left: 15vw;
	top: 50%;
	transform: translateY(-50%);
	width: 25%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #fff;
	z-index: 50;
}

.top .text_block p {
	font-size: 2vw;
	line-height: 2.2vw;
}

section.second {
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 15%;
	margin-top: 5vw;
	justify-content: space-between;
}

section.second>img {
	z-index: -1;
	position: absolute;
	width: 50vw;
	right: 0;
	top: -18vw;
}

section.second.reverse {
	flex-direction: row-reverse;
	margin-top: 5vw;
}

section.second .img-reverse {
	right: unset;
	left: 0;
}

section.second .img-cloud-2 {
	width: 60vw;
}

.flex_left {
	width: 40%;
}

section.second-w-30 .flex_left {
	width: 32%;
}

section.second .flex_left>ul {
	margin-bottom: 3vw;
	width: 80%;
}

section.second .flex_left>ul>li {
	font-size: 1.3vw;
	line-height: 1.5vw;
	padding-left: .8vw;
	margin-bottom: .6vw;
	color: #1A1A1A;
}

.bullet {
	margin: 1vw 0;
	align-items: center;
	display: flex;
	justify-content: flex-start;
	width: 100%;
}

.btn {
	border-radius: 3vw;
	font-size: 1.1vw;
	line-height: 1.1vw;
	background: rgb(56, 77, 94);
	text-decoration: none;
	padding: .6vw 1.3vw;
	transition: 300ms;
	transition-property: background;
	font-family: "Gotham";
	border: 2px solid rgb(56, 77, 94);
	position: relative;
	display: inline-block;
	color: #fff;
	z-index: 5;
	overflow: hidden !important;
}

.btn:before {
	content: '';
	position: absolute;
	height: 1vw;
	width: 10vw;
	background: #fff;
	top: -1vw;
	left: -30%;
	animation: linkanimate 3s infinite;
	transform: rotate(-45deg);
}

.btn:hover {
	background: #fff;
	color: rgb(56, 77, 94);
}

.bottom-btn {
	background: #990000;
	border-color: #990000;
}

.bottom-btn:hover {
	color: #990000;
}

@keyframes linkanimate {
	from {
		left: -30%;
	}

	35% {
		left: 100%;
	}

	to {
		left: 100%;
	}
}

.title {
	font-weight: bold;
	font-family: "Gotham";
	font-size: 1.5vw;
	margin-bottom: 2vw;
}

.title a {
	text-decoration: none;
	color: #416776;
	font-size: 140%;
}

.content {
	font-size: 1.25vw;
	margin-bottom: 2vw;
	color: hsl(0, 1%, 41%);
}

.bullet>.img {
	min-width: 3vw;
	margin-right: 2vw;
	display: flex;
	align-items: center;
}

.bullet>.img img {
	height: 2.9vw;
}

.bullet>.p {
	font-size: 1.2vw;
	color: hsl(0, 1%, 41%);
}

.bullets-dashed .bullet .p {
	border-bottom: 2px dashed #4D4D4D;
	padding-bottom: 1vw;
}

.bullets-dashed .bullet:last-child .p {
	border: none;
}

.center-text {
	margin: 0 auto;
	width: 46.8vw;
	margin-top: 8vw;
	font-size: 1.5vw;
	text-align: center;
	line-height: 1.8vw;
	color: hsl(0, 1%, 41%);
}

.center-text a {
	text-decoration: none;
	color: #4D8094;
	font-family: "Gotham";
}

section.section-bottom {
	margin-top: 15vw;
	padding-bottom: 18vw;
}

section.section-bottom>img {
	top: unset;
	bottom: 0;
	width: 57vw;
}

/*  Waves Start Here!  */
.waves_section {
	position: relative;
}

.waves {
	position: absolute;
	width: 100%;
	height: 10vw;
	bottom: 0;
	z-index: 100;
	margin-bottom: -7px;
	/*Fix for safari gap*/
	min-height: 100px;
	max-height: 100px;
}

.parallax>use {
	animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
	animation-delay: -2s;
	animation-duration: 7s;
}

.parallax>use:nth-child(2) {
	animation-delay: -3s;
	animation-duration: 10s;
}

.parallax>use:nth-child(3) {
	animation-delay: -4s;
	animation-duration: 13s;
}

.parallax>use:nth-child(4) {
	animation-delay: -5s;
	animation-duration: 20s;
}

@keyframes move-forever {
	0% {
		transform: translate3d(-90px, 0, 0);
	}

	100% {
		transform: translate3d(85px, 0, 0);
	}
}

.top-mob-img {
	display: none;
}

@media (max-width: 600px) {
	.waves {
		height: 20vw;
		min-height: 40px;
	}
}

/*  Waves End Here!  */



@media(min-width: 600px) {
	.safari h2 {
		margin-block-start: -2.1vw;
	}
}

@media(max-width: 600px) {
	.top-mob-img {
		display: block;
		z-index: -1;
	}

	.top-img {
		display: none;
	}

	.top .text_block>.logo {
		display: none;
	}

	.center-text {
		margin-top: 15vw;
		padding: 0 5vw;
		box-sizing: border-box;
		width: 100%;
		font-size: 4vw;
		line-height: 4.4vw;
	}

	header.masthead.masthead-inline {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
	}

	.top .text_block {
		width: 70vw;
	}

	.top .text_block p {
		font-size: 6vw;
		line-height: 1;
		text-align: center;
		margin-top: 40vw;
		margin-bottom: 15vw;
		font-weight: 700;
	}

	.btn {
		font-size: 5vw;
		margin-bottom: 5vw;
		padding: 4vw 5vw;
		border-radius: 10vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.btn:before {
		height: 3vw;
		width: 30vw;
	}

	section.second,
	section.second.reverse {
		flex-direction: column-reverse;
		margin-top: 8vw;
	}

	.flex_left {
		width: 80vw;
		margin-top: 11vw;
	}

	.title {
		font-size: 5.5vw;
		text-align: center;
	}

	.content {
		font-size: 3.9vw;
		margin-bottom: 4vw;
		text-align: center;
		overflow: hidden;
	}

	.bullet {
		margin: 3vw 0;
	}

	.bullet>.img img {
		height: 9vw;
	}

	.bullet>.img {
		min-width: 12vw;
	}

	.bullet>.p {
		font-size: 3.9vw;
	}

	.animate-img {
		width: 40vw;
	}

	section.second-w-30 .flex_left {
		width: 100%;
	}

	section.section-bottom {
		padding-bottom: 50vw;
	}

	section.second>img,
	section.second .img-cloud-2 {
		width: 90vw;
	}

	section.second .flex_left>ul>li {
		font-size: 3.9vw;
		margin: 1.5vw 0;
		line-height: 1.1;
	}

	section.second .flex_left>ul {
		width: 100%;
		margin-left: -10%;
	}
}


.popup_overflow {
	visibility: hidden;
	opacity: 0;
	display: flex;
	justify-content: center;
	top: 0;
	left: 0;
	align-items: center;
	position: fixed;
	width: 100vw;
	height: 100vh;
	box-sizing: border-box;
}

.popup_overflow>* {
	box-sizing: border-box;
}

.popup_overflow.active {
	opacity: 1;
	transition: 400ms;
	visibility: visible;
	z-index: 1302;
	background: rgba(0, 0, 0, 0.692);
	cursor: pointer;
}

.popup_content {
	transition: 500ms;
	background: #4D8094;
	visibility: hidden;
	opacity: 0;
	padding: 15px 30px;
	cursor: default;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	padding-bottom: 0.3vw;
	border-radius: 4px;
	position: relative;
	min-width: 10vw;
	min-height: 7vh;
}

.popup_overflow.active .popup_content {
	opacity: 1;
	visibility: visible;
}

/* 
.popup_content iframe {
	width: 63.96vw;
	height: 36vw;
	max-width: 80vw;
	max-height: 80vh;
}

@media(min-width:1700px) {
	.popup_content iframe {
		width: 106.76vh;
		height: 60vh;
		max-width: 80vw;
		max-height: 80vh;
	}
} */

.popup_overflow .close {
	cursor: pointer;
	position: absolute;
	top: 3%;
	right: 3%;
}

.popup_overflow .close svg {
	width: 2.4vw;
	height: auto;
}

.popup_overflow .close path {
	fill: #fff;
	transition: 0.4s;
}

.popup_overflow .close:hover path {
	fill: #384D5E;
}

@media(max-width:768px) {
	.popup_content {
		padding: 15px 30px;
		border-radius: 2vw;
		min-width: 34vw;
		min-height: 24vw;
	}

	.popup_overflow .close {
		cursor: pointer;
		position: absolute;
		top: 4%;
		right: 7%;
	}

	.popup_overflow .close svg {
		width: 8vw;
		height: auto;
	}
}