/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
	--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Jost", sans-serif;
	--nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
	--background-color: #ffffff;
	/* Background color for the entire website, including individual sections */
	--default-color: #444444;
	/* Default color used for the majority of the text content across the entire website */
	--heading-color: #37517e;
	/* Color for headings, subheadings and title throughout the website */
	--accent-color: #42c0f0;
	/* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #ffffff;
	/* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff;
	/* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
	/* COLORS */
	--color-transparent: transparent;
	--color-lightgreen: #44eda4;
	--color-green: #259b8f;
	--color-cyan: #42c0f0;
	--color-red: #df1529;
	--color-white: #ffffff;
	--color-black: #000000;
	--color-darkgrey: #444444;
	--color-lightergrey: #888888;
	--color-lightgrey: #CCCCCC;
	--color-superlightgrey: #EEEEEE;
	--color-blue: #37517e;
	--color-darkred: #992424;
	--color-lightred: #ffe0e0;
}

/* Nav Menu Colors */
:root {
	--nav-background-color: transparent;
	/* The background color of the main navigation menu */
	--nav-scroll-background-color: #e0f2fc;
	/* The background color of the main navigation menu */
	--nav-color: #FFFFFF;
	/* The default color of the main navmenu links */
	--nav-scroll-color: #1d1d1b;
	--nav-hover-color: #42c0f0;
	/* Applied to main navmenu links when they are hovered over or active */
	--nav-scroll-hover-color: #37517e;
	/* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff;
	/* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff;
	/* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #444444;
	/* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #42c0f0;
	/* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Rewrite styles
--------------------------------------------------------------*/
.invalid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: .2rem .5rem;
	margin-top: .3rem;
	font-size: .7rem;
	font-weight: 600;
	color: var(--color-darkred);
	background-color: var(--color-lightred);
	border-radius: var(--bs-border-radius);
}

.invalid-tooltip::before {
	content: '';
	width: 0px;
	height: 0px;
	position: absolute;
	left: 10px;
	top: -10px;
	border: 5.5px solid;
	border-color: transparent transparent var(--color-lightred) transparent;
}

.form-check-input {
	clear: left;
	box-shadow: none !important;
}

