html {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	height: 100%;
}

body {
	height: 100%;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	background-color: #fff;
	color: #fff;
	min-width: 320px;
}

@media (max-width: 1750px) {
	body {
		overflow: visible !important;
	}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type='number'] {
	-moz-appearance: textfield;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

ul, ol {
	list-style: none;
	padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
	font: inherit;
}

audio,
canvas,
iframe,
img,
svg,
video,
textarea {
	vertical-align: middle;
}

textarea {
	resize: none;
}

input,
select,
button {
	outline: none;
}

a {
	text-decoration: none;
	-webkit-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

svg {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.content {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

header {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

footer {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

section {
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

/* @media (max-width: 2000px) {
	section {
		min-height: 100vh;
		overflow-y: visible;
	}
} */

.page-wrapper {
	position: relative;
	height: 100%;
	min-height: 100vh;
	padding: 184px 0 100px 0;
}

.section-wrapper {
	position: relative;
	height: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.section-container {
	padding: 60px 0 60px 0;
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

@media (max-width: 1750px) {
	.section-container {
		
		display: block;
	}
}

.section-title {
	font-weight: 800;
	font-size: 36px;
	font-family: "Montserrat", sans-serif;
	line-height: 43px;
}

@media (max-width: 1750px) {
	.pp-scrollable {
		height: auto;
		overflow: visible;
	}
}

@media (max-width: 991px) {
	.section-title {
		font-size: 30px;
		line-height: 38px;
	}
}

.section-title span {
	color: #A8D0FF;
}

.section-title.centered {
	text-align: center;
}

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

.container-lg {
	max-width: 1430px;
	padding: 0 15px;
	width: 100%;
	margin: 0 auto;
}

.container-xl {
	max-width: 1500px;
	padding: 0 15px;
	width: 100%;
	margin: 0 auto;
}

.btn {
	display: inline-block;
	padding: 17px 30px;
	background-color: #fff;
	cursor: pointer;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #192F59;
	text-align: center;
	border: none;
	font-family: "Montserrat", sans-serif;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

@media (max-width: 1500px) {
	.btn {
		font-size: 14px;
	}
}

.btn:hover {
	background-color: #D3E5FB;
}

#pp-nav {
	position: fixed;
	z-index: 100;
	margin-top: -32px;
	top: unset;
	left: 80px;
	right: unset !important;
	bottom: 80px;
	opacity: 3;
}

@media (max-width: 1650px) {
	#pp-nav {
		bottom: 40px;
		left: 20px;
	}
}

#pp-nav li {
	height: auto;
	margin: 0 0 5px 0;
}

#pp-nav span {
	width: 5px;
	height: 5px;
	background-color: #fff;
	border-radius: 50%;
	border: none;
	position: relative;
	display: block;
	-webkit-transition: height .3s linear;
	-o-transition: height .3s linear;
	transition: height .3s linear;
	top: 0;
	left: 0;
}

#pp-nav li .active span {
	height: 40px;
	width: 5px;
	background-color: #fff;
	border-radius: 5px;
	-webkit-transition: height .3s linear;
	-o-transition: height .3s linear;
	transition: height .3s linear;
}

.page-caption {
	position: absolute;
	bottom: 72px;
	left: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	z-index: 2;
}

@media (max-width: 1550px) {
	.page-caption {
		display: none;
	}
}

.page-caption .line {
	height: 1px;
	width: 178px;
	background-color: #9eb6ca;
}

.page-caption span {
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	margin-top: 10px;
}

.footer {
	background-color: rgba(0, 0, 0, 0.5);
	border-top: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(25px);
	backdrop-filter: blur(25px);
	padding: 50px 0;
	background-size: cover;
	background-image: url(../images/common/footer_bg.jpg);
	background-repeat: no-repeat;
}

.footer__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.footer__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.footer__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.footer__logo {
	display: inline-block;
	max-width: 220px;
}

@media (max-width: 991px) {
	.footer__logo {
		margin: 0 0 20px 0;
	}
}

.footer__copy {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: auto 0 0 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (max-width: 991px) {
	.footer__copy {
		margin: 20px 0 0 0;
	}
}

.footer__copy p, .footer__copy a {
	color: #fff;
	font-weight: 300;
	font-size: 16px;
	line-height: 19px;
	font-family: "Roboto", sans-serif;
}

.footer__copy p {
	margin: 0 40px 0 0;
}

@media (max-width: 991px) {
	.footer__copy p {
		width: 50%;
		margin: 0;
	}
}

@media (max-width: 576px) {
	.footer__copy p {
		width: 100%;
		margin: 0 0 20px 0;
	}
}

.footer__copy a:hover {
	text-decoration: underline;
}

.footer__right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 991px) {
	.footer__right {
		margin: 30px 0 0 0;
	}
}

.footer__right h5 {
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	font-weight: "Montserrat", sans-serif;
	color: #fff;
	margin: 0 0 20px 0;
}

@media (max-width: 400px) {
	.footer__right h5 {
		font-size: 14px;
	}
}

.footer__right a {
	color: #fff;
	font-weight: 300;
	font-size: 16px;
	line-height: 19px;
	font-family: "Roboto", sans-serif;
	align-self: flex-start;
}

@media (max-width: 400px) {
	.footer__right a {
		font-size: 14px;
	}
}

.footer__right a:hover {
	text-decoration: underline;
}

.footer__right a + a {
	margin: 10px 0 0 0;
}

.footer__contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0 100px 0 0;
}

@media (max-width: 991px) {
	.footer__contacts {
		width: 50%;
		margin: 0;
	}
}

.footer__support {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media(min-width: 992px) {
	body.compensate-for-scrollbar header {
		width: calc(100% - 17px);
	}
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	padding: 30px 0 0 0;
	-webkit-transition: padding .3s linear, background-color .3s linear;
	-o-transition: padding .3s linear, background-color .3s linear;
	transition: padding .3s linear, background-color .3s linear;
}

@media (max-width: 991px) {
	.header {
		padding: 20px 0 0 0;
	}
}
.header .section-container {
	overflow: visible;
	padding: 0;
}

.header.scroll {
	padding: 15px 0 15px 0;
	background-color: black;
}

.header__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 80px;
	width: 100%;
	margin: 0 auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 1680px) {
	.header__content {
		padding: 0 20px;
	}
}

.header__logo {
	display: block;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 20px 0 0;
	max-width: 150px;
}

@media (max-width: 350px) {
	.header__logo {
		max-width: 120px;
	}
}

.header nav {
	display: block;
	margin: 0 40px 0 auto;
}

@media (max-width: 1500px) {
	.header nav {
		margin: 0 20px 0 auto;
	}
}

@media (max-width: 1200px) {
	.header nav {
		position: absolute;
		display: none;
		z-index: 15;
		right: 0;
		top: 100%;
		margin: 0;
		background: rgba(0, 0, 0, 0.9);
		padding: 20px 40px;
	}
}

@media (max-width: 576px) {
	.header nav {
		width: 100%;
	}
}

@media (max-width: 1400px) {
	.header__btn a {
		padding: 17px 15px;
	}

}
@media (max-width: 1200px) {
	.header__btn {
		margin-left: auto;
	}
}

@media (max-width: 576px) {
	.header__btn {
		display: none;
	}
}

.header__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 1200px) {
	.header__nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0;
	}
}

.header__nav a {
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	display: block;
	position: relative;
}

@media (min-width: 1201px) and (max-width: 1500px) {
	.header__nav a {
		font-size: 14px;
	}
}

@media (max-width: 1200px) {
	.header__nav a {
		font-size: 18px;
		text-align: center;
	}
}

.header__nav a::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	-webkit-transition: width .3s linear;
	-o-transition: width .3s linear;
	transition: width .3s linear;
}

@media (max-width: 1200px) {
	.header__nav a::after {
		bottom: -5px;
	}
}

.header__nav a:hover::after {
	width: 100%;
}

.header__nav a.active::after {
	width: 100%;
}

.header__nav li {
	margin: 0 40px 0 0;
}

@media (min-width: 1201px) and (max-width: 1600px) {
	.header__nav li {
		margin: 0 15px 0 0;
	}
}

@media (max-width: 1200px) {
	.header__nav li {
		margin: 0 0 20px 0;
	}
}

.header__nav li.mob {
	display: none;
}

@media (max-width: 576px) {
	.header__nav li.mob {
		display: block;
	}
}

.header__nav li.mob .btn {
	color: #192F59;
	max-width: 300px;
    margin: 0 auto;
}

.header__nav li.mob .btn::after {
	display: none;
}

.header__nav li:last-child {
	margin: 0;
}

.header__lang {
	position: relative;
	margin: 0 0 0 30px;
}

@media (max-width: 1500px) {
	.header__lang {
		margin: 0 0 0 20px;
	}
}

@media (max-width: 576px) {
	.header__lang {
		margin: 0 0 0 auto;
	}
}

.header__lang .current {
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 15px 30px;
	cursor: pointer;
	position: relative;
	z-index: 3;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.15);
}

.header__lang ul {
	position: absolute;
	list-style: none;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 48px 0 10px 0;
	display: none;
	background: rgba(255, 255, 255, 0.15);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-radius: 27px;
}

