/*Styles*/

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Sora:wght@400;700;800&display=swap");

* {
	margin: 0;
	box-sizing: border-box;
}

body {
	box-sizing: border-box;
	font-size: 18px;
	line-height: 36px;
	font-family: 'Sora', sans-serif !important;
	color: #042552;
}

.privacy p {
	opacity: 0.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Sora', sans-serif !important;
}

h1 {
	font-size: 65px !important;
	line-height: 72px !important;
	font-weight: 400;
}

@media (max-width: 1023px) {
	h1 {
		font-size: 46px !important;
		line-height: 54px !important;
	}
}

h2 {
	font-size: 45px !important;
	line-height: 58px !important;
	font-weight: 700;
}

@media (max-width: 1023px) {
	h2 {
		font-size: 36px !important;
		line-height: 48px !important;
	}
}

p {
	font-size: 18px;
	line-height: 36px;
	font-weight: 600 !important;
	font-family: 'Manrope', sans-serif !important;
	margin-bottom: 20px;
}

.button {
	cursor: pointer;
	background: #F59500;
	color: #FFF;
	border-radius: 5px;
	transition: all 0.3s ease-in-out;
}

.button a {
	padding: 7px 25px;
	display: block;
}

.button:hover {
	background: #FF9B00;
}

.header {
	background-color: #FFF;
	padding: 10px 0;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
}

.header .nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .nav-wrapper .site-branding {
	height: 50px;
}

.header .nav-wrapper .site-branding .logo-image {
	width: 190px;
}

.header .nav-wrapper .menu {
	display: flex;
	align-items: center;
	list-style: none;
}

@media (max-width: 1023px) {
	.header .nav-wrapper .menu {
		display: none;
	}
}

.header .nav-wrapper .menu.show {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	left: 0;
	width: 100%;
	top: 69px;
	background-color: #FFF;
	z-index: 3;
	padding: 20px 0;
}

@media (max-width: 767px) {
	.header .nav-wrapper .menu.show {
		top: 60px;
	}
}

.header .nav-wrapper .menu li {
	position: relative;
}

.header .nav-wrapper .menu li.current-menu-item.button a:after {
	display: none;
}

.header .nav-wrapper .menu li.current-menu-item a {
	color: #F59500;
}

.header .nav-wrapper .menu li.current-menu-item a:after {
	opacity: 1;
	position: absolute;
	content: '';
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background: #F59500;
	transition: all 0.3s ease-in-out;
}

.header .nav-wrapper .menu li:not(:last-child) {
	margin-right: 25px;
}

@media (max-width: 1023px) {
	.header .nav-wrapper .menu li:not(:last-child) {
		margin-right: 0;
	}
}

.header .nav-wrapper .menu li a {
	text-decoration: none;
	color: #042552;
	font-family: 'Manrope', sans-serif;
	position: relative;
	transition: all 0.3s ease-in-out;
	opacity: 0.7;
	font-size: 16px;
	font-weight: 600;
}

.header .nav-wrapper .menu li a:after {
	opacity: 0;
	position: absolute;
	content: '';
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background: #F59500;
	transition: all 0.3s ease-in-out;
}

.header .nav-wrapper .menu li a:hover {
	color: #F59500;
}

.header .nav-wrapper .menu li a:hover a {
	opacity: 1;
}

.header .nav-wrapper .menu li a:hover:after {
	opacity: 1;
}

.header .nav-wrapper .menu li.button a {
	color: #FFF;
	opacity: 1;
}

.header .nav-wrapper .menu li.button a:hover {
	color: #FFF;
}

.header .nav-wrapper .menu li.button a:hover:after {
	display: none;
}

.header .nav-wrapper .menu li .sub-menu {
	padding: 16px 8px;
	left: -8px;
	background-color: #ffffff;
	transition: opacity 0.3s ease-in-out;
	min-width: 200px;
}

.header .nav-wrapper .menu li .sub-menu .menu-item {
	list-style: none;
	margin-right: 0;
}

@media (min-width: 1024px) {
	.header .nav-wrapper .menu li .sub-menu {
		visibility: hidden;
		opacity: 0;
		position: absolute;
	}
}

@media (max-width: 1023px) {
	.header .nav-wrapper .menu li.menu-item-has-children {
		display: flex;
		flex-direction: column;
		align-content: center;
		text-align: center;
	}

	.header .nav-wrapper .menu li.menu-item-has-children ul {
		text-align: center;
		left: auto;
		padding: 0;
	}
}

.header .nav-wrapper .menu li.menu-item-has-children:hover .sub-menu {
	visibility: visible;
	opacity: 1;
}

.header .nav-wrapper .menu li.menu-item-has-children ul.sub-menu ul.sub-menu {
	opacity: 0;
	visibility: hidden;
}

@media (max-width: 1023px) {
	.header .nav-wrapper .menu li.menu-item-has-children ul.sub-menu ul.sub-menu {
		opacity: 1;
		visibility: visible;
	}
}

@media (min-width: 1024px) {
	.header .nav-wrapper .menu li.menu-item-has-children ul.sub-menu:hover ul.sub-menu {
		top: 0;
		left: 102%;
		opacity: 1;
		visibility: visible;
	}
}

.header .burger {
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	display: none;
}

@media (max-width: 1023px) {
	.header .burger {
		display: flex;
	}
}

.header .burger span {
	position: relative;
	width: 100%;
	height: 3px;
	background-color: #042552;
	transition: all 0.3s ease-in-out;
}

.header .burger span:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 3px;
	background-color: #042552;
	top: 10px;
	transition: all 0.3s ease-in-out;
}

.header .burger span:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 3px;
	background-color: #042552;
	bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.header .burger.opened span {
	height: 0;
}

.header .burger.opened span:after {
	transform: rotate(45deg);
	top: 0;
}

.header .burger.opened span:before {
	transform: rotate(-45deg);
	bottom: auto;
	top: 0;
}

.home-hero {
	padding: 65px 0 100px 0;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	overflow: hidden;
	position: relative;
}

.home-hero .btn {
	position: relative;
}

.home-hero .btn a {
	box-shadow: -12px 12px 50px rgba(255, 87, 34, 0.3);
}

.home-hero .btn a:hover {
	background-color: #FF9B00;
	transform: translateY(-3px);
}

.home-hero .hero-left {
	position: relative;
}

.home-hero .hero-left:after {
	position: absolute;
	content: '';
	width: 14px;
	height: 14px;
	background-color: #090D99;
	border-radius: 50%;
	right: 170px;
	top: 70px;
}

.home-hero .hero-left:before {
	position: absolute;
	content: '';
	width: 13px;
	height: 13px;
	background-color: #FECA00;
	border-radius: 50%;
	right: 260px;
	bottom: 140px;
}

.home-hero .hero-left p {
	opacity: 0.7;
}

@media (max-width: 767px) {
	.home-hero .hero-left p br {
		display: none;
	}
}

.home-hero .row {
	display: flex;
	margin-left: auto;
	margin-right: auto;
}

.home-hero .hero-title {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	position: relative;
	padding-right: 50px;
}

.home-hero .hero-form {
	width: 50%;
	position: relative;
	z-index: 1;
}

