@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Manrope:wght@200..800&display=swap');

body {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #07133b;
	background: #fff
}
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background-color: #e9ecef;
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
    background: #b5c6d7; 
}
.z-index-1 {
	z-index: 1 !important;
}
.overflow-hidden {
	overflow: hidden !important;
}
a {
	color: #3772ff;
	transition: all 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Manrope", sans-serif;
	font-weight: 800;
	line-height: 1.3;
}
h1 {
	font-size: clamp(1.75rem, 1.4327rem + 1.4103vw, 3.125rem);
	line-height: 1.2
}
h2 {
	font-size: clamp(1.875rem, 1.6731rem + 0.8974vw, 2.75rem);
	line-height: 1.25
}
h3 {
	font-size: clamp(1.5rem, 1.4135rem + 0.3846vw, 1.875rem);
	line-height: 1.4;
}
h4 {
	font-size: 20px
}
.bg-light {
	background-color: #f2f5f8!important;
}
.bg-light-blue {
	background-color: #e0efff!important;
}
.bg-dark {
	background-color: #07133b!important;
}
.bg-dark-gradient {
    background-image: linear-gradient(to bottom right, #07133b 0, #004085 110%);
}
.bg-light-gradient {
    position: relative;
}
.bg-light-gradient:after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70vw;
    height: 70vw;
    filter: blur(100px);
    background-size: 30%;
    background-image: radial-gradient(100% 70% at 50% 50%, rgba(233, 249, 244, .8) 10.92%, rgba(207, 235, 254, .8) 31.75%, rgba(242, 238, 254, .8) 57.04%, transparent 80%);
}
.bg-light-gradient > * {
    position: relative;
    z-index: 1;
}
.lead {
    font-weight: 400;
    line-height: 1.5;
}
.text-lg {
    font-size: 18px;
}
.text-light {
	color: #e9ecef !important;
}
.text-info {
	color: #25cade !important;
}
.text-underline {
	position: relative;
	display: inline-block;
}
.text-underline:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #3772ff;
}
.rounded {
	border-radius: 24px !important;
}
.rounded-sm {
	border-radius: 10px;
}
.btn {
	font-size: 15px;
	padding: 20px 40px;
	border-radius: 10px;
	transition: .5s ease;
	font-weight: 600;
	letter-spacing: 1px
}
.btn-sm {
	padding: 12px 24px;
	font-size: 14px
}
.btn-md {
	padding: 16px 32px;
	font-size: 14px
}
.btn-outline-primary {
	border-width: 2px;
	text-transform: uppercase;
}
.btn-primary {
	position: relative;
	border: 2px solid #3772ff;
	color: #3772ff;
	overflow: hidden;
	text-transform: uppercase;
	background: transparent;
}
.btn-primary span {
	display: block;
	position: relative;
	transition: .9s cubic-bezier(0.77, 0, 0.175, 1)
}
.btn-primary::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #3772ff;
	left: 0;
	top: 0;
	transform: scaleY(0);
	transform-origin: bottom center;
	transition: .5s cubic-bezier(0.77, 0, 0.175, 1)
}
.btn-primary::after {
	content: attr(data-text);
	color: #fff;
	font-size: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, calc(-50% - 10px));
	opacity: 0;
	transition: .9s cubic-bezier(0.77, 0, 0.175, 1)
}
.btn-primary:hover {
	color: #3772ff;
	border-color: #3772ff;
	background: transparent;
}
.btn-primary:hover span {
	transform: translateY(10px);
	opacity: 0
}
.btn-primary:hover::before {
	transform: scaleY(1)
}
.btn-primary:hover::after {
	transform: translate(-50%, -50%);
	opacity: 1
}
.btn-platform {
	display: inline-flex;
	padding: 15px 40px;
	border: 2px solid #212529;
	align-items: center;
	text-align: left;
	border-radius: 10px;
	font-weight: 600;
	transition: all .2s ease-in-out
}
@media(max-width:1199px) {
	.btn-platform {
		padding: 15px 30px
	}
}
@media(max-width:575px) {
	.btn-platform {
		justify-content: center
	}
}
.btn-platform i {
	font-size: 34px;
	color: #212529;
	transition: all .3s ease-in-out
}
.btn-platform i svg {
	fill: #212529;
	transition: all .3s ease-in-out
}
.btn-platform-area {
	color: #212529;
	font-size: 18px;
	margin-left: 12px;
	text-transform: uppercase;
	transition: all .3s ease-in-out
}
@media(max-width:575px) {
	.btn-platform-area {
		font-size: 14px
	}
}
.btn-platform-area span {
	margin-bottom: -4px;
	display: block;
	font-size: 14px;
	font-weight: 400;
	text-transform: none;
	color: #8c8c94;
	transition: all .3s ease-in-out;
}
@media(max-width:575px) {
	.btn-platform-area span {
		font-size: 12px
	}
}
.btn-platform:hover {
	text-decoration: none;
	background-color: #3772ff;
	border-color: #3772ff;
	box-shadow: 0 20px 20px -15px rgba(0, 86, 179, 0.2);
	transform: translateY(-4px)
}
.btn-platform:hover i {
	color: #fff;
}
.btn-platform:hover i svg {
	fill: #fff
}
.btn-platform:hover .btn-platform-area {
	color: #fff
}
.btn-platform:hover .btn-platform-area span {
	color: #fff
}
.btn-platform-inverse {	
	background-color: #212529;	
	border-color: #212529;
	color: #fff;
}
.btn-platform-inverse i,
.btn-platform-inverse .btn-platform-area {
	color: #fff;
}
.btn-platform-inverse .btn-platform-area span {
	color: #ced4da;
}
.btn-platform-inverse:hover {
	background-color: #3772ff;
	border-color: #3772ff;
}