.header__lang ul a {
	display: block;
	padding: 10px;
	color: #fff;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

.header__lang ul a:hover {
	color: #A8D0FF;
}

.header .burger-btn {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	cursor: pointer;
	width: 30px;
	height: 20px;
	margin-left: 20px;
}

@media (max-width: 1200px) {
	.header .burger-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.header .burger-btn span {
	display: block;
	background-color: #fff;
	height: 2px;
	width: 100%;
	-webkit-transition: all .1s ease-in;
	-o-transition: all .1s ease-in;
	transition: all .1s ease-in;
}

.header .burger-btn span:nth-child(2) {
	-webkit-transition: opacity .05s ease-in;
	-o-transition: opacity .05s ease-in;
	transition: opacity .05s ease-in;
}

.header .burger-btn.active span:nth-child(1) {
	-webkit-transform: rotate(45deg) translate(5px, 8px);
	-ms-transform: rotate(45deg) translate(5px, 8px);
	transform: rotate(45deg) translate(5px, 8px);
}

.header .burger-btn.active span:nth-child(2) {
	opacity: 0;
}

.header .burger-btn.active span:nth-child(3) {
	-webkit-transform: rotate(-45deg) translate(5px, -8px);
	-ms-transform: rotate(-45deg) translate(5px, -8px);
	transform: rotate(-45deg) translate(5px, -8px);
}

.fancybox-is-open .fancybox-bg {
	opacity: .98;
}

.fancybox-slide--html {
	padding: 0;
}

.fancybox-button {
	width: 70px;
	height: 70px;
}

.fancybox-slide--html .fancybox-close-small {
	padding: 0;
}

.modal-window {
	width: 100%;
	height: 100%;
	-webkit-backdrop-filter: blur(100px);
	backdrop-filter: blur(100px);
	background: rgba(7, 40, 70, 0.3);
	padding: 0;
	display: none;
	background-size: cover;
	background-repeat: no-repeat;
}

.modal-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 100%;
	padding: 80px 0;
}

@media (max-width: 768px) {
	.modal-wrapper {
		padding: 100px 0 80px 0;
	}
}

.modal-inner {
	position: relative;
	z-index: 2;
}

.modal-title-sm {
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	line-height: 29px;
	font-weight: 800;
	color: #fff;
	text-align: left;
}

.modal-title-sm span {
	color: #A8D0FF;
}

.modal-title-md {
	font-family: "Montserrat", sans-serif;
	font-size: 36px;
	line-height: 43px;
	font-weight: 800;
	color: #fff;
	text-align: center;
}

@media (max-width: 768px) {
	.modal-title-md {
		font-size: 28px;
		line-height: 36px;
	}
}

.modal-title-md span {
	color: #A8D0FF;
}

.modal-title-lg {
	font-family: "Montserrat", sans-serif;
	font-size: 64px;
	line-height: 73px;
	font-weight: 800;
	color: #fff;
	text-align: center;
}

@media (max-width: 768px) {
	.modal-title-lg {
		font-size: 40px;
		line-height: 46px;
	}
}

.modal-title-lg span {
	color: #A8D0FF;
}

#send_request {
	background-image: url(../images/common/popup_bg.jpg);
	background-size: cover;
}

@media (max-width: 768px) {
	#send_request .modal-title-lg {
		margin: 0 0 15px 0;
	}
}

#send_request .modal-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#get_office {
	background-image: url(../images/common/popup_bg.jpg);
	background-size: cover;
}

@media (max-width: 1600px) {
	#get_office .modal-wrapper {
		display: block;
	}
}

#get_office .container {
	max-width: 900px;
}

#get_office .form-field {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 100%;
	margin: 0 0 0 auto;
}

@media (max-width: 1200px) {
	#get_office .form-field {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

#get_office .form-field + .form-field {
	margin: 20px 0 0 auto;
}

#get_office .field-caption {
	background: #70828D;
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 17px 30px;
	position: absolute;
	top: 0;
	right: 93%;
	white-space: nowrap;
	z-index: 2;
}

@media (max-width: 1200px) {
	#get_office .field-caption {
		position: static;
	}
}

@media (max-width: 576px) {
	#get_office .field-caption {
		padding: 15px;
	}
}

#get_office .field-caption span {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

@media (max-width: 576px) {
	#get_office .field-caption span {
		font-size: 14px;
	}
}

#get_office .form-fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 0 0 0 160px;
	margin: 100px 0 0 0;
}

@media (max-width: 1200px) {
	#get_office .form-fields {
		margin: 50px 0 0 0;
		padding: 0 0 0 0;
	}
}

#get_office .form-fields .form-submit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 30px 0 0 0;
}

#get_office .form-fields .form-submit .btn {
	-webkit-transform: translateX(-75px);
	-ms-transform: translateX(-75px);
	transform: translateX(-75px);
}

@media (max-width: 1200px) {
	#get_office .form-fields .form-submit .btn {
		-webkit-transform: unset;
		-ms-transform: unset;
		transform: unset;
	}
}

#get_office .form-fields input, #get_office .form-fields .nice-select, #get_office .form-fields textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50px;
	font-family: "Montserrat", sans-serif;
	color: #fff;
}
#get_office .form-fields input::placeholder {
	color: rgba(255,255,255,.5);
}

#get_office .form-fields input:focus, #get_office .form-fields .nice-select:focus, #get_office .form-fields textarea:focus {
	outline: none;
	filter: drop-shadow(0px 0px 4px #eee);
}

#get_office .form-fields input {
	padding: 14px 15px 14px 80px;
}

@media (max-width: 1200px) {
	#get_office .form-fields input {
		padding: 14px 15px 14px 15px;
	}
}

#get_office .form-fields .nice-select {
	height: 54px;
	padding-left: 80px;
	font-family: "Montserrat", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
}

#get_office .select2-selection {
	height: 54px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(199, 235, 255, 0.2);
	padding: 0 25px 0 80px;
	display: flex;
    align-items: center;
	cursor: pointer;
}

#get_office .select2-selection--multiple:before {
    content: "";
    position: absolute;
    right: 25px;
    top: 42%;
    border-top: 5px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
	transition: all .2s linear;
}

#get_office .select2-container--open .select2-selection--multiple:before {
	transform: rotate(180deg);
}

@media (max-width: 1200px) {
	#get_office .select2-selection {
		height: 54px;
		border-radius: 50px;
		background: rgba(255, 255, 255, 0.2);
		border: 1px solid rgba(199, 235, 255, 0.2);
		padding: 0 15px 0 15px;
		display: flex;
		align-items: center;
		cursor: pointer;
	}
	#get_office .select2-selection--multiple:before {
		content: "";
		position: absolute;
		right: 15px;
		top: 42%;
		border-top: 5px solid #fff;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		transition: all .2s linear;
	}
}

#get_office .select2-container--default .select2-results__option--selected {
	color: #A8D0FF;
	background-color: transparent;
}

#get_office .select2-results {
	background-color: #3C4D60;
	border: none;
	padding: 30px 0 30px 0;
    border-radius: 20px;
}

#get_office .select2-dropdown {
	border: none;
	background-color: transparent;
}

#get_office .select2-selection__rendered {
	display: flex;
	max-width: 100%;
}

#get_office .select2-selection__choice {
	margin: 0 15px 0 0;
	background-color: transparent;
	border: none;
}

#get_office .select2-selection__choice__remove {
	background-color: #f1f1f1;
    color: #333;
    outline: 0;
}

#get_office .select2-selection__choice__remove:hover {
	background-color: #A8D0FF;
}

#get_office .select2-container textarea {
	height: 54px;
	background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
	display: none;
}

@media (max-width: 1200px) {
	#get_office .form-fields .nice-select {
		padding-left: 30px;
	}
}

@media (max-width: 576px) {
	#get_office .form-fields .nice-select {
		padding-left: 15px;
	}
}

#get_office .form-fields .nice-select:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #fafafa transparent transparent transparent;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	right: 25px;
}

#get_office .form-fields .nice-select.open:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

#get_office .form-fields .nice-select .list {
	width: 100%;
	background: #5D6A75;
	border: 1px solid rgba(199, 235, 255, 0.2);
	top: 100%;
	padding: 0 0 25px 0;
	margin: 0;
	z-index: 9;
	border-radius: 0 0 30px 30px;
	left: -15px;
}

@media (max-width: 1200px) {
	#get_office .form-fields .nice-select .list {
		left: 0;
		padding: 0;
		top: 0;
		padding-top: 54px;
		border-radius: 27px;
		background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0.25)));
		background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
		background: linear-gradient(0deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
	}
}

@media (max-width: 1200px) {
	#get_office .form-fields .nice-select .option {
		padding-left: 15px;
		background: #70828D;
	}
}

#get_office .form-fields .nice-select .option:hover {
	background-color: #7A91AC;
}

#get_office .form-fields .nice-select .option.selected {
	background-color: rgba(168, 208, 255, 1);
}

#get_office .form-fields textarea {
	min-height: 100px;
	padding: 20px 30px;
	border-radius: 20px;
}

@media (max-width: 1200px) {
	#get_office .form-fields textarea {
		padding: 20px 15px;
	}
}

#get_office .form-fields textarea::-webkit-input-placeholder {
	color: #fff;
}

#get_office .form-fields textarea::-moz-placeholder {
	color: #fff;
}

#get_office .form-fields textarea:-ms-input-placeholder {
	color: #fff;
}

#get_office .form-fields textarea::-ms-input-placeholder {
	color: #fff;
}

#get_office .form-fields textarea::placeholder {
	color: #fff;
}

#release_date, #add_site {
	background-image: url(../images/common/popup_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

#release_date .bg-blend, #add_site .bg-blend {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
	z-index: 1;
	background: rgba(0, 0, 0, 0.26);
	border-left: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

@media (max-width: 991px) {
	#release_date .bg-blend, #add_site .bg-blend {
		display: none;
	}
}

