@import url('https://fonts.cdnfonts.com/css/proxima-nova-2');

:root {
	--bs-primary: #e44a27;
	--bs-secondary: #4aa12c;
	--bs-primary-rgb: 228, 74, 39;
	--bs-secondary-rgb: 74, 161, 44;

	--bs-light: #f7f7f7;
	--bs-dark: #0f2437;
	--bs-light-rgb: 247, 247, 247;
	--bs-dark-rgb: 15, 36, 55;

	--bs-font-sans-serif: 'Proxima Nova', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 1rem;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.5;

	--bs-body-color: #0e0e0e;
	--bs-body-color-rgb: 14, 14, 14;

	--bs-body-bg: #fff;
	--bs-body-bg-rgb: 255, 255, 255;

	--bs-link-color: var(--bs-body-color);
	--bs-link-color-rgb: var(--bs-body-color-rgb);
	--bs-link-decoration: none;
	--bs-link-hover-color: var(--bs-primary);
	--bs-link-hover-color-rgb: var(--bs-primary-rgb);

	--iq-navbar-bg: #fff;
	--iq-dark-blue: #0F2437;
}

/* ---------------- 
--- Typography
---------------- */

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
	margin-bottom: 1rem;
	font-weight: 600;
}

h1,
.h1 {
	margin-bottom: 1.5rem;
	font-size: calc(1.75rem + 1.5vw);
}

@media (min-width: 1200px) {

	h1,
	.h1 {
		margin-bottom: 2rem;
		font-size: 2.975rem;
		line-height: 1.1;
	}
}

h2,
.h2 {
	margin-bottom: 1.25rem;
	font-size: calc(1.75rem + 1.35vw);
	line-height: 1.18;
}

@media (min-width: 1400px) {

	h2,
	.h2 {
		margin-bottom: 1.5rem;
		font-size: 3.75rem;
		line-height: 1.1;
	}
}

h2 span {
	color: var(--bs-primary);
}

h3,
.h3 {
	font-size: calc(1.25rem + 0.75vw);
}

@media (min-width: 1200px) {

	h3,
	.h3 {
		font-size: 1.875rem;
		line-height: 1.2;
	}
}

h4,
.h4 {
	font-size: 1.25rem;
}

@media (min-width: 1200px) {

	h4,
	.h4 {
		font-size: 1.75rem;
		line-height: 1.2;
	}
}

h5,
.h5 {
	font-size: 1.5rem;
}

h6,
.h6 {
	font-size: 1rem;
	line-height: 1.4;
}

@media (max-width: 1199.98px) {

	.iq-nums h3,
	.iq-how p.h5 {
		font-size: 1.25rem;
		line-height: 1.3;
	}
}

@media (max-width: 575.98px) {
	.iq-nums h3 {
		font-size: 1rem;
	}
}

.iq-list li {
	margin-bottom: 20px;
}

.iq-modal-title {
	font-size: calc(1.5rem + 0.75vw);
	font-weight: 600;
	line-height: 1.12;
	text-align: center;
}

p {
	margin-bottom: 1.25rem;
}

p:last-child {
	margin-bottom: 0;
}

p.small {
	line-height: 1.45;
}

a {
	text-decoration: none;
}

b,
strong {
	font-weight: 700;
}

.lead {
	font-weight: 400;
}

@media (max-width: 575.98px) {
	.lead {
		font-size: 1rem;
	}
}

/* -------------------- 
--- Preloader
-------------------- */

.iq-preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	overflow: hidden;
	background-color: var(--iq-dark-blue);
}

.iq-preloader img {
	width: 100%;
	max-width: 300px;
	animation: 1.5s linear infinite alternate anim_preloader;
}

@media (max-width: 575.98px) {
	.iq-preloader img {
		max-width: 240px;
	}
}

@keyframes anim_preloader {
	to {
		opacity: 0.25;
	}
}

/* ---------------- 
--- Components
---------------- */

.badge {
	--bs-badge-padding-x: 1em;
	--bs-badge-padding-y: 0.75em;
	--bs-badge-font-size: 0.825rem;
	--bs-badge-font-weight: 600;
	letter-spacing: 0.5px;
}

.iq-bg-img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-position: 50% 50%;
}


.iq-circle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 24px 14px;
	width: 58px;
	height: 58px;
	min-height: 58px;
	border-radius: 10rem;
	background-color: var(--bs-secondary);
	box-shadow: 0 0 0 14px rgba(var(--bs-secondary-rgb), 0.5);
}

@media (max-width: 575.98px) {
	.iq-circle-icon {
		width: 42px;
		height: 42px;
		min-height: 42px;
		box-shadow: 0 0 0 9px rgba(var(--bs-secondary-rgb), 0.5);
	}

	.iq-home-circle .iq-circle-icon {
		margin: 18px 0 18px 20px;
	}
}