.btn-primary-filled {
	color: #fff;
	background-color: #3772ff;
	font-weight: 600;
	box-shadow: 0 20px 20px -15px rgba(0, 86, 179, 0.2);
	transition: .2s cubic-bezier(0.77, 0, 0.175, 1);
	text-transform: uppercase
}
.btn-primary-filled:hover {
	transform: translateY(-4px)
}
.main-nav {
	padding: 25px 35px;
	transition: all .5s ease-in-out;
	position: fixed;
	z-index: 99;
	top: 0;
	width: 100%
}
@media(max-width:991px) {
	.main-nav {
		text-align: center;
		padding: 20px 30px;
		width: 95%;
		margin: 20px auto;
		border-radius: 8px;
		background: #fff;
		box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.09)
	}
}
@media(max-width:575px) {
	.main-nav {
		padding: 15px 20px
	}
}
.main-nav .navbar-nav .nav-item .nav-link {
	color: #212529;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 16px;
	white-space: nowrap;
	padding-left: 1.5vw;
	padding-right: 1.5vw;
	position: relative;
	z-index: 1;
	transition: all .5s ease-in-out;
}
.main-nav .navbar-nav .nav-item .nav-link:hover,
.main-nav .navbar-nav .nav-item .nav-link.active {
	color: #3772ff;
}
@media(max-width:991px) {
	.main-nav .navbar-collapse {
		margin-top: 24px;
		padding: 8px 0;
		border-top: 1px solid #dee2e6;
	}
	.main-nav .navbar-nav .nav-item .nav-link {
		font-size: 16px;
		padding: 15px 0
	}
}
.main-nav .navbar-brand img {
	width: 128px
}
@media(max-width:575px) {
	.main-nav .navbar-brand img {
		width: 120px
	}
}
.main-nav .account-list {
	margin-left: 30px;
	display: flex;
	align-items: center
}
@media(max-width:991px) {
	.main-nav .account-list {
		justify-content: center;
		margin-left: 0
	}
}
.main-nav .account-list li a {
	color: #fff;
	background-color: #3772ff;
	font-size: 14px;
	box-shadow: 0 20px 20px -15px rgba(0, 86, 179, 0.2);
	transition: .3s cubic-bezier(0.77, 0, 0.175, 1);
	text-transform: uppercase;
	white-space: normal;
}
.main-nav .account-list li a:hover {
	background-color: #348aff;
}
@media(max-width:991px) {
	.main-nav .account-list li a {
		margin-top: 20px
	}
}
@media(max-width:575px) {
	.main-nav .account-list li a {
		display: block
	}
}
.main-nav .navbar-toggler {
	outline: 0;
	padding: 0
}
.main-nav .navbar-toggler .icon-bar {
	width: 25px;
	height: 2px;
	background: #3772ff;
	transition: all .2s;
	display: block
}
.main-nav .navbar-toggler .icon-bar:not(:last-child) {
	margin-bottom: 5px
}
.main-nav .navbar-toggler .icon-bar:nth-child(1) {
	transform: rotate(45deg);
	transform-origin: 10% 10%
}
.main-nav .navbar-toggler .icon-bar:nth-child(2) {
	opacity: 0;
	filter: alpha(opacity=0)
}
.main-nav .navbar-toggler .icon-bar:nth-child(3) {
	transform: rotate(-45deg);
	transform-origin: 10% 90%
}
.main-nav .navbar-toggler.collapsed .icon-bar:nth-child(1) {
	transform: rotate(0)
}
.main-nav .navbar-toggler.collapsed .icon-bar:nth-child(2) {
	opacity: 1;
	filter: alpha(opacity=1)
}
.main-nav .navbar-toggler.collapsed .icon-bar:nth-child(3) {
	transform: rotate(0)
}
.main-nav.nav-bg {
	background: #fff;
	padding: 15px;
	border: 0;
	box-shadow: 0 10px 20px 0 rgba(50, 99, 141, 0.05);
	top: 0
}
@media(max-width:991px) {
	.main-nav.nav-bg {
		padding: 20px 30px
	}
}
@media(max-width:575px) {
	.main-nav.nav-bg {
		padding: 15px 20px
	}
}
.main-nav.nav-bg .navbar-brand .logo-main {
	display: block
}
.main-nav.nav-bg .navbar-brand .logo-white {
	display: none
}
.main-nav.nav-bg .nav-link::before {
	background: #e6e6e6 !important
}
.headroom {
	position: fixed;
	top: 0;
	left: 0;
	right: 0
}
.headroom--unpinned {
	top: -150px !important
}
.headroom--pinned {
	top: 0
}
.hero {
	position: relative;
	padding: 150px 0 100px;
	overflow: hidden
}
.hero-inner {
	min-height: 100vh;
}
@media(max-width:991px) {
	.hero {
		text-align: center
	}
}
@media(max-width:767px) {
	.hero {
		padding: 120px 0 80px
	}
}
@media(max-width:575px) {
	.hero {
		padding: 100px 0 50px
	}
}
.hero-shape {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0
}
.hero-shape svg:first-child {
	position: absolute;
	top: 0;
	right: 0;
	width: 48%
}
.hero-shape svg:last-child {
	width: 10%;
	position: absolute;
	top: 0;
	left: 0
}
.hero-shape-01 {
	position: absolute;
	top: 0;
	left: 53%;
	width: 800px;
	height: 800px;
	background-image: url(../images/shape-01.png);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.hero-shape-02 {
	position: absolute;
	top: -250px;
	left: -700px;
	width: 1000px;
	height: 1000px;
	background-image: url(../images/shape-02.png);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.content-subtitle {
	font-size: 14px;
	font-weight: 700;
	color: #007bff;
	text-transform: uppercase;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	letter-spacing: 0.2rem
}
.content-subtitle_dash {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-right: 16px;
  background-color: #007bff;
}
.content-subtitle_dash.mod--invert {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}
.hero-content h1 {
	margin-bottom: 40px
}
.hero-content p {
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 48px
}
@media(max-width:768px) {
	.hero-content p {
		font-size: 16px;
		line-height: 28px
	}	
	.hero-content .content-subtitle {
		justify-content: center;
	}
}
.hero-content-buttons,
.video-content-buttons {
	padding-left: 0;
	margin: 0;
	list-style: none
}
.hero-content-buttons li,
.video-content-buttons li {
	display: inline-block
}
.hero-content-buttons li:not(:last-child),
.video-content-buttons li:not(:last-child) {
	margin-right: 15px
}
@media(max-width:575px) {
	.hero-content-buttons li:not(:last-child),
	.video-content-buttons li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 20px
	}
}
@media(max-width:575px) {
	.hero-content-buttons li,
	.video-content-buttons li {
		display: block
	}
}
.hero-image {
	margin-right: -80px
}
.hero-image img {
	max-width: 100%
}
@media(max-width:991px) {
	.hero-image {
		margin: 0 auto 40px;
		width: 70%
	}
}
@media(max-width:767px) {
	.hero-image {
		width: 80%
	}
}
@media(max-width:575px) {
	.hero-image {
		width: 100%;
		margin: 0 0 20px
	}
}
.hero-svg-icon {
	position: absolute;
	top: 0;
	right: -505px;
	width: 99%
}
.hero-svg-icon svg path:first-child {
	fill: #ffecee
}
.range {
	padding-bottom: 100px;
	position: relative;
	border-radius: 40px;
	margin: 200px 80px 0
}
@media(max-width:1400px) {
	.range {
		margin: 200px 50px 0
	}
}
@media(max-width:1199px) {
	.range {
		margin: 200px 30px 0
	}
}
@media(max-width:991px) {
	.range {
		margin: 100px 30px 0;
		border-radius: 25px
	}
}
@media(max-width:767px) {
	.range {
		padding-bottom: 50px;
		margin: 70px 15px 0
	}
}
.range-iframe {
	margin-top: -200px;
	position: relative;
}
.range-iframe:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to top, rgba(0, 64, 133, .8) 0, rgba(0, 64, 133, 0) 110%);
	border-radius: 26px;
}
.range-iframe img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 26px;
	overflow: hidden;
}
.range-iframe .section-shapes {
	border-radius: 24px;
	overflow: hidden;
}
.range-title {
	position: absolute;
	z-index: 10;
	top: 0;
	height: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
	padding: 0 5%;
}
.range-title h2 {
	font-size: clamp(1.875rem, 1.1538rem + 3.2051vw, 5rem);
	color: #fff;
	font-weight: 800;
}
@media(max-width:991px) {
	.range-iframe {
		margin: -100px auto 0
	}
}
@media(max-width:767px) {
	.range-iframe {
		margin: -70px auto 0;
		height: 200px;
	}
	.range-title h2 {
		font-size: 2.5rem;
	}
}
.video-icon {
	position: absolute;
	border: 2px solid white;
	border-radius: 50%;
	background: #fff;
	z-index: 1;
	width: 90px;
	height: 90px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}
