html {
	scroll-behavior: smooth;
}
body.hidden {
    overflow: hidden;
}
.page {
	overflow: hidden;
	position: relative;
	font-family: 'Archivo', sans-serif;
	color: #fff;
	background: #0A0A0D;
}
.title {
	font-weight: 900;
	font-size: 36px;
	line-height: 52px;
}
.title span {
	color: #08B7FF;
}
.subtitle {
	font-weight: 900;
	font-size: 16px;
	line-height: 22px;
	color: #08B7FF;
}
.subtitle + .title  {
	margin-top: 36px;
}
.title.small {
	font-size: 24px;
	line-height: 34px;
	font-weight: 900;
}

.desc {
	font-family: 'Open Sans', sans-serif;
    font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #8E8E8E;
}
button,
a {
	border: 0;
	outline: 0;
	cursor: pointer;
	transition: .3s;
}
a:hover,
button:hover  {
	opacity: .5;
}
.button {
	color: #fff;
	background-image: linear-gradient(to right, #5558FF, #00C0FF);
	border-radius: 6px;
	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
	padding: 15px 26px;
	min-width: 178px;
}
.section {
	padding: 120px 24px 0;
	text-align: center;
}
.section .wrapper {
	max-width: 1200px;
	margin: 0 auto;
}
.menu {
	display: none;
}


/* header */
.header {
	width: 100%;
	height: auto;
	z-index: 3;
	transition: .3s;
	background: #0A0A0D;
}
.header .logo {
	width: 120px;
}
.header .section {
	padding: 22px 24px;
	transition: .3s;
	width: 100%;
}
.header .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .nav {
	display: flex;
}
.header .nav li + li {
	margin-left: 74px;
}
.nav a {
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: #fff;
}

/* heroo section */

.hero-section {
	padding: 30vw 24px 0;
	position: relative;
}
.hero-section img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: url('../assets/hero-img.jpg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top center;
}
.hero-section .wrapper {
	position: relative;
	max-width: 730px;
	margin: 0 auto;
}
.hero-section .desc {
	margin-top: 26px;
	font-size: 18px;
	line-height: 26px;
}



/* service section */
.services-section {
	padding-bottom: 115px;
}
.service-list img {
	width: 44px;
}
.service-list {
	display: flex;
	gap: 70px;
	margin-top: 86px;
	text-align: left;
	font-size: 0;
}
.services-section .wrapper {
	max-width: 900px;
}
.services-section .wrapper .desc {
	max-width: 730px;
	margin: 0 auto;
}
.services-section .title + .desc {
	margin-top: 26px;
}
.service-list .title {
	padding-left: 26px;
	width: calc(100% - 44px);
	display: inline-block;
	vertical-align: middle;
}
.services-section .title.small + .desc {
	margin-top: 14px;
}
.service-list img {
	vertical-align: middle;
}
.services-section .title.small + .desc + .desc {
	margin-top: 22px;
	color: #fff;
	font-weight: 600;
}
.services-section .wrapper ul .desc {
	margin-top: 22px;
	padding-left: 21px;
	position: relative;
}
.services-section .wrapper ul .desc::before {
	content: '';
	position: absolute;
	top: 7px;
	left: 0;
	width: 8px;
	height: 8px;
	background: #43A1D1;
	border-radius: 100px;
}


/* about section */
.about-section {
	background: #1F1F27;
	padding-bottom: 120px;
}
.about-section ul {
	max-width: 710px;
	margin: 54px auto 0;
}

.about-section li {
	background: rgba(0, 0, 0, .05);
	border-radius: 58px;
	text-align: left;
}
.about-section li .subtitle {
	font-weight: 900;
	padding: 24px 80px 24px 30px;
	border-radius: 6px;
	background: #1F1F27;
	color: #fff;
	transition: .3s;
	position: relative;
	cursor: pointer;
	border: 2px solid #FFFFFF;
	font-size: 18px;
	line-height: 25px;
}
.about-section li .subtitle::after {
	position: absolute;
	content: '';
	width: 15px;
	height: 8px;
	right: 26px;
	top: 50%;
	transform: translateY(-50%);
	background: url('../assets/arrow-down.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: .3s;
	filter: brightness(0) invert(1);
	transform: translateY(-50%) scale(-1);
}
.about-section li.active .subtitle {
	color: #1F1F27;
	background: #fff;
}
.about-section li.active .subtitle:after {
	transform: translateY(-50%) scale(1);
	filter: brightness(1) invert(0);
}
.about-section li .desc {
	padding: 0;
	transition: .3s;
	overflow: hidden;
	max-height: 0;
}
.about-section li .desc span {
	padding-top: 26px;
	display: block;
}
.about-section li.active .desc {
	max-height: 200px;
	padding-bottom: 28px;
}
.about-section li + li {
	margin-top: 16px;
}


/* why section */
.why-section {
	padding-bottom: 120px;
}
.why-section .wrapper {
	display: flex;
	align-items: center;
}
.why-section .subtitle + .title {
	max-width: 589px;
}
.why-section .left {
	flex: 1;
	text-align: left;
}
.why-section .right {
	flex: 1;
	text-align: right;
}
.why-section .right img {
	max-width: 487px;
}
.why-section .desc {
	margin-top: 26px;
}
.why-section .wrapper + .wrapper {
	margin-top: 100px;
}
.why-section .wrapper + .wrapper .right {
	text-align: left;
}
.why-section .wrapper + .wrapper .right img {
	max-width: 436px;
}

/* slider section */
.slider-section {
	background: #1F1F27;
	padding: 120px 80px;
}
.slider-section .wrapper {
	max-width: 1440px;
}
.slider-section .slick-slide img {
	width: 80px;
	margin: 0 auto;
}
.slider-section .slick-slide .title {
	max-width: 400px;
	margin: 50px auto 0;
}
.slider-section .slick-slide .desc {
	max-width: 400px;
	margin: 24px auto 0;
}
.slider-section .slick-slide .item {
	padding: 0 8px;
}
.slider-section .slick-slide .item-wrapper {
	background: #0A0A0D;
	padding: 74px 16px 44px;
}
.slick-arrow {
	background: url('../assets/arrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 40px;
	height: 40px;
	border: 0;
	position: absolute;
	font-size: 0;
}
.slick-prev {
	left: -60px;
	top: 50%;
	transform: translateY(-50%);
}
.slick-next {
	right: -60px;
	top: 50%;
	transform: translateY(-50%) scale(-1);
}
.slick-dots {
	margin-top: 56px;
	display: flex;
	background: #4F4F61;
	border-radius: 6px;
}
.slick-dots li {
	width: calc(100% / 3);
	border-radius: 6px;
	height: 12px;
	transition: .3s;
}
.slick-dots li.slick-active {
	background-image: linear-gradient(to right, #5558FF, #00C0FF);
}
.slick-dots button {
	display: none;
}



/* contact section */
.contact-section {
	background: #0A0A0D;
	padding-bottom: 120px;
}
.contact-section .desc {
	max-width: 730px;
	margin: 35px auto 0;
}
.contact-section .button {
	margin-top: 30px;
}


/* footer */
.footer {
	background-color: #1F1F27;
	padding: 0 24px;
	position: relative;
}
.footer .logo {
	position: absolute;
	width: 106px;
	height: 106px;
	top: -53px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 100px;
	background-color: #1F1F27;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer .logo img {
	width: 56px;
}
.footer .wrapper {
	max-width: 1440px;
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 100%;
	align-items: center;
	min-height: 300px;
	padding: 24px 0;
}
.footer .wrapper .left {
	text-align: left;
	flex: 1;
}
.footer .wrapper .right {
	text-align: right;
	flex: 1;
}
.footer .wrapper .left .desc + .desc {
	margin-top: 6px;
	color: #08B7FF;
	font-weight: 600;
}
.footer .wrapper .left .desc + .desc + .desc {
	color: #8E8E8E;
	position: absolute;
	bottom: 28px;
	left: 0;
}
.footer .wrapper .right .desc + .desc {
	color: #fff;
	margin-top: 6px;
}
.footer .nav {
	display: flex;
}
.footer .nav__item {
	margin: 0 25px;
}





/* modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 5;
	padding: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	font-family: 'Archivo', sans-serif;
}
.modal .title {
	color: #fff;
}
.modal.active {
	visibility: visible;
	opacity: 1;
}
.modal .close {
	width: 20px;
	position: absolute;
	right: 32px;
	top: 32px;
	cursor: pointer;
	z-index: 2;
}
.overlay {
	background: rgba(0, 0, 0,.37);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
}
.modal .wrapper {
	position: relative;
	max-width: 665px;
	margin: 0 auto;
	width: 100%;
	max-height: 100vh;
	overflow: auto;
}
.modal .wrapper .container {
	background: #1F1F27;
	padding: 55px 16px 60px;
	position: relative;
	border-radius: 12px;
	z-index: 1;
}
.modal .label-list {
	width: 100%;
	max-width: 520px;
	font-size: 0;
	margin-top: 23px;
}
.modal label {
	display: inline-block;
	margin: 13px auto 0;
	text-align: left;
	width: 100%;
	vertical-align: top;
}
.modal label:first-child {
	width: 50%;
	padding-right: 10px;
}
.modal label:nth-child(2) {
	width: 50%;
	padding-left: 10px;
}
.modal .wrapper form {
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}
.modal .wrapper form input,
.modal .wrapper form textarea {
	width: 100%;
	border-radius: 4px;
	background: #35353D;
	border: 0;
	font-family: 'Open Sans', sans-serif;
    font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	border: 1px solid #FFFFFF;
	outline: 0;
	padding: 9px 18px;
	margin-top: 6px;
}
.modal .wrapper form textarea {
	height: 144px;
	resize: none;
}
.modal .button {
	margin-top: 32px;
}




@media screen and (max-width: 768px) {
	a:hover,
	button:hover  {
		opacity: 1;
	}
	.header .nav {
		flex-direction: column;
		margin-top: 24px;
	}
	.header .nav li + li {
		margin-left: 0;
		margin-top: 16px;
	}
	.header .wrapper {
		flex-direction: column;
	}
	.title {
		font-size: 24px;
		line-height: 32px;
	}
	.section {
		padding: 48px 16px 0;
	}
	.services-section {
		padding-bottom: 48px;
	}
	.subtitle + .title {
		margin-top: 16px;
	}
	.service-list {
		flex-direction: column;
		margin-top: 48px;
	}
	.service-list .title {
		font-size: 21px;
		line-height: 28px;
	}
	.about-section li .subtitle {
		padding: 16px 80px 16px 16px;
	}
	.why-section .wrapper {
		flex-direction: column;
	}
	.why-section {
		padding-bottom: 48px;
	}
	.why-section .right {
		margin-top: 24px;
	}
	.contact-section {
		padding-bottom: 88px;
	}
	.footer .logo img {
		width: 32px;
	}
	.footer .logo {
		width: 60px;
		height: 60px;
		top: -30px;
	}
	.footer {
		padding: 0 16px;
	}
	.footer .wrapper {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		min-height: 0;
		padding-bottom: 90px;
	}
	.footer .wrapper .left {
		width: 100%;
		flex: unset;
	}
	.footer .wrapper .center {
		width: 100%;
		flex: unset;
		margin-top: 24px;
	}
	.footer .wrapper .right {
		width: 100%;
		flex: unset;
		margin-top: 24px;
		text-align: left;
	}
	.footer .nav__item {
		margin-left: 0;
		margin-right: 16px;
	}
	.slider-section {
		padding-bottom: 48px;
	}
	.why-section .wrapper + .wrapper {
		flex-direction: column-reverse;
	}
}
#overlay {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}
#overlay .pop {
    background: #fff;
    max-width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 50px 50px 50px;
    border-radius: 6px;
    display: none;
}
#overlay .pop .close {
    position: absolute;
    right: 25px;
    top: 20px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
    cursor: pointer;
}
#overlay .pop .close:hover {
    opacity: 1;
}
#overlay .pop .close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
}
#overlay .pop .close:before {
    transform: rotate(45deg);
}
#overlay .pop .close:after {
    transform: rotate(-45deg);
}
#overlay .pop .message {
    text-align: center;
    font-size: 18px;
}
ul.common {
	padding-top: 30px;
    list-style: disc;
    padding-left: 20px;
}
.no-pad-bottom {
	padding-bottom: 0px;
}
.section.privacy {
    padding-bottom: 120px;
    text-align: left;
}
.section.privacy h1,
.section.privacy .last-updated {
	margin-bottom: 40px;
	text-align: center;
}
.section.privacy h1 {
	font-size: 40px;
}
.section.privacy p {
	padding: 20px 0px;
	line-height: 25px;
}
.section.privacy p span {
	display: block;
    padding: 5px 0px;
}
.section.privacy p span.padding {
	padding-left: 20px;
}