.iq-circle-icon img {
	width: auto;
	height: 32px;
}

@media (max-width: 575.98px) {
	.iq-circle-icon img {
		height: 22px;
	}
}

main, footer {
	overflow: hidden;
}

/* ---------------- 
--- Container
---------------- */

.container-fluid {
	max-width: 1620px;
}

@media (max-width: 991.98px) {

	.container,
	.container-fluid,
	.container-xxl,
	.container-xl,
	.container-lg,
	.container-md,
	.container-sm {
		padding-right: 24px;
		padding-left: 24px;
	}

	.iq-navbar .container-fluid {
		padding-right: 12px;
		padding-left: 12px;
	}
}

/* ---------------- 
--- Navbar
---------------- */

.navbar {
	z-index: 1053;
	--bs-navbar-padding-x: 1rem;
	--bs-navbar-padding-y: 0.75rem;
	--bs-navbar-brand-padding-y: 0;
	--bs-navbar-brand-margin-end: 2.5rem;
	transform: translateY(16px);
	transition: transform 0.25s 0.25s, background-color 0.25s;
}

@media (max-width: 575.98px) {
	.navbar {
		--bs-navbar-brand-margin-end: 1.5rem;
		--bs-navbar-padding-x: 0;
	}
}

.navbar-brand img {
	height: 44px;
}

@media (max-width: 675.98px) {
	.navbar-brand img {
		width: 100%;
		max-width: 200px;
		height: auto;
	}
}

.navbar.nav-active {
	background-color: var(--iq-navbar-bg);
	box-shadow: rgba(0, 0, 0, 0.07) 0px 3px 12px;
	transform: translateY(0);
	transition: transform 0.25s, background-color 0.75s, box-shadow 0.75s;
}

.navbar .iq-logo-dark {
	display: none;
}

.navbar.nav-active .iq-logo-dark {
	display: block;
}

.navbar.nav-active .iq-logo-light {
	display: none;
}

.iq-navbar-title {
	margin-bottom: 0;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	transition: color 0.25s;
}

.navbar.nav-active .iq-navbar-title {
	color: var(--bs-body-color);
	transition: color 0.75s;
}

.iq-navbar-title span {
	display: block;
}

.iq-navbar-text {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.25s;
}

.navbar.nav-active .iq-navbar-text {
	color: var(--bs-body-color);
	transition: color 0.75s;
}

.iq-social-icon {
	margin: 0 5px;
}

.iq-social-icon img {
	width: 36px;
}

.iq-navbar-tel {
	margin: 0 50px;
}

@media (max-width: 1399.98px) {
	.iq-navbar-tel {
		margin: 0 24px;
	}
}

.iq-navbar-tel-num {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	transition: color 0.25s;
}

.navbar.nav-active .iq-navbar-tel-num {
	color: var(--bs-body-color);
	transition: color 0.75s;
}

.navbar.nav-active .iq-navbar-btn .btn-outline-light {
	--bs-btn-color: var(--bs-body-color);
	--bs-btn-border-color: var(--bs-body-color);
	--bs-btn-hover-color: var(--bs-primary);
	--bs-btn-hover-bg: #fff;
	--bs-btn-hover-border-color: var(--bs-primary);
	--bs-btn-active-color: var(--bs-primary);
	--bs-btn-active-bg: #fff;
	--bs-btn-active-border-color: var(--bs-primary);
	transition: color 0.75s, border-color 0.75s;
}

/* ---------------- 
--- Gap
---------------- */

.iq-section-pt,
.iq-section-py {
	padding-top: 7rem;
}

.iq-section-pb,
.iq-section-py {
	padding-bottom: 7rem;
}

@media (max-width: 1199.98px) {

	.iq-section-pt,
	.iq-section-py {
		padding-top: 5rem;
	}

	.iq-section-pb,
	.iq-section-py {
		padding-bottom: 5rem;
	}
}

@media (max-width: 767.98px) {

	.iq-section-pt,
	.iq-section-py {
		padding-top: 4.5rem;
	}

	.iq-section-pb,
	.iq-section-py {
		padding-bottom: 4.5rem;
	}
}

@media (max-width: 575.98px) {

	.iq-section-pt,
	.iq-section-py {
		padding-top: 3.5rem;
	}

	.iq-section-pb,
	.iq-section-py {
		padding-bottom: 3.5rem;
	}
}

.iq-section-title {
	margin-bottom: 2.75rem;
}

@media (max-width: 575.98px) {
	.iq-section-title {
		margin-bottom: 2.125rem;
	}
}