#release_date .modal-inner, #add_site .modal-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991px) {
	#release_date .modal-inner, #add_site .modal-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

#release_date .modal-left, #add_site .modal-left {
	max-width: 505px;
	width: 100%;
	margin: 0 20px 0 0;
}

@media (max-width: 991px) {
	#release_date .modal-left, #add_site .modal-left {
		max-width: 100%;
	}
}

#release_date .modal-left h2, #add_site .modal-left h2 {
	margin: 0 0 40px 0;
}

@media (max-width: 991px) {
	#release_date .modal-left h2, #add_site .modal-left h2 {
		text-align: center;
	}
}

#release_date .modal-left p, #add_site .modal-left p {
	font-size: 18px;
	line-height: 25px;
}

#release_date .modal-left p + p, #add_site .modal-left p + p {
	margin: 25px 0 0 0;
}

#release_date .modal-right, #add_site .modal-right {
	max-width: 505px;
	width: 100%;
}

@media (max-width: 991px) {
	#release_date .modal-right, #add_site .modal-right {
		max-width: 100%;
	}
}

#release_date .form-field, #add_site .form-field {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 100%;
	margin: 0 0 0 auto;
}

@media (max-width: 991px) {
	#release_date .form-field, #add_site .form-field {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

#release_date .form-field + .form-field, #add_site .form-field + .form-field {
	margin: 20px 0 0 auto;
}

#release_date .field-caption, #add_site .field-caption {
	background: #70828D;
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 17px 30px;
	position: absolute;
	width: 180px;
	top: 0;
	left: 0;
	white-space: nowrap;
	z-index: 2;
}

@media (max-width: 991px) {
	#release_date .field-caption, #add_site .field-caption {
		position: static;
	}
}

@media (max-width: 576px) {
	#release_date .field-caption, #add_site .field-caption {
		padding: 15px;
	}
}

#release_date .field-caption span, #add_site .field-caption span {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

@media (max-width: 576px) {
	#release_date .field-caption span, #add_site .field-caption span {
		font-size: 14px;
	}
}

#release_date form, #add_site form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 991px) {
	#release_date form, #add_site form {
		margin: 50px 0 0 0;
		padding: 0 0 0 0;
	}
}

#release_date form .form-submit, #add_site form .form-submit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 30px 0 0 0;
}

#release_date form input, #release_date form .nice-select, #release_date form textarea, #add_site form input, #add_site form .nice-select, #add_site form textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50px;
	font-family: "Montserrat", sans-serif;
	color: #fff;
}

#release_date form input:focus, #release_date form .nice-select:focus, #release_date form textarea:focus, #add_site form input:focus, #add_site form .nice-select:focus, #add_site form textarea:focus {
	outline: none;
}

#release_date form input, #add_site form input {
	padding: 14px 15px 14px 195px;
}

@media (max-width: 991px) {
	#release_date form input, #add_site form input {
		padding: 14px 15px 14px 15px;
	}
}

#release_date form textarea, #add_site form textarea {
	min-height: 100px;
	padding: 20px 30px;
	border-radius: 20px;
}

@media (max-width: 991px) {
	#release_date form textarea, #add_site form textarea {
		padding: 20px 15px;
	}
}

#release_date form textarea::-webkit-input-placeholder, #add_site form textarea::-webkit-input-placeholder {
	color: #fff;
}

#release_date form textarea::-moz-placeholder, #add_site form textarea::-moz-placeholder {
	color: #fff;
}

#release_date form textarea:-ms-input-placeholder, #add_site form textarea:-ms-input-placeholder {
	color: #fff;
}

#release_date form textarea::-ms-input-placeholder, #add_site form textarea::-ms-input-placeholder {
	color: #fff;
}

#release_date form textarea::placeholder, #add_site form textarea::placeholder {
	color: #fff;
}

#privacy_policy {
	background-image: url(../images/common/popup_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

#privacy_policy p {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
}

#privacy_policy p.bold {
	font-weight: 700;
	font-size: 18px;
}

#privacy_policy h2 {
	margin: 0 0 45px 0;
}

@media (max-width: 576px) {
	#privacy_policy h2 {
		font-size: 22px;
		line-height: 24px;
	}
}

#privacy_policy p + p {
	margin: 20px 0 0 0;
}

#solve_problem {
	background-image: url(../images/common/popup_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

#solve_problem .bg-blend {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
	z-index: 1;
	background: rgba(0, 0, 0, 0.26);
	border-left: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

@media (max-width: 991px) {
	#solve_problem .bg-blend {
		display: none;
	}
}

#solve_problem .modal-subtitle {
	text-align: center;
	margin: 20px 0 0 0;
	font-weight: 600;
	font-size: 18px;
	font-family: "Montserrat", sans-serif;
}

#solve_problem .form-submit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 30px 0 0 0;
}

#solve_problem input, #solve_problem .nice-select, #solve_problem textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50px;
	font-family: "Montserrat", sans-serif;
	color: #fff;
}

#solve_problem input:focus, #solve_problem .nice-select:focus, #solve_problem textarea:focus {
	outline: none;
}

#solve_problem input {
	padding: 14px 15px 14px 195px;
}

#solve_problem input:focus {
	filter: drop-shadow(0px 0px 4px #eee);
}
@media (max-width: 991px) {
	#solve_problem input {
		padding: 14px 15px 14px 15px;
	}
}

#solve_problem .modal-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 100px 0 0 0;
}

@media (max-width: 991px) {
	#solve_problem .modal-content {
		margin: 40px 0 0 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

#solve_problem .modal-left, #solve_problem .modal-right {
	max-width: 505px;
	width: 100%;
	margin: 0 20px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

#solve_problem .modal-left form, #solve_problem .modal-right form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}

@media (max-width: 991px) {
	#solve_problem .modal-left, #solve_problem .modal-right {
		max-width: 100%;
	}
}

#solve_problem .modal-left h4, #solve_problem .modal-right h4 {
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	margin: 0 0 30px 0;
}

#solve_problem .modal-left textarea, #solve_problem .modal-right textarea {
	min-height: 120px;
	padding: 20px 30px;
	border-radius: 20px;
}

#solve_problem .modal-left textarea:focus, #solve_problem .modal-right textarea:focus {
	filter: drop-shadow(0px 0px 4px #eee);
}
@media (max-width: 991px) {
	#solve_problem .modal-left textarea, #solve_problem .modal-right textarea {
		padding: 20px 15px;
	}
}

#solve_problem .modal-left textarea::-webkit-input-placeholder, #solve_problem .modal-right textarea::-webkit-input-placeholder {
	color: #fff;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

#solve_problem .modal-left textarea::-moz-placeholder, #solve_problem .modal-right textarea::-moz-placeholder {
	color: #fff;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

#solve_problem .modal-left textarea:-ms-input-placeholder, #solve_problem .modal-right textarea:-ms-input-placeholder {
	color: #fff;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

#solve_problem .modal-left textarea::-ms-input-placeholder, #solve_problem .modal-right textarea::-ms-input-placeholder {
	color: #fff;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

#solve_problem .modal-left textarea::placeholder, #solve_problem .modal-right textarea::placeholder {
	color: #fff;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

#solve_problem .modal-right {
	margin: 0;
}

@media (max-width: 991px) {
	#solve_problem .modal-right {
		margin: 30px 0 0 0;
		padding: 30px 0 0 0;
		border-top: 1px solid rgba(199, 235, 255, 0.2);
	}
}

#solve_problem .modal-right .form-submit {
	margin-top: auto;
}

@media (max-width: 991px) {
	#solve_problem .modal-right .form-submit {
		margin: 30px 0 0 0;
	}
}

#solve_problem .modal-right .form-field {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 0 0 0 auto;
}

@media (max-width: 991px) {
	#solve_problem .modal-right .form-field {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

#solve_problem .modal-right .form-field + .form-field {
	margin: 20px 0 0 auto;
}

#solve_problem .modal-right .field-caption {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 17px 30px;
	position: absolute;
	width: 180px;
	top: 0;
	left: 0;
	white-space: nowrap;
	z-index: 2;
}

@media (max-width: 991px) {
	#solve_problem .modal-right .field-caption {
		position: static;
		border-bottom: none;
		padding: 17px 15px 17px 15px;
	}
}

@media (max-width: 576px) {
	#solve_problem .modal-right .field-caption {
		padding: 15px;
	}
}

#solve_problem .modal-right .field-caption span {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

@media (max-width: 576px) {
	#solve_problem .modal-right .field-caption span {
		font-size: 14px;
	}
}

#solve_problem .form-field {
	position: relative;
}

#solve_problem .form-field .nice-select {
	height: 54px;
	padding: 0 35px 0 15px;
	font-family: "Montserrat", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 175px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

@media (max-width: 991px) {
	#solve_problem .form-field .nice-select {
		position: relative;
		border: none;
	}
}

@media (max-width: 576px) {
	#solve_problem .form-field .nice-select {
		padding: 15px;
	}
}

#solve_problem .form-field .nice-select:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #fafafa transparent transparent transparent;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	right: 25px;
}

#solve_problem .form-field .nice-select.open:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

#solve_problem .form-field .nice-select .list {
	width: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0.25)));
	background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
	border: 1px solid rgba(199, 235, 255, 0.2);
	top: 0;
	padding: 54px 0 15px 0;
	margin: 0;
	z-index: 9;
	border-radius: 27px;
}

@media (max-width: 1200px) {
	#solve_problem .form-field .nice-select .list {
		left: 0;
		padding: 0;
		top: 0;
		padding-top: 54px;
		border-radius: 27px;
		background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0.25)));
		background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
		background: linear-gradient(0deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
	}
}

@media (max-width: 1200px) {
	#solve_problem .form-field .nice-select .option {
		padding-left: 15px;
		background: #70828D;
	}
}

#solve_problem .form-field .nice-select .option:hover {
	background-color: #7A91AC;
}

#solve_problem .form-field .nice-select .option.selected {
	background-color: rgba(168, 208, 255, 1);
}

#solve_problem .form-field + .form-field {
	margin: 20px 0 0 0;
}

#feedback_modal {
	background-image: url(../images/common/popup_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

#feedback_modal .modal-inner {
	max-width: 610px;
	width: 100%;
	margin: 0 auto;
}

#feedback_modal .modal-inner h2 {
	text-align: center;
}

#feedback_modal form {
	margin: 80px 0 0 0;
}

#feedback_modal .form-field + .form-field {
	margin: 20px 0 0 0;
}

#feedback_modal .form-field {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 0 0 0 auto;
}

@media (max-width: 991px) {
	#feedback_modal .form-field {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

#feedback_modal input, #feedback_modal .nice-select, #feedback_modal textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50px;
	font-family: "Montserrat", sans-serif;
	color: #fff;
}

#feedback_modal input:focus, #feedback_modal .nice-select:focus, #feedback_modal textarea:focus {
	outline: none;
}

#feedback_modal .nice-select {
	height: 54px;
	padding: 0 35px 0 15px;
	font-family: "Montserrat", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 175px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

@media (max-width: 991px) {
	#feedback_modal .nice-select {
		position: relative;
		border: none;
	}
}

@media (max-width: 576px) {
	#feedback_modal .nice-select {
		padding: 15px;
	}
}

#feedback_modal .nice-select:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #fafafa transparent transparent transparent;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	right: 25px;
}

#feedback_modal .nice-select.open:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

#feedback_modal .nice-select .list {
	width: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0.25)));
	background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
	border: 1px solid rgba(199, 235, 255, 0.2);
	top: 0;
	padding: 54px 0 15px 0;
	margin: 0;
	z-index: 9;
	border-radius: 27px;
}

@media (max-width: 1200px) {
	#feedback_modal .nice-select .list {
		left: 0;
		padding: 0;
		top: 0;
		padding-top: 54px;
		border-radius: 27px;
		background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0.25)));
		background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
		background: linear-gradient(0deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
	}
}

@media (max-width: 1200px) {
	#feedback_modal .nice-select .option {
		padding-left: 15px;
		background: #70828D;
	}
}

#feedback_modal .nice-select .option:hover {
	background-color: #7A91AC;
}

#feedback_modal .nice-select .option.selected {
	background-color: rgba(168, 208, 255, 1);
}

#feedback_modal input {
	padding: 14px 15px 14px 195px;
}

#feedback_modal input:focus {
	filter: drop-shadow(0px 0px 4px #eee);
}

@media (max-width: 991px) {
	#feedback_modal input {
		padding: 14px 15px 14px 15px;
	}
}

#feedback_modal .field-caption {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 17px 30px;
	position: absolute;
	width: 180px;
	top: 0;
	left: 0;
	white-space: nowrap;
	z-index: 2;
}

@media (max-width: 991px) {
	#feedback_modal .field-caption {
		position: static;
		border-bottom: none;
		padding: 17px 15px 17px 15px;
	}
}

@media (max-width: 576px) {
	#feedback_modal .field-caption {
		padding: 15px;
	}
}

#feedback_modal .field-caption span {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

@media (max-width: 576px) {
	#feedback_modal .field-caption span {
		font-size: 14px;
	}
}

#feedback_modal .form-submit {
	margin: 40px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#send_feedback {
	background-image: url(../images/common/popup_bg.jpg);
	background-size: cover;
}

#send_feedback .modal-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 925px;
	width: 100%;
	margin: 0 auto;
}

@media (max-width: 991px) {
	#send_feedback .modal-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	#send_feedback .modal-inner h2 {
		text-align: center;
		font-size: 42px;
		line-height: 48px;
	}
}

#send_feedback h2 {
	max-width: 580px;
	font-weight: 800;
	font-size: 48px;
	line-height: 58px;
}

#calculate_modal {
	background-image: url(../images/common/popup_bg.jpg);
	background-size: cover;
}

#calculate_modal h2 {
	text-align: center;
}

#calculate_modal .modal-fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 80px 0 50px 0;
}

@media (max-width: 1200px) {
	#calculate_modal .modal-fields {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media (max-width: 576px) {
	#calculate_modal .modal-fields {
		margin: 40px 0 40px 0;
	}
}

#calculate_modal .modal-left {
	max-width: 610px;
	width: 100%;
	margin: 0 20px 0 0;
}

@media (max-width: 1200px) {
	#calculate_modal .modal-left {
		margin: 0 0 25px 0;
	}
}

#calculate_modal .field {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 768px) {
	#calculate_modal .field {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

#calculate_modal .field input {
	width: 100%;
}

#calculate_modal .field + .field {
	margin: 20px 0 0 0;
}

#calculate_modal .field-caption {
	background: #70828D;
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 17px 30px;
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	z-index: 2;
	width: 285px;
}

@media (max-width: 768px) {
	#calculate_modal .field-caption {
		position: static;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		padding: 17px 15px;
	}
}

@media (max-width: 576px) {
	#calculate_modal .field-caption {
		padding: 15px;
		width: 232px;
	}
}

#calculate_modal .field-caption span {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

@media (max-width: 576px) {
	#calculate_modal .field-caption span {
		font-size: 14px;
	}
}

#calculate_modal input, #calculate_modal .nice-select, #calculate_modal textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50px;
	font-family: "Montserrat", sans-serif;
	color: #fff;
}

#calculate_modal input:focus, #calculate_modal .nice-select:focus, #calculate_modal textarea:focus {
	outline: none;
}

#calculate_modal input {
	padding: 14px 15px 14px 320px;
}

@media (max-width: 768px) {
	#calculate_modal input {
		padding: 14px 15px 14px 15px;
	}
}

#calculate_modal .nice-select {
	height: 54px;
	padding-left: 320px;
	font-family: "Montserrat", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 768px) {
	#calculate_modal .nice-select {
		padding-left: 15px;
	}
}

#calculate_modal .nice-select:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #fafafa transparent transparent transparent;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	right: 25px;
}

#calculate_modal .select2-selection {
	height: 54px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(199, 235, 255, 0.2);
	padding: 0 25px 0 310px;
	display: flex;
    align-items: center;
	cursor: pointer;
}

#calculate_modal .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 13px;
    right: 25px;
}

#calculate_modal .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #fff transparent transparent transparent;
	border-width: 5px 5px 0 5px;

}

#calculate_modal .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #fff transparent;
	border-width: 0 5px 5px 5px;

}

#calculate_modal .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #fff;
}

#calculate_modal #calculate_result {
	text-align: center;
}

@media (max-width: 768px) {
	#calculate_modal .select2-selection {
		height: 54px;
		border-radius: 50px;
		background: rgba(255, 255, 255, 0.2);
		border: 1px solid rgba(199, 235, 255, 0.2);
		padding: 0 15px 0 15px;
		display: flex;
		align-items: center;
		cursor: pointer;
	}
	#calculate_modal .select2-selection--multiple:before {
		content: "";
		position: absolute;
		right: 15px;
		top: 42%;
		border-top: 5px solid #fff;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		transition: all .2s linear;
	}
}

#calculate_modal .select2-container--default .select2-results__option--selected {
	color: #A8D0FF;
	background-color: transparent;
}

#calculate_modal .select2-results__option {
	padding: 0 0 0 20px;
}
#calculate_modal .select2-results {
	background: #70828D;
	border: none;
	padding: 20px 0 30px 0;
    border-radius: 20px;
}

#calculate_modal .select2-container--default .select2-results>.select2-results__options {
	background-color: #70828D;

}

#calculate_modal .select2-dropdown {
	border: none;
	background-color: transparent;
}

#calculate_modal .select2-selection__rendered {
	display: flex;
	max-width: 100%;
}

#calculate_modal .select2-selection__choice {
	margin: 0 15px 0 0;
	background-color: transparent;
	border: none;
}

#calculate_modal .select2-selection__choice__remove {
	background-color: #f1f1f1;
    color: #333;
    outline: 0;
}

#calculate_modal .select2-selection__choice__remove:hover {
	background-color: #A8D0FF;
}

#calculate_modal .select2-container textarea {
	height: 54px;
	background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
	display: none;
}

#calculate_modal .nice-select.open:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

#calculate_modal .nice-select .list {
	width: calc(100% - 30px);
	background: #5D6A75;
	border: 1px solid rgba(199, 235, 255, 0.2);
	padding: 0 0 25px 0;
	margin: 0;
	z-index: 9;
	border-radius: 0 0 30px 30px;
	left: 0;
	padding: 0;
	width: 100%;
	top: 0;
	padding-top: 54px;
	border-radius: 27px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0.25)));
	background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
	max-height: 300px;
	overflow: auto;
}

#calculate_modal .nice-select .option {
	padding-left: 15px;
	background: #70828D !important;
}

#calculate_modal .nice-select .option:hover {
	background-color: #7A91AC !important;
}

#calculate_modal .nice-select .option.selected {
	background-color: rgba(168, 208, 255, 1) !important;
}

#calculate_modal .modal-right {
	max-width: 610px;
	width: 100%;
}

#calculate_modal .modal-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#calculate_modal .modal-result {
	margin: 60px auto 0 auto;
	max-width: 400px;
	width: 100%;
}

@media (max-width: 576px) {
	#calculate_modal .modal-result {
		margin: 40px auto 0 auto;
	}
}

#calculate_modal .modal-result h4 {
	text-align: center;
	font-weight: 800;
	font-size: 18px;
	font-family: "Montserrat", sans-serif;
	margin: 0 0 25px 0;
}

#calculate_modal .modal-result input {
	padding: 17px 20px;
}

@-webkit-keyframes morph {
	0% {
		border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	}
	50% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}
	100% {
		border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	}
}

@keyframes morph {
	0% {
		border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	}
	50% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}
	100% {
		border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	}
}

@-webkit-keyframes morph1 {
	0% {
		border-radius: 64% 36% 32% 68% / 49% 78% 22% 51%;
	}
	50% {
		border-radius: 50% 50% 70% 30% / 30% 54% 46% 70%;
	}
	100% {
		border-radius: 64% 36% 32% 68% / 49% 78% 22% 51%;
	}
}

@keyframes morph1 {
	0% {
		border-radius: 64% 36% 32% 68% / 49% 78% 22% 51%;
	}
	50% {
		border-radius: 50% 50% 70% 30% / 30% 54% 46% 70%;
	}
	100% {
		border-radius: 64% 36% 32% 68% / 49% 78% 22% 51%;
	}
}

@-webkit-keyframes morph2 {
	0% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		border-radius: 40% 50% 40% 50% / 40% 30% 50% 50%;
		-webkit-transform: scale(1.08);
		transform: scale(1.08);
	}
	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes morph2 {
	0% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		border-radius: 40% 50% 40% 50% / 40% 30% 50% 50%;
		-webkit-transform: scale(1.08);
		transform: scale(1.08);
	}
	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes morph3 {
	0% {
		border-radius: 11% 89% 6% 94% / 32% 78% 22% 68%;
	}
	50% {
		border-radius: 35% 65% 29% 71% / 31% 70% 30% 69%;
	}
	100% {
		border-radius: 11% 89% 6% 94% / 32% 78% 22% 68%;
	}
}

@keyframes morph3 {
	0% {
		border-radius: 11% 89% 6% 94% / 32% 78% 22% 68%;
	}
	50% {
		border-radius: 35% 65% 29% 71% / 31% 70% 30% 69%;
	}
	100% {
		border-radius: 11% 89% 6% 94% / 32% 78% 22% 68%;
	}
}

@media (max-width: 2000px) and (min-width: 1701px) {
	.intro {
		min-height: 100vh;
	}
}

@media (max-width: 1700px) {
	.intro {

	}
}

.intro__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 0 110px 0;
}

@media (max-width: 991px) {
	.intro__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

@media (max-width: 425px) {
	.intro__content {
		margin: 0 0 70px 0;
	}
}

.intro .section-container {
	padding: 200px 0 125px 0;
}

@media (max-width: 991px) {
	.intro .section-container {
		padding: 150px 0 80px;
	}
}

.intro .section-container {
	z-index: unset;
}

.intro__bgblend {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 44%;
	z-index: 3;
	background: rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}


.intro .robot img{
	width: 100%;
	height: 100%;
}

.intro .robot {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

/* @media (max-width: 1500px) {
	.intro .robot {
		width: 51%;
	}
} */

@media (max-width: 991px) {
	.intro .robot {
		display: none;
	}
}

@media (max-width: 576px) {
	.intro .robot {
		display: none;
	}
}


#particles-js {
	background-color: unset;
	background-image: unset;
	width: 62%;
	margin-left: auto;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
}

@media (max-width: 991px) {
	#particles-js {
		display: none;
	}
}

@media (max-width: 1550px) {
	.intro__bgblend {
		width: 48%;
	}
}

@media (max-width: 1400px) {
	.intro__bgblend {
		width: 50%;
	}
}

@media (max-width: 1200px) {
	.intro__bgblend {
		min-height: 100vh;
	}
}

@media (max-width: 991px) {
	.intro__bgblend {
		width: 100%;
	}
}

.intro__left {
	max-width: 620px;
	width: 100%;
	margin: 0 50px 0 0;
	position: relative;
	z-index: 3;
}

@media (max-width: 991px) {
	.intro__left {
		max-width: 100%;
	}
}

.intro__bottom {
	position: relative;
	margin: 13vh 0 0 0;
	padding: 30px 0 0 0;
	max-width: 315px;
}

@media (max-width: 991px) {
	.intro__bottom {
		margin: 60px 0 0 0;
	}
}

.intro__bottom .line {
	position: absolute;
	top: 0;
	right: 0;
	width: 730px;
	height: 2px;
	background-color: #A5B3C0;
	opacity: .7;
}

.intro__bottom p {
	font-weight: 600;
	font-size: 24px;
	font-family: "Montserrat", sans-serif;
	max-width: 315px;
}

.intro__title {
	font-style: normal;
	font-weight: 800;
	font-size: 72px;
	line-height: 86px;
	font-family: "Montserrat", sans-serif;
	color: #fff;
}

@media (max-width: 1400px) {
	.intro__title {
		font-size: 56px;
		line-height: 62px;
	}
}

@media (max-width: 991px) {
	.intro__title {
		font-size: 44px;
		line-height: 48px;
	}
}

.intro__subtitle {
	font-family: "Montserrat", sans-serif;
	color: #A8D0FF;
	font-weight: 800;
	font-size: 48px;
	line-height: 58px;
}

@media (max-width: 1400px) {
	.intro__subtitle {
		font-size: 40px;
		line-height: 48px;
	}
}

@media (max-width: 991px) {
	.intro__subtitle {
		font-size: 32px;
		line-height: 38px;
		margin: 10px 0 0 0;
	}
}

.intro__subtext {
	margin: 40px 0 0 0;
	font-weight: bold;
	font-size: 24px;
	max-width: 505px;
}

.intro__right {
	max-width: 635px;
	width: 100%;
	position: relative;
	z-index: 3;
}

@media (max-width: 991px) {
	.intro__right {
		max-width: 100%;
	}
}

.intro__down-btn {
	position: absolute;
	bottom: 80px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 3;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background-color: rgba(245, 252, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.15);
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 1400px) {
	.intro__down-btn {
		bottom: 60px;
	}
}

.intro__down-btn svg {
	width: 20px;
	height: 22px;
	fill: transparent;
	stroke: #fff;
	stroke-width: 2px;
}

.intro__video-block {
	position: relative;
}

@media (max-width: 991px) {
	.intro__video-block {
		margin: 100px 0 50px 0;
	}
}

@media (max-width: 390px) {
	.intro__video-block {
		margin: 100px 0 85px 0;
	}
}

.intro__video-block .figure-2 {
	position: absolute;
	top: -50px;
	left: 0;
	width: 500px;
	height: 500px;
	background: rgba(183, 218, 255, 0.5);
	border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	-webkit-animation: morph2 9s ease-in-out infinite;
	animation: morph2 9s ease-in-out infinite;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

@media (max-width: 1400px) {
	.intro__video-block .figure-2 {
		width: 70%;
		height: 70%;
		left: 100px;
	}
}

.intro__video-block .figure-3 {
	position: absolute;
	top: 0px;
	right: 0;
	width: 300px;
	height: 500px;
	background: rgba(183, 218, 255, 0.5);
	border-radius: 64% 36% 32% 68% / 49% 78% 22% 51%;
	-webkit-animation: morph1 8s ease-in-out infinite;
	animation: morph1 8s ease-in-out infinite;
}

@media (max-width: 1400px) {
	.intro__video-block .figure-3 {
		width: 40%;
		height: 65%;
	}
}

.intro__video-block .figure-4 {
	position: absolute;
	top: -53px;
	right: 0;
	width: 90px;
	height: 140px;
	background: rgba(183, 218, 255, 0.3);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	-webkit-animation: morph3 8s ease-in-out infinite;
	animation: morph3 8s ease-in-out infinite;
	z-index: 3;
	-webkit-transform: rotate(-15deg);
	-ms-transform: rotate(-15deg);
	transform: rotate(-15deg);
}

@media (max-width: 576px) {
	.intro__video-block .figure-4 {
		display: none;
	}
}

.intro__video-block .figure-5 {
	position: absolute;
	top: -53px;
	left: -50px;
	width: 400px;
	height: 450px;
	background: rgba(183, 218, 255, 0.6);
	border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	-webkit-animation: morph1 5s ease-in-out infinite;
	animation: morph1 5s ease-in-out infinite;
}

@media (max-width: 1400px) {
	.intro__video-block .figure-5 {
		width: 80%;
		height: calc(100% + 100px);
	}
}

.intro__video:hover .intro__video-btn svg {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}

.intro__video-inner {
	position: relative;
}

.intro__video-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #fff;
}

@media (max-width: 768px) {
	.intro__video-btn {
		width: 75px;
		height: 75px;
	}
}