@media(max-width:767px) {
	.video-icon {
		width: 70px;
		height: 70px
	}
}
@media(max-width:400px) {
	.video-icon {
		width: 60px;
		height: 60px
	}
}
.video-icon i {
	color: red;
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	font-size: 30px;
	transform: translate(-50%, -50%)
}
.range-content {
	text-align: center
}
@media(max-width:400px) {
	.range-content {
		margin-top: 50px
	}
}
.range-content h3 {
	margin: 64px 0;
}
@media(max-width:767px) {
	.range-content h3 {
		margin: 40px 0 30px
	}
}
@media(max-width:575px) {
	.range-content h3 {
		font-size: 22px;
	}
}
@-webkit-keyframes grow {
	0% {
		transform: scale(0.9) translate(-50%, -50%)
	}
	100% {
		transform: scale(1) translate(-50%, -50%)
	}
}
@keyframes grow {
	0% {
		transform: scale(0.9) translate(-50%, -50%)
	}
	100% {
		transform: scale(1) translate(-50%, -50%)
	}
}

@-webkit-keyframes move_left {
	0% {
		transform: translateX(-50%)
	}
	50% {
		transform: translateX(-57%)
	}
}
@keyframes move_left {
	0% {
		transform: translateX(-50%)
	}
	50% {
		transform: translateX(-57%)
	}
}

@-webkit-keyframes move_top {
	0%, 100% {
		transform: translateY(0)
	}
	50% {
		transform: translateY(15px)
	}
}
@keyframes move_top {
	0%, 100% {
		transform: translateY(0)
	}
	50% {
		transform: translateY(15px)
	}
}
.section-padding {
	padding: 100px 0;
}
.section-shapes {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0
}
.section-shape-01 {
	position: absolute;
	top: -10%;
	left: 55%;
	transform: rotate(90deg);
	width: 1000px;
	height: 1000px;
	background-image: url(../images/shape-02.png);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.section-shape-02 {
	position: absolute;
	top: -10%;
	left: 55%;
	width: 750px;
	height: 750px;
	background-image: url(../images/shape-05.png);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;	
	transform: rotate(270deg);
}
.section-shape-03 {
	position: absolute;
	top: 10%;
	left: 10%;
	transform: translateX(-50%) rotate(30deg);
	width: 750px;
	height: 750px;
	background-image: url(../images/shape-02.png);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;	
}
.section-shape-04 {
    position: absolute;
    top: -100%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background-image: url(../images/shape-06.png);
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.section-shape-05 {
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    height: 400px;
    background-image: url(../images/banner-img-01.png);
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
@media(max-width:575px) {
	.section-shape-01 {
	    top: -8%;
	    left: 30%;
	    width: 500px;
	    height: 500px;
	}
	.section-shape-05 {
		top: unset;
		bottom: 0;
	}
}
@media(max-width:991px) {
	.section-shape-03 {
		top: 0;
		left: 15%;
		width: 500px;
		height: 500px;
	}
}
.section-title {
	text-align: center;
	margin-bottom: 50px
}
@media(max-width:575px) {
	.section-title {
		margin-bottom: 0
	}
	.banner {
		padding-bottom: 320px!important;
	}
}

.form-control {
	min-height: 52px;
	margin-bottom: 30px;
	padding: 15px 20px;
	font-size: 15px;
	background: rgba(233, 236, 239, 0.75);
	border-radius: 6px;
	border-color: transparent;
	transition: .3s ease
}
.form-control:focus {
	box-shadow: none;
	border-color: #3772ff;
	box-shadow: 0 5px 25px rgba(25, 24, 29, 0.06)
}
.privacy-policy {
	margin-top: 200px !important
}
.service {
	padding: 60px 0 80px
}
@media(max-width:400px) {
	.service {
		padding-bottom: 0
	}
}
.service-hadding h1 {
	text-align: center;
	font-weight: 700;
	margin-bottom: 60px
}
.service-item {
	position: relative;
	background: #fff;
	background: #fff;
	box-shadow: 0 20px 25px rgba(50, 99, 141, 0.1);
	margin-bottom: 20px;
	margin-top: 10px;
	border-radius: 10px;
	padding: 20px 30px 40px;
	transition: all .3s cubic-bezier(0.77, 0, 0.175, 1);
	overflow: hidden
}
.service-item::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 4px;
	left: 0;
	bottom: 0;
	z-index: 1;
	transform: scaleX(0);
	transition: transform .5s cubic-bezier(0.77, 0, 0.175, 1);
}
.service-item:hover {
	box-shadow: 0 30px 40px rgba(50, 99, 141, 0.2);
	transform: translateY(-4px);
}
.service-item:hover::after {
	transform: scaleX(1);
	transform-origin: left
}
.service-item.cyan .service-icon svg path:first-child {
	fill: #62eeff
}
.service-item.cyan::after {
	background: #62eeff
}
.service-item.blue .service-icon svg path:first-child {
	fill: #007bff
}
.service-item.blue::after {
	background: #007bff
}
.service-item.sky .service-icon svg path:first-child {
	fill: #1eb1ff
}
.service-item.sky::after {
	background: #1eb1ff
}
.service-item.yellow .service-icon svg path:first-child {
	fill: #ffd507
}
.service-item.yellow::after {
	background: #ffd507
}
.service-icon {
	position: relative;
	width: 128px;
	height: 128px;
}
.service-icon svg {
	position: absolute;
	height: 100%;
	width: auto;
	left: 50%;
	transform: translateX(-50%)
}
.service-icon .icon-decor {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../images/shape-03.png);
}
.service-icon .icon-decor-1 {
	top: -20px;
	transform: translateX(-60%);
}
.service-icon .icon-decor-2 {
	background-image: url(../images/shape-01.png);
	transform: translateX(-45%) rotate(270deg);
}
.service-icon .icon-decor-3 {
	top: 15px;
	transform: translateX(-50%) rotate(60deg);
	background-image: url(../images/shape-07.png);
}
.service-icon i {
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 40px;
	color: #000;
	display: inline-block
}
.service-content img {
	width: 45%;
	padding-top: 20px
}
.service-content h4 {
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 10px;
}
.service-content p {
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 0
}
.feature {
	position: relative;
	overflow: hidden
}
@media(max-width:991px) {
	.feature {
		text-align: center;
		padding-bottom: 80px
	}
}
.feature-image {
	position: relative;
	text-align: center
}
.feature-image img {
	max-width: 100%
}
@media(max-width:991px) {
	.feature-image-shape1 {
		left: -13% !important
	}
}
@media(max-width:767px) {
	.feature-image-shape1 {
		left: -17% !important
	}
}
@media(max-width:991px) {
	.feature-image-shape2 {
		right: 5% !important
	}
}
@media(max-width:767px) {
	.feature-image-shape2 {
		right: -10% !important
	}
}
@media(max-width:991px) {
	.feature-image-shape3 {
		right: -7% !important
	}
}
@media(max-width:767px) {
	.feature-image-shape3 {
		right: -9% !important
	}
}
@media(max-width:991px) {
	.feature-image-shape4 {
		left: -5% !important
	}
}
@media(max-width:767px) {
	.feature-image-shape4 {
		left: -15% !important
	}
}
@media(max-width:991px) {
	.feature-content {
		margin-bottom: 30px
	}
}
.feature-content h2 {
	margin-bottom: 30px
}
.feature-content p,
.feature-content ul {
	line-height: 1.6;
	margin-bottom: 24px
}
.faq {
	padding: 100px 0
}
@media(max-width:767px) {
	.faq {
		padding: 50px 0
	}
}
@media(max-width:991px) {
	.faq-content {
		text-align: center;
		margin-bottom: 30px
	}
}
.faq-content h2 {
	margin-bottom: 25px
}
@media(max-width:767px) {
	.faq-content h2 {
		font-size: 30px;
		line-height: 40px
	}
}
@media(max-width:575px) {
	.faq-content h2 {
		font-size: 20px;
		line-height: 30px
	}
}
@media(max-width:400px) {
	.faq-content h2 {
		font-size: 18px
	}
}
@media(max-width:575px) {
	.faq-content p {
		font-size: 14px
	}
}
.faq-accordion {
	border-radius: 10px
}
.faq-accordion-item {
	margin-bottom: 25px;
	border-radius: 6px;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
	padding: 20px 30px
}
.faq-accordion-item .header {
	position: relative
}
.faq-accordion-item .header h5 {
	position: relative
}
.faq-accordion-item .header h5::before {
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 4px;
	background-color: rgba(255, 77, 107, 0.1);
	right: 0;
	top: 50%;
	transform: translateY(-50%)
}
.faq-accordion-item .header h5 .btn {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	color: #212529;
	white-space: unset;
	position: relative;
	letter-spacing: 0
}
@media(max-width:575px) {
	.faq-accordion-item .header h5 .btn {
		font-size: 16px
	}
}
.faq-accordion-item .header h5 .btn:before,
.faq-accordion-item .header h5 .btn:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	right: 6.5px;
	background: #3772ff;
	transform: translateY(-50%) rotate(0);
	transition: transform .5s ease
}
.faq-accordion-item .header h5 .btn.collapsed:after {
	transform: translateY(-50%) rotate(270deg)
}
.faq-accordion-item .body {
	color: #8c8c94;
	font-size: 15px;
	line-height: 25px;
	padding: 20px 0 10px
}
@media(max-width:575px) {
	.faq-accordion-item .body {
		font-size: 14px;
		line-height: 22px
	}
}
.testimonial {
	padding: 50px 0 100px;
	overflow: hidden
}
@media(max-width:991px) {
	.testimonial {
		padding-top: 100px
	}
}
@media(max-width:767px) {
	.testimonial {
		padding: 50px 0
	}
}
@media(max-width:400px) {
	.testimonial {
		margin-top: 50px
	}
}
@media(max-width:991px) {
	.testimonial-content {
		text-align: center;
		margin-bottom: 30px
	}
}
.testimonial-content h2 {
	margin-bottom: 25px;
	font-size: 40px
}
@media(max-width:991px) {
	.testimonial-content h2 {
		font-size: 35px
	}
}
@media(max-width:575px) {
	.testimonial-content h2 {
		font-size: 20px;
		line-height: 30px
	}
}
@media(max-width:575px) {
	.testimonial-content p {
		font-size: 14px
	}
}
@media(max-width:991px) {
	.testimonial-slider {
		width: 80%;
		margin: 0 auto
	}
}
@media(max-width:767px) {
	.testimonial-slider {
		width: 95%
	}
}
@media(max-width:575px) {
	.testimonial-slider {
		width: 100%
	}
}
.testimonial-slider-item {
	position: relative;
	padding: 30px 40px;
	background: #fff;
	border-radius: 10px;
	margin: 0 50px;
	outline: 0 !important;
	transition: .5s ease
}
@media(max-width:991px) {
	.testimonial-slider-item {
		margin: 0 70px
	}
}
@media(max-width:575px) {
	.testimonial-slider-item {
		padding: 20px;
		margin: 0 50px
	}
}
.testimonial-slider-item p {
	font-size: 14px;
	color: #212529
}
.testimonial-slider-person {
	display: flex;
	align-items: center
}
.testimonial-slider-person .thumb {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden
}
.testimonial-slider-person .thumb img {
	width: 100%
}
.testimonial-slider-person .content {
	margin-left: 20px
}
.testimonial-slider-person .content h3 {
	font-size: 13px;
	font-weight: 500;
	margin: 0
}
.testimonial-slider-person .content p {
	font-size: 12px;
	margin: 0
}
.testimonial-slider .slick-list {
	padding: 0 100px;
	margin: 0 -100px
}
.testimonial .testimonial-slider .slick-slide,
.testimonial .testimonial-slider .slick-slide[aria-hidden=true]:not(.slick-cloned)~.slick-cloned[aria-hidden=true] {
	transition: all .5s;
	box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.03);
	opacity: .5
}
.testimonial .testimonial-slider .slick-center,
.testimonial .testimonial-slider .slick-slide[aria-hidden=true]:not([tabindex="-1"])+.slick-cloned[aria-hidden=true] {
	transform: scale(1.3);
	z-index: 1;
	opacity: 1;
	box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.05)
}
@media(max-width:767px) {
	.testimonial .testimonial-slider .slick-center,
	.testimonial .testimonial-slider .slick-slide[aria-hidden=true]:not([tabindex="-1"])+.slick-cloned[aria-hidden=true] {
		transform: scale(1.05);
		box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.15)
	}
}
.blog {
	margin-top: -150px;
	padding-bottom: 100px
}
@media(max-width:575px) {
	.blog {
		margin-top: -100px
	}
}
.blog-post {
	padding-bottom: 100px
}
@media(max-width:575px) {
	.blog-post {
		padding-bottom: 50px
	}
}
.blog-post-item {
	background-color: #fff;
	box-shadow: 0 20px 25px rgba(50, 99, 141, 0.1);
	border-radius: 10px;
	margin-bottom: 50px;
	padding: 15px 15px 20px;
	transition: .3s ease
}
.blog-post-item:hover {
	transform: scale(1.02)
}
@media(max-width:991px) {
	.blog-post-item {
		margin-bottom: 30px
	}
}
.blog-post-thumb {
	margin-bottom: 18px
}
.blog-post-thumb img {
	width: 100%;
	border-radius: 10px
}
.blog-post-content {
	padding: 0 8px
}
.blog-post-content h2 {
	line-height: 28px;
	margin-bottom: 10px
}
.blog-post-content h2 a {
	font-size: 20px;
	font-weight: 600;
	display: block;
	color: #212529;
	text-decoration: none;
	transition: .3s ease
}
.blog-post-content h2 a:hover {
	color: rgba(255, 77, 107, 0.7)
}
.blog-post-content .post-author {
	display: flex;
	align-items: center
}
.blog-post-content .post-author .thumb {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px
}
.blog-post-content .post-author .thumb img {
	width: 100%
}
.blog-post-content .post-author .meta h3 {
	font-size: 15px;
	margin-bottom: 0;
	font-weight: 600
}
.blog-post-content .post-author .meta p {
	margin-bottom: 0;
	font-size: 14px
}
.blog-post .see-all-post {
	margin-top: 40px;
	text-align: center;
	margin: 0 auto
}
.blog-pagination {
	display: flex;
	justify-content: center;
	overflow: hidden;
	margin-top: 30px
}
.blog-pagination ul {
	padding: 0;
	margin: 0
}
.blog-pagination ul .page-item .page-link {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	padding: 0;
	text-align: center;
	border-radius: 4px;
	border: 0;
	color: #212529;
	margin-right: 20px;
	background-color: rgba(255, 77, 107, 0.1);
	transition: all .3s ease-in-out;
	z-index: 99;
	position: relative
}
@media(max-width:575px) {
	.blog-pagination ul .page-item .page-link {
		margin-right: 15px
	}
}
.blog-pagination ul .page-item .page-link:hover {
	background: #3772ff;
	color: #fff
}
.blog-pagination ul .page-item.active .page-link {
	background-color: #3772ff;
	color: #fff
}
.blog-single {
	position: relative;
	margin-top: -150px;
	margin-bottom: 50px;
	border-radius: 10px
}
@media(max-width:575px) {
	.blog-single {
		margin-top: -100px
	}
}
.blog-single-post {
	padding: 50px 40px 50px;
	background-color: #fff;
	box-shadow: 0 5px 25px rgba(25, 24, 29, 0.1);
	border-radius: 20px
}
@media(max-width:575px) {
	.blog-single-post {
		padding: 30px
	}
}
.blog-single-post img {
	max-width: 100%;
	margin-bottom: 30px;
	border-radius: 20px
}
.blog-single-post .post-title {
	width: 90%;
	margin: 0 auto 30px;
	font-size: 35px
}
@media(max-width:991px) {
	.blog-single-post .post-title {
		font-size: 30px;
		line-height: 40px;
		width: 100%
	}
}
.blog-single-post h2 {
	font-size: 30px;
	line-height: 50px;
	text-align: center;
	margin-bottom: 20px
}
@media(max-width:991px) {
	.blog-single-post h2 {
		font-size: 25px;
		line-height: 40px
	}
}
.blog-single-post p {
	margin-bottom: 30px
}
.blog-single-post p:last-child {
	margin-bottom: 0
}
.blog-single-post ul {
	padding: 0 0 0 20px;
	margin: 0 0 40px
}
.blog-single-post ul li {
	list-style: none;
	display: block;
	position: relative;
	line-height: 28px;
	font-size: 18px;
	padding-left: 30px;
	width: 65%;
	margin-bottom: 20px
}
@media(max-width:767px) {
	.blog-single-post ul li {
		width: 100%
	}
}
.blog-single-post ul li::before {
	position: absolute;
	content: "";
	background: rgba(255, 77, 107, 0.7);
	width: 12px;
	height: 12px;
	border-radius: 4px;
	left: 0;
	top: 50%;
	transform: translateY(-50%)
}
.blog-single-header .post-meta {
	margin: 50px auto 0
}
@media(max-width:575px) {
	.blog-single-header .post-meta {
		margin-top: 25px
	}
}
.blog-single-header .post-meta ul {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 0
}
.blog-single-header .post-meta ul li {
	color: #212529
}
.blog-single-header .post-meta ul li:not(:last-child) {
	margin-right: 30px
}
.blog-single-header .post-meta ul li img {
	width: 50px;
	height: 50px;
	border-radius: 50%
}
.blog-single-header .post-meta ul li h5 {
	font-size: 18px;
	font-weight: 500;
	margin: 0
}
.page-header {
	padding: 130px 0 200px;
	background-color: #fff;
	text-align: center;
	margin: 130px 100px 0;
	background: #f9f2ea;
	border-radius: 50px
}
@media(max-width:1400px) {
	.page-header {
		margin: 130px 50px 0
	}
}
@media(max-width:991px) {
	.page-header {
		margin: 130px 30px 0;
		border-radius: 25px;
		padding: 80px 0 180px
	}
}
@media(max-width:575px) {
	.page-header {
		margin: 100px 15px 0;
		padding: 50px 0 120px
	}
}
.page-header h1 {
	margin-bottom: 20px
}
@media(max-width:991px) {
	.page-header h1 {
		font-size: 40px
	}
}
.page-header h2 {
	font-size: 40px;
	line-height: 52px
}
@media(max-width:575px) {
	.page-header h2 {
		font-size: 30px;
		line-height: 42px
	}
}
.contact {
	padding-bottom: 100px
}
.contact-form {
	position: relative;
	overflow: hidden;
	margin-bottom: 100px;
	border-radius: 10px;
	box-shadow: 0 20px 40px -10px rgba(25, 24, 29, 0.06);
	padding: 50px 30px;
	background: #fff
}
.contact-form .btn-subscribe {
	height: 60px;
	padding: 10px 30px;
	box-shadow: 0 20px 20px -15px rgba(0, 86, 179, 0.2);
	background: #3772ff;
	text-transform: uppercase;
	color: #fff;
	display: flex;
	align-items: center;
	z-index: 9;
	overflow: hidden
}
@media(max-width:575px) {
	.contact-form {
    	margin-bottom: 80px;
		padding: 50px 10px;
	}
	.contact-form .btn-subscribe {
		padding: 10px 15px
	}
}
.contact-form .btn-subscribe .btn-area {
	margin-top: 2px;
}
.contact-form .btn-subscribe .icon-left {
	transform: translateX(-50px);
	transition: all .5s ease-in-out;
	opacity: 0
}
.contact-form .btn-subscribe .icon-center {
	transition: all .5s ease-in-out
}
.contact-form .btn-subscribe:hover .icon-left {
	transform: translateX(20px);
	opacity: 1
}
.contact-form .btn-subscribe:hover .icon-center {
	transform: translateX(50px)
}
.contact-form .form-check {
	font-size: 14px;
}
.footer {
	position: relative;
	padding: 120px 0 40px;
	overflow: hidden;
	/*background: url(../fonts/footer-footer-bg.svg);
	background-position: top center;
	background-size: cover*/
}
@media(max-width:768px) {
	.footer {
		padding: 120px 0 60px
	}
}
.footer-subscribe-title {
	text-align: center;
	margin: 0 0 60px;
	color: #fff;
}
@media(max-width:575px) {
	.footer .footer-description {
		margin-bottom: 30px
	}
}
.footer .footer-description img {
	width: 200px;
}
.footer .footer-description p {
	color: #adb5bd;
}
.footer .footer-description-social {
	margin: 0;
	padding: 0;
	list-style: none
}
.footer .footer-description-social li {
	display: inline-block
}
.footer .footer-description-social li:not(:last-child) {
	margin-right: 10px
}
.footer .footer-description-social li a {
	display: block;
	color: #8c8c94;
	transition: .3s ease
}
.footer .footer-description-social li a:hover {
	color: #212529;
	text-decoration: none
}
@media(max-width:767px) {
	.footer .footer-widget {
		padding-top: 20px
	}
}
.footer .footer-bottom,
.footer .footer-copyright  {
	color: #adb5bd;
}
.footer .footer-widget h4 {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 24px;
}
@media(max-width:575px) {
	.footer .footer-widget h4 {
		font-size: 17px
	}
}
.footer-bottom a,
.footer-copyright a {
	color: #fff;
	text-decoration: none;
}
.footer-bottom a:hover,
.footer-copyright a:hover {
	color: #6c757d
}
.footer .footer-widget-list {
	text-align: left
}
.footer .footer-widget-list ul {
	padding: 0;
	margin: 0
}
.footer .footer-widget-list ul li {
	list-style: none;
	padding: 0 0 12px
}
@media(max-width:575px) {
	.footer .footer-widget-list ul li a {
		font-size: 15px
	}
}
.footer .footer-widget-list ul li i {
	padding-right: 10px
}
.footer-bottom {
	position: relative;
    padding-bottom: 60px;
}
.footer-copyright {
	position: relative;
    padding-top: 40px;
}
.footer-copyright:before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #3772ff 0, #62eeff 50%, #3772ff 100%);
}
.stock-item {
	background-color: #fff;
	/*box-shadow: 0 20px 25px rgba(50, 99, 141, 0.1);*/
	border-radius: 10px;
	margin-bottom: 40px;
	padding: 24px;
    background: #fff;
    transition: all 0.3s;
}
.stock-item:last-child {
	margin-bottom: 0;
}
.stock-item:hover {
    box-shadow: 0 20px 25px rgba(50, 99, 141, 0.1);
}
@media(max-width:991px) {
	.stock-item {
		margin-bottom: 30px
	}
}
.stock-item-thumb {
	position: relative;
	min-width: 132px;
	max-width: 100%;
	height: 120px;
	border-radius: 10px;
	overflow: hidden;
}
.stock-item-thumb img {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    transition: all 0.3s;
    object-fit: cover;
}
.stock-item:hover .stock-item-thumb img {
    transform: translate(-50%, -50%) scale(1.3);
}
.stock-item-content {
	padding: 0 8px
}
.stock-item h3 {
	margin-bottom: 10px;
	font-weight: 600;
}
.stock-item a:not(.btn) {
	color: #212529;
	text-decoration: none;
	transition: .3s ease
}
.stock-item a:not(.btn):hover {
	color: #007bff;
}
@media(max-width:767px) {
	.stock-item-thumb {
		height: 200px;
		margin-bottom: 20px;
	}
}