.g-6,
.gy-6 {
	--bs-gutter-y: 5.5rem;
}

@media (max-width: 575.98px) {

	.g-6,
	.gy-6 {
		--bs-gutter-y: 3rem;
	}
}

/* ---------------- 
--- Home
---------------- */

.iq-home {
	padding-top: 15rem;
	padding-bottom: 4.5rem;
}

@media (max-width: 767.98px) {
	.iq-home {
		padding-top: 10rem;
		padding-bottom: 5rem;
	}
}

.iq-home-bg {
	background: url(../img/home_bg.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
	background-blend-mode: darken;
	background-position: center;
	background-size: cover;
}

@media (max-width: 1199.98px) {
	.iq-home-bg {
		background: url(../img/home_bg_lg.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
		background-position: center;
		background-size: cover;
	}
}

@media (max-width: 767.98px) {
	.iq-home-bg {
		background: url(../img/home_bg_md.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
		background-position: center;
		background-size: cover;
	}
}

@media (max-width: 575.98px) {
	.iq-home-bg {
		background: url(../img/home_bg_sm.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
		background-position: center;
		background-size: cover;
	}
}

.iq-home-title {
	font-size: 3.25rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

@media (max-width: 575.98px) {
	.iq-home-title {
		font-size: 2rem;
	}
}

.iq-home-title span {
	font-weight: 300;
}

.iq-home-text {
	margin-bottom: 2.5rem;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.33;
	color: #fff;
}

@media (max-width: 575.98px) {
	.iq-home-text {
		margin-bottom: 1.5rem;
		font-size: 1rem;
	}
}

.iq-home-circles {
	margin-top: 7.5rem;
}

@media (max-width: 1199.98px) {
	.iq-home-circles {
		margin-top: 3.75rem;
		margin-bottom: 7.5rem;
	}
}

@media (max-width: 575.98px) {
	.iq-home-circles {
		margin-top: 1.75rem;
		margin-bottom: 5.5rem;
	}
}

.iq-home-circle {
	padding: 0 3rem;
	text-align: center;
}

.iq-home-circle:first-child {
	padding-left: 0;
}

@media (max-width: 991.98px) {
	.iq-home-circle {
		padding: 0 3vw;
	}
}

@media (max-width: 575.98px) {
	.iq-home-circle {
		padding: 5px 0;
		text-align: left;
	}
}

.iq-home-circle p {
	font-size: 0.875rem;
	line-height: 1.4;
	color: #fff;
}

.iq-home-circle p span {
	font-size: 2em;
	font-weight: 700;
}

@keyframes iq-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.7);
	}

	100% {
		box-shadow: 0 0 0 4em rgba(var(--bs-primary-rgb), 0);
	}
}

.iq-home-label {
	position: absolute;
	right: 60px;
	bottom: 0;
	font-size: 20px;
	width: 16.5em;
	height: 16.5em;
	transform: translateY(50%);
}

@media (max-width: 991.98px) {
	.iq-home-label {
		right: 50%;
		bottom: 0;
		font-size: 16px;
		transform: translate(50%, 50%);
	}
}

@media (max-width: 575.98px) {
	.iq-home-label {
		font-size: 14px;
	}
}

.iq-home-label-inner {
	position: relative;
	width: 16.5em;
	height: 16.5em;
	border-radius: 50%;
	text-align: center;
	color: #fff;
	box-shadow: 0 0 0 1.5em rgba(var(--bs-primary-rgb), 0.5);
}

.iq-home-label-circle {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 16.5em;
	height: 16.5em;
	border-radius: 50%;
	background: var(--bs-primary);
	box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 1);
	animation: iq-pulse 3s infinite ease;
}

.iq-home-label-inner p {
	padding-top: 2.2em;
	position: relative;
}

.iq-home-label-inner p span {
	display: block;
	font-size: 2.5em;
	font-weight: 600;
}

/* ---------------- 
--- Buttons
---------------- */

.btn {
	--bs-btn-border-width: 2px;
	--bs-btn-padding-x: 2.5rem;
	--bs-btn-padding-y: 1.5rem;
	--bs-btn-font-size: 0.875rem;
	--bs-btn-font-weight: 700;
	--bs-btn-line-height: 1.3;
	--bs-btn-border-radius: 10rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x) calc(var(--bs-btn-padding-y) - 2px);
}

@media (max-width: 575.98px) {
	.btn {
		--bs-btn-padding-x: 1.5rem;
		--bs-btn-padding-y: 1.25rem;
	}
}

.iq-navbar-btn .btn {
	--bs-btn-padding-x: 1.75rem;
	--bs-btn-padding-y: 1.25rem;
	--bs-btn-font-size: 0.875rem;
}