.intro__video-btn svg {
	fill: #091D66;
	width: 30px;
	height: 30px;
	-webkit-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

@media (max-width: 768px) {
	.intro__video-btn svg {
		width: 25px;
		height: 25px;
	}
}

.intro__video-img {
	border: 15px solid #EAF7FF;
	border-radius: 45px;
	overflow: hidden;
}

.intro__video-img img {
	border-radius: 23px;
	display: block;
	width: 100%;
}

.intro__video-caption {
	position: absolute;
	bottom: -40px;
	left: -55px;
	padding: 45px;
}

@media (max-width: 576px) {
	.intro__video-caption {
		bottom: -80px;
		left: -35px;
		padding: 25px 40px 40px 40px;
	}
}

@media (max-width: 390px) {
	.intro__video-caption {
		bottom: -85px;
	}
}

.intro__video-caption .caption-bg {
	border-radius: 44% 56% 5% 95% / 12% 85% 15% 88%;
	background-color: #fff;
	position: absolute;
	width: 94%;
	-webkit-transform: translate(-41px, -47px) rotate(-189deg);
	-ms-transform: translate(-41px, -47px) rotate(-189deg);
	transform: translate(-41px, -47px) rotate(-189deg);
	height: 100%;
	z-index: 2;
}

@media (max-width: 400px) {
	.intro__video-caption .caption-bg {
		-webkit-transform: translate(-41px, -27px) rotate(-189deg);
		-ms-transform: translate(-41px, -27px) rotate(-189deg);
		transform: translate(-41px, -27px) rotate(-189deg);
		height: 85%;
	}
}

.intro__video-caption .caption-inner {
	position: relative;
	z-index: 3;
}

.intro__video-caption p {
	font-weight: bold;
	font-size: 16px;
	color: #296BB2;
}

.intro__video-caption span {
	display: block;
	padding: 0 0 0 20px;
	color: #192F59;
	font-style: normal;
	font-weight: 800;
	font-size: 28px;
}

.about__bgblend {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 65%;
	z-index: 1;
	background: rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

@media (max-width: 1500px) {
	.about__bgblend {
		width: 80%;
	}
}

@media (max-width: 1200px) {
	.about__bgblend {
		width: 100%;
	}
}

@media (max-width: 1400px) {
	.about .section-container {
		padding: 80px 0;
	}
}

@media (max-width: 991px) {
	.about .section-container {
		padding: 60px 0;
	}
}

.about__content {
	margin: 60px 0 0 0;
	width: 100%;
	max-width: 930px;
}

@media (max-width: 991px) {
	.about__content {
		margin: 40px 0 0 0;
	}
}

.about .section-title {
	padding: 0 0 0 108px;
}

@media (max-width: 991px) {
	.about .section-title {
		padding: 0 0 0 90px;
	}
}

@media (max-width: 576px) {
	.about .section-title {
		padding: 0 0 0 0;
	}
}

.about-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	max-width: 930px;
}

@media (max-width: 576px) {
	.about-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.about-item__number {
	font-weight: 800;
	font-size: 48px;
	font-family: "Montserrat", sans-serif;
	line-height: 48px;
	color: rgba(255, 255, 255, 0.25);
	display: block;
	width: 62px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 50px 0 0;
}

@media (max-width: 991px) {
	.about-item__number {
		margin: 0 30px 0 0;
	}
}

@media (max-width: 576px) {
	.about-item__number {
		margin: 0 0 25px 0;
	}
}

.about-item p {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 25px;
	margin: 0 0 15px 0;
}

.about-item span {
	font-weight: 700;
}

.about-item li {
	position: relative;
	font-size: 18px;
	line-height: 25px;
}

@media (max-width: 576px) {
	.about-item li {
		padding: 0 0 0 15px;
	}
}

.about-item li::before {
	content: "";
	position: absolute;
	left: -14px;
	top: 12px;
	width: 3px;
	height: 3px;
	background-color: #fff;
	border-radius: 50%;
}

@media (max-width: 576px) {
	.about-item li::before {
		left: 0;
	}
}

.about-item + .about-item {
	margin: 25px 0 0 0;
}

@media (max-width: 576px) {
	.about-item + .about-item {
		margin: 35px 0 0 0;
	}
}

/* // */
/* features */
/* // */

@media (max-width: 1750px) {
	.features .section-container {
		padding: 80px 0 80px 0;
	}
}

@media (max-width: 1400px) {
	.features .section-container {
		padding: 80px 0;
	}
}

@media (max-width: 991px) {
	.features .section-container {
		padding: 60px 0;
	}
}

.features-head {
	max-width: 1240px;
	margin: 0 auto 40px;
	display: flex;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(199, 235, 255, 0.2);
}

@media (max-width: 576px) {
	.features-head {
		flex-direction: column;
		background: unset;
		border: unset;
	}
}

.features-head__tab {
	width: 33.333%;
    text-align: center;
    padding: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s linear;
}

@media (max-width: 576px) {
	.features-head__tab {
		width: 100%;
		border: 1px solid rgba(199, 235, 255, 0.2);
		border-radius: 50px;
		margin: 0 0 5px 0;
	}
}

.features-head__tab span{
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	transition: all .3s linear;
}

.features-head__tab:hover span{
	color: #A8D0FF;
}

.features-head__tab.active {
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.15);
}

.features-body {
	padding: 50px 70px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(25px);
}

@media (max-width: 1200px) {
	.features-body {
		padding: 30px 50px;
	}
}

@media (max-width: 1200px) {
	.features-body {
		padding: 30px 15px;
	}
}

.features-item {
	display: flex;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.features-item {
		flex-direction: column;
	}
}

.features-item__left {
	max-width: 505px;
	width: 100%;
	margin: 0 20px 0 0;
	display: flex;
	flex-direction: column;
}

@media (max-width: 991px) {
	.features-item__left {
		order: 2;
		max-width: 100%;
	}

}

.features-item__left h3 {
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 32px;
	line-height: 45px;
	margin: 0 0 20px 0;
}

@media (max-width: 576px) {
	.features-item__left h3 {
		font-size: 26px;
		line-height: 32px;
	}
}

.features-item__left p {
	font-weight: normal;
	font-size: 18px;
	line-height: 25px;
	margin: 0 0 40px 0;
}

.features-item__left .btn {
	align-self: flex-start;
	margin: 0 0 20px 0;
}

.features-item__right {
	max-width: 50%;
	width: 100%;
	margin: 0;
}

@media (max-width: 991px) {
	.features-item__right {
		order: 2;
		margin: 50px auto 0 auto;
		/* max-width: 500px; */
		max-width: 100%;
		width: 100%;
	}

}


.features-item__right img {
	width: 100%;
}

.features-navigation {
	width: 50%;
	margin: 40px 0 0 auto;
	display: flex;
	align-items: center;
}

@media (max-width: 991px) {
	.features-navigation {
		width: 100%;
		margin: 40px 0 0 0;
	}
}

.features-pagination {
	display: flex;
	align-items: center;
	height: 6px;
}

.features-pagination span {
	width: 6px;
	height: 6px;
	background-color: #fff;
	margin: 0 10px 0 0;
	opacity: 1;
	transition: all .3s linear;
}

.features-pagination span:last-child {
	margin: 0;
}

.features-pagination span.swiper-pagination-bullet-active {
	width: 40px;
	height: 5px;
	background-color: #fff;
	border-radius: 5px;
}

.features-arrows {
	display: flex;
	align-items: center;
	margin: 0 0 0 auto;
}

.features-arrow {
	background: rgba(245, 252, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	width: 54px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all .3s linear;
	opacity: 1;
}

@media (max-width: 576px) {
	.features-arrow {
		width: 40px;
		height: 40px;
	}
}

.features-arrow:hover {
	background: rgba(245, 252, 255, 0.15);
}

.features-arrow:first-child {
	margin: 0 20px 0 0;
}

.features-arrow.arrow-next {
	transform: rotate(180deg);
}
.apps-block {
	margin: auto 0 0 0;
	display: flex;
	align-items: center;
}

.apps-block span {
	display: block;
	margin: 0 25px 0 0;
}

.apps-block__apps {
	display: flex;
	align-items: center;
}

.apps-block__apps a {
	display: block;
	margin: 0 15px 0 0;
}

.apps-block__apps a:hover {
	opacity: .6;
}

.apps-block__apps a:last-child {
	margin: 0 0 0 0;
}







/* // */
/* features end */
/* // */
@media (max-width: 1400px) {
	.available .section-container {
		padding: 80px 0;
	}
}

@media (max-width: 991px) {
	.available .section-container {
		padding: 60px 0;
	}
}

.available__bgblend {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 50%;
	z-index: 1;
	background: rgba(255, 255, 255, 0.05);
	border-right: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

@media (max-width: 1200px) {
	.available__bgblend {
		width: 40%;
	}
}

@media (max-width: 991px) {
	.available__bgblend {
		width: 100%;
	}
}

.available__bgblend-right {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
	z-index: 1;
	background: rgba(0, 0, 0, 0.26);
	border-left: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

@media (max-width: 1200px) {
	.available__bgblend-right {
		width: 60%;
	}
}

@media (max-width: 991px) {
	.available__bgblend-right {
		display: none;
	}
}

.available__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 768px) {
	.available__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.available__date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 768px) {
	.available__date {
		margin: 20px 0 0 0;
	}
}

.available__date:hover {
	opacity: .7;
}

.available__date svg {
	width: 18px;
	height: 18px;
	fill: #A8D0FF;
	display: block;
	margin: 0 20px 0 0;
}

.available__date span {
	color: #A8D0FF;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	font-family: "Montserrat", sans-serif;
}

.available__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 120px 0 0 0;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.available__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 80px 0 0 0;
	}
}

.available__content h4 {
	font-weight: bold;
	font-size: 24px;
	line-height: 32px;
	font-family: "Montserrat", sans-serif;
	width: 100%;
	margin: 0 0 30px 0;
}

@media (max-width: 576px) {
	.available__content h4 {
		font-size: 22px;
		line-height: 28px;
	}
}

.available__left {
	width: 230px;
	position: relative;
	padding: 30px 0 0 0;
}

.available__left .line {
	position: absolute;
	top: 0;
	right: 0;
	width: 730px;
	height: 2px;
	background-color: #A5B3C0;
	opacity: .7;
}

.available__left p {
	width: 100%;
	display: block;
	color: #fff;
	margin: 0 0 5px 0;
}

.available__left a:hover {
	color: #A8D0FF;
	text-decoration: underline;
}

.available__right {
	width: 510px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 100px;
	position: relative;
	padding: 30px 0 0 0;
}

@media (max-width: 991px) {
	.available__right {
		margin: 40px 0 0 0;
	}
}

.available__right .line {
	position: absolute;
	top: 0;
	left: 0;
	width: 1030px;
	height: 2px;
	background-color: #A5B3C0;
	opacity: .4;
}

@media (max-width: 991px) {
	.available__right .line {
		right: 200px;
		left: unset;
		opacity: .7;
	}
}

.available__right p {
	width: 50%;
	display: block;
	color: #fff;
	margin: 0 0 5px 0;
}

@media (max-width: 576px) {
	.available__right p {
		width: 100%;
	}
}

.available__right a:hover {
	color: #A8D0FF;
	text-decoration: underline;
}

.available__btn {
	margin: 120px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 991px) {
	.available__btn {
		margin: 60px 0 0 0;
	}
}

.training {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.training .page-wrapper {
	padding: 150px 0 60px 0;
}

.training__subtitle {
	font-size: 18px;
	line-height: 25px;
	margin: 50px 0 0 0;
}

.training__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
	margin: 105px 0 80px 0;
}

@media (max-width: 991px) {
	.training__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 105px 0 110px 0;
	}
}