.home-hero .ellipsis-1 {
	position: absolute;
	z-index: -1;
	top: -12px;
	left: -38px;
}

.home-hero .ellipsis-2 {
	position: absolute;
	z-index: -1;
	top: -35px;
	left: 490px;
}

.home-hero .ellipsis-1 img {
	vertical-align: middle;
	display: inline-block;
}

.home-hero h1 {
	line-height: 58px;
	font-weight: 400;
	max-width: 575px;
	position: relative;
	margin-bottom: 60px;
}

.home-hero h1:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: -25px;
	width: 200px;
	height: 8px;
	background: url("assets/images/line.svg");
	background-repeat: no-repeat;
}

.home-hero .main-form {
	padding: 40px 30px 10px;
	box-shadow: 0px 4px 19px 2px rgba(223, 221, 221, 0.25);
	border-radius: 10px;
	background: #FFF;
	position: relative;
	margin-bottom: 0;
}

.home-hero .main-form .wpcf7-not-valid-tip {
	font-family: 'Manrope', sans-serif !important;
	font-size: 14px;
	color: #EE0909 !important;
	line-height: 18px;
	font-weight: 500 !important;
	top: 5px;
}

.home-hero .main-form .wpcf7-not-valid {
	border-color: #EE0909 !important;
}

@media (max-width: 424px) {
	.home-hero .main-form {
		padding: 40px 15px 10px;
	}
}

.home-hero .main-form .tel input {
	margin-bottom: 20px;
}

.home-hero .main-form:after {
	position: absolute;
	content: '';
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #FECA00;
	top: 35px;
	right: 30px;
}

.home-hero .main-form p {
	width: 100%;
	margin-bottom: 0;
}

.home-hero .main-form label {
	font-family: 'Manrope', sans-serif !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	margin-bottom: 20px;
}

.home-hero .main-form br {
	display: none;
}

.home-hero .main-form .name-mail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 -20px 20px;
}

.home-hero .main-form .name-mail label:nth-of-type(4),
.home-hero .main-form .name-mail label:nth-of-type(5) {
	margin-bottom: 0;
}

@media (max-width: 575px) {
	.home-hero .main-form .name-mail {
		flex-wrap: wrap;
	}
}

.home-hero .main-form .name-mail label {
	padding: 0 20px;
	display: block;
}

@media (max-width: 575px) {
	.home-hero .main-form .name-mail label {
		width: 100%;
	}

	.home-hero .main-form .name-mail label:not(:last-child) {
		margin-bottom: 15px;
	}
}

.home-hero .main-form .name-mail input {
	width: 100%;
	border: 2px solid rgba(143, 143, 143, 0.3);
	font-weight: 400 !important;
}

.home-hero .main-form .name-mail input::placeholder {
	font-weight: 400 !important;
	font-family: 'Manrope', sans-serif !important;
}

.home-hero .main-form span {
	position: relative;
}

.home-hero .main-form span:after {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.home-hero .main-form span[data-name="your-name"]:after {
	position: absolute;
	content: '';
	left: 15px;
	top: 0;
	width: 20px;
	height: 20px;
	background: url("assets/images/icon name.svg");
}

.home-hero .main-form span[data-name="your-email"]:after {
	position: absolute;
	content: '';
	left: 15px;
	top: 0;
	width: 20px;
	height: 18px;
	background: url("assets/images/icon email.svg");
}

.home-hero .main-form span[data-name="tel-191"]:after {
	position: absolute;
	content: '';
	left: 15px;
	top: 0;
	width: 20px;
	height: 20px;
	background: url("assets/images/icon phone.svg");
}

.home-hero .main-form span.first.last {
	margin-left: 0;
}

.home-hero .main-form span.first.last label {
	cursor: pointer;
}

.home-hero .main-form span.first.last input {
	display: none;
}

.home-hero .main-form span.first.last span {
	position: relative;
	padding-left: 30px;
	font-size: 14px;
	color: #8F8F8F;
	line-height: 20px;
	font-weight: 500;
}

.home-hero .main-form span.first.last span:after {
	position: absolute;
	content: '';
	width: 20px;
	left: 0;
	top: 0px;
	height: 20px;
	border-radius: 5px;
	border: 1px solid #909090;
	background-color: #FAFAFA;
}

.home-hero .main-form span.first.last span:before {
	opacity: 0;
	position: absolute;
	content: '\2713';
	width: 10.5px;
	height: 10.5px;
	color: #FFF;
	left: 4px;
	top: 0;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.home-hero .main-form span.first.last input[type="checkbox"]:checked+span:after {
	background: #2596FF;
	border-color: #2596FF;
}

.home-hero .main-form span.first.last input[type="checkbox"]:checked+span:before {
	opacity: 1;
}

.home-hero .main-form input {
	border-radius: 5px;
	padding: 21px 25px 21px 50px;
	border: 2px solid rgba(143, 143, 143, 0.3);
	font-family: 'Manrope', sans-serif !important;
	font-weight: 400 !important;
	color: #042552;
	position: relative;
	font-size: 14px !important;
}

.home-hero .main-form input::placeholder {
	font-weight: 400 !important;
	color: #8F8F8F;
	font-family: 'Manrope', sans-serif !important;
}

.home-hero .main-form textarea {
	border-radius: 5px;
	border: 2px solid rgba(143, 143, 143, 0.3);
	font-family: 'Manrope', sans-serif !important;
	font-weight: 400 !important;
	font-size: 14px !important;
	color: #042552;
	padding: 21px 15px 15px;
	height: 65px;
	resize: none;
	margin-bottom: 5px;
	width: 100%;
}

.home-hero .main-form textarea::placeholder {
	font-weight: 400 !important;
	color: #8F8F8F;
	font-family: 'Manrope', sans-serif;
}

.home-hero .main-form textarea::-ms-input-placeholder,
.home-hero .main-form textarea::-moz-placeholder,
.home-hero .main-form textarea::-moz-placeholder,
.home-hero .main-form textarea::-webkit-input-placeholder {
	color: #8F8F8F;
	font-weight: 400 !important;
	font-family: 'Manrope', sans-serif;
}

.home-hero .main-form .submit {
	width: 100%;
	position: relative;
	margin-top: 30px;
}

.home-hero .main-form .submit:after {
	position: absolute;
	content: '';
	right: calc(50% - 50px);
	top: 23px;
	width: 20px;
	height: 20px;
	background: url("assets/images/icon arrow.svg");
	transition: all 0.3s ease-in-out;
}

.home-hero .main-form .submit:hover:after {
	transform: translateY(-3px);
}

.home-hero .main-form .submit:hover input[type="submit"] {
	transform: translateY(-3px);
}

.home-hero .main-form input[type="submit"] {
	border: 0;
	padding-right: 40px;
	width: 100%;
	color: #FFF;
	font-size: 18px !important;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
	transition: all 0.3s ease-in-out;
	outline: none;
	box-shadow: -12px 12px 50px rgba(255, 87, 34, 0.3);
}

.home-hero .main-form input[type="submit"]:hover {
	background-color: #FF9B00;
}

.home-hero .form-part {
	position: relative;
}

.home-hero .form-part:after {
	position: absolute;
	content: '';
	width: 600px;
	height: 600px;
	right: -335px;
	top: -160px;
	border-radius: 50%;
	background: linear-gradient(317.45deg, rgba(135, 146, 161, 0.08) 38.23%, rgba(135, 146, 161, 0.08) 102.86%);
	z-index: -2;
}

.home-hero .form-part .green .elementor-widget-container {
	width: 150px !important;
}

.home-hero .form-part .ellipse .elementor-widget-container {
	width: 115px !important;
}

.home-hero .form-part .blue .elementor-widget-container {
	width: 150px !important;
}

.home-hero .form-part .elipse-two .elementor-widget-container {
	width: 115px !important;
}

.home-slider .swiper-wrapper {
	align-items: center;
}

.home-slider .swiper-slide-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.home .number .number-item p {
	position: relative;
	padding-left: 80px;
}

.home .number .number-item p span.absolute {
	opacity: 1;
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	color: #4E6585;
	font-size: 45px;
	line-height: 58px;
	font-weight: 700;
	font-family: 'Sora', sans-serif;
}

.home .number .number-item p span.opacity {
	opacity: 0.6;
	font-weight: 600;
	font-size: 18px;
	line-height: 36px;
	color: #042552;
}

.home .number .btn a {
	font-size: 18px;
	font-family: 'Manrope', sans-serif;
	padding: 21px 53px;
	transition: all 0.3s ease-in-out;
	box-shadow: -12px 12px 50px rgba(255, 87, 34, 0.3);
}

.home .number .btn a:hover {
	background-color: #FF9B00;
	transform: translateY(-3px);
}

.home .number.first {
	position: relative;
}

.home .number.first:after {
	position: absolute;
	content: '';
	width: 11px;
	height: 11px;
	background-color: #F59500;
	border-radius: 50%;
	right: 20px;
	top: 100px;
}

.home .number.first:before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 13px;
	height: 13px;
	background-color: #FECA00;
	border-radius: 50%;
}

.home .number.second {
	position: relative;
}

.home .number.second:after {
	position: absolute;
	content: '';
	bottom: 0;
	right: 220px;
	width: 13px;
	height: 13px;
	background-color: #FECA00;
	border-radius: 50%;
}

/*For Carousel*/
.carousel {
	padding: 65px 0 100px 0;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	overflow: hidden;
	position: relative;
}

.carousel .carousel-wrapper {
	overflow: hidden;
	align-items: center;
}

.carousel .swiper-container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	overflow: hidden;
}