@media (max-width: 600.98px) {
	.iq-navbar-btn .btn {
		--bs-btn-padding-x: 1rem;
		--bs-btn-padding-y: 0.75rem;
		--bs-btn-font-size: 0.688rem;
	}
}

.btn-primary {
	--bs-btn-color: var(--bs-white);
	--bs-btn-bg: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: var(--bs-btn-color);
	--bs-btn-hover-bg: rgba(var(--bs-primary-rgb), 0.8);
	--bs-btn-hover-border-color: rgba(var(--bs-primary-rgb), 0.8);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: rgba(var(--bs-primary-rgb), 0.58);
	--bs-btn-active-border-color: rgba(var(--bs-primary-rgb), 0.58);
}

.btn-outline-primary {
	--bs-btn-color: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--bs-primary);
	--bs-btn-hover-border-color: var(--bs-primary);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: rgba(var(--bs-primary-rgb), 0.58);
	--bs-btn-active-border-color: rgba(var(--bs-primary-rgb), 0.58);
}

.btn-outline-light {
	--bs-btn-color: #fff;
	--bs-btn-border-color: #fff;
	--bs-btn-hover-color: #000;
	--bs-btn-hover-bg: #fff;
	--bs-btn-hover-border-color: #fff;
	--bs-btn-active-color: #000;
	--bs-btn-active-bg: #fff;
	--bs-btn-active-border-color: #fff;
}

.btn-light {
	--bs-btn-color: var(--bs-body-color);
	--bs-btn-bg: #fff;
	--bs-btn-border-color: #fff;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: transparent;
	--bs-btn-hover-border-color: #fff;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: rgba(0, 0, 0, 0.04);
	--bs-btn-active-border-color: #fff;
}

.btn-outline-dark {
	--bs-btn-color: var(--iq-dark-blue);
	--bs-btn-border-color: var(--iq-dark-blue);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--iq-dark-blue);
	--bs-btn-hover-border-color: var(--iq-dark-blue);
	--bs-btn-active-color: rgba(255, 255, 255, 0.84);
	--bs-btn-active-bg: var(--iq-dark-blue);
	--bs-btn-active-border-color: var(--iq-dark-blue);
}

/* ---------------- 
--- Tooltip
---------------- */

.iq-tooltip span {
	pointer-events: none;
}

.iq-tooltip img {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.custom-tooltip {
	--bs-tooltip-zindex: 1052;
	--bs-tooltip-max-width: 410px;
	--bs-tooltip-padding-x: 30px;
	--bs-tooltip-padding-y: 30px;
	--bs-tooltip-font-size: 0.875rem;
	--bs-tooltip-color: var(--bs-body-color);
	--bs-tooltip-bg: var(--bs-body-bg);
	--bs-tooltip-border-radius: 0;
	--bs-tooltip-opacity: 1;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575.98px) {
	.custom-tooltip {
		--bs-tooltip-max-width: 90vw;
	}
}

.tooltip-inner {
	text-align: left;
}

.tooltip-inner h4 {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.188;
}

.tooltip-inner ul {
	list-style: none;
	padding-left: 0;
}

.tooltip-inner ul li {
	position: relative;
	padding-left: 2em;
	margin-bottom: 0.75em;
}

.tooltip-inner ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	width: 1em;
	height: 1em;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='check-circle' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%234aa12c' d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z'></path></svg>");
}

/* ---------------- 
--- S Features
---------------- */