.form-switch.form-switch-sm {
	margin-bottom: 0.5rem;
	/* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-sm .form-check-input {
	height: 1rem;
	width: calc(1rem + 0.75rem);
	border-radius: 2rem;
}

.form-switch.form-switch-md {
	margin-bottom: 1rem;
	/* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-md .form-check-input {
	height: 1.5rem;
	width: calc(2rem + 0.75rem);
	border-radius: 3rem;
}

.form-switch.form-switch-lg {
	margin-bottom: 1.5rem;
	/* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-lg .form-check-input {
	height: 2rem;
	width: calc(3rem + 0.75rem);
	border-radius: 4rem;
}

.form-switch.form-switch-xl {
	margin-bottom: 2rem;
	/* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-xl .form-check-input {
	height: 2.5rem;
	width: calc(4rem + 0.75rem);
	border-radius: 5rem;
}

.form-check-input:checked {
	background-color: var(--color-cyan);
	border-color: var(--color-cyan);
}

.form-switch div.invalid-feedback {
	position: absolute;
	left: 0;
	top: 30px;
}

/*--------------------------------------------------------------
# Date Picker styles
--------------------------------------------------------------*/
.datepicker {
	font-size: .9rem;
	color: var(--color-white);
	background-color: var(--color-black);
}

.datepicker-dropdown.datepicker-orient-top::after {
	border-top: 6px solid #212121;
}

.datepicker th.prev,
.datepicker th.datepicker-switch,
.datepicker th.next {
	color: var(--color-lightgreen);
}

.datepicker th.dow {
	color: var(--color-cyan);
}

.datepicker table tr td.day:not(.disabled).focused,
.datepicker table tr td.day:not(.disabled):hover {
	color: var(--color-black);
}

.datepicker table tr td span:not(.disabled).focused,
.datepicker table tr td span:not(.disabled):hover {
	color: var(--color-black);
}

.datepicker .datepicker-switch:hover,
.datepicker .next:hover,
.datepicker .prev:hover,
.datepicker tfoot tr th:hover {
	background: #444444;
}

/*--------------------------------------------------------------
# Global styles
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--color-blue);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--color-blue), var(--accent-color) 65%);
	text-decoration: underline;
}

a.link-a {
	color: var(--color-darkgrey);
}

a.link-a:hover {
	color: color-mix(in srgb, var(--color-darkgrey), var(--color-black) 7%);
}

a.link-b {
	color: var(--color-green);
}

a.link-b:hover {
	color: color-mix(in srgb, var(--color-green), var(--color-black) 7%);
}

h1,
h2 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

h3 {
	color: var(--color-black);
	font-family: var(--heading-font);
	font-weight: 500;
}

h4 {
	color: var(--color-black);
	font-family: var(--heading-font);
	font-weight: 500;
}

.light-background {
	--background-color: #f2f2f2;
	--surface-color: #ffffff;
}

a.start,
a.start:focus {
	background: transparent;
	line-height: 1;
	transition: 0.3s;
	border-radius: 10px;
	display: inline-block;
	text-decoration: none;
}

a.start.signin {
	color: var(--color-lightgreen);
	border: 2px solid var(--color-lightgreen);
}

a.start.signup {
	color: var(--color-cyan);
	border: 2px solid var(--color-cyan);
}

a.start.signin:hover,
a.start.signin.active {
	color: var(--color-black);
	background: var(--color-lightgreen);
}

a.start.signup:hover,
a.start.signup.active {
	color: var(--color-black);
	background: var(--color-cyan);
}

a.start i::before {
	float: left;
}

a.start.signin:hover i::before,
a.start.signup:hover i::before,
a.start.signin.active i::before,
a.start.signup.active i::before {
	color: var(--color-black);
}

.single-page h3 {
	font-size: 26px;
	font-weight: 700;
}

.single-page h4 {
	font-size: 20px;
	font-weight: 600;
}

.single-page p {
	font-size: 16px;
}

.single-page ul {
	list-style: none;
	padding: 0;
	font-size: 16px;
}

.single-page ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

.single-page ul i {
	font-size: 20px;
	margin-right: 8px;
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Header styles
--------------------------------------------------------------*/
.header {
	background-color: var(--nav-background-color);
	color: var(--default-color);
	transition: all .3s ease;
	z-index: 997;
	padding: 20px 40px;
	height: 0;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 30px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 500;
	color: var(--heading-color);
	letter-spacing: 2px;
	line-height: 0;
	text-transform: uppercase;
}

.header a.start,
.header a.start:focus {
	font-size: 16px;
	padding: 10px 15px;
}

.header a.start.signin {
	margin: 0 15px 0 25px;
}

.header a.start i::before {
	color: var(--color-white);
	margin: 0 7px 0 0;
	font-size: 16px;
}

/* Main Page Header
------------------------------*/
body.main-page .header {
	background-color: var(--nav-background-color);
	color: var(--nav-color);
}

/* Main Page And Single Page Header on Scroll
------------------------------*/
body.scrolled .header,
body.single-page .header {
	overflow: hidden;
	height: 80px;
	background-color: var(--color-black);
	border-bottom: 1px solid color-mix(in srgb, #333333, transparent 30%);
	box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Navigation Menu styles
--------------------------------------------------------------*/
/* Desktop Navigation */
.navmenu {
	padding: 0 25px 0 0;
	border-right: 1px solid #eeeeee;
}

.navmenu ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navmenu li {
	position: relative;
}

.navmenu a,
.navmenu a:focus {
	color: var(--color-white);
	padding: 0 15px;
	font-size: 15px;
	font-family: var(--nav-font);
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	transition: 0.3s;
	text-decoration: none;
}

.navmenu a i,
.navmenu a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
	transition: 0.3s;
}

.navmenu li:last-child a {
	padding-right: 0;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
	color: var(--color-cyan);
}

.navmenu .dd-box-shadow {
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu .mobile-nav-toggle {
	display: none;
	margin-right: 20px;
}

.navmenu ul hr {
	display: none;
}

.navmenu ul li.actions-mobile {
	display: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: -15px;
	z-index: 99999;
	background-color: var(--color-green);
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--color-green), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
}

/*--------------------------------------------------------------
# Callback container
--------------------------------------------------------------*/
.callback .alert {
	margin-bottom: 0;
}

.callback .alert i {
	margin-right: 10px;
}

.callback .alert p {
	margin-bottom: 0;
	font-size: 16px;
}

.callback .alert p.alert-title {
	font-weight: 500;
}

.callback .alert p.alert-msg {
	color: var(--color-black);
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	--background-color: color-mix(in srgb, var(--default-color), transparent 96%);
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 20px 0;
	position: relative;
	border-bottom: 1px solid color-mix(in srgb, #eeeeee, transparent 30%);
}

.page-title h1 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 100px 0;
	scroll-margin-top: 88px;
	overflow: clip;
}

section .info-wrap {
	background-color: var(--surface-color);
	height: 100%;
	padding: 30px;
	border-top: 3px solid var(--accent-color);
	border-bottom: 3px solid var(--accent-color);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

section form input:not([type=checkbox]):not([type=radio]),
section form .form-select {
	font-size: 14px;
	padding: 10px 15px;
	box-shadow: none;
}

section form input:not([type=checkbox]):not([type=radio]):focus,
section form .form-select:focus {
	border-color: var(--accent-color);
}

section form input:not([type=checkbox]):not([type=radio])::placeholder,
section form .form-select::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

section form .btn,
section.pricing a.btn {
	color: var(--color-white);
	background: var(--accent-color);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 50px;
	font-size: 18px;
}

section form .btn.danger {
	background: var(--color-red);
}

section form .btn:hover {
	color: var(--color-white);
	background: color-mix(in srgb, var(--accent-color), var(--color-black) 7%);
}

section form .btn.danger:hover {
	color: var(--color-white);
	background: color-mix(in srgb, var(--color-red), var(--color-black) 7%);
}

section form .btn:active {
	color: var(--color-white) !important;
	background: color-mix(in srgb, var(--accent-color), var(--color-black) 12%) !important;
}

section form .btn.danger:active {
	color: var(--color-white) !important;
	background: color-mix(in srgb, var(--color-red), var(--color-black) 12%) !important;
}

section form .btn.disabled,
section form .btn:disabled {
	color: var(--color-white);
	pointer-events: none;
	background: color-mix(in srgb, var(--accent-color), var(--color-white) 40%);
}

section form .btn.danger.disabled,
section form .btn.danger:disabled {
	color: var(--color-white);
	pointer-events: none;
	background: color-mix(in srgb, var(--color-red), var(--color-white) 40%);
}

section form select {
	font-size: 14px !important;
	padding: 10px 15px !important;
	background-color: var(--bs-tertiary-bg) !important;
}

section form div.input-group input,
section form div.input-group input {
	border-top-left-radius: var(--bs-border-radius) !important;
	border-bottom-left-radius: var(--bs-border-radius) !important;
	border-color: var(--bs-border-color);
}

section form div.input-group .input-group-text,
section form div.input-group .input-group-addon {
	border-top-right-radius: var(--bs-border-radius) !important;
	border-bottom-right-radius: var(--bs-border-radius) !important;
	border-color: var(--bs-border-color);
}

section form a.link-a,
section form a.link-b {
	font-size: 1rem;
}

section p {
	font-size: 18px;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 40px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	text-transform: uppercase;
	position: relative;
}

.section-title h2:before {
	content: "";
	position: absolute;
	display: block;
	width: 160px;
	height: 1px;
	background: color-mix(in srgb, var(--default-color), transparent 60%);
	left: 0;
	right: 0;
	bottom: 1px;
	margin: auto;
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.section-title p {
	margin-bottom: 0;
	font-size: 18px !important;
	color: var(--color-lightergrey);
}

.single-page .section-title {
	padding-bottom: 60px;
}

/*--------------------------------------------------------------
# Signin Section
--------------------------------------------------------------*/
.signin div.signin-icon div {
	border-radius: 50%;
	width: 130px;
	height: 130px;
	display: inline-block;
	border: 5px solid var(--color-green);
	background-color: #def9f3;
}

.signin div.signin-icon i {
	font-size: 100px;
	line-height: 1;
	display: inline-block;
	color: var(--color-green);
}

/*--------------------------------------------------------------
# Signup Section
--------------------------------------------------------------*/
.signup div.signup-icon div {
	border-radius: 50%;
	width: 130px;
	height: 130px;
	display: inline-block;
	border: 5px solid var(--color-blue);
	background-color: #e0f2fc;
}

.signup div.signup-icon i {
	font-size: 100px;
	line-height: 1;
	display: inline-block;
	color: var(--color-blue);
}

.signup span.toggle-password {
	cursor: pointer;
	font-size: 1.1rem;
}

.signup span.show-password i {
	color: var(--color-green);
}

.signup span.hide-password i {
	color: var(--color-red);
}

.signup div.form-check label {
	margin-top: 5px;
}

.signup hr {
	color: var(--accent-color);
}

.signup p.help-text {
	color: var(--color-blue);
}

/*--------------------------------------------------------------
# Password Reset Section
--------------------------------------------------------------*/
.password-reset div.password-reset-icon div {
	border-radius: 50%;
	width: 130px;
	height: 130px;
	display: inline-block;
	border: 5px solid var(--color-cyan);
	background-color: #def1f7;
}

.password-reset div.password-reset-icon i {
	font-size: 100px;
	line-height: 1;
	display: inline-block;
	color: var(--color-cyan);
}

.password-reset button#send-prcode {
	padding: 0 10px;
	background-color: var(--color-green);
	color: var(--color-white);
	border-top-right-radius: var(--bs-border-radius) !important;
	border-bottom-right-radius: var(--bs-border-radius) !important;
}

.password-reset button#send-prcode:hover {
	background-color: color-mix(in srgb, var(--color-green), transparent 20%);
}

/*--------------------------------------------------------------
# Global Section
--------------------------------------------------------------*/
main {
	position: relative;
	z-index: 2;
	margin-bottom: 3rem;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	/* Fit 100% of the viewport height */
	min-height: 100vh;
	/* Ensures a minimum full height of the viewport */
	overflow: hidden;
	background-color: #0c1116;
	background-size: cover;
	z-index: 1;
	display: flex;
	/* Flexbox for centering content */
	align-items: center;
	/* Center vertically */
}

.hero .container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

/* For content inside the container */
.hero .container>.row {
	width: 100%;
}

/* The video that covers the entire screen */
.hero video#video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* This makes the video cover everything without distortion */
	z-index: -1;
	-o-object-fit: cover;
	-moz-object-fit: cover;
	-webkit-object-fit: cover;
	pointer-events: none;
}

.hero img.logo {
	max-width: 400px;
}

.hero h2 {
	margin: 0;
	font-size: 50px;
	font-weight: 700;
	line-height: 56px;
	color: var(--color-white);
}

.hero p.intro-text-green {
	color: var(--color-lightgreen);
	margin: 40px 0 0 0;
	font-size: 28px;
	line-height: 1.3;
	font-weight: 600;
}

.hero p.intro-text-white {
	color: var(--color-lightgrey);
	margin: 5px 0 50px 0;
	font-size: 26px;
	line-height: 1.3;
	font-weight: 600;
}

.hero a.start,
.hero a.start:focus {
	font-size: 20px;
	padding: 12px 40px;
	transition: 0.4s;
	border-radius: 50px;
}

.hero a.start i::before {
	color: var(--color-white);
	margin: -1px 10px 0 0;
	font-size: 22px;
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

/*--------------------------------------------------------------
# Brands Section
--------------------------------------------------------------*/
.brands {
	padding: 20px 0;
	border-bottom: 1px solid color-mix(in srgb, #cccccc, transparent 30%);
}

.brands .swiper {
	padding: 15px 0;
}

.brands .swiper-wrapper {
	height: auto;
}

.brands .swiper-slide {
	text-align: center;
}

.brands .swiper-slide img {
	transition: 0.3s;
	height: 35px;
}

.brands .swiper-slide img:hover {
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .container .left {
	padding-right: 3rem;
}

.about .container .right {
	padding-left: 3rem;
}

.about .read-more {
	color: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 8px 28px;
	border-radius: 5px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--accent-color);
}

.about a.start,
.about a.start:focus {
	font-size: 18px;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 50px;
	margin-top: 20px;
}

.about a.start i::before {
	color: var(--color-cyan);
	margin: 0 7px 0 0;
	font-size: 18px;
}

/*--------------------------------------------------------------
# Buy Section
--------------------------------------------------------------*/
.buy {
	font-size: 18px;
}

.buy .resume-title {
	color: var(--heading-color);
	font-size: 26px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 20px;
}

.buy .resume-item {
	padding: 0 0 20px 20px;
	margin-top: -2px;
	border-left: 2px solid var(--accent-color);
	position: relative;
}

.buy .resume-item h4 {
	line-height: 18px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.buy .resume-item h5 {
	font-size: 16px;
	padding: 5px 15px;
	display: inline-block;
	font-weight: 600;
	margin-bottom: 10px;
}

.buy .resume-item ul {
	padding-left: 20px;
}

.buy .resume-item ul li {
	padding-bottom: 0;
	font-style: italic;
	color: var(--color-blue);
}

.buy .resume-item:last-child {
	padding-bottom: 0;
}

.buy .resume-item::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50px;
	left: -9px;
	top: 0;
	background: var(--background-color);
	border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Company Section
--------------------------------------------------------------*/
.company .container .left {
	padding-right: 3rem;
}

.company .container .right {
	padding-left: 3rem;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
	background-color: var(--surface-color);
	box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
	padding: 50px 30px;
	transition: all ease-in-out 0.4s;
	height: 100%;
}

.services .service-item .icon {
	margin-bottom: 30px;
}

.services .service-item .icon i {
	color: var(--accent-color);
	font-size: 36px;
	transition: 0.3s;
}

.services .service-item h4 {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px;
	height: 50px;
}

.services .service-item h4 a {
	color: var(--heading-color);
	transition: ease-in-out 0.3s;
}

.services .service-item p {
	line-height: 24px;
	font-size: 16px;
	margin-bottom: 15px;
}

.services .service-item:hover {
	transform: translateY(-10px);
}

.services .service-item:hover h4 a {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
	padding: 120px 0;
	position: relative;
	clip-path: inset(0);
}

.call-to-action img {
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.call-to-action:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 35%);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.call-to-action .container {
	position: relative;
	z-index: 3;
}

.call-to-action h3 {
	color: var(--color-black);
	font-size: 32px;
	font-weight: 700;
}

.call-to-action p {
	color: var(--color-black);
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 500;
}

.call-to-action .cta-btn-container a.start.signup,
.call-to-action .cta-btn-container a.start.signup:focus {
	color: var(--color-cyan);
	background: var(--color-black);
	border: 2px solid var(--color-black);
	font-size: 25px;
	padding: 15px 30px;
	transition: 0.4s;
	border-radius: 50px;
}

.call-to-action .cta-btn-container a.start.signup:hover,
.call-to-action .cta-btn-container a.start.signup.active {
	color: var(--color-black);
	background: var(--color-cyan);
	border: 2px solid var(--color-cyan);
}

.call-to-action .cta-btn-container a.start i::before {
	float: left;
	margin-right: 10px;
	color: var(--color-white);
}

.call-to-action .cta-btn-container a.start.signup:hover i::before,
.call-to-action .cta-btn-container a.start.signup.active i::before {
	color: var(--color-black);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing p.help-text {
	font-style: italic;
	font-size: 20px;
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 0;
}

.pricing span.highlight {
	font-weight: 500;
	color: var(--color-black);
}

.pricing .pricing-item {
	background-color: var(--surface-color);
	box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
	padding: 60px 30px;
	height: 100%;
	transition: all ease-in-out 0.4s;
	border-radius: 5px;
	position: relative;
}

.pricing .pricing-item:hover {
	transform: translateY(-10px);
}

.pricing .pricing-item h3 {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 20px;
}

.pricing .pricing-item h4 {
	color: var(--accent-color);
	font-size: 48px;
	font-weight: 400;
	font-family: var(--heading-font);
	margin-bottom: 0;
}

.pricing .pricing-item h4 sup {
	font-size: 28px;
}

.pricing .pricing-item h4 span {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 18px;
}

.pricing .pricing-item ul {
	padding: 20px 0;
	list-style: none;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	text-align: left;
	line-height: 20px;
}

.pricing .pricing-item ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.pricing .pricing-item ul i {
	color: #059652;
	font-size: 24px;
	padding-right: 3px;
}

.pricing .pricing-item ul .na {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .pricing-item ul .na i {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .pricing-item ul .na span {
	text-decoration: line-through;
}

.pricing .pricing-item .calculator-btn {
	background: var(--accent-color);
	color: var(--contrast-color);
	display: inline-block;
	padding: 7px 30px;
	border-radius: 50px;
	transition: none;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--heading-font);
	transition: 0.3s;
	border: 1px solid var(--accent-color);
	position: absolute;
	bottom: 30px;
	right: 30px;
	left: 30px;
	text-align: center;
	font-size: 18px;
}

.pricing .pricing-item .calculator-btn:hover {
	color: var(--color-white);
	background: color-mix(in srgb, var(--accent-color), var(--color-black) 7%);
}

.pricing .pricing-item .featured {
	border-top-color: var(--accent-color);
}

.pricing .pricing-item.extra-benefits {
	padding: 25px 30px 0;
	margin-top: 30px;
	background-color: rgba(66, 192, 240, 0.1);
	border: 3px solid var(--accent-color);
	box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.15);
}

.pricing .pricing-item.extra-benefits h3 {
	margin-bottom: 5px;
}

.pricing .pricing-item.extra-benefits h4 {
	font-size: 38px;
	margin-bottom: 10px;
}

.pricing .pricing-item.extra-benefits p {
	margin-bottom: 0;
}

.pricing .extended-price h3 {
	margin-bottom: 40px;
	margin-top: 30px;
	text-transform: uppercase;
	font-size: 26px;
	color: var(--color-blue);
}

.pricing .extended-price-item {
	padding: 0 0 20px 20px;
	margin-top: -2px;
	border-left: 2px solid var(--accent-color);
	position: relative;
}

.pricing .extended-price-item h4 {
	line-height: 18px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.pricing .extended-price-item h5 {
	font-size: 16px;
	padding: 5px 15px;
	display: inline-block;
	font-weight: 600;
	margin-bottom: 10px;
}

.pricing .extended-price-item ul {
	padding-left: 20px;
}

.pricing .extended-price-item ul li {
	padding-bottom: 0;
	font-style: italic;
	color: var(--color-blue);
}

.pricing .extended-price-item:last-child {
	padding-bottom: 0;
}

.pricing .extended-price-item:last-child p {
	margin-bottom: 0;
}

.pricing .extended-price-item::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50px;
	left: -9px;
	top: 0;
	background: var(--background-color);
	border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Regulations Section
--------------------------------------------------------------*/
.regulations {
	font-size: 18px;
}

.regulations h4 {
	font-size: 22px;
	margin-top: 2rem;
}

/*--------------------------------------------------------------
# Calculator Section
--------------------------------------------------------------*/
.calculator .container .left {
	padding-right: 3rem;
}

.calculator .container .right {
	padding-left: 3rem;
}

.calculator .info-item {
	margin-bottom: 10px;
	background-color: var(--bs-tertiary-bg);
	padding: 10px 0;
	border-radius: var(--bs-border-radius);
	border: var(--bs-border-width) solid var(--bs-border-color);
}

.calculator .info-item p,
.calculator .total-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
}

.calculator .info-item p.info-number {
	font-weight: 600;
}

.calculator .total-item {
	margin-top: 15px;
	background-color: color-mix(in srgb, var(--color-green), transparent 80%);
	color: var(--color-green);
	border: 2px solid var(--color-green);
	padding: 10px 0;
	border-radius: var(--bs-border-radius);
	font-weight: 700;
}

.calculator .total-item p {
	font-weight: 700;
	font-size: 1rem;
}

.calculator div.alert-message h4 {
	font-size: 16px;
	font-weight: 600;
}

.calculator div.alert-message p {
	font-size: .8rem;
	text-align: left;
}

.calculator div.alert-message p a.alert-link {
	font-weight: 600;
	text-decoration: underline;
	color: var(--bs-alert-link-color);
}

.calculator div.alert-message p a.alert-link:hover {
	text-decoration: underline;
	color: var(--bs-alert-link-color);
}

.calculator .help-text {
	margin-top: 20px;
}

.calculator .help-text p {
	font-size: .8rem;
}

.calculator .notification {
	border-bottom: var(--bs-border-width) solid var(--bs-border-color);
}

.calculator .notification p {
	font-size: .8rem;
}

.calculator .warning p {
	margin: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
	margin-top: 15px;
}

.faq .faq-container .faq-item {
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
	position: relative;
	padding: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
	margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	margin: 0 30px 0 32px;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
	color: var(--accent-color);
	padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
	color: var(--color-blue);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0px 0px 0px;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: .5rem;
	margin-left: 2rem;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-content ul {
	margin-left: 2rem;
}

.faq .faq-container .faq-item .faq-content ul li i {
	color: var(--color-green);
}

.faq .faq-container .faq-item .faq-icon {
	position: absolute;
	top: 22px;
	left: 20px;
	font-size: 20px;
	line-height: 0;
	transition: 0.4s;
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
	color: var(--color-blue);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Terms Section
--------------------------------------------------------------*/
.service-terms h3 {
	font-size: 24px;
	font-weight: 500;
}

.service-terms p {
	font-size: 18px;
}

.service-terms ol {
	font-size: 18px;
}

.service-terms ol.number-list {
	list-style-type: none;
	counter-reset: count-numbers;
	padding-left: 0;
}

.service-terms ol.number-list li {
	counter-increment: count-numbers;
	padding-left: 45px;
	position: relative;
}

.service-terms ol.number-list li::before {
	content: counter(count-numbers) '. ';
	/* Solo número + punto */
	position: absolute;
	left: 20px;
	font-weight: bold;
}

.service-terms ol.alpha-list {
	list-style-type: none;
	counter-reset: count-letters;
	padding-left: 0;
}

.service-terms ol.alpha-list li {
	counter-increment: count-letters;
	padding-left: 45px;
	position: relative;
}

.service-terms ol.alpha-list li::before {
	content: counter(count-letters, lower-alpha) ') ';
	position: absolute;
	left: 20px;
	font-weight: bold;
}

.service-terms ol li {
	margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container .left {
	padding-right: 3rem;
}

.contact .container .right {
	padding-left: 3rem;
}

.contact .info-item {
	margin-bottom: 40px;
}

.contact .info-item i {
	font-size: 20px;
	color: var(--accent-color);
	background: color-mix(in srgb, var(--accent-color), transparent 92%);
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	margin-right: 15px;
}

.contact .info-item h3 {
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
}

.contact .info-item:hover i {
	background: var(--accent-color);
	color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
	padding-bottom: 20px;
	position: relative;
	border-top: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-top {
	padding-top: 50px;
}

.footer .footer-top .addresses {
	border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
	padding-bottom: 30px;
}

.footer .footer-top .addresses h3 {
	color: var(--heading-color);
	font-size: 23px;
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-right: 10px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-links {
	margin-bottom: 30px;
}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-links ul i {
	margin-right: 3px;
	font-size: 12px;
	line-height: 0;
	color: var(--accent-color);
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a {
	display: inline-block;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .footer-links ul a.active {
	color: var(--color-black);
	font-weight: 600;
}

.footer .footer-about a {
	color: var(--heading-color);
	font-size: 28px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: var(--heading-font);
}

.footer .footer-about a img {
	width: 150px;
}

.footer .footer-contact p {
	margin-bottom: 5px;
}

.footer .copyright {
	padding-top: 25px;
	padding-bottom: 0;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
	margin-bottom: 0;
}

.footer .developer {
	margin-top: 0;
	font-size: 13px;
}

/*----------------------------------------------------------------*/
/* MEDIA QUERIES */
/*----------------------------------------------------------------*/
/*Extra small	None	<576px
Small	sm	≥576px
Medium	md	≥768px
Large	lg	≥992px
Extra large	xl	≥1200px
Extra extra large	xxl	≥1400px*/

@media (max-width: 1599.98px) {

	/* Mobile Navigation */
	.navmenu .mobile-nav-toggle {
		display: block;
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown>.dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu>ul {
		display: block;
	}

	.hero img.logo {
		max-width: 350px;
	}

	.hero h2 {
		font-size: 40px;
	}

	.hero p.intro-text-green {
		font-size: 24px;
	}

	.hero p.intro-text-white {
		font-size: 22px;
	}
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

	section,
	.section {
		scroll-margin-top: 66px;
	}

	.hero img.logo {
		max-width: 300px;
	}

	.hero h2 {
		font-size: 35px;
	}

	.hero p.intro-text-green {
		font-size: 22px;
	}

	.hero p.intro-text-white {
		font-size: 20px;
	}

	.call-to-action .cta-btn-container a.start.signup,
	.call-to-action .cta-btn-container a.start.signup:focus {
		font-size: 20px;
		margin-top: 30px;
	}
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	.hero img.logo {
		max-width: 250px;
	}

	.hero h2 {
		font-size: 30px;
	}

	.hero p.intro-text-green {
		font-size: 20px;
	}

	.hero p.intro-text-white {
		font-size: 18px;
	}

	.about .container .left {
		padding-right: calc(var(--bs-gutter-x) * .5);
	}

	.about .container .right {
		padding-left: calc(var(--bs-gutter-x) * .5);
		margin-top: 0;
	}

	.company .container .left {
		padding-right: calc(var(--bs-gutter-x) * .5);
	}

	.company .container .right {
		padding-left: calc(var(--bs-gutter-x) * .5);
		margin-top: 40px;
	}

	.pricing .box {
		max-width: 60%;
		margin: 0 auto 30px auto;
	}

	.calculator .container .left {
		padding-right: calc(var(--bs-gutter-x) * .5);
	}

	.calculator .container .right {
		padding-left: calc(var(--bs-gutter-x) * .5);
		margin-top: 40px;
	}

	.contact .container .left {
		padding-right: calc(var(--bs-gutter-x) * .5);
	}

	.contact .container .right {
		padding-left: calc(var(--bs-gutter-x) * .5);
		margin-top: 40px;
	}

	.footer .footer-top .addresses h3 {
		font-size: 20px;
	}

	.footer .footer-links {
		display: none;
	}
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}

	body.scrolled .header,
	body.single-page .header {
		height: auto;
	}

	header .container,
	.container-fluid {
		--bs-gutter-x: 0;
	}

	.navmenu {
		border-right: none;
	}

	.navmenu .mobile-nav-toggle {
		margin-right: 0;
	}

	header .actionmenu {
		display: none;
	}

	nav.navmenu hr {
		color: var(--color-blue);
		margin: 10px 20px 15px;
		display: block;
	}

	.navmenu ul li.actions-mobile {
		display: block;
	}

	.hero img.logo {
		max-width: 200px;
	}

	.hero h2 {
		font-size: 25px;
	}

	.hero p.intro-text-green {
		font-size: 18px;
	}

	.hero p.intro-text-white {
		font-size: 17px;
	}

	.hero a.start,
	.hero a.start:focus {
		font-size: 18px;
	}

	.hero a.start i::before {
		font-size: 20px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.brands .swiper {
		padding: 5px 0;
	}

	.pricing .box {
		max-width: 80%;
		margin: 0 auto 30px auto;
	}

	.footer .footer-top .addresses .right {
		margin-top: 30px;
	}
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.header {
		padding: 20px 15px;
	}

	.section-title h2 {
		font-size: 24px;
	}

	section .info-wrap,
	.section .info-wrap {
		padding: 20px;
	}

	.single-page section.section {
		padding: 30px 0;
	}

	.hero p.intro-text-green {
		font-size: 17px;
	}

	.hero p.intro-text-white {
		font-size: 16px;
	}

	.pricing .box {
		max-width: 100%;
		margin: 0 auto 30px auto;
	}

	.pricing .pricing-item.extra-benefits h4 {
		font-size: 30px;
	}

	.pricing .extended-price h3 {
		font-size: 22px;
	}

	.footer .row {
		justify-content: center !important;
	}

	.footer .col-8,
	.footer .col-4 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		text-align: center !important;
	}

	.footer-about a {
		justify-content: center !important;
		display: flex !important;
	}

	.footer-about img {
		display: block !important;
		margin: 0 auto !important;
	}

	.footer .social-links {
		justify-content: center !important;
		display: flex !important;
	}

	.footer .social-links a {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.footer .col-4 h4,
	.footer .col-4 p {
		text-align: center !important;
	}
}

/* Additional responsive adjustments for very small devices */
@media (max-width: 375px) {}

/* Orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
	.hero h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.hero p.intro-text-green,
	.hero p.intro-text-white {
		font-size: 14px;
		margin: 20px 0 0 0;
	}

	.hero p.intro-text-white {
		margin-bottom: 30px;
	}
}

/* For browsers that do not support object-fit */
@supports not (object-fit: cover) {
	.hero video#video-bg {
		/* Fallback for browsers that do not support object-fit */
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		/* Center video */
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
}

/* High-DPI screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {}