/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
>>> TABLE OF CONTENTS:
# Common
# Animations
# Main Menu
# Banner
# Service
# Call to Action
# Main Footer
# Contact
# Blog
	## Blog Details
# Page Header
# Sidemenu
# Sidebar
# FAQ
# Brand
# Testimonials
# App Screens
# Pricing
# Funfact
# Video
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

/*font-family: 'Barlow', sans-serif;*/

:root {
	--thm-font: 'Barlow', sans-serif;
	--thm-base: #ee464b;
	--thm-base-rgb: 238, 70, 75;
	--thm-black: #272839;
	--thm-black-rgb: 39, 40, 57;
	--thm-gray: transparent;
	/* ← ahora es transparente */
}


html {
	overflow-x: hidden;
}

body {
	overflow-x: hidden;
	font-family: var(--thm-font);
	color: #7c7d8a;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
}

a:active,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--thm-font);
}

.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

.block-title {
	margin-bottom: 50px;
}

.block-title__bubbles {
	position: relative;
	display: block;
	width: 19px;
	height: 27px;
	padding-bottom: 8px;
	margin-bottom: 15px;
}

.text-center .block-title__bubbles {
	margin-left: auto;
	margin-right: auto;
}

.block-title__bubbles::after,
.block-title__bubbles::before {
	opacity: 0;
	pointer-events: none;
}

.block-title__bubbles::after {
	position: absolute;
	bottom: 0;
	left: calc(50% - 9.5px);
}

.block-title p {
	margin: 0;
	line-height: 1em;
	color: #ee464b;
	font-weight: 500;
	font-size: 18px;
}

.block-title h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: 800;
	font-size: 46px;
}


.thm-btn {
	display: inline-block;
	vertical-align: middle;
	border: none;
	outline: none;
	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 51%, #e41256 100%);
	text-align: center;
	background-size: 200% auto;
	border-radius: 5px;
	color: #fff;
	padding: 18px 50px;
	font-size: 18px;
	font-weight: 600;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.thm-btn:hover {
	color: #fff;
	background-position: right center;

}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
	background-color: #fff !important;
	box-shadow: none !important;
	outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
	box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
	outline: none !important;
}

.bootstrap-select .dropdown-menu {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	z-index: 991;
	border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
	border-top: 1px solid var(--thm-gray);
}

.bootstrap-select .dropdown-menu>li.selected>a {
	background: var(--thm-base);
	color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
	font-size: 16px;
	font-weight: 500;
	padding: 4px 20px;
	color: var(--thm-black);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
	background: var(--thm-base);
	color: #fff;
	cursor: pointer;
}

/* datepicker */

.datepicker.dropdown-menu {
	min-width: 17rem;
}

.datepicker table {
	width: 100%;
}

.post-pagination {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	flex-wrap: wrap;
}