.iq-features {
	background: linear-gradient(180deg, #F7F7F7 0%, rgba(247, 247, 247, 0) 100%);
}

.iq-card {
	padding: 4vw 2vw 2vw;
	height: 100%;
	text-align: center;
	background-color: #fff;
}

@media (max-width: 767.98px) {
	.iq-card {
		padding: 34px 40px 40px;
	}
}

.iq-features .iq-card img {
	margin-bottom: 1.5rem;
}

.iq-features .iq-card h3 {
	margin-bottom: 0;
	font-size: calc(1.125rem + 0.3vw);
}

/* ---------------- 
--- Banner
---------------- */

.iq-banner {
	position: relative;
}

.iq-banner-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1199.98px) {
	.iq-banner-icon {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 767.98px) {
	.iq-banner-icon {
		top: 300px;
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 575.98px) {
	.iq-banner-icon {
		top: 220px;
	}
}

.iq-banner-icon img {
	width: 80px;
}

@media (max-width: 1199.98px) {
	.iq-banner-icon img {
		width: 62px;
	}
}

@media (max-width: 767.98px) {
	.iq-banner-icon img {
		width: 52px;
	}
}

.iq-banner-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media (max-width: 767.98px) {
	.iq-banner-img {
		position: relative;
		height: 300px;
	}
}

@media (max-width: 575.98px) {
	.iq-banner-img {
		height: 220px;
	}
}

.iq-banner-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.iq-banner-info {
	padding: 5vw;
	padding-right: 140px;
	background-color: var(--bs-primary);
	color: #fff;
}

@media (max-width: 1199.98px) {
	.iq-banner-info {
		padding-right: 110px;
	}
}

@media (max-width: 767.98px) {
	.iq-banner-info {
		padding: 6.5vw;
		padding-top: 65px;
	}

}

.iq-banner-info-right {
	padding-right: 5vw;
	padding-left: 140px;
}


@media (max-width: 1199.98px) {
	.iq-banner-info-right {
		padding-left: 110px;
	}
}

@media (max-width: 767.98px) {
	.iq-banner-info-right {
		padding: 6.5vw;
		padding-top: 65px;
	}
}

.iq-banner-bg-bottom {
	height: 50%;
}

@media (max-width: 767.98px) {
	.iq-banner-bg-bottom {
		height: calc(100% - 150px);
	}
}

@media (max-width: 575.98px) {
	.iq-banner-bg-bottom {
		height: calc(100% - 110px);
	}
}

/* ---------------- 
--- S Business
---------------- */

.iq-business-info p {
	position: relative;
	text-transform: uppercase;
	line-height: 1.3;
	margin-bottom: 0;
}

@media (max-width: 1199.98px) {
	.iq-business-info p {
		font-size: 1.25rem;
	}
}

@media (max-width: 991.98px) {
	.iq-business-info p {
		margin-bottom: 1.875rem;
		padding-left: 1.75em;
		font-size: 1.25rem;
	}

	.iq-business-info p::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 1em;
		height: 1em;
		background-color: rgba(var(--bs-primary-rgb), 0.5);
		border-radius: 50%;
		box-shadow: 0 0 0 0.25em rgba(var(--bs-primary-rgb), 0.2);
	}

	.iq-business-info p::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 0.25em;
		transform: translateY(-50%);
		width: 0.5em;
		height: 0.5em;
		background-color: rgba(var(--bs-primary-rgb), 1);
		border-radius: 50%;
	}
}

@media (max-width: 575.98px) {
	.iq-business-info p {
		margin-bottom: 1.875rem;
		padding-left: 1.75em;
		font-size: 1rem;
	}
}

.iq-clock {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	position: relative;
	border: 2px dashed rgba(var(--bs-primary-rgb), 0.25);
}

.iq-clock-item:nth-child(1) {
	--nth-child: 1;
}

.iq-clock-item:nth-child(2) {
	--nth-child: 2;
}

.iq-clock-item:nth-child(3) {
	--nth-child: 3;
}

.iq-clock-item:nth-child(4) {
	--nth-child: 4;
}

.iq-clock-item:nth-child(5) {
	--nth-child: 5;
}

.iq-clock-item:nth-child(6) {
	--nth-child: 6;
}

.iq-clock-item:nth-child(7) {
	--nth-child: 7;
}

.iq-clock-item:nth-child(8) {
	--nth-child: 8;
}

.iq-clock-item:nth-child(9) {
	--nth-child: 9;
}

.iq-clock-item:nth-child(10) {
	--nth-child: 10;
}

.iq-clock-item:nth-child(11) {
	--nth-child: 11;
}

.iq-clock-item:nth-child(12) {
	--nth-child: 12;
}

.iq-clock-item {
	left: 45%;
	top: 45%;
	position: absolute;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10%;
	height: 10%;
	background-color: rgba(var(--bs-primary-rgb), 0.25);
	border-radius: 50%;
	transform: rotateZ(calc((var(--nth-child) + 6)*calc(360/12)*1deg)) translateY(500%) rotateZ(calc((var(--nth-child) + 6)*calc(360/12)*-1deg));
}

.iq-clock-item:nth-child(6) {
	display: none;
}

.iq-clock-item:nth-child(12) {
	display: none;
}

.iq-clock-item-inner {
	position: relative;
	width: 60%;
	height: 60%;
	background-color: rgba(var(--bs-primary-rgb), 0.5);
	border-radius: 50%;
}

.iq-clock-item-inner::after {
	content: "";
	position: absolute;
	top: 25%;
	left: 25%;
	width: 50%;
	height: 50%;
	background-color: rgba(var(--bs-primary-rgb), 1);
	border-radius: 50%;
}

@media (min-width: 992px) {
	.iq-business-center {
		padding: 12%;
	}
}

@media (min-width: 992px) {
	.iq-business-center-info {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		padding: 0 24%;
		transform: translate(-50%, -50%);
	}

	.iq-business-center-info img {
		height: 9vw;
	}
}