.carousel .swiper-slide {
	width: 220px !important;
	text-align: center;
}

.carousel .swiper-slide img {
	height: auto;
	max-width: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

/* For 2 blocks */

.block-2 {
	padding: 65px 0 100px 0;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	overflow: hidden;
	position: relative;
}

.block-2 .row,
.block-2 .block-row {
	display: flex;
	margin-left: auto;
	margin-right: auto;
}

.block-2 .block-img {
	width: 60%;
	display: flex;
	justify-content: start;
}

.block-2 .block-img img {
	height: auto;
	max-width: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.block-2 .block-content {
	width: 40%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}

.block-2 .block-content h1 {
	font-size: 45px !important;
	font-weight: 400;
	line-height: 58px !important;
	padding-bottom: 30px;
}

.block-2 span.absolute {
	color: #4E6585;
	font-size: 45px;
	line-height: 58px;
	font-weight: 700;
	font-family: 'Sora', sans-serif;
	padding-right: 20px;
}

.block-2 span.opacity {
	opacity: 0.6;
	font-weight: 600;
	font-size: 18px;
	line-height: 36px;
	color: #042552;
}

.block-2:nth-of-type(2n) .row {
	flex-direction: row-reverse;
}

.block-2:nth-of-type(2n) .row .block-img {
	width: 60%;
	display: flex;
	justify-content: flex-end;
}


.block-2:nth-of-type(2n) .row .block-content {
	width: 40%;
}

.block-2 .btn {
	background-color: #F59500;
	color: #FFF;
	text-decoration: none;
	font-size: 18px;
	font-family: 'Manrope', sans-serif;
	padding: 21px 53px;
	transition: all 0.3s ease-in-out;
	box-shadow: -12px 12px 50px rgba(255, 87, 34, 0.3);
}

.block-2 .btn:hover {
	background-color: #FF9B00;
	transform: translateY(-3px);
}



@media (max-width: 1024px) {
	.home-hero .row {
		flex-wrap: wrap;
		flex-direction: column;

		.hero-title,
		.hero-form {
			width: 100%;
		}
	}

	.block-2 .row {
		flex-wrap: wrap;
		flex-direction: column;

		.block-img,
		.block-content {
			width: 100%;
		}

		.block-img {
			justify-content: center;
		}
	}

	.block-2:nth-of-type(1n) {
		padding: 65px 0 0 0;
	}

	.block-2:nth-of-type(2n) {
		padding: 0 0 100px 0;
	}

	.block-2:nth-of-type(2n) .row {
		flex-direction: column-reverse;
	}

	.block-2:nth-of-type(2n) .row .block-img,
	.block-2:nth-of-type(2n) .row .block-content {
		width: 100%;
	}

	.block-2:nth-of-type(2n) .row .block-img {
		justify-content: center;
	}
}

.img-right img {
	margin-right: -90px;
}

@media (max-width: 767px) {
	.img-right img {
		margin-right: 0;
	}
}

.img-left img {
	margin-left: -50px;
}

@media (max-width: 767px) {
	.img-left img {
		margin-left: 0;
	}
}

.footer {
	padding: 70px 0 20px;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	padding-bottom: 70px;
	align-items: stretch;
}

@media (max-width: 1023px) {
	.footer-top {
		flex-wrap: wrap;
	}
}

.footer-top .logo {
	min-width: 190px;
	margin-right: 45px;
}

.footer-top .logo a img {
	width: 190px;
}

@media (max-width: 1023px) {
	.footer-top .logo {
		width: 100%;
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.footer-top .logo {
		text-align: center;
		margin-right: 0;
	}
}

.footer-top .review__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (max-width: 1023px) {
	.footer-top .review__item {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.footer-top .review__item {
		width: 100%;
	}
}

.footer-top .review__item:not(:last-child) {
	margin-right: 60px;
}

@media (max-width: 1023px) {
	.footer-top .review__item:not(:last-child) {
		padding-right: 30px;
		margin-right: 0;
	}
}

@media (max-width: 767px) {
	.footer-top .review__item:not(:last-child) {
		padding-right: 0;
		margin-bottom: 30px;
	}
}

.footer-top .review__text {
	margin-bottom: 20px;
}

.footer-top .review__text p {
	opacity: 0.6;
}

.footer-top .review__image {
	display: flex;
	align-items: flex-start;
}

.footer-top .review__image .img {
	margin-right: 15px;
}

.footer-top .review__image p.position {
	font-size: 14px;
	line-height: 19px;
	color: #8F8F8F;
	opacity: 0.7;
}

.footer-bottom {
	position: relative;
	padding: 20px 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 1023px) {
	.footer-bottom {
		flex-wrap: wrap;
	}
}

.footer-bottom:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	left: 0;
	top: 0;
	background-color: #8F8F8F;
	opacity: 0.2;
}

.footer-bottom .sci {
	display: flex;
	align-items: center;
}

@media (max-width: 1023px) {
	.footer-bottom .sci {
		width: 100%;
		justify-content: center;
	}
}

.footer-bottom .sci__item {
	list-style-type: none;
}

.footer-bottom .sci__item:not(:last-child) {
	margin-right: 15px;
}

.footer-bottom .sci__item a {
	text-decoration: none;
}

.footer-bottom .sci__item a .icon circle {
	stroke: #B1B1B1;
	transition: all 0.3s ease-in-out;
}

.footer-bottom .sci__item a .icon path {
	fill: #B1B1B1;
	transition: all 0.3s ease-in-out;
}

.footer-bottom .sci__item:hover a .icon circle {
	stroke: #2596FF;
}

.footer-bottom .sci__item:hover a .icon path {
	fill: #2596FF;
}

.footer-bottom .menu-bottom {
	display: flex;
	list-style: none;
	align-items: center;
}

@media (max-width: 1023px) {
	.footer-bottom .menu-bottom {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.footer-bottom .menu-bottom {
		flex-wrap: wrap;
	}
}

.footer-bottom .menu-bottom li {
	color: #042552;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 14px;
}

@media (max-width: 424px) {
	.footer-bottom .menu-bottom li {
		width: 100%;
		text-align: center;
	}
}

.footer-bottom .menu-bottom li:not(:last-child) {
	margin-right: 35px;
}

@media (max-width: 424px) {
	.footer-bottom .menu-bottom li:not(:last-child) {
		margin-right: 0;
	}
}

.footer-bottom .menu-bottom li:not(:last-child) a {
	color: #042552;
	text-decoration: none;
	font-weight: 600;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.footer-bottom .menu-bottom li:not(:last-child) a:after {
	opacity: 0;
	position: absolute;
	content: '';
	bottom: -1px;
	width: 100%;
	height: 1px;
	left: 0;
	background-color: #F59500;
	transition: all 0.3s ease-in-out;
}

.footer-bottom .menu-bottom li:not(:last-child) a:hover {
	color: #F59500;
}

.footer-bottom .menu-bottom li:not(:last-child) a:hover:after {
	opacity: 1;
}

.home-hero .hero-img {
	display: flex;
	justify-content: center;
}

.our-work {
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	padding: 70px 0px 0px 0px;
}

.our-work .work-img {
	margin-bottom: 15px;
}

.our-work img {
	height: auto;
	max-width: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
	vertical-align: middle;
	display: inline-block;
}

.our-work .row {
	display: flex;
	flex-wrap: wrap;
	padding: 50px 0 70px 0;
}

.work__wrap {
	position: relative;
}

.work__wrap.no-border:after {
	display: none;
}

.work__wrap:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #ECECEC;
}

.work__item {
	width: 50%;
	padding-right: 30px;
}

.work__item h2 {
	padding-bottom: 30px;
}

.work__item h2 span.number {
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	color: #4E6585;
}

.work__item p {
	opacity: 0.7;
}

@media (max-width: 1024px) {
	.home-hero .row {
		flex-wrap: wrap;
		flex-direction: column;

		.hero-img {
			justify-content: center;
		}

		.hero-img img{
			margin-right: 0;
		}
	}

	.our-work .row {
		flex-direction: column;

		.work__item {
			width: 100%;
		}
	}
}

.contact-us .elementor-icon-box-wrapper {
	align-items: center !important;
}

.contact-us .elementor-icon-box-wrapper p {
	opacity: 1 !important;
}

.contact-us.home-hero.info .hero-left:before {
	bottom: 70px;
}

.contact-us.home-hero .form-part:after {
	display: none;
}

.contact-us.home-hero .hero-left:after {
	background-color: #FF5E00;
}

.contact-us.home-hero .hero-left:before {
	bottom: 100px;
}

.contact-us.home-hero .main-form:after {
	display: none;
}

.regional-offices p {
	opacity: 0.7;
}

.platform p {
	opacity: 0.7;
}

.platform.home-hero img {
	margin-right: -125px;
}

@media (max-width: 1400px) {
	.platform.home-hero img {
		margin-right: -20px;
	}
}

@media (max-width: 767px) {
	.platform.home-hero img {
		margin-right: 0;
	}
}

.online-item.first {
	position: relative;
}

.online-item.third {
	position: relative;
}

.platform__item p {
	opacity: 0.7;
}

.platform__item .btn {
	position: relative;
}

.platform__item .btn a {
	box-shadow: -12px 12px 50px rgba(255, 87, 34, 0.3);
}

.platform__item .btn a:hover {
	background-color: #FF9B00;
	transform: translateY(-3px);
}

.first-image img {
	margin-left: -130px;
}

@media (max-width: 1400px) {
	.first-image img {
		margin-left: -60px;
	}
}

@media (max-width: 767px) {
	.first-image img {
		margin-left: 0;
	}
}

.second-image img {
	margin-right: -155px;
}

@media (max-width: 1400px) {
	.second-image img {
		margin-right: -85px;
	}
}

@media (max-width: 767px) {
	.second-image img {
		margin-right: 0;
	}
}

.third-image img {
	margin-left: -135px;
}

@media (max-width: 1400px) {
	.third-image img {
		margin-left: -60px;
	}
}

@media (max-width: 767px) {
	.third-image img {
		margin-left: 0;
	}
}

.hero-platform .hero-title a {
	font-family: "Manrope", Sans-serif;
	font-size: 18px;
	font-weight: 500;
	background-color: #F59500;
	padding: 21px 53px 21px 53px;
	box-shadow: -12px 12px 50px rgba(255, 87, 34, 0.3);
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: all .3s;
	border-radius: 3px;
}

.hero-platform .hero-title a:hover {
	transform: translateY(-3px);
}

.block-2:nth-of-type(2n) .row.no-reverse {
	flex-direction: row !important;
	gap: 15px;
}

.block-2:nth-of-type(2n) .row.no-reverse .block-img {
	width: 60%;
	display: flex;
	justify-content: flex-start;
}

.block-2 .row.reverse {
	flex-direction: row-reverse;
	gap: 15px;
}

.block-2 .row.reverse .block-img {
	justify-content: flex-end;
}

@media (max-width: 1024px) {

	.block-2:nth-of-type(3n) {
		padding: 0 0 100px 0;
	}

	.block-2 .row.reverse {
		flex-direction: column-reverse;
	}

	.block-2:nth-of-type(2n) .row.no-reverse .block-img {
		width: 100%;
		justify-content: center;
	}

	.block-2 .row.reverse .block-img {
		justify-content: center;
	}

}


.clients.home-hero .hero-left:after {
	display: none;
}

.clients.home-hero .hero-left:before {
	right: auto;
	left: 20px;
	bottom: 0;
	width: 11px;
	height: 11px;
	background-color: #FF5E00;
}

.clients.home-hero img {
	margin-right: -130px;
}

@media (max-width: 1400px) {
	.clients.home-hero img {
		margin-right: -40px;
	}
}

@media (max-width: 767px) {
	.clients.home-hero img {
		margin-right: 0;
	}
}

.clients-wrap .elementor-container.elementor-column-gap-default {
	gap: 15px;
	flex-wrap: nowrap;
}

@media (max-width: 767px) {
	.clients-wrap .elementor-container.elementor-column-gap-default {
		flex-wrap: wrap;
	}
}

.clients-wrap .elementor-container.elementor-column-gap-default .elementor-column {
	border: 1px solid rgba(4, 37, 82, 0.2);
	height: 150px;
	border-radius: 5px;
}

.clients-wrap .button-list {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.clients-wrap .button-list h2,
.clients-wrap .button-list p {
	transition: all 0.3s ease-in-out;
}

.clients-wrap .button-list:hover {
	background-color: #F59500;
}

.clients-wrap .button-list:hover h2 {
	color: #FFF;
}

.clients-wrap .button-list:hover p {
	color: #FFF;
}

.heading-circle {
	position: relative;
}

.heading-circle:after {
	position: absolute;
	content: '';
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #FF1181;
	opacity: 0.5;
	right: 145px;
	bottom: 0;
}

.additional-partners {
	transition: all 0.3s ease-in-out;
	padding-bottom: 80px !important;
	max-height: 10000px;
}

.additional-partners p {
	color: #042552;
	opacity: 0.7;
	line-height: 28px;
}

.additional-partners p br {
	display: none;
}

@media (max-width: 424px) {
	.additional-partners p {
		font-size: 14px;
		line-height: 22px;
	}
}

.additional-partners.hide {
	padding-bottom: 0 !important;
	max-height: 0;
	overflow: hidden;
}

@media (max-width: 767px) {
	.additional-partners .elementor-section {
		border: 0 !important;
	}
}

@media (max-width: 767px) {
	.additional-partners .elementor-section .elementor-container .elementor-column {
		width: 50%;
		border-bottom: 1px solid #ECECEC;
	}
}

.home-hero .hero-img img {
	height: auto;
	max-width: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
	margin-right: -125px;
}

.client {
	padding: 0 0 50px 0;
}

.client img {
	height: auto;
	max-width: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.client .logo-wraper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.client .logo h1 {
	text-align: center;
	padding: 30px 0;
}

.client .logo-info {
	width: 24%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	border: 1px solid rgba(4, 37, 82, 0.2);
	height: 150px;
	border-radius: 5px;
	padding: 10px;
	margin: 0 auto;
}

.client .logo-info.logo-btn {
	cursor: pointer;
}

.client .logo-info.logo-btn h1 {
	text-align: center;
	font-size: 45px !important;
	line-height: 58px !important;
	font-weight: 600;
	padding: 0;
}

.client .logo-info.logo-btn p {
	text-align: center;
	margin: 0;
}

.client .logo-info.logo-btn:hover {
	background-color: #F59500;
	transition: all 0.3s ease-in-out;
}

.client .logo-info.logo-btn:hover p,
.logo-info.logo-btn:hover h1 {
	color: #fff;
}

.additional-partners .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}

.additional-partners .list {
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	border-color: #ECECEC;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	padding: 10px;
	width: 25%;
	height: 75px;
}

.additional-partners .list p {
	color: #042552;
	opacity: 0.7;
	line-height: 28px;
}

.hidden {
	display: none;
}

@media (max-width: 1024px) {
	.home-hero .row {
		flex-wrap: wrap;
		flex-direction: column;

		.hero-img {
			justify-content: center;
		}
	}

	.logo-wraper {
		flex-direction: column;

		.logo-info {
			width: 100%;
		}
	}

	.client .logo-info.logo-btn {
		flex-direction: column;
	}

	.additional-partners .list {
		width: 50%;
	}
}

.how-we-work.home-hero .hero-left:after {
	display: none;
}

.how-we-work.home-hero .hero-left:before {
	display: none;
}

.how-we-work__image {
	position: relative;
}

.how-we-work__image img {
	margin-right: -125px;
}

@media (max-width: 1400px) {
	.how-we-work__image img {
		margin-right: -30px;
	}
}

@media (max-width: 767px) {
	.how-we-work__image img {
		margin-right: 0;
	}
}

.how-we-work__image:after {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #FF6C40;
	bottom: -50px;
	left: 220px;
	opacity: 0.5;
}

.how-we-work-box {
	position: relative;
	max-width: 290px;
}

.how-we-work-box-wrap {
	max-width: 345px;
}

.how-we-work-box h3 {
	position: absolute;
	right: 30px;
	top: -15px;
	font-size: 45px;
	line-height: 58px;
	font-weight: 700 !important;
	color: #4E6585 !important;
}

@media (max-width: 1023px) {
	.how-we-work-box h3 {
		right: 0;
	}
}

@media (max-width: 767px) {
	.how-we-work-box h3 {
		right: 30px;
	}
}

.how-we-work-box svg {
	width: 85px !important;
	height: 85px !important;
}

.how-we-work-box p {
	color: #042552 !important;
	opacity: 0.7 !important;
}

.how-we-work-section.second .elementor-column-gap-default {
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.how-we-work-section.second .elementor-column-gap-default {
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.how-we-work-section .elementor-column-gap-default {
		justify-content: center;
	}

	.how-we-work-section .elementor-widget-wrap.elementor-element-populated {
		justify-content: center;
	}
}

.team.home-hero img {
	margin-right: -125px;
}

@media (max-width: 1400px) {
	.team.home-hero img {
		margin-right: -22px;
	}
}

@media (max-width: 767px) {
	.team.home-hero img {
		margin-right: 0;
	}
}

.team.home-hero .hero-left:after {
	display: none;
}

.team.home-hero .hero-left:before {
	display: none;
}

.home-hero .team .hero-img {
	justify-content: flex-end;
}

.team__wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.team__wrap.last>div {
	max-width: 1140px;
}

.team__item {
	max-width: 620px;
}

.team__item.last {
	visibility: hidden;
	opacity: 0;
}

@media (max-width: 767px) {
	.team__item.last {
		display: none;
	}
}

.team__item>div {
	box-shadow: 0px 4px 19px 2px rgba(223, 221, 221, 0.25);
}

.team__item .elementor-image-box-content p {
	opacity: 0.7;
}

.team__item h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
	font-family: 'Manrope', sans-serif;
}

.team__item ul li {
	position: relative !important;
	padding: 5px 0 5px 20px !important;
}

.team__item ul li span {
	color: rgba(4, 37, 82, 0.7) !important;
	font-family: 'Manrope', sans-serif !important;
	font-size: 18px;
	font-weight: 600 !important;
}

.team__item ul li:after {
	position: absolute;
	content: '';
	width: 7px !important;
	height: 15px;
	left: 0 !important;
	right: auto !important;
	top: 16px !important;
	background-color: #F59500;
}

.our-team {
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	padding: 0px 0px 70px 0px;
}

.our-team img {
	height: auto;
	max-width: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.our-team .team {
	width: 47%;
	background-color: #FFFFFF;
	padding: 35px 30px 35px 30px;
	margin: 30px auto;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0px 4px 19px 2px rgba(223, 221, 221, 0.25);
	position: relative;
}

.our-team .team:nth-child(9) {
	margin: 30px 20px 0 20px;
}

.our-team .row {
	display: flex;
	flex-wrap: wrap;
}

.our-team .team-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 15px;

	.team-img {
		width: 30%;
		margin-right: 15px;
	}

	.team-details {
		width: auto;

		h3 {
			font-weight: 700;
			font-size: 24px;
			line-height: 36px;
			font-family: 'Manrope', sans-serif;
		}

		p {
			color: #7a7a7a;
		}
	}
}

.our-team .team__item ul {
	padding: 0;
}

.our-team .team__item li {
	list-style: none;
}

@media (max-width: 1024px) {
	.home-hero .row {
		flex-wrap: wrap;
		flex-direction: column;

		.hero-img {
			justify-content: center;
		}
	}

	.our-team .row {
		flex-direction: column;

		.team {
			width: 100%;
		}

		.team-info {
			flex-direction: column;
			justify-content: center;
			text-align: center;

			.team-img,
			.team-details {
				width: 100%;
			}
		}
	}
}

#blog {
	background-color: #F9FAFB;
	padding: 90px 0 60px;
}

#blog .container {
	max-width: 1240px;
}

#blog .blog__wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

@media (max-width: 1023px) {
	#blog .blog__wrap {
		flex-wrap: wrap;
	}
}

#blog .blog__wrap .left-part {
	padding-right: 50px;
}

@media (max-width: 1023px) {
	#blog .blog__wrap .left-part {
		order: 2;
		padding-right: 0;
		width: 100%;
	}
}