.post-pagination a {
	border-radius: 50%;
	background-color: #fff;
	color: var(--thm-black);
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	padding: 0;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 57px;
	height: 57px;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

@media(max-width: 480px) {
	.post-pagination a {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

.post-pagination a:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.post-pagination a.active {
	background-color: var(--thm-base);
	color: #fff;
	cursor: auto;
}

.post-pagination a+a {
	margin-left: 15px;
}


.scroll-to-top {
	display: inline-block;
	width: 45px;
	height: 45px;
	background: var(--thm-base);
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 99;
	text-align: center;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	display: none;
	border-radius: 50%;
	transition: all .4s ease;
}

.scroll-to-top i {
	color: #ffffff;
	font-size: 18px;
	line-height: 45px;
}

.scroll-to-top:hover {
	background-color: var(--thm-black);
}

.scroll-to-top:hover i {
	color: #fff;
}

.thm-base-bg {
	background-color: var(--thm-base);
}

.thm-base-bg-2 {
	background-color: var(--thm-base);
}

.thm-gray-bg {
	background-color: var(--thm-gray);
}


/* Cursor Style */
.cursor {
	position: absolute;
	background-color: #fff;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	-webkit-transform: scale(1);
	transform: scale(1);
	visibility: hidden;
}

.cursor {
	visibility: visible;
}

.cursor.active {
	opacity: 0.5;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.cursor.hovered {
	opacity: 0.08;
}

.cursor-follower {
	position: absolute;
	background-color: RGBA(255, 255, 255, 0.3);
	width: 50px;
	height: 50px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	visibility: hidden;
}

.cursor-follower {
	visibility: visible;
}

.cursor-follower.active {
	opacity: 0.7;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.cursor-follower.hovered {
	opacity: 0.08;
}

.cursor-follower.close-cursor:before {
	position: absolute;
	content: '';
	height: 25px;
	width: 2px;
	background: #fff;
	left: 48%;
	top: 12px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	display: inline-block;
}

.cursor-follower.close-cursor:after {
	position: absolute;
	content: '';
	height: 25px;
	width: 2px;
	background: #fff;
	right: 48%;
	top: 12px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



/*preloader*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: #fff;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ripple div {
	position: absolute;
	border: 4px solid #e41256;
	opacity: 1;
	border-radius: 50%;
	-webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}



/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes ImgBounce {
	0% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

@keyframes shapeMover {

	0%,
	100% {
		transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
	}

	50% {
		transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
	}
}


@keyframes bubbleMover {
	0% {
		-webkit-transform: translateY(0px) translateX(0) rotate(0);
		transform: translateY(0px) translateX(0) rotate(0);
	}

	30% {
		-webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
		transform: translateY(30px) translateX(50px) rotate(15deg);
		-webkit-transform-origin: center center;
		transform-origin: center center;
	}

	50% {
		-webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
		transform: translateY(50px) translateX(100px) rotate(45deg);
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
	}

	80% {
		-webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
		transform: translateY(30px) translateX(50px) rotate(15deg);
		-webkit-transform-origin: left top;
		transform-origin: left top;
	}

	100% {
		-webkit-transform: translateY(0px) translateX(0) rotate(0);
		transform: translateY(0px) translateX(0) rotate(0);
		-webkit-transform-origin: center center;
		transform-origin: center center;
	}
}

@keyframes banner3Shake {
	0% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}

	30% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}

	60% {
		-webkit-transform: rotate3d(1, 0, 0, 0deg);
		transform: rotate3d(1, 0, 0, 0deg);
	}

	80% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}

	100% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}
}


/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/


.main-nav__header-one {
width: 100%;
border-bottom: 1px solid rgba(255, 255, 255, .08);
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 999; /* keep header above page content */
transform: none;
-webkit-transform: none;
pointer-events: auto;
background-color: #000000;
}

.main-nav__logo {
display: flex;
align-items: center;
}

.main-nav__logo img {
display: block;
width: auto;
height: 70px;
}

.main-nav__header-one .container {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
}


.main-nav__logo-box .side-menu__toggler {
font-size: 20px;
color: #fff;
display: none;
}

.main-nav__main-navigation .main-nav__navigation-box {
margin: 0;
padding: 0;
list-style: none;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
align-items: center;
}

.main-nav__main-navigation .main-nav__navigation-box,
.main-nav__main-navigation .main-nav__navigation-box ul {
margin: 0;
padding: 0;
list-style: none;
}

.main-nav__main-navigation .main-nav__navigation-box>li+li {
margin-left: 45px;
}

.main-nav__main-navigation .main-nav__navigation-box>li {
position: relative;
padding: 38.75px 0px;
}

.main-nav__main-navigation .main-nav__navigation-box>li>a {
color: #ffffff;
font-size: 16px;
font-weight: 500;
font-family: var(--thm-font);
position: relative;
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box>li>a::before {
content: '';
width: 100%;
height: 1px;
background-color: #fff;
position: absolute;
top: calc(100% + 3px);
left: 0;
transform: scale(0, 1);
transform-origin: right center;
transition: transform 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box>li:hover>a,
.main-nav__main-navigation .main-nav__navigation-box>li.current>a,
.main-nav__main-navigation .main-nav__navigation-box>li.current-menu-item>a {
color: #fff;
}

.main-nav__main-navigation .main-nav__navigation-box>li:hover>a::before,
.main-nav__main-navigation .main-nav__navigation-box>li.current>a::before,
.main-nav__main-navigation .main-nav__navigation-box>li.current-menu-item>a::before {
transform: scale(1, 1);
transform-origin: left center;
}

/* Dropdown menu */

.main-nav__main-navigation .dropdown-btn {
display: none;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul {
position: absolute;
width: 230px;
background-color: #fff;
border-top: 2px solid var(--thm-black);
box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
-webkit-transform-origin: top;
transform-origin: top;
visibility: hidden;
opacity: 0;
z-index: 991;
-webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
}


.main-nav__main-navigation .main-nav__navigation-box>li ul>li {
position: relative;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul>li+li {
border-top: 1px solid rgba(var(--thm-black-rgb), .3);
}

.main-nav__main-navigation .main-nav__navigation-box>li ul>li>a {
display: block;
color: var(--thm-black);
font-size: 14px;
font-family: var(--thm-font);
word-break: break-all;
padding-top: 9.5px;
padding-bottom: 9.5px;
padding-left: 20px;
padding-right: 20px;
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul>li:hover>a {
color: #fff;
background-color: var(--thm-black);
}



/* Second level menu */

.main-nav__main-navigation .main-nav__navigation-box>li>ul {
top: 100%;
left: 0;
-webkit-transform: translateY(30px);
transform: translateY(30px);

visibility: hidden;
opacity: 0;
}

.main-nav__main-navigation .main-nav__navigation-box>li:hover>ul {
-webkit-transform: translateY(0);
transform: translateY(0);
visibility: visible;
opacity: 1;
}


/* Third level menu */

.main-nav__main-navigation .main-nav__navigation-box>li>ul>li>ul {
top: 0;
left: 100%;
-webkit-transform: translateX(30px);
transform: translateX(30px);
visibility: hidden;
opacity: 0;
}

.main-nav__main-navigation .main-nav__navigation-box>li>ul>li:hover>ul {
-webkit-transform: translateX(0px);
transform: translateX(0px);
visibility: visible;
opacity: 1;
}


/* After Third level menu */

.main-nav__main-navigation .main-nav__navigation-box>li>ul>li>ul>li ul {
display: none;
}


.header__btn {
background-image: none;
border: 2px solid #fff;
padding: 9px 45.25px;
}

.header__btn:hover {
background-color: #fff;
color: var(--thm-black);
}

.stricked-menu {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
z-index: 999; /* keep below any site-level overlays but above page content */
transform: translateY(-110%);
-webkit-transform: translateY(-110%);
pointer-events: none;
background-color: #000000;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.stricked-menu.stricky-fixed {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}


.stricked-menu .main-nav__navigation-box>li {
	padding-top: 25px;
	padding-bottom: 25px;
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/

.banner-one {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
}

.banner-one::before {
	content: '';
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: -2px;
	left: 0;
	background-color: #fff;
	clip-path: polygon(71.5% 0, 0% 100%, 100% 100%);
}

@media(max-width: 991px) {
	.banner-one::before {
		height: 80px;
	}
}

.banner-one .container {
	position: relative;
	padding-top: 320px;
	padding-bottom: 275px;
	padding-left: 60px;
	padding-right: 60px;
}

.banner-one__moc {
	position: absolute;
	bottom: 180px;
	right: 60px;
	animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

.banner-one__content {
	padding-left: 40px;
}

.banner-one__content h3 strong {
	margin: 0;
	font-size: 70px;
	text-transform: uppercase;
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	margin-top: 10px;
	margin-bottom: 25px;
}

.banner-one__content p {
	margin: 0;
	font-size: 18px;
	line-height: 32px;
	font-weight: 300;
	color: #ffffff;
}

.banner-one__btn {
	padding: 16px 56px;
	background-image: none;
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
	margin-top: 40px;
}

.banner-one__btn:hover {
	background-color: #fff;
	background-image: none;
	color: #23242b;
}

.banner-one__content .banner-one__tag-line {
	display: inline-block;
	background-color: rgba(0, 0, 0, .1);
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: .2em;
	border-radius: 5px;
	overflow: hidden;
	padding-left: 30px;
	line-height: 40px;
}

.banner-one__content .banner-one__tag-line a {
	display: inline-block;
	vertical-align: middle;
	background-color: #feec66;
	color: #23242b;
	padding-left: 30px;
	padding-right: 30px;
	margin-left: 25px;
	transition: all 500ms ease;
}

.banner-one__content .banner-one__tag-line a:hover {
	background-color: var(--thm-black);
	color: #fff;
}

[class*=banner-one__shape-] {
	position: absolute;
}

.banner-one__shape-moc-1 {
	top: 15%;
	right: -9%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.banner-one__shape-1 {
	top: 3%;
	left: 0;
}

.banner-one__shape-2 {
	top: 17%;
	left: 7%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.banner-one__shape-3 {
	bottom: 19%;
	left: 6%;
}

.banner-one__shape-4 {
	top: 19%;
	right: 45%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.banner-one__shape-5 {
	bottom: 19%;
	left: 6%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 10s;
}

.banner-one__shape-6 {
	bottom: 29%;
	right: 30%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.banner-one__shape-7 {
	bottom: 19%;
	right: 6%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-delay: 2s;
}


/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/


.service-one {
	padding-bottom: 90px;
}

.service-one__col {
	padding-left: 15px;
	padding-right: 15px;
	flex: 1 1 20%;
	text-align: center;
}

.service-one__single {
	margin-bottom: 30px;
	padding-top: 40px;
	padding-bottom: 40px;
	border-style: solid;
	border-width: 1px;
	border-color: rgb(232, 232, 239);
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
}

.service-one__single h3 {
	color: var(--thm-black);
	font-size: 18px;
	font-weight: 600;
	margin: 15px 0 0 0;
	/* Top margin agregado */
}

.service-one__single i {
	width: 111px;
	height: 111px;
	border-radius: 50%;
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
	font-size: 64px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
	background-size: 200% auto;
	transition: all 500ms ease;
}

.service-one__single:hover i {
	background-position: right center;
}

.service-one__col:nth-child(1) .service-one__single i {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
}

.service-one__col:nth-child(2) .service-one__single i {
	background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 51%, #4453ac 100%);
}

.service-one__col:nth-child(3) .service-one__single i {
	background-image: linear-gradient(90deg, #0349a6 0%, #15c27b 51%, #0349a6 100%);
}

.service-one__col:nth-child(4) .service-one__single i {
	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 51%, #e41256 100%);
}

.service-one__col:nth-child(5) .service-one__single i {
	background-image: linear-gradient(90deg, #03a631 0%, #d6c10f 51%, #03a631 100%);
}


/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/

.cta-one {
	position: relative;
	background-color: #fff;
	z-index: 10;
	padding-top: 65px;
	overflow: hidden;
	border-radius: 0;
}

[class*=cta-one__circle-] {
	display: none;
}

.cta-one__circle-1 {
	width: 999px;
	height: 999px;
	left: calc(50% - 499.5px);
	bottom: calc(0% - 499.5px);
}

.cta-one__circle-2 {
	width: 792px;
	height: 792px;
	left: calc(50% - 396px);
	bottom: calc(0% - 396px);
}

.cta-one__circle-3 {
	width: 613px;
	height: 613px;
	left: calc(50% - 306.5px);
	bottom: calc(0% - 306.5px);
}

.cta-one .container {
	position: relative;
	padding-top: 80px;
	padding-bottom: 120px;
	border-radius: 0;
	box-shadow: none;
}

.cta-one__content {
	position: relative;
}

.cta-one__content h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: 800;
	font-size: 46px;
}

.cta-one__content p {
	margin: 0;
	color: #7c7d8a;
	font-weight: 300;
	font-size: 24px;
	margin-top: 25px;
}

.cta-one__btn {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
	margin-top: 55px;
}

.cta-two {
	background-color: var(--thm-gray);
	padding-top: 120px;
	padding-bottom: 360px;
	position: relative;
	margin-bottom: -240px;
}

.cta-two .container {
	position: relative;
}

[class*=cta-two__shape-] {
	position: absolute;
}

.cta-two__shape-1 {
	top: -8%;
	left: 7%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 12s;
}

.cta-two__shape-2 {
	bottom: -6%;
	right: 9%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.cta-two__shape-3 {
	top: 5%;
	right: 3%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.cta-two__moc {
	position: absolute;
	top: 30px;
	right: -30px;
	animation: ImgBounce 10s ease-in-out 0s infinite alternate;
}

.cta-two__content .block-title {
	margin-bottom: 40px;
}

.cta-two__content>p {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 34px;
	color: #7c7d8a;
	margin-bottom: 50px;
}

.cta-three {
	position: relative;
	padding-bottom: 120px;
}

.cta-three .container {
	position: relative;
}

[class*=cta-three__shape-] {
	display: none;
}

.cta-three__shape-1 {
	top: -14%;
	left: -1%;
}

.cta-three__shape-2 {
	top: -8%;
	right: 0;
}

.cta-three__shape-3 {
	bottom: 15%;
	right: 0;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}


.cta-three__moc {
	position: absolute;
	top: -45px;
	left: -47px;
	animation: ImgBounce 10s ease-in-out 0s infinite alternate;
}

.cta-three__content {
	padding-left: 100px;
}

.cta-three__box {
	display: flex;
	position: relative;
}

.cta-three__box+.cta-three__box {
	margin-top: 40px;
}

.cta-three__box::before {
	content: '';
	width: 1px;
	height: 110%;
	background-color: #e8e8ef;
	position: absolute;
	left: 37.5px;
	top: 75px;
}

.cta-three__box:last-child::before {
	display: none;
}

.cta-three__box-icon i {
	width: 75px;
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
	height: 75px;
	border-radius: 50%;
	font-size: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	position: relative;
	top: 5px;
	background-size: 200% auto;
	transition: all 500ms ease;
}

.cta-three__box:hover .cta-three__box-icon i {
	background-position: right center;
}

.cta-three__box:nth-child(1) .cta-three__box-icon i {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);

}

.cta-three__box:nth-child(2) .cta-three__box-icon i {
	background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 51%, #4453ac 100%);

}

.cta-three__box-content {
	padding-left: 5px;
}

.cta-three__box-content h3 {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--thm-black);
}

.cta-three__box-content p {
	margin: 0;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
}

.cta-three__btn {
	margin-top: 50px;
	display: inline-block;
	margin-left: 100px;
	/* Ajusta este valor para alinear con el texto */
}

@media (max-width: 1200px) {
	.cta-three__btn {
		margin-left: 10px !important;
		display: inline-block;
	}

	.cta-three__box-content {
		text-align: left !important;
	}
}

/*--------------------------------------------------------------
# Main Footer
--------------------------------------------------------------*/


.site-footer {
	background-color: #000000;
	position: relative;
	overflow: hidden;
}

[class*=site-footer__shape-] {
	display: none;
}

.site-footer__shape-1 {
	top: -2.5%;
	left: 3%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-delay: 0s;
}

.site-footer__shape-2 {
	bottom: 15%;
	right: 4%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-delay: 2s;
}

.site-footer__shape-3 {
	position: absolute;
	left: calc(50% - 231.5px);
	bottom: calc(0% - 231px);
	opacity: 0.15;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.site-footer .container {
	position: relative;
	z-index: 20;
}

.site-footer__upper {
	padding-bottom: 100px;
	padding-top: 140px;
}

/*footer widgets*/

.footer-widget__title {
	margin: 0;
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	margin-bottom: 40px;
}

.footer-widget p {
	margin: 0;
	font-size: 16px;
	line-height: 32px;
	font-weight: 500;
	color: #a3a4b3;
}

.footer-widget p+p {
	margin-top: 25px;
}

.footer-widget p a {
	color: var(--thm-base);
	transition: all 500ms ease;
}

.footer-widget p a:hover {
	color: #fff;
}

.footer-widget__logo {
	display: inline-block;
	margin-top: -5px;
	margin-bottom: 20px;
}

.footer-widget__links-wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

@media(min-width: 992px) {
	.footer-widget__links-wrap {
		padding-right: 70px;
	}

	.footer-widget__about {
		padding-right: 44px;
	}
}

.footer-widget__links ul {
	margin-bottom: 0;
}

.footer-widget__links ul li {
	line-height: 1em;
	font-size: 16px;
	font-weight: 500;
}

.footer-widget__links ul li+li {
	margin-top: 23px;
}

.footer-widget__links ul li a {
	color: #a3a4b3;
	display: block;
	position: relative;
	transition: all 500ms ease;
}

.footer-widget__links ul li a:hover {
	color: var(--thm-base);
	transform: translateX(20px);
}

.footer-widget__links ul li a::before {
	content: '\f101';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	color: var(--thm-base);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-40%) translateX(-20px);
	opacity: 0;
	transition: all 500ms ease;
}

.footer-widget__links ul li a:hover::before {
	opacity: 1;
}

.footer-widget__mc-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	display: block;
	width: 100%;
	border: none;
	outline: none;
	background-color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	border-radius: 5px;
	height: 70px;
}

.footer-widget__mc-form ::placeholder {
	color: #7c7d8a;
	opacity: 1;
}

.footer-widget__mc-btn {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	margin-top: 10px;
}

/* footer bottom */

.site-footer__bottom .inner-container {
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 39.5px;
	padding-bottom: 39.5px;
}

.site-footer__bottom .inner-container>p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: #a3a4b3;
}

.site-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-footer__social a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 16px;
	transition: all 400ms ease;
	text-decoration: none;
}

.site-footer__social a:hover {
	transform: translateY(-3px);
}

.site-footer__social a+a {
	margin-left: 15px;
}

.site-footer__social a.fa-tiktok {
	background-color: #010101 !important;
	border-color: #010101 !important;
}

.site-footer__social a.fa-instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
	border: none !important;
}

.site-footer__social a.fa-facebook-f {
	background-color: #1877F2 !important;
	border-color: #1877F2 !important;
}

.site-footer__social a.fa-youtube {
	background-color: #FF0000 !important;
	border-color: #FF0000 !important;
}

.site-footer__social a.fa-whatsapp {
	background-color: #25D366 !important;
	border-color: #25D366 !important;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


.contact-one {
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
}

.contact-one .container {
	position: relative;
	z-index: 11;
}

[class*=contact-one__shape-] {
	display: none;
}

.contact-one__shape-1 {
	bottom: -241px;
	left: 0;
	z-index: 11;
}

.contact-one__shape-2 {
	right: 2%;
	top: -62px;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.contact-one__shape-3 {
	right: -231.5px;
	bottom: -90px;
	z-index: 11;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@media(min-width: 992px) {
	.contact-one__content {
		padding-right: 30px;
	}
}

.contact-one__images {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contact-one__infos {
	margin-top: 55px;
}

.contact-one__infos-single {
	display: flex;
	align-items: center;
}

.contact-one__infos-single+.contact-one__infos-single {
	margin-top: 35px;
}

.contact-one__infos-icon i {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 18px;
	background-image: linear-gradient(90deg, #0349a6 0%, #15c27b 100%);
	margin-right: 20px;
}

.contact-one__infos-single:nth-child(2) .contact-one__infos-icon i {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 100%);
}

.contact-one__infos-single:nth-child(3) .contact-one__infos-icon i {
	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 100%);

}

.contact-one__infos-single h3 {
	margin: 0;
	color: var(--thm-black);
	font-size: 18px;
	font-weight: 500;
	line-height: 1em;
}

.contact-one__infos-single p {
	font-weight: 300;
	font-size: 22px;
	line-height: 36px;
	margin: 0;
	margin-top: 5px;
}

.contact-one__infos-single p a {
	color: inherit;
	transition: all 500ms ease;
}

.contact-one__infos-single p a:hover {
	color: var(--thm-base);
}

.contact-one__form .row {
	margin-left: -5px;
	margin-right: -5px;
}

.contact-one__form .row>[class*=col-] {
	padding-left: 5px;
	padding-right: 5px;
}

.contact-one__form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.contact-one__form textarea {
	display: block;
	border: none;
	width: 100%;
	margin-bottom: 10px;
	background-color: var(--thm-gray);
	font-size: 16px;
	font-weight: 500;
	color: #7c7d8a;
	padding-left: 30px;
	height: 68px;
}

.contact-one__form textarea {
	height: 188px;
	padding-top: 20px;
}

.contact-one__form ::placeholder {
	opacity: 1;
	color: #7c7d8a;
}

.contact-one__form .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
	width: 100%;
}

.contact-one__form .bootstrap-select>.dropdown-toggle {
	border-radius: 0;
	padding-left: 30px;
	margin-bottom: 10px;
	background-color: var(--thm-gray);
	font-size: 16px;
	font-weight: 500;
	color: #7c7d8a;
	padding-left: 30px;
	height: 68px;
	padding-right: 30px;
}

.contact-one__form .bootstrap-select .dropdown-toggle .filter-option {
	display: flex;
	align-items: center;
}

.contact-one__form label.error {
	display: block;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog-one__home {
	padding-top: 120px;
	padding-bottom: 60px;
	background-color: var(--thm-gray);
	position: relative;
}

.blog-one__grid {
	padding-bottom: 120px;
}

.blog-one__shape-1 {
	position: absolute;
	top: 6%;
	right: 8%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.blog-one .container {
	position: relative;
}

.blog-one__single {
	margin-bottom: 90px;
}

.blog-one__image {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
	padding: 10px;
	position: relative;
	background-size: 200% auto;
	overflow: hidden;
}

.blog-one__image>img {
	width: 100%;
	transform: scale(1);
	transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__image {
	background-position: right center;
}

.blog-one__single:hover .blog-one__image>img {
	opacity: 0.5;
	transform: scale(1.1);
}

.blog-one__content {
	padding-top: 35px;
	padding-bottom: 45px;
	padding-left: 50px;
	padding-right: 50px;
	position: relative;
	box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
	background-color: #fff;
}

@media(max-width: 375px) {
	.blog-one__content {
		padding-top: 30px;
		padding-bottom: 30px;
		padding-left: 25px;
		padding-right: 25px;
	}
}

.blog-one__meta {
	display: flex;
	margin: 0;
	align-items: center;
}

.blog-one__meta li a {
	color: #7c7d8a;
	font-size: 14px;
	display: flex;
	align-items: center;
	transition: all 500ms ease;
}

.blog-one__meta li a i {
	color: #ee464b;
	margin-right: 3px;
}

.blog-one__meta li+li {
	margin-left: 10px;
}

.blog-one__meta li a:hover {
	color: var(--thm-black);
}

.blog-one__link {
	display: block;
	width: 68px;
	height: 68px;
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
	display: flex;
	text-align: center;
	font-size: 18px;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: absolute;
	bottom: -34px;
	right: 10px;
	transition: all 500ms ease;
	background-size: 200% auto;
}

.blog-one__link:hover {
	color: #fff;
	background-position: right center;
}

@media(max-width: 375px) {
	.blog-one__link {
		width: 50px;
		height: 50px;
		bottom: -25px;
		font-size: 14px;
	}
}

.blog-one__content h3 {
	color: var(--thm-black);
	margin: 0;
	font-size: 26px;
	line-height: 40px;
	font-weight: 600;
}


@media(max-width: 375px) {
	.blog-one__content h3 {
		font-size: 22px;
		line-height: 1.3em;
	}
}


.blog-one__content h3 a {
	transition: all 500ms ease;
	color: inherit;
}

.blog-one__content h3 a:hover {
	color: var(--thm-base);
}

.blog-one [class*=col-]:nth-child(1) .blog-one__image,
.blog-one [class*=col-]:nth-child(1) .blog-one__link {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
}

.blog-one [class*=col-]:nth-child(2) .blog-one__image,
.blog-one [class*=col-]:nth-child(2) .blog-one__link {
	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 51%, #e41256 100%);

}

.blog-one [class*=col-]:nth-child(3) .blog-one__image,
.blog-one [class*=col-]:nth-child(3) .blog-one__link {
	background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 51%, #4453ac 100%);

}

.blog-one [class*=col-]:nth-child(4) .blog-one__image,
.blog-one [class*=col-]:nth-child(4) .blog-one__link {
	background-image: linear-gradient(90deg, #0349a6 0%, #15c27b 51%, #0349a6 100%);


}

.blog-one [class*=col-]:nth-child(5) .blog-one__image,
.blog-one [class*=col-]:nth-child(5) .blog-one__link {
	background-image: linear-gradient(90deg, #272839 0%, #717284 51%, #272839 100%);


}

.blog-one [class*=col-]:nth-child(6) .blog-one__image,
.blog-one [class*=col-]:nth-child(6) .blog-one__link {
	background-image: linear-gradient(90deg, #03a631 0%, #d6c10f 51%, #03a631 100%);


}


/*--------------------------------------------------------------
## Blog Details
--------------------------------------------------------------*/

.blog-details {
	padding-top: 120px;
	padding-bottom: 120px;
}

.blog-details__content h3 {
	margin: 0;
	color: var(--thm-black);
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 35px;
}

.blog-details__image {
	margin-bottom: 20px;
	padding: 10px;
	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 51%, #e41256 100%);
}

.blog-details__image>img {
	width: 100%;
}

.blog-details__content p {
	margin: 0;
}

.blog-details__content p+p {
	margin-top: 40px;
}

.blog-details__content .blog-one__meta li a {
	font-size: 18px;
}

.blog-details__bottom {
	border-top: 1px solid #e8e8ef;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.blog-details__tags {
	margin: 0;
	display: flex;
	align-items: center;
}

.blog-details__tags span {
	font-size: 20px;
	font-weight: 600;
	color: var(--thm-black);
}

.blog-details__tags a {
	color: #7c7d8a;
	font-size: 16px;
	margin-left: 5px;
	transition: all 500ms ease;
}

.blog-details__tags a:hover {
	color: var(--thm-base);
}

.author-one {
	padding: 60px;
	background-color: var(--thm-gray);
	position: relative;
	margin-bottom: 60px;
}

.author-one__image,
.author-one__content {
	display: table-cell;
	vertical-align: middle;
}

.author-one__image {
	width: 170px;
}

.author-one__content {
	padding-left: 40px;
}

.author-one__content h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: 600;
	font-size: 20px;
}

.author-one__content p {
	margin: 0;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
	color: #7c7d8a;
	margin-top: 40px;
}

.comment-one__title,
.comment-form__title {
	margin: 0;
	color: var(--thm-black);
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 55px;
}

.comment-one__single {
	position: relative;
	border-bottom: 1px solid #e8e8ef;
	margin-bottom: 60px;
	padding-bottom: 50px;
}

.comment-one__image,
.comment-one__content {
	display: table-cell;
	vertical-align: top;
}

.comment-one__image {
	width: 90px;
}

.comment-one__image>img {
	width: 100%;
	border-radius: 50%;
}

.comment-one__content {
	padding-left: 40px;
	padding-right: 105px;
}

.comment-one__date {
	display: flex;
	color: var(--thm-base);
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 25px;
}

.comment-one__date span {
	margin-left: 10px;
	margin-right: 10px;
}

.comment-one__content h3 {
	margin: 0;
	font-size: 20px;
	color: var(--thm-black);
	font-weight: 600;
}

.comment-one__content p {
	margin: 0;
	font-size: 18px;
	line-height: 34px;
	color: #7c7d8a;
	font-weight: 500;
}

.comment-one__btn {
	padding: 8px 29.5px;
	position: absolute;
	top: 0;
	right: 0;
}



/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	padding-top: 245px;
	padding-bottom: 190px;
}

@media(max-width: 991px) {
	.page-header {
		padding-top: 180px;
		padding-bottom: 120px;
	}
}

.page-header::before {
	content: '';
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--thm-gray);
	clip-path: polygon(71.5% 0, 0% 100%, 100% 100%);
}

@media(max-width: 991px) {
	.page-header::before {
		height: 80px;
	}
}

.page-header .container {
	position: relative;
}

.page-header h2 {
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 70px;
	font-weight: 300;
	line-height: 1em;
}



/*--------------------------------------------------------------
# Sidemenu
--------------------------------------------------------------*/

.side-menu__block {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transition: -webkit-transform .7s ease;
	transition: -webkit-transform .7s ease;
	transition: transform .7s ease;
	transition: transform .7s ease, -webkit-transform .7s ease;
}

.side-menu__block.active {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.side-menu__block-overlay {
	width: 100%;
	height: 100%;
	background-color: var(--thm-black);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: .7;
}

.side-menu__block-overlay .cursor-follower {
	background-color: rgba(var(--thm-black-rgb), 0.3);
}

.side-menu__block-inner {
	position: relative;
	max-width: 532px;
	width: 100%;
	margin-right: auto;
	height: 100vh;
	background-color: var(--thm-gray);
	z-index: 999999;
	overflow-y: auto;
	padding: 40px 0;
	padding-top: 20px;
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-content: space-between;
}

@media(max-width: 575px) {
	.side-menu__block-inner {
		max-width: 480px;
	}
}

@media(max-width: 480px) {
	.side-menu__block-inner {
		max-width: 400px;
	}
}

@media(max-width: 375px) {
	.side-menu__block-inner {
		max-width: 300px;
	}
}

.side-menu__block-inner .mCustomScrollBox {
	width: 100%;
}

.side-menu__top {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding-left: 100px;
	padding-right: 40px;
}

.mobile-nav__container {
	padding-left: 100px;
	padding-right: 100px;
	padding-top: 50px;
}



.mobile-nav__container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav__container li.dropdown ul {
	display: none;
	padding-left: 0.5em;
}

.mobile-nav__container li.dropdown {
	position: relative;
}

.mobile-nav__container li.dropdown .dropdown-btn {
	border: none;
	outline: none;
	background-color: transparent;
	color: #9ca3a9;
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
	width: auto;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: transfrom 500ms ease;
	transition: transfrom 500ms ease;
}

.mobile-nav__container li.dropdown .dropdown-btn.open {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.mobile-nav__container li+li {
	margin-top: 10px;
}

.mobile-nav__container li a {
	text-transform: uppercase;
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	display: block;
	font-family: var(--thm-font);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
}

.mobile-nav__container li a:hover {
	color: var(--thm-base);
}

.mobile-nav__container li.current-menu-item>a,
.mobile-nav__container li.current>a {
	color: var(--thm-base);
}



.side-menu__social {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	margin-top: 80px;
	margin-bottom: 30px;
	justify-content: center;
}

.side-menu__social a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 16px;
	transition: all 400ms ease;
	text-decoration: none;
}

.side-menu__social a:hover {
	transform: translateY(-3px);
}

.side-menu__social a+a {
	margin-left: 15px;
}

.side-menu__content {
	padding-left: 100px;
	padding-right: 100px;
}

.side-menu__content p {
	margin: 0;
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: .02em;
}

.side-menu__content p+p {
	margin-top: 30px;
}

.side-menu__content p a {
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.side-menu__content p a:hover {
	color: var(--thm-base);
}

.side-menu__sep {
	width: calc(100% - 200px);
	margin-left: auto;
	margin-right: auto;
	height: 1px;
	background-color: #fff;
	margin-top: 70px;
	margin-bottom: 70px;
}

.side-menu__text p {
	font-size: 16px;
	line-height: 32px;
	font-weight: 500;
	color: #7c7d8a;
	margin: 0;
	margin-bottom: 25px;
}


.side-menu__text a {
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.side-menu__text a:hover {
	color: var(--thm-black);
}

.side-menu__block__copy {
	font-size: 16px;
	font-weight: 500;
	color: #7c7d8a;
	margin: 0;
}


@media(max-width: 575px) {

	.side-menu__top,
	.side-menu__content,
	.mobile-nav__container {
		padding-left: 50px;
		padding-right: 50px;
	}

	.side-menu__sep {
		margin-top: 40px;
		margin-bottom: 40px;
		width: calc(100% - 100px);
	}
}

@media(max-width: 480px) {

	.side-menu__top,
	.side-menu__content,
	.mobile-nav__container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.side-menu__sep {
		width: calc(100% - 50px);
	}

	.side-menu__social {
		margin-top: 40px;
	}

	.side-menu__social a {
		width: 45px;
		height: 45px;
	}
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/


.sidebar-single:not(.sidebar__search) {
	background-color: var(--thm-gray);
	padding: 50px;
}

.sidebar-single+.sidebar-single {
	margin-top: 30px;
}

.sidebar__title {
	margin: 0;
	color: var(--thm-black);
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 25px;
	line-height: 1em;
}

.sidebar__search-form {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 100%);
	display: block;
	width: 100%;
	position: relative;
}

.sidebar__search-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	display: block;
	width: 100%;
	border: none;
	outline: none;
	background-color: transparent;
	color: #fff;
	font-size: 16px;
	padding-left: 50px;
	height: 83px;
}

.sidebar__search-form ::placeholder {
	opacity: 1;
	color: #fff;
}

.sidebar__search-form button[type=submit] {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	right: 50px;
	color: #fff;
	border: none;
	outline: none;
	background-color: transparent;
}

.sidebar__post-single {
	position: relative;
	padding-left: 80px;
}

.sidebar__post-single+.sidebar__post-single {
	margin-top: 30px;
}

.sidebar__post-single>img {
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.sidebar__post-single h3 {
	font-size: 16px;
	line-height: 28px;
	color: #7c7d8a;
	margin: 0;
}

.sidebar__post-single h3 a {
	color: inherit;
}

.sidebar__post-single h3 a:hover {
	color: var(--thm-base);
}

.sidebar__cat-list {
	margin: 0;
}

.sidebar__cat-list li {
	line-height: 1em;
}

.sidebar__cat-list li+li {
	margin-top: 20px;
}

.sidebar__cat-list li a {
	color: #7c7d8a;
	font-size: 16px;
	font-weight: 500;
	transition: all 500ms ease;
}

.sidebar__cat-list li a:hover {
	color: var(--thm-base);
}

.sidebar__tags-list {
	margin-top: -10px;
}

.sidebar__tags-list a {
	font-size: 16px;
	line-height: 34px;
	color: #7c7d8a;
	font-weight: 500;
	transition: all 500ms ease;
}

.sidebar__tags-list a:hover {
	color: var(--thm-base);
}


/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq-one {
	padding: 120px 0;
	position: relative;
	counter-reset: faqNumber;
}

[class*=faq-one__shape-] {
	position: absolute;
}

.faq-one__shape-1 {
	top: -145.5px;
	left: 4%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.faq-one__shape-3 {
	left: 4%;
	bottom: -4%;
	z-index: 11;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.faq-one__shape-2 {
	top: 0;
	right: 0;
}


.faq-one .container {
	position: relative;
}

@media (min-width: 992px) {
	.faq-one .container {
		max-width: 1000px;
	}
}

.faq-accrodion .accrodion {
	position: relative;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	counter-increment: faqNumber;
}

.faq-accrodion .accrodion:before {
	content: '';
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: 0px;
	right: 0px;
	border-radius: 0px;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b330a7 100%);
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
}


.faq-accrodion .accrodion::after {
	font-family: var(--thm-font);
	font-size: 60px;
	line-height: 1em;
	color: #e8e8ef;
	font-weight: 300;
	content: counters(faqNumber, ".", decimal-leading-zero);
	position: absolute;
	top: 11px;
	left: 0;
	transform: translateX(-50%);
	z-index: 11;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.faq-accrodion .accrodion+.accrodion {
	margin-top: 20px;
}

.faq-accrodion .accrodion.active {
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);

}

.faq-accrodion .accrodion.active .accrodion-inner {
	margin: 0 1px;
}

.faq-accrodion .accrodion.active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}


.faq-accrodion .accrodion.active .accrodion-title {
	padding-bottom: 0;
}

.faq-accrodion .accrodion.active .accrodion-title h4 {
	color: #ee464b;
}

.faq-accrodion .accrodion .accrodion-inner {
	background-color: #fff;
	padding: 30.5px 0;
	border-style: solid;
	border-width: 1px;
	border-color: #e8e8ef;
	border-radius: 0px;
	position: relative;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.faq-accrodion .accrodion .accrodion-title {
	padding: 0px 60px;
	cursor: pointer;
	position: relative;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

@media (max-width: 375px) {
	.faq-accrodion .accrodion .accrodion-title {
		padding-right: 50px;
	}
}

.faq-accrodion .accrodion .accrodion-title:before {
	content: '\f067';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 57px;
	height: 57px;
	border-radius: 50%;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 60px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 1;

	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 100%);
	transition: all 500ms ease;

}

.faq-accrodion .accrodion .accrodion-title::after {
	content: '\f068';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 57px;
	height: 57px;
	border-radius: 50%;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 60px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;

	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 100%);
	transition: all 500ms ease;

}

.faq-accrodion .accrodion.active .accrodion-title::before {
	opacity: 0;
}

.faq-accrodion .accrodion.active .accrodion-title::after {
	opacity: 1;
}

.faq-accrodion .accrodion .accrodion-title h4 {
	margin: 0;
	color: #30283d;
	font-size: 20px;
	font-weight: 500;
}

@media (max-width: 375px) {
	.faq-accrodion .accrodion .accrodion-title h4 {
		line-height: 1.4em;
	}
}

.faq-accrodion .accrodion .accrodion-content .inner {
	padding: 0 60px;
	padding-right: 155px;
	padding-top: 35px;
	padding-bottom: 0px;
}

.faq-accrodion .accrodion .accrodion-content p {
	margin: 0;
	color: #7c7d8a;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
}


/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/

.brand-one {
	position: relative;
	z-index: 11;
	padding-top: 93.5px;
	padding-bottom: 93.5px;
	background-color: #000000;
}

.brand-one img {
	opacity: 0.6;
	transition: all 500ms ease;
}

.brand-one img:hover {
	opacity: 1;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/



.testimonials__one {
	background-color: #f4f4f8;
	padding: 120px 0;
	position: relative;
}

[class*=testimonials__one-shape-] {
	position: absolute;
}

.testimonials__one-shape-1 {
	top: -43px;
	left: 2%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.testimonials__one-shape-2 {
	top: 6%;
	right: 6%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.testimonials__one .map-img {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	animation-name: mapMover;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	transition: all .4s ease;
	transform-origin: center center;

}

@keyframes mapMover {
	0% {
		transform: translateY(-50%) translateX(0);
	}

	50% {
		transform: translateY(-55%) translateX(-20px);
	}

	100% {
		transform: translateY(-50%) translateX(0);
	}
}

.testimonials__one .block-title {
	margin-bottom: 40px;
}

.testimonials__one .testimonials__one__single p {
	margin: 0;
	color: #7c7d8a;
	font-size: 24px;
	line-height: 46px;
	font-weight: 300;
}

.testimonials__one .testimonials__one__single h3 {
	color: #ee464b;
	font-weight: 600;
	font-size: 20px;
	margin: 0;
	margin-top: 40px;
}

.testimonials__one .testi-carousel-one .owl-nav {
	margin: 0;
	position: absolute;
	bottom: -10px;
	right: 0;
	background-color: #F2FFF8;
}

.testimonials__one .testi-carousel-one .owl-nav [class*=owl-] {
	margin: 0px 5px;
	padding: 0;
	background-color: transparent;
	opacity: .3;
	color: var(--thm-black);
	font-size: 32px;
	transition: all .4s ease;
}

.testimonials__one .testi-carousel-one .owl-nav [class*=owl-]:hover {
	opacity: 1;
}

.testimonials__one .bx-wrapper {
	border: none;
	box-shadow: none;
	background-color: transparent;
	margin-bottom: 0;
}

.testimonials__one .bx-wrapper ul.slider {
	padding: 0;
	margin: 0;
}

.testimonials__one .bx-wrapper .bx-controls-direction {
	position: absolute;
	bottom: -10px;
	background-color: #f4f4f8;
	right: 0;
}

.testimonials__one .bx-wrapper .bx-controls-direction a {
	text-indent: 0;
	background-image: none;
	font-size: 32px;
	position: relative;
	top: 0px;
	opacity: .3;
	color: var(--thm-black);
	transition: all .4s ease;
}

.testimonials__one .bx-wrapper .bx-controls-direction a:hover {
	opacity: 1;
}

.testimonials__one .bx-wrapper .bx-prev {
	left: 0px;
	margin-right: 25px;
}

.testimonials__one .bx-wrapper .bx-next {
	right: 0px;
}

#testimonials-slider-pager {
	width: 474px;
	height: 474px;
	border-radius: 50%;
	position: relative;
	background-image: url(../images/shapes/testi-circle.png);
	background-position: center center;
	background-repeat: no-repeat;
	animation-name: tesiMove;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	transition: all .4s ease;
	transform-origin: center center;
}

@keyframes tesiMove {
	0% {
		transform: rotate(0deg);
	}

	15% {
		transform: rotate(2deg);
	}

	33% {
		transform: rotate(4deg);
	}

	66% {
		transform: rotate(2deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item {
	width: 71px;
	height: 71px;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(1) {
	top: 70px;
	left: 10px;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(2) {
	top: 70px;
	right: 10px;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(3) {
	bottom: 70px;
	left: 10px;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(4) {
	bottom: 70px;
	right: 10px;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(5) {
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(6) {
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item>img {
	width: 100%;
	border-radius: 50%;
	transition: all .4s ease;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item.active img {
	opacity: .75;
	transform: scale(0.95);
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item {
	width: 163px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: all .4s ease;
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item.active {
	opacity: 1;
	transform: translate(-50%, -50%) scale(0.95);
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item>img {
	width: 100%;
	border-radius: 50%;
}

/*--------------------------------------------------------------
# App Screens
--------------------------------------------------------------*/


.app-shot-one {
	padding-top: 100px;
	padding-bottom: 170px;
	position: relative;
}

[class*=app-shot__shape-] {
	display: none;
}

.app-shot__shape-2 {
	top: 3%;
	left: 12%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.app-shot__shape-1 {
	right: -231.5px;
	top: -90px;
	z-index: 11;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.app-shot-one__bg {
	position: absolute;
	bottom: 25%;
	left: 0;
}

.app-shot-one .container-fluid {
	max-width: 1595px;
	width: 100%;
	position: relative;
}

.app-shot-one .app-shot-one__carousel {
	padding-top: 100.5px;
	padding-bottom: 100.5px;
	margin-top: -20px;
}

.app-shot-one .app-shot-one__carousel:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -49%) scaleY(1);
	transform: translate(-50%, -49%) scaleY(1);
	background-image: url(../images/app-shots/app-screen-moc.png);
	background-position: center center;
	background-repeat: no-repeat;
	width: 423px;
	height: 739px;
}

@media (max-width: 1440px) {
	.app-shot-one .app-shot-one__carousel:before {
		-webkit-transform: translate(-50%, -49%) scaleY(0.95);
		transform: translate(-50%, -49%) scaleY(0.95);
	}
}

@media (max-width: 1280px) {
	.app-shot-one .app-shot-one__carousel:before {
		-webkit-transform: translate(-50%, -49%) scale(0.8);
		transform: translate(-50%, -49%) scale(0.8);
	}
}

.app-shot-one .app-shot-one__carousel .owl-dots {
	position: absolute;
	bottom: -60px;
	left: 0;
	text-align: center;
	z-index: 10;
	width: 100%;
}

.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot span {
	width: 7px;
	height: 7px;
	background-color: #30283d;
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 0.2;
	margin: 0 3px;
	-webkit-transition: opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
	transition: opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
	transition: transform .4s ease, opacity .4s ease, background .4s ease;
	transition: transform .4s ease, opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
}

.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot:hover span,
.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot.active span {
	opacity: 1;
	background-color: #ee464b;
	-webkit-transform: scale(1.285);
	transform: scale(1.285);
}

.app-shot-one .owl-item img {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/


.pricing-one {
	position: relative;
}


.pricing-one__sep {
	width: 100%;
	height: 1px;
	background-color: #e8e8ef;
	display: block;
	margin-bottom: 90px;
}

.pricing-one__single {
	text-align: center;
	border-style: solid;
	border-width: 1px;
	border-color: rgb(232, 232, 239);
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
	border-radius: 18px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.pricing-one__inner {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 45px 40px;
}

.pricing-one__list {
	flex: 1;
	margin-bottom: 0;
	position: relative;
	border-top: 1px solid #e8e8ef;
	padding-bottom: 40px;
	padding-top: 40px;
	margin-top: 34px;
}

.pricing-one__from {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-right: 8px;
	vertical-align: middle;
}

.pricing-one__single--featured {
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.15);
	transform: translateY(-10px);
	position: relative;
	overflow: hidden;
}

.pricing-one__single--featured .pricing-one__inner {
	background-color: #0f1b2d;
	padding: 45px 40px;
	position: relative;
	overflow: hidden;
}

.pricing-one__single--featured .pricing-one__inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.03) 30%,
		rgba(255, 255, 255, 0.12) 50%,
		rgba(255, 255, 255, 0.03) 70%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: skewX(-25deg);
	opacity: 0;
	pointer-events: none;
	z-index: 0;
	animation: pricingFeaturedShimmer 5s ease-in-out infinite;
}

.pricing-one__single--featured .pricing-one__inner > * {
	position: relative;
	z-index: 1;
}

@keyframes pricingFeaturedShimmer {
	0% {
		left: -100%;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	40% {
		left: 150%;
		opacity: 0;
	}
	100% {
		left: 150%;
		opacity: 0;
	}
}

.pricing-one__icon {
	display: none;
}

.pricing-one__single h3 {
	margin: 0;
	color: var(--thm-black);
	font-size: 46px;
	font-weight: 700;
	position: relative;
	line-height: 1em;
	margin-top: 0px;
	margin-bottom: 16px;
}

.pricing-one__single p {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	color: #7c7d8a;
	position: relative;
	line-height: 1em;
}

.pricing-one__single--featured .pricing-one__single h3,
.pricing-one__single--featured h3 {
	color: #ffffff;
}

.pricing-one__single--featured .pricing-one__from {
	color: rgba(255, 255, 255, 0.7);
}

.pricing-one__single--featured .pricing-one__single p,
.pricing-one__single--featured p {
	color: rgba(255, 255, 255, 0.75);
}

.pricing-one__line {
	display: none;
}

.pricing-one__list li {
	line-height: 1em;
	font-size: 18px;
	font-weight: 500;
	color: #7c7d8a;
}

.pricing-one__list li i {
	color: #ee464b;
	font-size: 14px;
	margin-right: 5px;
}

.pricing-one__list li+li {
	margin-top: 14px;
}

.pricing-one__single span {
	display: block;
	text-transform: uppercase;
	line-height: 1em;
	color: #7c7d8a;
	font-weight: 500;
	position: relative;
	font-size: 12px;
	letter-spacing: .2em;
	margin-top: 20px;
}

.pricing-one__btn {
	position: relative;
}

.pricing-one .block-title {
	margin-bottom: 30px;
}

.pricing-one .switch {
	position: relative;
	display: inline-block;
	width: 79px;
	height: 36px;
	vertical-align: middle;
	margin: 0;
}

.pricing-one .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: .4s;
	transition: .4s;
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 100%);
	box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
}

.pricing-one .slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 6px;
	bottom: 6px;
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	background-color: #fff;
	-webkit-transition: .4s;
	transition: .4s;
}

.pricing-one input:focus+.slider {
	-webkit-box-shadow: 0 0 1px #2196F3;
	box-shadow: 0 0 1px #2196F3;
}

.pricing-one .switch.off .slider:before {
	-webkit-transform: translateX(42px);
	transform: translateX(42px);
}

.pricing-one .slider.round {
	border-radius: 34px;
}

.pricing-one .slider.round:before {
	border-radius: 50%;
}

.pricing-one ul.switch-toggler-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 60px;
}

.pricing-one ul.switch-toggler-list li a {
	font-size: 18px;
	font-weight: 500;
	color: #7c7d8a;
	padding-left: 10px;
	padding-right: 10px;
	display: block;
}

.pricing-one ul.switch-toggler-list li.active a {
	color: var(--thm-black);
}


/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

.funfact-one {
	padding-top: 110px;
	padding-bottom: 120px;
	position: relative;
}


[class*=funfact-one__shape-] {
	position: absolute;
}

.funfact-one__shape-1 {
	top: 20px;
	left: 0;
}

.funfact-one__shape-2 {
	bottom: -10%;
	left: 14%;
	z-index: 11;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.funfact-one__shape-3 {
	bottom: -100%;
	right: 4%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}



.funfact-one__single {
	text-align: center;
}

.funfact-one__single h3 {
	margin: 0;
	font-size: 60px;
	color: var(--thm-black);
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 15px;
}

.funfact-one__single p {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1em;
	color: #7c7d8a;
}

.funfact-one__single p::before {
	content: '';
	width: 12px;
	height: 12px;
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
	background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 100%);
}

.funfact-one [class*=col-]:nth-child(1) .funfact-one__single p::before {
	background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 100%);
}

.funfact-one [class*=col-]:nth-child(2) .funfact-one__single p::before {
	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 100%);
}

.funfact-one [class*=col-]:nth-child(3) .funfact-one__single p::before {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 100%);
}

.funfact-one [class*=col-]:nth-child(4) .funfact-one__single p::before {
	background-image: linear-gradient(90deg, #0349a6 0%, #15c27b 100%);
}


/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/


.video-one__box {
	background-image: linear-gradient(90deg, rgb(74, 14, 143) 0%, rgb(180, 48, 167) 100%);
	position: relative;
}

.video-one__box>img {
	width: 100%;
	opacity: 0.4;
}

.video-one__content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.video-one__content::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(90deg, rgb(74, 14, 143) 0%, rgb(180, 48, 167) 100%);
	opacity: 0.4;
}

.video-one__content h3 {
	font-weight: 800;
	color: #fff;
	font-size: 65px;
	margin: 0;
	position: relative;
}

.video-one__content .video-popup {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--thm-black);
	font-size: 18px;
	position: relative;
	margin-bottom: 40px;
}



.video-one__content .video-popup::before {
	content: '';
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 2px solid #fff;
	opacity: .4;
	top: calc(50% - 60px);
	left: calc(50% - 60px);
	-webkit-animation: videoBtnAnim 3s ease-in infinite;
	animation: videoBtnAnim 3s ease-in infinite;
}

.video-one__content .video-popup::after {
	content: '';
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	border: 2px solid #fff;
	opacity: .15;
	top: calc(50% - 80px);
	left: calc(50% - 80px);
	-webkit-animation: videoBtnAnim 5s ease-in-out infinite;
	animation: videoBtnAnim 5s ease-in-out infinite;
}

@keyframes videoBtnAnim {
	0% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}

	25% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	75% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
}

/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/
.gallery-one {
	padding-top: 120px;
	padding-bottom: 90px;
}

.gallery-filter {
	margin-bottom: 50px;
}

.gallery-filter li {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: var(--thm-black);
	cursor: pointer;
	padding: 10px 20px;
	margin: 0 5px;
	border-radius: 5px;
	transition: all .4s ease;
	background-color: transparent;
	/* Transparent Filters */
}

.gallery-filter li:hover,
.gallery-filter li.active {
	background-color: var(--thm-base);
	/* Only Active/Hover has bg */
	color: #fff;
}

.gallery-grid > [class*="col-"] {
	display: flex;
 }

.gallery-one__single {
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
	/* Softer shadow */
	display: flex;
	flex-direction: column;
	height: auto;
	width: 100%;
}

.gallery-one__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	flex: 0 0 auto;
}

.gallery-one .gallery-one__image > a.gallery-popup {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery-one .gallery-one__image img,
.gallery-one .gallery-one__image video {
	width: 100%;
	height: 100% !important;
	max-height: none !important;
	/* aspect-ratio removed so popup can show full image without forced square crop */
	object-fit: cover;
	transition: all .4s ease;
	display: block;
}

.gallery-one__single:hover .gallery-one__image img,
.gallery-one__single:hover .gallery-one__image video {
	transform: scale(1.05);
	/* Subtle Zoom */
}

.gallery-one__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(39, 40, 57, 0.8);
	/* Dark Overlay */
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transform: translateY(20px);
	transition: all .4s ease;
}

.gallery-one__single:hover .gallery-one__overlay {
	opacity: 1;
	transform: translateY(0);
}

/* Gallery Link Wrapper */
.gallery-popup {
	display: block;
	cursor: pointer;
}

/* Gallery Button Visual */
.gallery-popup-button {
	width: 50px;
	height: 50px;
	background-color: var(--thm-base);
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	transition: all .4s ease;
}

.gallery-popup:hover .gallery-popup-button {
	background-color: #fff;
	color: var(--thm-base);
}

.gallery-one__content {
	background-color: #fff;
	padding: 12px 16px;
	text-align: center;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	flex: 0 0 auto;
	min-height: 86px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gallery-one__content h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--thm-black);
}

.gallery-one__content p {
	display: none;
	margin: 0;
	color: var(--thm-base);
	font-size: 14px;
	margin-top: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Override Magnific Popup Cursor */
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close,
.mfp-container,
.mfp-content,
.mfp-img {
	cursor: pointer !important;
}

/*--------------------------------------------------------------
# Mobile Menu & Sticky Header Fixes
--------------------------------------------------------------*/

/* Ensure Hamburger (3 lines) is always visible on mobile */
@media (max-width: 991px) {
	.stricked-menu {
		display: block !important;
		background-color: #000000;
		/* Ensure black background on mobile sticky */
	}

	.stricked-menu.stricky-fixed {
		transform: translateY(0%) !important;
		top: 0;
	}

	.main-nav__logo-box .side-menu__toggler {
		display: block !important;
		/* Force show hamburger */
		margin-left: 15px;
		cursor: pointer;
	}

	.main-nav__header-one .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	/* Adjust container padding for mobile */
	.stricked-menu .container {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

/* Side Menu Transparency & Styling */
.side-menu__block-inner {
	background-color: rgba(23, 23, 23, 0.95);
	/* Dark transparent background */
	backdrop-filter: blur(10px);
	/* Glass effect */
}

/* Social Icons Styling in Side Menu */
.side-menu__social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
}

.side-menu__social a {
	width: 40px;
	height: 40px;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	transition: all 0.4s ease;
	text-decoration: none;
}

.side-menu__social a:hover {
	background-color: var(--thm-base);
	border-color: var(--thm-base);
	color: #fff;
	transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Mobile Menu & Sticky Header Refinements
--------------------------------------------------------------*/

@media (max-width: 991px) {

	/* 1. Hamburger Menu to Left */
	.main-nav__header-one .container {
		flex-direction: row !important;
	}

	.main-nav__logo-box {
		margin-left: 0 !important;
		margin-right: auto !important;
	}
}

/* 2. Side Menu Transparency "Like Before" */
.side-menu__block-inner {
	background-color: rgba(0, 0, 0, 0.7) !important;
	/* Lighter transparency */
	backdrop-filter: blur(5px);
}

/* 3. Social Icons Brand Colors */
.side-menu__social a.fa-tiktok,
.site-footer__social a.fa-tiktok {
	background-color: #010101 !important;
	background-image: none !important;
	border-color: #010101 !important;
	color: #fff !important;
}

.side-menu__social a.fa-instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
	background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
	border: none !important;
	color: #fff !important;
}

.side-menu__social a.fa-facebook-f {
	background-color: #1877F2 !important;
	background-image: none !important;
	border-color: #1877F2 !important;
	color: #fff !important;
}

.side-menu__social a.fa-youtube {
	background-color: #FF0000 !important;
	background-image: none !important;
	border-color: #FF0000 !important;
	color: #fff !important;
}

.side-menu__social a.fa-whatsapp {
	background-color: #25D366 !important;
	background-image: none !important;
	border-color: #25D366 !important;
	color: #fff !important;
}

/*--------------------------------------------------------------
# Service Icon Hover Effect (Light Reflection)
--------------------------------------------------------------*/
.service-icon-link {
	display: inline-block;
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	/* Matches the icon round shape from the image provided */
}

/* The shine effect element */
.service-icon-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
	transform: skewX(-25deg);
	transition: none;
	/* Reset to allow animation reset */
	pointer-events: none;
	/* Let clicks pass through */
	opacity: 0;
}

/* Trigger animation on hover */
.service-icon-link:hover::before {
	top: 0;
	left: 125%;
	opacity: 1;
	transition: all 0.7s ease;
	/* Speed of the shine */
}

/* Optional: Slight scale up for better interactivity feel */
.service-icon-link:hover img {
	transform: scale(1.05);
	transition: all 0.4s ease;
}

.service-icon-link img {
	transition: all 0.4s ease;
}

/*--------------------------------------------------------------
# Modern Contact Form Redesign
--------------------------------------------------------------*/
.contact-one__form-wrap {
	padding: 60px;
	background: transparent !important;
	/* Very subtle transparent white */

	/* Strong blur for glass effect */
	border-radius: 20px;

	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-one__form input,
.contact-one__form textarea,
.contact-one__form .bootstrap-select>.dropdown-toggle {
	background-color: rgba(0, 0, 0, 0.2) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	border-radius: 10px;
	padding-left: 20px;
	transition: all 0.3s ease;
}

.contact-one__form input:focus,
.contact-one__form textarea:focus,
.contact-one__form .bootstrap-select>.dropdown-toggle:focus {
	border-color: var(--thm-base) !important;
	background-color: rgba(0, 0, 0, 0.4) !important;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.contact-one__form ::placeholder {
	color: rgba(255, 255, 255, 0.5) !important;
}

/* Dropdown Menu Styles */
.contact-one__form .dropdown-menu {
	background-color: rgba(45, 45, 45, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-one__form .dropdown-item {
	color: #fff !important;
	transition: background 0.3s ease;
}

.contact-one__form .dropdown-item:hover {
	background-color: var(--thm-base);
	color: #fff;
}

/* Ensure dropdown button text is same color as placeholders */
.contact-one__form .bootstrap-select>.dropdown-toggle .filter-option-inner-inner {
	color: rgba(255, 255, 255, 0.5) !important;
}

.contact-one__form .bootstrap-select>.dropdown-toggle::after {
	border-top-color: #fff;
}

/*--------------------------------------------------------------
# Compact FAQ Box (Single Rectangle Design)
--------------------------------------------------------------*/
.faq-compact {
	max-width: 800px;
	margin: 0 auto;
	background: #ffffff !important;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
	border: 1px solid #e8e8ef;
}

/* Header/Toggle */
.faq-compact__header {
	padding: 25px 30px;
	background: #f8f8fb;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	border-bottom: 1px solid #e8e8ef;
}

.faq-compact__header:hover {
	background: #f1f1f5;
}

.faq-compact__header h4 {
	margin: 0;
	color: var(--thm-black);
	font-size: 18px;
	font-weight: 600;
}

.faq-compact__arrow {
	font-size: 14px;
	color: #7c7d8a;
	transition: transform 0.3s ease;
}

.faq-compact__header.open .faq-compact__arrow {
	transform: rotate(180deg);
}

/* Dropdown Menu */
.faq-compact__menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: #fff;
}

.faq-compact__menu.open {
	max-height: 400px;
}

.faq-compact__question {
	width: 100%;
	padding: 15px 30px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #f1f1f5;
	color: #7c7d8a !important;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 16px;
}

.faq-compact__question:hover {
	background: #f8f8fb !important;
	color: #ee464b !important;
	padding-left: 35px;
}

.faq-compact__question.active {
	background: #f8f8fb;
	color: #ee464b !important;
	font-weight: 600;
	border-left: 3px solid #ee464b;
}

.faq-compact__question:last-child {
	border-bottom: none;
}

/* Content Area */
.faq-compact__content {
	padding: 30px;
	min-height: 120px;
	background: #fff;
}

.faq-answer {
	display: none !important;
	animation: fadeInContent 0.5s ease;
}

.faq-answer.active {
	display: block !important;
}

.faq-answer p {
	margin: 0;
	line-height: 1.8;
	color: #7c7d8a !important;
	font-size: 16px;
}

@keyframes fadeInContent {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Magnific Popup - Tamaño original con mejor ajuste */
.mfp-img {
  max-width: 90vw;
  max-height: 90vh;
}
/* AJUSTE PARA GALERÍA MIXTA (IMÁGENES Y VIDEOS) */

/* 1. Forzar que el contenido no supere el tamaño de la pantalla */
.modal, .popup, .gallery-modal { 
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* 2. Ajuste específico para imágenes y contenedores de video */
.modal img, 
.modal video, 
.modal iframe,
.modal .video-container {
    max-width: 90vw !important; /* Máximo 90% del ancho de la pantalla */
    max-height: 80vh !important; /* Máximo 80% del alto de la pantalla */
    width: auto !important;
    height: auto !important;
    object-fit: contain !important; /* Mantiene proporción sin recortar */
    border-radius: 8px;
}

/* 3. Eliminar barras de scroll innecesarias */
.modal-content, .modal-body {
    overflow: hidden !important; 
    background: transparent !important; /* Opcional: quita el fondo blanco si molesta */
    border: none !important;
}
/* ==========================================
   SOLUCIÓN PARA GALERÍA (IMÁGENES Y VIDEOS)
   ========================================== */

/* 1. Ajustar la imagen para que nunca se pase del alto de la pantalla */
.mfp-img {
    max-height: 80vh !important; /* Limita la altura al 80% de la pantalla */
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

/* 2. Quitar las barras de scroll y ajustar el contenedor blanco */
.mfp-container {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.mfp-content {
    vertical-align: middle !important;
}

/* 3. Ajuste para los videos (Iframe) */
.mfp-iframe-scaler {
    max-width: 90vw !important; /* Ancho máximo en móviles */
    max-height: 80vh !important;
}

/* 4. Eliminar el scroll lateral/vertical que sale en tu captura */
.mfp-figure figure {
    margin: 0 !important;
    overflow: hidden !important;
}
/* FIX PARA CAROUSEL DE GALERÍA (Owl Carousel o similar) */
/* Contenedor principal del carousel */
.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
    height: auto !important; /* Permite que se ajuste al contenido */
}

/* Cada item del carousel (la caja con la imagen) */
.owl-carousel .owl-item {
    overflow: hidden !important; /* Evita que imágenes salgan del item */
    border-radius: 12px; /* Opcional: bordes redondeados para que se vea más pro */
}

/* Las imágenes dentro del carousel */
.owl-carousel .owl-item img,
.gallery-item img,  /* Por si usas otra clase */
.owl-carousel img {
    width: 100% !important;
    height: auto !important;      /* Mantiene proporción */
    object-fit: cover !important; /* Recorta si es necesario para llenar (cambia a 'contain' si no quieres recorte) */
    display: block;
    max-height: 500px;            /* Límite máximo de altura para evitar gigantes (ajusta según tus imágenes: 400px-600px) */
    margin: 0 auto;
}

/* Responsive: en móviles reduce más */
@media (max-width: 767px) {
    .owl-carousel img {
        max-height: 350px !important; /* Más pequeño en celular */
    }
    .owl-carousel .owl-item {
        padding: 0 5px; /* Espacio entre items en mobile */
    }
}

/* Clean header defaults (kept if not present elsewhere). */
.stricked-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	transform: none;
	-webkit-transform: none;
}

/* Targeted fix: ensure contact section decorative shapes and pseudo-elements
   do not create a stacking context that covers the header. These rules are
   specific and minimal — can be removed once validated. */
.contact-one .container { z-index: 2; position: relative; }
.contact-one [class*=contact-one__shape-] {
	z-index: 0;
	transform: none !important;
	-webkit-transform: none !important;
	pointer-events: none; /* shapes shouldn't block header interactions */
}
.contact-one__form-wrap, .contact-one__form { position: relative; z-index: 3; }
.block-title__bubbles::before,
.block-title__bubbles::after { display: none !important; }



/* Evita que la barra azul o footer se superponga raro */
.page-wrapper, 
.site-footer,
.gallery-section {  /* Cambia .gallery-section por el ID/clase real de tu sección galería, ej #gallery */
    position: relative;
    overflow: hidden;
}

/* Si hay un elemento azul fijo que molesta (parece un progress bar o fondo mal colocado) */
.blue-bar, .progress-bar, [style*="background: blue"], .thm-btn {  /* Ajusta selector si sabes cuál es */
    position: relative !important; /* Quita fixed si está mal */
    bottom: auto !important;
}

/* --- Magnific Popup fixes moved from mfp-fix.css --- */
/* Ensure popup images fit and don't get cropped */
img.mfp-img, .mfp-img, .mfp-content img {
	max-width: 90vw !important;
	max-height: 90vh !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	box-sizing: border-box !important;
	object-fit: contain !important;
}

.mfp-image-holder .mfp-img {
	max-height: calc(100vh - 80px) !important;
	display: block !important;
	margin: 0 auto !important;
}

.mfp-figure {
	display: block !important;
	text-align: center !important;
	padding: 0 !important;
}
.mfp-figure .mfp-img { display: block !important; margin: 0 auto !important; }

.mfp-img { padding-top: 0 !important; padding-bottom: 0 !important; }

.mfp-container { padding: 0 !important; box-sizing: border-box !important; text-align: center !important; }

.mfp-content { display: inline-block !important; vertical-align: middle !important; padding: 0 !important; margin: 0 auto !important; box-sizing: border-box !important; }

.mfp-figure, .mfp-figure figure { margin: 0 !important; }
.mfp-figure figure { overflow: visible !important; }
.mfp-figure:after { display: none !important; }
.mfp-title { display: none !important; }

.mfp-wrap .mfp-container {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 24px !important;
 }

.mfp-wrap .mfp-content {
	margin: 0 !important;
	max-width: 90vw !important;
 }

.mfp-wrap,
.mfp-align-top {
	height: 100% !important;
 }

.mfp-wrap .mfp-container,
.mfp-align-top .mfp-container {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 24px !important;
	box-sizing: border-box !important;
 }

.mfp-wrap .mfp-container:before,
.mfp-align-top .mfp-container:before {
	display: none !important;
 }

.mfp-wrap .mfp-content,
.mfp-align-top .mfp-content {
	margin: 0 !important;
 }

.mfp-image-holder .mfp-content,
.mfp-iframe-holder .mfp-content {
	max-width: 90vw !important;
	max-height: 90vh !important;
 }

.mfp-image-holder .mfp-figure figure {
	overflow: visible !important;
 }

.mfp-image-holder .mfp-img {
	max-width: 90vw !important;
	max-height: 90vh !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain !important;
 }

.mfp-iframe-scaler {
	width: 90vw !important;
	max-width: 90vw !important;
	max-height: 90vh !important;
	aspect-ratio: 16 / 9;
	height: auto !important;
	padding-top: 0 !important;
	overflow: visible !important;
	position: relative !important;
 }

.mfp-iframe-scaler iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
 }

.modal img, .modal video, .modal iframe, .modal .video-container { max-width: 100% !important; max-height: 100% !important; object-fit: contain !important; }

.mfp-wrap { max-width: 100vw !important; }
/* End Magnific Popup fixes */

.mfp-bg { z-index: 20000 !important; }
.mfp-wrap { z-index: 20001 !important; }

/*--------------------------------------------------------------
# Mobile Responsive Fixes - Videos, Social Icons, Centering
--------------------------------------------------------------*/

/* 1. Fix videos too large on mobile in carousel */
.app-shot-one__carousel video,
.owl-carousel video {
    width: 100% !important;
    height: auto !important;
    max-height: 500px;
    object-fit: contain !important;
    display: block;
}

@media (max-width: 767px) {
    .app-shot-one__carousel video,
    .owl-carousel video {
        max-height: 300px !important;
    }
    
    .app-shot-one__carousel .item,
    .owl-carousel .item {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .app-shot-one {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    
    .app-shot-one .app-shot-one__carousel {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .app-shot-one__carousel video,
    .owl-carousel video {
        max-height: 250px !important;
    }
    
    .app-shot-one__carousel .item,
    .owl-carousel .item {
        max-width: 220px;
    }
}

/* 2. Fix social icons colors - use attribute selectors for Font Awesome classes */
.side-menu__social a[class*="fa-tiktok"] {
    background-color: #010101 !important;
    border-color: #010101 !important;
    color: #fff !important;
}

.side-menu__social a[class*="fa-instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    border: none !important;
    color: #fff !important;
}

.side-menu__social a[class*="fa-facebook"] {
    background-color: #1877F2 !important;
    border-color: #1877F2 !important;
    color: #fff !important;
}

.side-menu__social a[class*="fa-youtube"] {
    background-color: #FF0000 !important;
    border-color: #FF0000 !important;
    color: #fff !important;
}

.side-menu__social a[class*="fa-whatsapp"] {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
}

/* 3. Fix centering issues on certain screen widths */
@media (max-width: 991px) {
    .banner-one .container,
    .banner-one .row {
        justify-content: center !important;
        text-align: center;
    }
    
    .banner-one__moc,
    .banner-one video {
        margin: 0 auto;
        display: block;
        max-width: 100%;
    }
    
    .banner-one__content {
        text-align: center;
        margin: 0 auto;
    }
    
    .banner-one__shape-moc-1 {
        left: 50% !important;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .container-fluid,
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .banner-one {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .banner-one__moc,
    .banner-one video {
        max-width: 90%;
        height: auto;
    }
    
    /* Ensure content doesn't overflow */
    .page-wrapper {
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .banner-one__content h3 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .banner-one__content p {
        font-size: 14px;
    }
    
    .thm-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 449px) {
    .banner-one .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .banner-one__moc,
    .banner-one video.banner-one__moc {
        position: static !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto !important;
        display: block !important;
        width: 80% !important;
        max-width: 300px !important;
    }
    
    .banner-one__shape-moc-1 {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# SEO: H1 oculto visualmente pero accesible para buscadores
--------------------------------------------------------------*/
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/*--------------------------------------------------------------
# Fix: Header - Ocultar hamburguesa en desktop, mostrar en móvil
--------------------------------------------------------------*/
/* Ocultar hamburguesa en desktop (mayor a 1024px) */
@media (min-width: 1025px) {
    .main-nav__logo-box .side-menu__toggler {
        display: none !important;
    }
}

/* Reducir espaciado del menú en resoluciones intermedias */
@media (min-width: 1025px) and (max-width: 1250px) {
    .main-nav__main-navigation .main-nav__navigation-box > li + li {
        margin-left: 20px !important;
    }
    
    .main-nav__main-navigation .main-nav__navigation-box > li > a {
        font-size: 14px !important;
    }
    
    .header__btn {
        padding: 9px 25px !important;
        font-size: 14px !important;
    }
}

/* Mostrar botón Contáctame en todas las resoluciones */
.main-nav__right {
    display: flex !important;
    align-items: center !important;
}

.main-nav__right .header__btn {
    display: inline-block !important;
}

/* Móvil/Tablet: mostrar hamburguesa a la derecha */
@media (max-width: 1024px) {
    .header-navigation .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .main-nav__logo-box {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
    }
    
    .main-nav__logo-box .main-nav__logo {
        flex: 0 0 auto !important;
    }
    
    /* Hamburguesa: posición absoluta dentro del header */
    .main-nav__logo-box .side-menu__toggler {
        display: block !important;
        position: absolute !important;
        right: 170px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
        color: #fff !important;
        font-size: 22px !important;
    }
    
    .main-nav__right {
        display: flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }
    
    .main-nav__right .header__btn {
        display: inline-block !important;
        padding: 10px 25px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 767px) {
    .main-nav__logo-box .side-menu__toggler {
        right: 150px !important;
    }
    
    .main-nav__right .header__btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 575px) {
    .main-nav__logo-box .side-menu__toggler {
        right: 140px !important;
    }
    
    .main-nav__right .header__btn {
        padding: 8px 18px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 420px) {
    .main-nav__logo-box .side-menu__toggler {
        right: 120px !important;
    }
    
    .main-nav__right .header__btn {
        padding: 8px 15px !important;
        font-size: 11px !important;
    }
}

/*--------------------------------------------------------------
# Fix: Carrusel animaciones - Eliminar espacios blancos
--------------------------------------------------------------*/
.app-shot-one .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 100% !important;
}

.app-shot-one__carousel {
    width: 100% !important;
}

.app-shot-one__carousel .owl-stage-outer {
    width: 100% !important;
}

.app-shot-one__carousel .owl-stage {
    display: flex !important;
}

.app-shot-one__carousel .owl-item {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.app-shot-one__carousel .item {
    width: 100% !important;
}

.app-shot-one__carousel .item video {
    width: 100% !important;
    height: auto !important;
    max-height: 500px !important;
    object-fit: contain !important;
}

@media (max-width: 479px) {
    .app-shot-one .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .app-shot-one__carousel .owl-item {
        width: calc(100vw - 40px) !important;
        flex: 0 0 auto !important;
    }
    
    .app-shot-one__carousel .item,
    .app-shot-one__carousel .item video {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 480px) and (max-width: 699px) {
    .app-shot-one__carousel .owl-item {
        width: calc(50vw - 15px) !important;
    }
}

@media (min-width: 700px) and (max-width: 991px) {
    .app-shot-one__carousel .owl-item {
        width: calc(33.333vw - 15px) !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .app-shot-one__carousel .owl-item {
        width: calc(25vw - 15px) !important;
    }
}

/* Fix: Eliminar cortes blancos en sección CTA y contacto */
.cta-one,
.cta-one .container,
.contact-one,
.contact-one .container {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.contact-one::before,
.contact-one::after,
.cta-one::before,
.cta-one::after,
.contact-one::before,
.contact-one::after {
    display: none !important;
}

/*--------------------------------------------------------------
# FIX DEFINITIVO BANNER VIDEO - SOBRESCRIBE RESPONSIVE.CSS
--------------------------------------------------------------*/

/* DESKTOP: Mantener diseño original */
@media (min-width: 992px) {
    .banner-one__moc,
    video.banner-one__moc {
        position: absolute !important;
        bottom: 180px !important;
        right: -30px !important;
        max-width: 400px !important;
        width: auto !important;
        height: auto !important;
        left: auto !important;
        margin: 0 !important;
    }
}

/* TABLETS Y MÓVILES: Responsive fix */
@media (max-width: 991px) {
    .banner-one__moc,
    video.banner-one__moc {
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        margin: 30px auto 40px auto !important;
        display: block !important;
        max-width: 320px !important;
        width: 85% !important;
        height: auto !important;
        transform: none !important;
        animation: none !important;
    }
    
    .banner-one .container {
        padding-top: 180px !important;
        padding-bottom: 80px !important;
        text-align: center !important;
    }
    
    .banner-one__content {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .banner-one .row {
        justify-content: center !important;
    }
}

/* TABLETS MEDIANOS (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .banner-one__moc,
    video.banner-one__moc {
        max-width: 300px !important;
        width: 80% !important;
    }
}

/* MÓVILES GRANDES (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .banner-one__moc,
    video.banner-one__moc {
        max-width: 280px !important;
        width: 85% !important;
        margin-top: 20px !important;
    }
    
    .banner-one .container {
        padding-top: 150px !important;
        padding-bottom: 70px !important;
    }
    
    .banner-one__content h3 strong {
        font-size: 36px !important;
    }
}

/* MÓVILES PEQUEÑOS (320px - 480px) */
@media (max-width: 480px) {
    .banner-one__moc,
    video.banner-one__moc {
        max-width: 250px !important;
        width: 90% !important;
        margin-top: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .banner-one .container {
        padding-top: 120px !important;
        padding-bottom: 60px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .banner-one__content h3 strong {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .banner-one__content p {
        font-size: 14px !important;
        line-height: 24px !important;
    }
}

/* MÓVILES MUY PEQUEÑOS (≤375px) */
@media (max-width: 375px) {
    .banner-one__moc,
    video.banner-one__moc {
        max-width: 230px !important;
    }
}

/* FIX ESPECÍFICO PARA 766px */
@media (min-width: 766px) and (max-width: 768px) {
    .banner-one__moc,
    video.banner-one__moc {
        max-width: 290px !important;
        width: 75% !important;
    }
}

/* Ocultar decoraciones en móvil */
@media (max-width: 991px) {
    .banner-one__shape-moc-1,
    [class*="banner-one__shape-"] {
        display: none !important;
    }
}

/* Garantizar que nada se salga del viewport */
body, html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

.page-wrapper {
    overflow-x: hidden !important;
}

.banner-one {
    overflow: hidden !important;
    position: relative !important;
}

.banner-one .container {
    overflow: visible !important;
    max-width: 100% !important;
}

/* Fix para el gradiente del banner */
@media (max-width: 991px) {
    .banner-one::before {
        height: 100px !important;
    }
}

@media (max-width: 480px) {
    .banner-one::before {
        height: 60px !important;
    }
}

/*--------------------------------------------------------------
# CENTRADO FINAL DEL BANNER DESKTOP - MÁXIMA PRIORIDAD
--------------------------------------------------------------*/
@media (min-width: 992px) {
    section.banner-one .container {
        max-width: 1150px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    section.banner-one .banner-one__content {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    section.banner-one .banner-one__moc,
    section.banner-one video.banner-one__moc {
        right: -50px !important;
        -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate !important;
        animation: ImgBounce 5s ease-in-out 0s infinite alternate !important;
    }
}

@keyframes ImgBounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-30px);
    }
}

/* Título del banner: PUBLICIDAD DIGITAL en una línea */
@media (min-width: 992px) {
    .banner-one__content h3 strong:first-child {
        white-space: nowrap !important;
    }
}

/* Título del footer izquierdo - mismo estilo que Suscríbete */
.footer-widget__about .footer-widget__title {
    color: #fff !important;
    margin-bottom: 20px !important;
}

/* Ocultar cursor personalizado en móvil */
@media (max-width: 991px) {
    .cursor,
    .cursor-follower {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Ajustar scroll para que las secciones no queden tapadas por el header */
html {
    scroll-padding-top: 120px;
}

#pricing {
    scroll-margin-top: -100px;
}