@media (min-width: 992px) {
	.iq-business-center-info h2 {
		margin-top: 0.625rem;
		font-size: calc(1.5rem + 0.75vw);
	}
}

.iq-business-center-circle {
	width: 100%;
	padding-bottom: 100%;
	border-radius: 50%;
	background: var(--bs-light);
}

/* ---------------- 
--- S Nums
---------------- */

.iq-icom-num-svg {
	min-width: 64px;
}

.iq-icom-num-svg img {
	display: block;
	margin: 0 auto;
}

@media (max-width: 575.98px) {
	.iq-icom-num-svg {
		min-width: 36px;
	}

	.iq-icom-num-svg img {
		height: 40px;
	}
}

.iq-icon-num-line {
	position: absolute;
	top: calc(3rem + 51px);
	left: 12%;
	right: 12%;
	height: 1px;
	border-bottom: 1px dashed #C7C7C7;
}

@media (max-width: 767.98px) {
	.iq-icon-num-line {
		top: 0;
		left: 20px;
		right: auto;
		width: 1px;
		height: auto;
		bottom: calc(1.5rem + 20px);
		border-right: 1px dashed #C7C7C7;
	}

	.iq-icon-num-line-1 {
		top: calc(1.5rem + 30px);
	}
}

.iq-icon-num {
	transform-style: preserve-3d;
	position: relative;
	display: block;
	margin: 20px auto 30px;
	min-width: 64px;
	height: 64px;
	line-height: 64px;
	text-align: center;
	background: var(--bs-primary);
	color: var(--bs-body-bg);
	border-radius: 50%;
}

@media (max-width: 767.98px) {
	.iq-icon-num {
		margin: 0;
		min-width: 40px;
		height: 40px;
		line-height: 40px;
	}
}

.iq-icon-num::after,
.iq-icon-num::before {
	content: "";
	position: absolute;
	top: 50%;
	width: 0;
	height: 0;
	transform: translateY(-50%) translateZ(-1px);
}

.iq-icon-num::after {
	right: -10px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid #C7C7C7;
}

.iq-icon-num::before {
	left: -10px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 10px solid #C7C7C7;
}

.iq-steps-row .col-md-3:nth-child(1) .iq-icon-num::before,
.iq-steps-row .col-md-3:nth-child(4) .iq-icon-num::after {
	display: none;
}

@media (max-width: 767.98px) {

	.iq-icon-num::after,
	.iq-icon-num::before {
		display: none;
	}
}

@media (max-width: 767.98px) {
	.iq-icon-sunny {
		width: 60px;
		height: 60px;
		margin-left: -10px;
	}
}

.iq-steps-last {
	border-bottom: 1px dashed currentColor;

}

/* ---------------- 
--- S Leasing
---------------- */

