:root {
	--default-transition-time: .25s;
	--global-padding: min(86px, 4.5%);
}
@media (max-width: 1200px) {
	:root {
		--global-padding: 3%;
	}
}
@media (max-width: 767px) {
	:root {
		--global-padding: 12px;
	}
}

:focus {
	outline: none;
}
:focus-visible  {
  outline: 1px dotted var(--e-global-color-6731b05);
}

body {
	font-family: 'Montserrat', sans-serif;
/* 	max-width: 1920px; */
	margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0 !important;
}

/* Buttons */
a.elementor-button {
	border-radius: 0;
}
.bordered a.elementor-button {
	padding: 10px 20px;
	border: 1px solid var(--e-global-color-6731b05);
	transition: background .25s ease-out;
}
.bordered a.elementor-button:hover {
	background-color: var(--e-global-color-2d123ba);
}
.bordered a.elementor-button::after {
	display: none;
}

/* Last paragraph */
div p:last-of-type {
	margin-bottom: 0;
}

/* Anchor inside paragraph */
p a {
	position: relative;
	text-decoration: none;
	color: var(--e-global-color-6731b05);
	transition: all var(--default-transition-time) ease-out;
}
p a:hover {
	color: var(--e-global-color-6731b05);
}

/* Links hover */
li.menu-item:not(.current-menu-item) a,
a.elementor-button {
	position: relative;
}
p a::after,
p span a::after,
a.elementor-button::after,
li.menu-item:not(.current-menu-item) a::after{
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	height: 2px;
	width: 0%;
	background-color: currentcolor;
	transition: all var(--default-transition-time) ease-out;
	border: none;
}
p a:hover::after,
p span a:hover::after,
a.elementor-button:hover::after,
li.menu-item:not(.current-menu-item) a:hover::after {
	width: 100%;
}
#menu-1-1660541 li.menu-item:not(.current-menu-item) a::after {
	bottom: -10px;
}

/* Title 1 */
.title-1 {
	position: relative;
	padding-bottom: 55px;
	text-align: center;
}
.title-1 span{
	display: block;
	color: var(--e-global-color-6731b05);
	font-weight: 700;
}
.title-1::after{
	content: '';
	position: absolute;
	bottom: 25px;
	left: 50%;
	height: 5px;
	width: 74px;
	background-color: var(--e-global-color-6cf7b93);
	transform: translateX(-50%);
}
.title-1.inline span{
	display: inline-block;
}
/* Title 1: END */

/* Global paddings */
.padding-x {
	padding-left: var(--global-padding) !important;
	padding-right: var(--global-padding) !important;
}

/* Image frame */
.elementor-widget-image.frame {
	height: fit-content;
}
.elementor-widget-image.frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    transform: scale(.95);
	  pointer-events: none;
}

/* Zoom on hover */
.elementor-widget-image.zoom img {
    position: relative;
    transition: all .4s ease-out;
}
.elementor-widget-image.zoom  {
    overflow: hidden;
}
.elementor-widget-image.zoom img:hover {
    transform: scale(1.1);
}

/* Subtitle */
.subtitle {
	position: relative;
	width: 100%;
}
.subtitle h2, .subtitle h3, .subtitle h4 {
	z-index: 1;
	color: var(--e-global-color-7609047, #0080C0);
	font-family: Montserrat;
	font-size: clamp(1.875rem, 1.775rem + 0.5vw, 2.375rem);
	font-weight: 700;
	line-height: 1.2em;
	text-transform: uppercase;
	background-color: #fff;
	padding: 0 50px;
	width: fit-content;
	margin: 0 auto;
}
.subtitle h2::before,
.subtitle h3::before,
.subtitle h4::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 1px;
	background-color: var(--e-global-color-7609047, #0080C0);
	transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
	.subtitle h2::before,
	.subtitle h3::before,
	.subtitle h4::before {
		display: none;
	}
	.subtitle {
		border-top: 2px solid var(--e-global-color-7609047, #0080C0);
		border-bottom: 2px solid var(--e-global-color-7609047, #0080C0);
		padding: 22px 0;
	}
}

/* Coming Soon */
.coming-soon > div{
	position: relative;
}
.coming-soon > div::after{
	content: 'Coming Soon';
	color: #fff;
	font-size: clamp(1.75rem, 1.525rem + 1.125vw, 2.875rem);
	padding: 0 25%;
	line-height: 1;
	text-transform: uppercase;
	position: absolute;
	inset: 0;
  background: #FE47477D;
	display: grid;
	align-content: center;
	pointer-events: none;
}
@media (max-width: 1200px) and (min-width: 1025px) {
	.coming-soon > div::after{
	font-size: 1.5rem;
	}
}

/* Other popular features */
.other-popular-features {
	position: relative;
	padding-top: 36px;
}
.other-popular-features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 80%;
	height: 1px;
	padding: 0 1rem;
	transform: translate(-50%, 18px);
	border: none;
	background-color: var(--e-global-color-1ec4226);
}
.other-popular-features::after {
	content: 'Other Popular Features to Consider';
	position: absolute;
	top: 0;
	left: 50%;
	width: auto;
	height: auto;
	padding: 0 1rem;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: none;
	background-color: #fff;
	color: var(--e-global-color-1ec4226);
	font-size: 28px;
	font-weight: 700;
	line-height: 36px;
}
@media (max-width: 767px) {
	.other-popular-features {
		padding-top: 100px;
	}
	.other-popular-features::before {
		display: none;
	}
	.other-popular-features::after {
		border-top: 1px solid var(--e-global-color-1ec4226);
		border-bottom: 1px solid var(--e-global-color-1ec4226);
		width: 90%;
		height: 100px;
		font-size: 24px;
		line-height: 30px; 
	}
}