@media (max-width: 576px) {
	.training__content {
		margin: 105px 0 70px 0;
	}
}

.training__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.training__video-block {
	position: relative;
	max-width: 630px;
}

@media (max-width: 991px) {
	.training__video-block {
		max-width: 100%;
	}
}

.training__video-block .figure-2 {
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 394px;
	background: rgba(183, 218, 255, 0.5);
	border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	-webkit-animation: morph2 5s ease-in-out infinite;
	animation: morph2 5s ease-in-out infinite;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

@media (max-width: 1400px) {
	.training__video-block .figure-2 {
		width: 70%;
		height: 70%;
		left: 100px;
	}
}

.training__video-block .figure-3 {
	position: absolute;
	top: 0px;
	right: 0;
	width: 60%;
	height: 110%;
	background: rgba(183, 218, 255, 0.5);
	border-radius: 64% 36% 32% 68% / 49% 78% 22% 51%;
	-webkit-animation: morph1 8s ease-in-out infinite;
	animation: morph1 8s ease-in-out infinite;
}

.training__video-block .figure-5 {
	position: absolute;
	top: -53px;
	left: -50px;
	width: 65%;
	height: 131%;
	background: rgba(183, 218, 255, 0.6);
	border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	-webkit-animation: morph1 5s ease-in-out infinite;
	animation: morph1 5s ease-in-out infinite;
}

@media (max-width: 576px) {
	.training__video-block .caption-inner span {
		-webkit-transform: translate(-3px, -4px);
		-ms-transform: translate(-3px, -4px);
		transform: translate(-3px, -4px);
	}
}

@media (max-width: 991px) {
	.training__video-block:nth-child(2) {
		margin: 100px 0 0 0;
	}
}

@media (max-width: 576px) {
	.training__video-block:nth-child(2) .caption-inner span {
		-webkit-transform: translate(20px, -4px);
		-ms-transform: translate(20px, -4px);
		transform: translate(20px, -4px);
	}
}

.training__video-block:nth-child(2) .caption-bg {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.training__video-block:nth-child(2) .figure-3 {
	position: absolute;
	top: 0px;
	right: 0;
	width: 70%;
	height: 110%;
	background: rgba(183, 218, 255, 0.5);
	border-radius: 64% 36% 32% 68% / 49% 78% 22% 51%;
	-webkit-animation: morph1 6s ease-in-out infinite;
	animation: morph1 6s ease-in-out infinite;
}

.training__video-block:nth-child(2) .figure-2 {
	position: absolute;
	top: -50px;
	left: 0;
	width: 80%;
	height: 120%;
	background: rgba(183, 218, 255, 0.5);
	border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	-webkit-animation: morph2 6s ease-in-out infinite;
	animation: morph2 6s ease-in-out infinite;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.training__video-block:nth-child(2) .figure-5 {
	position: absolute;
	top: -53px;
	left: 48%;
	width: 50%;
	height: 100%;
	background: rgba(183, 218, 255, 0.6);
	border-radius: 53% 47% 29% 71% / 45% 69% 31% 55%;
	-webkit-animation: morph1 3s ease-in-out infinite;
	animation: morph1 3s ease-in-out infinite;
}

.training__video:hover .training__video-btn svg {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}

.training__video-inner {
	position: relative;
	z-index: 3;
}

.training__video-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #fff;
}

@media (max-width: 768px) {
	.training__video-btn {
		width: 75px;
		height: 75px;
	}
}

@media (max-width: 450px) {
	.training__video-btn {
		width: 65px;
		height: 65px;
	}
}

.training__video-btn svg {
	fill: #091D66;
	width: 30px;
	height: 30px;
	-webkit-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

@media (max-width: 768px) {
	.training__video-btn svg {
		width: 25px;
		height: 25px;
	}
}

.training__video-img {
	border: 15px solid #EAF7FF;
	border-radius: 45px;
	overflow: hidden;
}

.training__video-img img {
	border-radius: 23px;
	display: block;
	width: 100%;
}

.training__video-caption {
	position: absolute;
	top: -41px;
    right: 10px;
	/* -webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%); */
	padding: 30px 45px 45px 45px;
	background-repeat: no-repeat;
	background-size: contain;
	max-height: 110px;
}

@media (max-width: 576px) {
	.training__video-caption {
		max-height: 90px;
		max-width: 210px;
		top: -33px;
	}
}

@media (max-width: 450px) {
	.training__video-caption {
		top: -40px;
    	right: 0;
	}
}

.training__video-caption .caption-bg {
	position: absolute;
	top: 0;
	left: 15px;
	height: 100%;
	width: 100%;
}

.training__video-caption .caption-bg img {
	height: 100%;
}

.training__video-caption .caption-inner {
	position: relative;
	z-index: 3;
}

.training__video-caption span {
	display: block;
	padding: 0 0 0 20px;
	color: #296BB2;
	font-style: normal;
	font-weight: 800;
	font-size: 28px;
}

@media (max-width: 576px) {
	.training__video-caption span {
		padding: 0;
	}
}

.rules {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.rules .page-wrapper {
	padding: 150px 0 60px 0;
}

.rules__content {
	margin: 50px 0 0 0;
}

.rules__content p {
	font-weight: normal;
	font-size: 18px;
	line-height: 25px;
	margin: 0;
}

.rules__content p.bold {
	font-weight: 700;
}

.rules__content p + p {
	margin: 25px 0 0 0;
}

.complaint {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.complaint .bg-blend {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 65%;
	z-index: 1;
	background: rgba(2, 35, 60, 0.2);
	border-right: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

@media (max-width: 1500px) {
	.complaint .bg-blend {
		width: 80%;
	}
}

@media (max-width: 1200px) {
	.complaint .bg-blend {
		width: 90%;
	}
}

@media (max-width: 991px) {
	.complaint .bg-blend {
		display: none;
	}
}

.complaint .page-wrapper {
	padding: 150px 0 60px 0;
	position: relative;
	z-index: 2;
}

.complaint__content {
	margin: 70px 0 0 0;
	max-width: 820px;
}

.complaint__content > h6 {
	font-weight: bold;
	font-size: 18px;
	font-family: "Montserrat", sans-serif;
	margin: 0 0 20px 0;
}

.complaint__content p {
	font-weight: normal;
	font-size: 18px;
	line-height: 25px;
}

.complaint__content p + p {
	margin: 25px 0 0 0;
}

.complaint__content form {
	margin: 60px 0 0 0;
}

.complaint__content form a {
	margin: 0 10px 0 0;
}

@media (max-width: 576px) {
	.complaint__content form a {
		margin: 0 0 15px 0;
	}
}

.complaint__content form button {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.complaint__content form button:hover {
	background: rgba(255, 255, 255, 0.45);
}

.complaint__content textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 20px;
	font-family: "Montserrat", sans-serif;
	color: #fff;
	min-height: 120px;
	margin: 0 0 20px 0;
	padding: 20px 30px;
}

.complaint__content textarea:focus {
	outline: none;
	filter: drop-shadow(0px 0px 4px #eee);
}

.complaint__content textarea::-webkit-input-placeholder {
	color: #fff;
}

.complaint__content textarea::-moz-placeholder {
	color: #fff;
}

.complaint__content textarea:-ms-input-placeholder {
	color: #fff;
}

.complaint__content textarea::-ms-input-placeholder {
	color: #fff;
}

.complaint__content textarea::placeholder {
	color: #fff;
}

.complaint__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.complaint__buttons .disabled {
	pointer-events: none; /* делаем элемент неактивным для взаимодействия */
	cursor: default; /*  курсор в виде стрелки */
}

@media (max-width: 576px) {
	.complaint__buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.owners {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

@media (max-width: 768px) {
	.owners .page-wrapper {
		padding: 140px 0 60px 0;
	}
}

.owners .container {
	max-width: 1340px;
	padding: 0 40px;
	width: 100%;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.owners .container {
		padding: 0 15px;
	}
}

.owners__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 768px) {
	.owners__heading {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.owners__heading p {
	font-size: 18px;
	color: #A8D0FF;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
}

@media (max-width: 768px) {
	.owners__heading p {
		margin: 20px 0 0 0;
	}
}

.owners__content {
	margin: 70px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.owners__content .column {
	max-width: calc(33.3333% - 15px);
	width: 100%;
	margin: 0 20px 0 0;
}

@media (max-width: 991px) {
	.owners__content .column {
		max-width: calc(50% - 25px);
		margin: 0 50px 0 0;
	}
}

@media (max-width: 768px) {
	.owners__content .column {
		max-width: 100%;
		margin: 0 0 50px 0;
	}
}

@media (max-width: 991px) {
	.owners__content .column:nth-child(2) {
		margin: 0;
	}
}

@media (min-width: 992px) {
	.owners__content .column:last-child {
		margin: 0;
	}
}

@media (max-width: 991px) {
	.owners__content .column:last-child {
		margin: 50px 0 0 0;
		max-width: 100%;
	}
}

.owners__text {
	margin: 70px 0 0 0;
}

.owners__text a {
	color: #A8D0FF;
}

@media (max-width: 768px) {
	.owners__text {
		margin: 60px 0 0 0;
	}
}

.owners__text p {
	font-size: 18px;
	line-height: 25px;
	font-weight: normal;
}

.owners__text p + p {
	margin: 25px 0 0 0;
}

.owners-item {
	border: 1px solid rgba(199, 235, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	padding: 15px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

@media (max-width: 768px) {
	.owners-item {
		height: unset !important;
		padding: 30px 15px;
	}
}

.owners-item .number {
	position: absolute;
	display: block;
	color: rgba(255, 255, 255, 0.2);
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 24px;
	line-height: 28px;
}

.owners-item p {
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	line-height: 25px;
}

.owners-item.first {
	height: 215px;
}

.owners-item.first .number {
	top: -34px;
	left: -1px;
	border-left: 1px solid rgba(199, 235, 255, 0.2);
	padding-bottom: 5px;
	padding-left: 5px;
}

.owners-item.second {
	height: 110px;
}

.owners-item.second .number {
	top: -1px;
	left: -37px;
	border-top: 1px solid rgba(199, 235, 255, 0.2);
	padding-top: 5px;
	padding-right: 5px;
}

@media (max-width: 768px) {
	.owners-item.second .number {
		top: -34px;
		left: -1px;
		border-left: 1px solid rgba(199, 235, 255, 0.2);
		padding-bottom: 5px;
		padding-left: 5px;
		padding-right: unset;
		padding-top: unset;
		border-top: none;
	}
}

.owners-item.third {
	height: 215px;
}

.owners-item.third .number {
	top: -34px;
	left: -1px;
	border-left: 1px solid rgba(199, 235, 255, 0.2);
	padding-bottom: 5px;
	padding-left: 5px;
}

@media (max-width: 768px) {
	.owners-item.third .number {
		top: -34px;
		left: -1px;
		border-left: 1px solid rgba(199, 235, 255, 0.2);
		padding-bottom: 5px;
		padding-left: 5px;
	}
}

.owners-item.fourth {
	height: 110px;
}

.owners-item.fourth .number {
	bottom: -34px;
	left: -1px;
	border-left: 1px solid rgba(199, 235, 255, 0.2);
	padding-top: 5px;
	padding-left: 5px;
}

@media (max-width: 768px) {
	.owners-item.fourth .number {
		top: -34px;
		left: -1px;
		border-left: 1px solid rgba(199, 235, 255, 0.2);
		padding-bottom: 5px;
		padding-left: 5px;
		bottom: unset;
		padding-top: unset;
	}
}

.owners-item.fifth {
	height: 110px;
}

.owners-item.fifth .number {
	top: -34px;
	left: -1px;
	border-left: 1px solid rgba(199, 235, 255, 0.2);
	padding-bottom: 5px;
	padding-left: 5px;
}

@media (max-width: 768px) {
	.owners-item.fifth .number {
		top: -34px;
		left: -1px;
		border-left: 1px solid rgba(199, 235, 255, 0.2);
		padding-bottom: 5px;
		padding-left: 5px;
	}
}

.owners-item.sixth {
	height: 85px;
}

.owners-item.sixth .number {
	top: -1px;
	right: -37px;
	border-top: 1px solid rgba(199, 235, 255, 0.2);
	padding-top: 5px;
	padding-left: 5px;
}

@media (max-width: 768px) {
	.owners-item.sixth .number {
		top: -34px;
		left: -1px;
		border-left: 1px solid rgba(199, 235, 255, 0.2);
		padding-bottom: 5px;
		padding-left: 5px;
		border-top: none;
		padding-top: unset;
		right: unset;
	}
}

.owners-item.seventh {
	height: 110px;
}

.owners-item.seventh .number {
	top: -1px;
	right: -37px;
	border-top: 1px solid rgba(199, 235, 255, 0.2);
	padding-top: 5px;
	padding-left: 5px;
}

@media (max-width: 768px) {
	.owners-item.seventh .number {
		top: -34px;
		left: -1px;
		border-left: 1px solid rgba(199, 235, 255, 0.2);
		padding-bottom: 5px;
		padding-left: 5px;
		border-top: none;
		right: unset;
		padding-top: unset;
	}
}

.owners-item + .owners-item {
	margin: 20px 0 0 0;
}

@media (max-width: 991px) {
	.owners-item + .owners-item {
		margin: 50px 0 0 0;
	}
}

.tariffs {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

@media (max-width: 1630px) {
	.tariffs .page-caption {
		display: none;
	}
}

.tariffs .page-wrapper {
	z-index: 2;
	padding: 150px 0 100px 0;
}

@media (max-width: 991px) {
	.tariffs .page-wrapper {
		padding: 150px 0 60px 0;
	}
}

.tariffs .bg-blend {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 100%;
	width: 100%;
	max-width: 1380px;
	z-index: 1;
	background: rgba(0, 43, 73, 0.15);
	border-right: 1px solid rgba(199, 235, 255, 0.2);
	border-left: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.tariffs h1 {
	max-width: 850px;
}

.tariffs__subtitle {
	margin: 10px 0 0 0;
	color: #A8D0FF;
	font-weight: 800;
	font-size: 18px;
	line-height: 22px;
	font-family: "Montserrat", sans-serif;
}

.tariffs__table-title {
	margin: 60px 0 30px 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
}

@media (max-width: 991px) {
	.tariffs__table-title {
		margin: 40px 0 30px 0;
	}
}

.tariffs table {
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border-spacing: 0px;
	border-collapse: collapse;
}

.tariffs table td {
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 15px 25px;
	font-weight: 500;
	font-size: 18px;
	font-family: "Montserrat", sans-serif;
}

@media (max-width: 768px) {
	.tariffs table td {
		padding: 15px 5px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.tariffs table td {
		padding: 15px 5px;
		font-size: 10px;
	}
}

.tariffs table td:nth-child(n + 2) {
	text-align: center;
}

.tariffs__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 40px 0 0 0;
}

.director {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.director .page-wrapper {
	padding: 140px 0 60px 0;
}

.director__subtitle {
	font-size: 16px;
	line-height: 22px;
	margin: 20px 0 0 0;
}

.director__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 45px 0 0 0;
}

.director-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(199, 235, 255, 0.2);
	-webkit-backdrop-filter: blur(25px);
	backdrop-filter: blur(25px);
	max-width: calc(33.3333% - 14px);
	margin: 0 20px 20px 0;
}

@media (max-width: 991px) {
	.director-item {
		max-width: calc(50% - 10px);
	}
}

@media (max-width: 768px) {
	.director-item {
		max-width: 100%;
		margin: 0 0 20px 0;
	}
}

@media (max-width: 991px) {
	.director-item:nth-child(2n) {
		margin: 0 0 20px 0;
	}
}

.director-item:last-child {
	margin: 0 0 20px 0;
}

.director-item__number {
	font-weight: 800;
	font-size: 16px;
	line-height: 19px;
	color: #A8D0FF;
	font-family: "Montserrat", sans-serif;
}

.director-item__heading {
	font-weight: 800;
	font-size: 24px;
	line-height: 29px;
	font-family: "Montserrat", sans-serif;
}

.director-item__list {
	margin: 15px 0 0 0;
}

.director-item__list li {
	position: relative;
	padding: 0 0 0 15px;
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
}

.director-item__list li::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #fff;
}

.director-item p {
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	margin: 20px 0 0 0;
}

.director-item p span {
	font-weight: 700;
}

.director-item__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 20px 30px;
}

.director-item__bottom {
	margin-top: auto;
	padding: 0 30px 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.director-item__bottom span {
	font-weight: 800;
	font-size: 13px;
	line-height: 16px;
	margin: 0 0 10px 0;
}

.director-item__bottom p {
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	margin: 0;
	padding: 20px 0 20px 30px;
}
.director-item__bottom p span{
	font-weight: 700;
	font-size: 14px;
	line-height: 21px;
}

.director-item__bottom .line {
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.15);
}

.director-item__bottom strong {
	font-weight: 800;
	font-size: 28px;
	line-height: 34px;
	font-family: "Montserrat", sans-serif;
	margin: 10px 0 0 0;
}