.list-check,
.list-dots {
	margin: 0;
	padding: 0
}
.list-check li {
	list-style: none;
	display: flex;
}
.list-check li:not(:last-child) {
	margin-bottom: 16px
}
.list-check li i {
	width: 24px;
	height: 24px;
	text-align: center;
	line-height: 20px;
	border: 2px solid #3772ff;
	border-radius: 6px;
	margin-right: 15px;
	color: #3772ff;
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	flex-shrink: 0;
}
.list-check li p {
	margin-bottom: 0;
	display: inline-block;
}

.list-dots li {
    list-style: none;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.list-dots li::before {
    position: absolute;
    content: "";
    background: #007bff;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    left: 0;
    top: 10px;
}

.table td,
.table th {
	padding: 1rem 0.75rem;
	text-overflow: ellipsis;
}

.gallery-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.gallery-slider {
	margin-top: 48px;
	padding-bottom: 48px;
}
.gallery-slider-item {
	height: 480px;
	outline: 0;
	border-radius: 10px;
	overflow: hidden;
	transform: scale(0.8);
	transition: all 0.3s;
}
.gallery-slider-item.slick-current {
	transform: scale(1);
}
.gallery-slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
}
.gallery-slider .slick-dots {
	position: absolute;
	bottom: 0px
}
@media(max-width:575px) {
	.gallery-slider-item {
		height: 320px;
	}
}
.gallery-slider .slick-dots li {
	display: inline-block;
	margin: 0 4px;
	width: unset;
	height: unset
}
.gallery-slider .slick-dots li button {
	background: #3772ff;
	text-indent: -999999999px;
	width: 16px;
	height: 6px;
	border-radius: 4px;
	outline: 0;
	transition: .5s ease;
	padding: 0;
	opacity: .3
}
.gallery-slider .slick-dots li button::before {
	content: none
}
.gallery-slider .slick-dots li.slick-active button {
	background: #3772ff;
	width: 40px;
	opacity: 1
}
@media(max-width:575px) {
	.gallery-slider .slick-list {
		overflow: visible
	}
}
.section-advantages-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100%;
}
.section-advantages-front {
    position: absolute;
    z-index: 2;
    top: 540px;
    left: 50%;
    width: 50vw;
    max-width: 588px;
    height: 100%;
    max-height: 560px;
    transform: translate(-50%, -50%);
    background-color: transparent;
    background-image: url(../images/advantages-img-01.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}
.section-advantages-back {
    position: absolute;
    z-index: 1;
    top: 540px;
    left: 50%;
    width: 1000px;
    height: 1000px;
    transform: translate(-50%, -50%);
    background-color: transparent;
    background-image: url(../images/shape-06.png);
    background-position: 50% 50%;
    background-size: contain;
}
@media(max-width:768px) {
	.section-advantages-bg {
		position: relative;
		top: unset;
		left: unset;
		width: 100%;
		height: 400px;
	}
	.section-advantages-front {
		top: -40px;
		transform: translate(-50%, 0);
		width: 80vw;
		min-width: 360px;
	}
	.section-advantages-back {
		top: -300px;
		transform: translate(-50%, 0);
    	width: 750px;
    	height: 750px;
	}
}
.features-item {
	margin-bottom: 48px;
	padding-right: 24px;
}
.features-item p {
	font-size: 15px;
}
.features-icon {
	position: relative;
	width: 64px;
	height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #007bff;
	background-image: linear-gradient(to top left, #00caff 0, #007bff 100%);
	border-radius: 50%;
	margin-bottom: 24px;
}
.features-icon i {
	font-size: 32px;
	color: #fff;
}