#blog .blog__wrap .left-part .read-more-button {
	margin-top: 10px;
}

#blog .blog__wrap .left-part .read-more-button a {
	text-decoration: none;
	color: #F59500;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
}

#blog .blog__wrap .left-part .read-more-button .left-arrow {
	transform: rotate(-90deg);
	position: relative;
	top: -1px;
	margin-left: 4px;
}

#blog .blog__wrap .left-part .read-more-button .left-arrow path {
	fill: #F59500;
}

#blog .blog__wrap .right-part {
	max-width: 350px;
	width: 100%;
}

@media (max-width: 1023px) {
	#blog .blog__wrap .right-part {
		order: 1;
		margin-bottom: 40px;
		max-width: 100%;
	}
}

#blog .blog__wrap .right-part .categories__list {
	padding: 30px;
	box-shadow: 0 4px 19px 2px rgba(223, 221, 221, 0.25);
	border-radius: 10px;
}

#blog .blog__wrap .right-part .categories__list h3 {
	color: #2596FF;
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 36px;
	padding-bottom: 15px;
	position: relative;
}

#blog .blog__wrap .right-part .categories__list h3:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #8F8F8F;
	opacity: 0.2;
}

#blog .blog__wrap .right-part .categories__list a {
	padding: 15px 0;
	position: relative;
	display: block;
	text-decoration: none;
	color: #042552;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
}