.iq-leasing-bg {
	background: url(../img/bg_leasing.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
	background-blend-mode: darken;
	background-size: cover;
	background-position: center;
}

@media (max-width: 767.98px) {
	.iq-leasing-bg {
		background: url(../img/bg_leasing_md.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
		background-size: cover;
		background-position: center;
	}
}

.iq-leasing-bottom {
	background-color: rgba(var(--bs-secondary-rgb), 0.8);
	padding: 40px 0;
}

.iq-icon-check {
	width: 60px;
	height: 60px;
}

@media (max-width: 1199.98px) {
	.iq-icon-check {
		width: 40px;
		height: 40px;
	}
}

/* ---------------- 
--- Stat
---------------- */

.iq-stat {
	margin-bottom: 50px;
	font-size: 1.25rem;
	line-height: 1.2;
	color: #fff;
}

@media (max-width: 1199.98px) {
	.iq-stat {
		font-size: 1rem;
	}
}

.iq-stat span {
	display: block;
	font-size: 5rem;
	font-weight: 700;
}

@media (max-width: 1199.98px) {
	.iq-stat span {
		font-size: 3.375rem;
	}
}

@media (max-width: 575.98px) {
	.iq-stat span {
		font-size: 2.5rem;
	}
}

/*

.iq-slider-wrapper {
	margin-top: -70px;
}

@media (max-width: 767.98px) {
	.iq-slider-wrapper {
		margin-top: 40px;
	}
}

.iq-stat-wrapper {
	margin-bottom: 90px;
}

@media (max-width: 767.98px) {
	.iq-stat-wrapper {
		margin-bottom: 0;
	}
}

*/

/* ---------------- 
--- Slider Info
---------------- */

.iq-card-data-img {
	height: 380px;
}

@media (max-width: 1399.98px) {
	.iq-card-data-img {
		height: 340px;
	}
}

@media (max-width: 575.98px) {
	.iq-card-data-img {
		height: 220px;
	}
}

.iq-card-data-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.iq-card-data-body {
	padding: 48px 60px 60px;
}

@media (max-width: 767.98px) {
	.iq-card-data-body {
		padding: 5vw 6.5vw;
	}
}

.iq-card-data-body p.h4 {
	font-size: 1.625rem;
	line-height: 1.18;
}

@media (max-width: 767.98px) {
	.iq-card-data-body p.h4 {
		font-size: 1.25rem;
	}
}

.iq-data-main {
	margin-bottom: 1.688rem;
	font-size: 1.25rem;
	line-height: 1.1;
	color: var(--bs-secondary);
}

@media (max-width: 575.98px) {
	.iq-data-main {
		margin-bottom: 1.25rem;
	}
}

.iq-data-main > span {
	margin-top: 0.5rem;
	display: block;
}

.iq-data-main > span > span {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
}

@media (max-width: 767.98px) {
	.iq-data-main > span > span {
		font-size: 2.5rem;
	}
}

.iq-data-row {
	--bs-gutter-x: 3rem;
	--bs-gutter-y: 1.875rem;
}

@media (max-width: 575.98px) {
	.iq-data-row {
		--bs-gutter-y: 1.5rem;
	}
}

.iq-data-all {
	font-size: 1rem;
	line-height: 1.4;
	color: var(--iq-dark-blue);
}

@media (max-width: 1399.98px) {
	.iq-data-all {
		line-height: 1.22;
	}
}

.iq-data-all > span {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.875rem;
}

.iq-data-all > span > span {
	font-size: 1.75rem;
	font-weight: 700;
}

/* ---------------- 
--- Brands
---------------- */

.iq-brands-logos img {
	width: 160px;
	display: inline-block;
	margin: 0 1.5rem 2rem;
	padding: 1.25rem;
}

@media (max-width: 575.98px) {
	.iq-brands-logos img {
		width: 120px;
		margin: 0 1rem 2rem;
	}
}

@media (min-width: 768px) {
	.iq-brands h2 {
		font-size: 2.5rem;
	}
}

/* ---------------- 
--- Cards
---------------- */

.iq-card-body {
	padding: 4vw 5vw;
}

@media (max-width: 767.98px) {
	.iq-card-body {
		padding: 6.5vw;
	}
}

@media (max-width: 575.98px) {
	.iq-card-body {
		padding: 24px 0;
	}

	.iq_calc .iq-card-body.bg-light {
		background-color: transparent !important;
	}
}

.iq-card-calc {
	border: 2px solid var(--bs-light);
	border-right: 0 none;
}

@media (max-width: 991.98px) {
	.iq-card-calc {
		border-right: 2px solid var(--bs-light);
		border-bottom: 0 none;
	}
}

@media (max-width: 575.98px) {
	.iq-card-calc {
		border: 0 none;
		border-top: 2px solid var(--bs-light);
	}
}

/* ---------------- 
--- S Contact
---------------- */

.iq-contact-form-bg {
	background: url(../img/bg_form.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
	background-blend-mode: darken;
	background-position: center;
	background-size: cover;
}

@media (max-width: 767.98px) {
	.iq-contact-form-bg {
		background: url(../img/bg_form_md.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
		background-position: center;
		background-size: cover;
	}
}

@media (max-width: 575.98px) {
	.iq-contact-form-bg {
		background: url(../img/bg_form_sm.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
		background-position: center;
		background-size: cover;
	}
}

/* ---------------- 
--- Footer
---------------- */

.iq-footer {
	padding: 40px 0 30px;
}

.iq-footer-info p {
	font-size: 1rem;
	font-weight: 600;
}

.iq-footer-icon {
	width: 40px;
	height: 40px;
}

.iq-logo-bottom img {
	width: 100%;
	max-width: 220px;
}

.iq-copyright {
	margin-top: 0.75rem;
	font-size: 0.625rem;
	line-height: 1.4;
	font-weight: 600;
	text-transform: uppercase;
	color: rgba(var(--bs-body-color-rgb), 0.4);
}

/* ---------------- 
--- Forms
---------------- */

.form-control {
	padding: 1.2rem 1.75rem;
	font-size: 1.125rem;
}

@media (max-width: 575.98px) {
	.form-control {
		padding: 0.875rem 1.25rem;
		font-size: 1rem;
	}
}

.form-control:focus {
	border-color: #86b7fe;
	box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.25);
}

.form-select {
	padding: 1.2rem 1.75rem;
	font-size: 1.25rem;
}

@media (max-width: 575.98px) {
.form-select {
		padding: 0.875rem 1.25rem;
		font-size: 1.125rem;
	}
}

/* ---------------- 
--- Form Calc
---------------- */

.iq-form-calc {
	--bs-border-width: 0;
	--bs-border-radius: 0;
	--bs-gutter-x: 3rem;
	--bs-gutter-y: 3rem;
}

@media (max-width: 575.98px) {
	.iq-form-calc {
		--bs-gutter-x: 1.5rem;
		--bs-gutter-y: 1.5rem;
	}
}

.iq-form-calc .form-control {
	background-color: #ececec;
}

.iq-form-calc .input-group-text {
	background-color: #ececec;
}

.iq-form-calc .form-select {
	background-color: #ececec;
}

/* ---------------- 
--- Form Modal
---------------- */

.iq-form-modal {
	--bs-border-color: #ddd;
	--bs-border-radius: 0;
	--bs-gutter-x: 3rem;
	--bs-gutter-y: 3rem;
}

@media (max-width: 575.98px) {
	.iq-form-calc {
		--bs-gutter-x: 1.5rem;
		--bs-gutter-y: 1.5rem;
	}
}

.iq-form-modal .form-control {
	background-color: #F7F7F7;
}

.iq-form-modal .input-group-text {
	background-color: #F7F7F7;
}

/* ---------------- 
--- Form Message
---------------- */

.iq-form-message {
	--bs-border-width: 0;
	--bs-border-radius: 0;
}

.iq-form-message .input-group-text {
	background-color: var(--bs-body-bg);
}

/* ---------------- 
--- Modal
---------------- */

.modal {
	--bs-modal-width: 640px;
	--bs-modal-padding: 1rem 3.75rem 3.75rem;
	--bs-modal-margin: 1.5rem;
	--bs-modal-border-width: 0;
	--bs-modal-border-radius: 0;
	--bs-modal-inner-border-radius: 0;
	--bs-modal-header-padding-x: 1rem;
	--bs-modal-header-padding-y: 1rem;
	--bs-modal-header-padding: 1rem 1rem;
	--bs-modal-header-border-width: 0;
}

@media (max-width: 575.98px) {
	.modal {
		--bs-modal-padding: 0 1.25rem 3rem;
		--bs-modal-margin: 0.75rem;
	}
}

.modal-backdrop {
	--bs-backdrop-zindex: 1054;
	--bs-backdrop-opacity: 0.6;
}

.btn-close {
	background: transparent var(--bs-btn-close-bg) center/0.75em auto no-repeat;
}

/* ---------------- 
--- Map
---------------- */

.iq-map {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 500px;
}

.iq-map iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/* ---------------- 
--- Slider
---------------- */

:root {
	--swiper-pagination-bullet-width: 10px;
	--swiper-pagination-bullet-height: 10px;
	--swiper-pagination-bullet-inactive-color: var(--bs-primary);
	--swiper-pagination-bullet-inactive-opacity: 0.4;
	--swiper-pagination-color: var(--bs-primary);
	--swiper-pagination-bullet-horizontal-gap: 6px;
}

.swiper.iq-slider {
	width: 100%;
	height: 100%;
	padding-bottom: 4.375rem;
}

.swiper-pagination-bullet {
	position: relative;
}

.swiper-pagination-bullet::after {
	content: "";
	position: absolute;
	left: -5px;
	top: -5px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid var(--bs-primary);
	opacity: 0.75;
	transform: scale(0);
	transition: transform 0.2s;
}

.swiper-pagination-bullet-active::after {
	transform: scale(1);
}

@media (min-width: 768px) {
	.iq-slider .swiper-slide {
		width: 600px;
		height: auto;
	}
}

@media (max-width: 767.98px) {
	.iq-slider .swiper-slide {
		width: calc(100% - 48px);
	}
}

.swiper-button-next,
.swiper-button-prev {
	top: 30%;
	width: 90px;
	height: 90px;
	background-color: var(--bs-primary);
	color: #fff;
	border-radius: 0;
}

@media (max-width: 1399.98px) {

	.swiper-button-next,
	.swiper-button-prev {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 575.98px) {

	.swiper-button-next,
	.swiper-button-prev {
		top: 100px;
		width: 50px;
		height: 50px;
	}
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	opacity: 0.9;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 14px;
}



/* --------------------
-- Scrollbar
-------------------- */

::-webkit-scrollbar {
	width: 3px;
	height: 3px;
}

::-webkit-scrollbar-button {
	width: 0;
	height: 0;
}

::-webkit-scrollbar-thumb {
	background: var(--iq-navbar-bg);
}

::-webkit-scrollbar-track {
	background: var(--iq-dark-blue);
}

/* --------------------
-- Selection
-------------------- */

::selection {
	text-shadow: none;
}