#blog .blog__wrap .right-part .categories__list a:after {
	position: absolute;
	content: '';
	bottom: 0;
	width: 100%;
	left: 0;
	height: 1px;
	background-color: #8F8F8F;
	opacity: 0.2;
}

#blog .blog__wrap .right-part .categories__list-wrap {
	padding-bottom: 40px;
	position: relative;
}

#blog .blog__wrap .right-part .categories__list-wrap .button-more {
	position: relative;
}

#blog .blog__wrap .right-part .categories__list-wrap .button-more:after {
	position: absolute;
	content: '';
	width: 18px;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%) rotate(0deg);
	cursor: pointer;
	height: 10px;
	background: url("assets/images/down-arrow.svg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all 0.3s ease-in-out;
}

#blog .blog__wrap .right-part .categories__list-wrap a:nth-child(n+10) {
	display: none;
}

#blog .blog__wrap .right-part .categories__list-wrap.active a:nth-child(n+10) {
	display: block;
}

#blog .blog__wrap .right-part .categories__list-wrap.active .button-more:after {
	transform: translateX(-50%) rotate(180deg);
}

#blog h2 {
	position: relative;
	padding-left: 35px;
	font-weight: 400;
	margin-bottom: 40px;
}

#blog h2 b {
	font-weight: 700;
}

#blog h2:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background-color: #2596FF;
	border-radius: 10px;
}

.latest-posts {
	padding-bottom: 70px;
}

.latest-posts .navigation {
	display: none;
}

.latest-posts article h3 a {
	background-image: linear-gradient(-90deg, #042552, #042552 49.99%, #2596FF 50%, #2596FF);
	background-size: 200%;
	transition: all 0.5s cubic-bezier(0.47, 0, 0.745, 0.715);
	background-position: 100%;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.latest-posts article:hover h3 a {
	background-position: 0%;
}

.latest-posts article:not(:last-child) {
	margin-bottom: 40px;
}

.latest-posts h3 a {
	color: #042552;
	font-size: 24px;
	line-height: 36px;
	font-weight: 800;
	text-decoration: none;
	font-family: 'Manrope', sans-serif !important;
}

.latest-posts .post__item {
	display: flex;
	align-items: flex-start;
}

@media (max-width: 575px) {
	.latest-posts .post__item {
		flex-wrap: wrap;
	}
}

.latest-posts .post__item .left__part {
	padding-right: 20px;
}

@media (max-width: 575px) {
	.latest-posts .post__item .left__part {
		padding-right: 0;
	}
}

.latest-posts .post__item .left__part img {
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 10px;
}

@media (max-width: 575px) {
	.latest-posts .post__item .right__part {
		width: 100%;
		margin-top: 25px;
	}
}

.latest-posts .post__item .right__part p {
	opacity: 0.7;
}

.latest-posts .post__item .right__part .entry-meta p {
	color: #8F8F8F;
	font-size: 14px;
	line-height: 19px;
	margin: 10px 0;
}

.older-posts .nav-links {
	display: none;
}

.older-posts .navigation-new .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
}

.older-posts .navigation-new .nav-links .page-numbers {
	text-decoration: none;
	color: #8F8F8F;
	margin: 0 2px;
}

.older-posts .navigation-new .nav-links .page-numbers.current {
	color: #2596FF;
}

.older-posts .navigation-new .nav-links .page-numbers:hover {
	color: #2596FF;
}

.older-posts__wrap {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 -15px;
}

@media (max-width: 767px) {
	.older-posts__wrap {
		margin: 0;
	}
}

.older-posts article {
	padding: 0 15px;
	width: 25%;
	margin-bottom: 40px;
}

.older-posts article h3 a {
	background-image: linear-gradient(-90deg, #042552, #042552 49.99%, #2596FF 50%, #2596FF);
	background-size: 200%;
	transition: all 0.5s cubic-bezier(0.47, 0, 0.745, 0.715);
	background-position: 100%;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.older-posts article:hover h3 a {
	background-position: 0%;
}

@media (max-width: 1023px) {
	.older-posts article {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.older-posts article {
		width: 100%;
		padding: 0;
	}
}

.older-posts article a.post-thumbnail img {
	max-width: 390px;
	width: 100%;
	object-fit: cover;
	max-height: 200px;
	border-radius: 8px;
}

.older-posts article h3 a {
	font-size: 24px;
	font-weight: 800;
	color: #042552;
	font-family: 'Manrope', sans-serif;
	text-decoration: none;
}

.older-posts article .entry-meta p {
	color: #8F8F8F;
	font-size: 14px;
	line-height: 19px;
	margin: 10px 0;
}

.blog-post {
	padding: 100px 0 130px;
	background-color: #F9FAFB;
}

.blog-post .back-button {
	margin-top: 50px;
	max-width: 320px;
	transition: all 0.3s ease-in-out;
}

.blog-post .back-button:hover {
	transform: translateY(-3px);
}

.blog-post .back-button a {
	background-color: #F59500;
	color: #FFF;
	padding: 17px 25px;
	font-size: 18px;
	text-decoration: none;
	border-radius: 5px;
	font-family: 'Manrope', sans-serif;
	box-shadow: -12px 12px 50px rgba(255, 87, 34, 0.3);
}

.blog-post .container {
	max-width: 900px;
}

.blog-post figure {
	padding-bottom: 25px;
	margin-top: 30px;
}

.blog-post .entry-meta {
	font-size: 14px;
	line-height: 19px;
	color: #8F8F8F;
	margin: 10px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding-bottom: 60px;
}

.blog-post .entry-meta:after {
	position: absolute;
	content: '';
	width: 100%;
	bottom: 39px;
	height: 1px;
	background-color: rgba(143, 143, 143, 0.2);
	left: 0;
}

.blog-post .entry-meta .share-button-wrapper a {
	text-decoration: none;
}

.blog-post .entry-meta .share-button-wrapper a:not(:last-child) {
	margin-right: 15px;
}

.blog-post .entry-meta .share-button-wrapper a .icon circle {
	stroke: #B1B1B1;
	transition: all 0.3s ease-in-out;
}

.blog-post .entry-meta .share-button-wrapper a .icon path {
	fill: #B1B1B1;
	transition: all 0.3s ease-in-out;
}

.blog-post .entry-meta .share-button-wrapper a:hover .icon circle {
	stroke: #2596FF;
}

.blog-post .entry-meta .share-button-wrapper a:hover .icon path {
	fill: #2596FF;
}

.blog-post p{
	color: rgba(4, 37, 82, 0.7);
    opacity: 1;
}


.blog-post h3 {
	font-size: 65px;
	line-height: 72px;
	font-weight: 800;
	margin-bottom: 25px;
}

.blog-post h3 em {
	font-size: 24px;
	font-weight: 800;
	line-height: 36px;
	font-family: 'Manrope', sans-serif !important;
	font-style: normal;
}

.blog-post h3 em strong {
	font-weight: 800;
}

.blog-post h3 strong {
	font-size: 24px;
	font-weight: 800;
	line-height: 36px;
	font-family: 'Manrope', sans-serif !important;
	font-style: normal;
}

@media (max-width: 767px) {
	.blog-post h3 {
		font-size: 40px;
		line-height: 48px;
	}
}

.blog-post h3 a {
	text-decoration: none;
	color: #042552;
}

.archive .site-main {
	padding: 120px 0 100px;
	background-color: #F9FAFB;
}

.archive h1 {
	margin-bottom: 50px;
	font-size: 45px !important;
	line-height: 58px !important;
	position: relative;
	padding-left: 35px;
}

@media (max-width: 767px) {
	.archive h1 {
		font-size: 36px !important;
		line-height: 44px !important;
	}
}

.archive h1:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 10px;
	height: 100%;
	background-color: #2596FF;
	border-radius: 10px;
}

.archive article {
	width: 33.33%;
	padding: 0 20px;
	margin-bottom: 30px;
}

@media (max-width: 1023px) {
	.archive article {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.archive article {
		width: 100%;
	}
}

.archive article .entry-meta p {
	color: #8F8F8F;
	font-size: 14px;
	line-height: 19px;
	margin: 5px 0;
}

.archive article .post-thumbnail img {
	max-height: 200px;
	object-fit: cover;
	border-radius: 10px;
}

.archive article .entry-title a {
	font-size: 24px;
	font-weight: 800;
	font-family: 'Manrope', sans-serif;
	background-image: linear-gradient(-90deg, #000, #000 49.99%, #2596FF 50%, #2596FF);
	background-size: 200%;
	transition: all 0.5s cubic-bezier(0.47, 0, 0.745, 0.715);
	background-position: 100%;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.archive article:hover .entry-title a {
	background-position: 0%;
}

.archive__wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
}

.privacy .subtitle p {
	opacity: 1;
	font-family: 'Manrope', sans-serif;
	font-weight: 500 !important;
	font-size: 16px !important;
	line-height: 19px;
	padding-bottom: 60px;
	position: relative;
	color: #8F8F8F;
}

.privacy .subtitle p:after {
	position: absolute;
	content: '';
	bottom: 29px;
	width: 100%;
	height: 1px;
	left: 0;
	opacity: 0.2;
	background-color: #8F8F8F;
}

.privacy .subtitle p a {
	color: #2596FF;
}

.privacy .navigation-box {
	margin-bottom: 50px;
}

.privacy .navigation-box h3 {
	font-family: 'Manrope', sans-serif !important;
	font-size: 24px !important;
}

.privacy .navigation-box ul li a {
	color: #4E6585 !important;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 36px;
}

.privacy .navigation-box ul li a span {
	color: #4E6585 !important;
}

.privacy .list__item p {
	position: relative;
	padding-left: 17px;
}

.privacy .list__item p:after {
	position: absolute;
	content: '';
	left: 0;
	top: 11px;
	width: 7px;
	height: 15px;
	background-color: #F59500;
}

.privacy p a {
	color: #2596FF !important;
}

.privacy h3.elementor-heading-title.elementor-size-default {
	font-size: 24px;
	font-weight: 800;
	font-family: 'Manrope', sans-serif !important;
}

.not-found {
	padding: 100px 0 130px;
}

.not-found h1 {
	padding-bottom: 30px;
}

.not-found .search-form {
	padding: 50px 0;
}

.not-found .search-form input[type="search"] {
	border: 2px solid rgba(143, 143, 143, 0.3);
	font-weight: 400 !important;
	font-size: 14px;
	padding: 21px 25px;
	border-radius: 5px;
}

@media (max-width: 475px) {
	.not-found .search-form input[type="search"] {
		display: block;
		margin-bottom: 20px;
		width: 100%;
	}
}

.not-found .search-form input[type="search"]::placeholder {
	font-size: 14px;
	font-weight: 400 !important;
	font-family: 'Manrope', sans-serif !important;
}

.not-found .search-form input[type="submit"] {
	outline: 0;
	border: 0;
	margin-left: 20px;
	font-weight: 400 !important;
	font-size: 16px;
	padding: 20px 25px;
	border-radius: 5px;
	background-color: #F59500;
	color: #FFF;
	font-family: 'Manrope', sans-serif;
	box-shadow: -12px 12px 50px rgba(255, 87, 34, 0.3);
}

@media (max-width: 475px) {
	.not-found .search-form input[type="submit"] {
		margin-left: 0;
	}
}

.not-found .widget.widget_recent_entries .widgettitle {
	margin-bottom: 30px;
}

.not-found .widget.widget_recent_entries ul li {
	list-style-type: none;
}

.not-found .widget.widget_recent_entries ul li a {
	color: #2596FF;
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1440px;
	padding: 0 30px;
	margin: 0 auto;
	min-width: 320px;
}

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

main {
	padding-top: 100px;
	background-color: #F9FAFB;
}

section {
	padding-left: 30px !important;
	padding-right: 30px !important;
}

@media (max-width: 575px) {
	section {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}
}

main.other-page {
	padding: 65px 0 100px 0;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	overflow: hidden;
	position: relative;

}

main.other-page .container-wrapper {
	width: 100%;
	max-width: 900px;
	padding: 0 30px;
	margin: 0 auto;
}

.other-page .title {
	font-size: 65px !important;
	line-height: 72px !important;
	font-weight: 400;
	color: #7a7a7a;
	text-align: center;
	padding: 10px;
}

.other-page .img {
	padding: 10px;

	img {
		display: flex;
		height: auto;
		max-width: 100%;
		border: none;
		border-radius: 0;
		box-shadow: none;
		margin: 0 auto;
	}
}

.other-page .subtitle {
	color: #7a7a7a;
	padding: 10px;
}

.other-page .desc {
	padding-top: 50px;
}

..other-page .desc p {
	color: #7a7a7a;
}

.other-page .desc a {
	box-shadow: none;
	text-decoration: none;
	font-weight: 800;
}

.other-page .desc h3 {
	color: #7a7a7a;
	padding: 10px 0;
}

.other-page .desc div,
.other-page .desc ul li,
.other-page .desc div,
.other-page .desc ul li,
.other-page .desc ol li {
	color: #7a7a7a;
	font-size: 18px;
	line-height: 36px;
	font-weight: 600 !important;
	font-family: 'Manrope', sans-serif !important;
}


.steps1 .row {
	display: flex;
	position: relative;
	margin: 0 auto;
	justify-content: flex-start;
	padding: 15px;
	gap: 20px;
}

.steps2 .row {
	display: flex;
	position: relative;
	margin: 0 auto;
	justify-content: flex-end;
	padding: 25px 15px 60px 15px;
	gap: 20px;
}

.step1-wrapper,
.step2-wrapper {
	max-width: 345px;
}

.step1-content,
.step2-content {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.step-title h3 {
	font-size: 45px;
	line-height: 58px;
	font-weight: 700 !important;
	color: #4E6585 !important;
}

.step-description {
	text-align: center;
	color: #7a7a7a;
}

.separator {
	padding: 40px 0;
}

.separator .separator-wrapper {
	display: flex;
	justify-content: center;
}


.steps-1 img,
.separator img,
.steps-2 img {
	height: auto;
	max-width: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

section.cta {
	padding: 10px 0 100px 0;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	overflow: hidden;
	position: relative;
}

.cta-wrapper {
	display: flex;
	justify-content: center;
}

.cta-wrapper a.btn {
	font-family: "Manrope", Sans-serif;
	font-size: 18px;
	font-weight: 500;
	background-color: #F59500;
	padding: 21px 53px 21px 53px;
	box-shadow: -12px 12px 50px rgba(255, 87, 34, 0.3);
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: all .3s;
	border-radius: 3px;
}

.cta-wrapper a.btn:hover {
	transform: translateY(-3px);
}


@media (min-width: 768px) {

	.step1-wrapper,
	.step2-wrapper {
		width: 33.333%;
	}
}

@media (max-width: 767px) {

	.step1-wrapper,
	.step2-wrapper {
		width: 100%;
	}

	.steps1 .row,
	.steps2 .row {
		flex-direction: column;
		align-items: center;
	}

	.separator {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.separator {
		display: none;
	}
}


.contact-wrapper {
	padding: 30px 0;
}

.contact-info {
	display: flex;
	gap: 20px;
	align-items: center;
}

.home-hero .hero-left .contact-details p {
	opacity: 1 !important;
	color: #042552;
}

.home-hero .hero-left .contact-details p a {
	opacity: 1 !important;
	color: #042552;
	text-decoration: none;
}

.home-hero .hero-left .contact-details h3 a {
	opacity: 1 !important;
	color: #042552;
	text-decoration: none;
}

.block-2 .row.location {
	flex-direction: row;
}

.block-2 .row.location .block-img {
	width: 50%;
	justify-content: center;
	padding: 0px 75px 0px 0px;
}

.block-2 .row.location .block-content {
	width: 50%;
}

.block-2 .row.location .block-row {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	gap: 20px;
	align-items: center;
}

.block-2 .row.location .row-desc h3 {
	font-size: 18px;
	font-weight: 500;
	line-height: 30px;
}

@media (max-width: 1024px) {

	.block-2 .row.location {
		flex-direction: column;
	}

	.block-2 .row.location .block-content {
		width: 100%;
	}

	.block-2 .row.location .block-img {
		width: 100%;
		justify-content: center;
		padding: 50px 0;
	}
}

.terms-and-condition_desc.terms-title {
	opacity: 1;
	font-family: 'Manrope', sans-serif;
	font-weight: 500 !important;
	font-size: 16px !important;
	line-height: 19px;
	padding-bottom: 60px;
	position: relative;
	color: #8F8F8F;
}

.terms-and-condition_desc.terms-title:after,
.privacy-policy_desc.policy-title:after {
	position: absolute;
	content: '';
	bottom: 29px;
	width: 100%;
	height: 1px;
	left: 0;
	opacity: 0.2;
	background-color: #8F8F8F;
}

.terms-and-condition_desc p a,
.privacy-policy_desc p a{
	color: #2596FF !important;
	text-decoration: none;
}

.terms-and-condition .h3,
.privacy-policy_desc .h3{
	margin-bottom: 20px;
}

.terms-and-condition_sub_title,
.privacy-policy_sub_title{
	margin-bottom: 20px;
}

.terms-and-condition_desc,
.privacy-policy_desc{
	margin-bottom: 30px;
}

.terms-and-condition_desc p,
.privacy-policy_desc p{
	color: #042552;
	opacity: 0.7;
	padding-left: 20px;
}

.terms-and-condition_desc span,
.privacy-policy_desc span{
	margin-right: 10px;
}

.terms-and-condition_desc .with-marker {
	position: relative;
	margin-left: 20px;
}

.terms-and-condition_desc p.with-marker-1:after,
.terms-and-condition_desc p.with-marker-2:after,
.terms-and-condition_desc p.with-marker-3:after {
	position: absolute;
	content: '';
	left: 0;
	top: 11px;
	width: 7px;
	height: 15px;
	background-color: #F59500;
}

.navigation ul{
	list-style: none;
}

.navigation li a {
	color: #4E6585 !important;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 36px;
	text-decoration: none;
}

.terms-and-condition_desc.navigation {
	margin-bottom: 51px;
}

.aligncenter {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.alignleft {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 0 0;
}

.alignright {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 0 0 auto;
}

main.simple-page {
    padding: 65px 0 100px 0;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
}

main.simple-page .container-wrapper {
    width: 100%;
    max-width: 900px;
    padding: 0 30px;
    margin: 0 auto;
}

.simple-page h1 {
    color: #7a7a7a;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

.simple-page h2 {
    color: #7a7a7a;
    padding: 10px 10px 40px;
}

.simple-page p, 
.simple-page ul {
    padding-top: 10px;
	color: #7a7a7a;
    font-family: 'Manrope', sans-serif !important;
}

.simple-page p a {
    box-shadow: none;
    text-decoration: none;
    font-weight: 800;
}

/*# sourceMappingURL=style.css.map */