
/* --------Font--------------- */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: 'Helvetica'; 
  src: url('fonts/Helvetica.ttf') format('truetype'); /* This is the PATH to the file */
}

/* -----------Css-variable------ */

:root {
    --primary: #dc2323; 
    --secondary: #3f3f3f;
    --body-text: #232323;
    --white: #ffffff;
    --lighter1: #f6f4fe;
    --lighter2: #DFDAF3;
    --lighter3:#c1c0d3;
    --purplishgray:#e2dcff;
    --border:#e1dbfc;
    --slider-dots-color: #911A23;
    --red-color:#dc2323;
    --green-color:#911A23;
    --dark-background: #111b21;
    --brand-green: #25d366;
    --chat--color-primary: #25d366;
	--chat--color-primary-shade-50: #dc2323;
	--chat--color-primary-shade-100: #dc2323;
	--chat--color-secondary: #dc2323;
	--chat--color-secondary-shade-50: #dc2323;
	--chat--color-white: #ffffff;
	--chat--color-light: #f2f4f8;
	--chat--color-light-shade-50: #e6e9f1;
	--chat--color-light-shade-100: #c2c5cc;
	--chat--color-medium: #d2d4d9;
	--chat--color-dark: #dc2323;
	--chat--color-disabled: #777980;
	--chat--color-typing: #404040;

	--chat--spacing: 1rem;
	--chat--border-radius: 0.75rem;
	--chat--transition-duration: 0.15s;

	--chat--window--width: 300px;
	--chat--window--height: 500px;

	--chat--header-height: 1.2;
	--chat--header--padding: var(--chat--spacing);
	--chat--header--background: var(--chat--color-dark);
	--chat--header--color: var(--chat--color-light);
	--chat--header--border-top: none;
	--chat--header--border-bottom: none;
	--chat--heading--font-size: 1.6em;
	--chat--header--color: var(--chat--color-light);
	--chat--subtitle--font-size: inherit;
	--chat--subtitle--line-height: 1.8;

	--chat--textarea--height: 50px;

    --chat--heading--line-height: auto;
	--chat--message--font-size: 1rem;
	--chat--message--padding: var(--chat--spacing);
	--chat--message--border-radius: var(--chat--border-radius);
	--chat--message-line-height: 1.8;
	--chat--message--bot--background: var(--chat--color-white);
	--chat--message--bot--color: var(--body-text);
	--chat--message--bot--border: none;
	--chat--message--user--background: var(--chat--color-secondary);
	--chat--message--user--color: var(--chat--color-white);
	--chat--message--user--border: none;
	--chat--message--pre--background: rgba(0, 0, 0, 0.05);

	--chat--toggle--background: var(--chat--color-primary);
	--chat--toggle--hover--background: var(--chat--color-primary-shade-50);
	--chat--toggle--active--background: var(--chat--color-primary-shade-100);
	--chat--toggle--color: var(--chat--color-white);
	--chat--toggle--size: 64px;
}

.font-black{
    color: var(--body-text);
}

/* ------Common-Css------------- */

html{scroll-behavior:smooth; overflow-x: hidden;}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Noto Sans', sans-serif;
    color: var(--body-text);
    background-color: var(--white);
    overflow-x: hidden;
}

img {max-width: 100%}

.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

.fraunces-headers {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
}

.epilogue-font {
  font-family: "Epilogue", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.dela-gothic-one-regular {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
    text-decoration: none;
    color: var(--body-text);
}

a:hover {
    text-decoration: none;
    color: var(--body-text);
}

div.choose_play a img{
    animation: reverse_anim_round 12s infinite linear reverse;
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}


/*Agregar los breakpoints*/

/* heding font size */

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--secondary);
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 45px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 24px;
}


@media screen and (min-width:1200px) {
    .container {
        max-width: 1370px;
    }
}

.word-container{
  display:inline-grid;      /* el grid mide la anchura + alta de TODOS los hijos   */
  position:relative;
}

/* las dos palabras comparten exactamente la misma celda del grid */
.word-container > span{
  grid-area:1/1;
  white-space:nowrap;
  transition:opacity .4s ease, transform .4s ease;
}

/* ---------- FIRST word ---------- */
.letrasSalen{                       /* shown immediately */
  display:inline-block;             /* keep flow – gives the wrapper a size   */
  transition:opacity .4s ease, transform .4s ease;
}

/* when the JS adds .out (after 5 s)                                     */
/* we now switch it to absolute so it can slide up without moving layout */
.letrasSalen.out{ opacity:0; transform:translateY(-25%); }

.letrasEntran{   opacity:0; transform:translateY(25%);   }

.letrasEntran.in{opacity:1; transform:translateY(0);  color: var(--primary);   }



/* section heading h2 */

.section_title {
	text-align: center;
}

.section_title h2 {
    margin-top: 5px;
}

.section_title h2 span {
    color: var(--primary);
}

.title_badge {
    color: var(--primary);
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.title_badge.lighter {
	background: var(--primary);
    color: var(--white);
}

.section_title p {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
    padding: 0px 300px;
    margin-bottom: 30px;
}

.white_text p,
.white_text .section_title h2,
.white_text h2,
.white_text h3 {
    color: var(--white);
}

.white_text span{
    color: white;
    font-size: 20px;
}

.row_am {
    padding: 50px 0;
}


/* section inner padding */
.section_inner_padding {
	padding-top: 100px;
	padding-bottom: 100px;
}

.section_inner_top_padding { 
	padding-top: 100px; 
}


/* purple button */
.puprple_btn {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 10px;
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--white);
    border-radius: 6px;
    transition: .6s all;
    z-index: -1;
}

.puprple_btn:hover::before {
    width: 100%;
}

.puprple_btn:hover {
    color: var(--primary);
}

.text_align_center{
    text-align: center;
}


/* purple button */
.light_btn {
    background-color: var(--white);
    color: var(--primary);
    border-radius: 10px;
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 700;
    font-size: 14px;
    border: solid 1px var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.light_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 6px;
    transition: .6s all;
    z-index: -1;
}

.light_btn:hover::before {
    width: 100%;
}

.light_btn:hover {
    color: var(--white) !important;
    border: solid 1px var(--white);
}


/* animated dots */

/* Dots Moving Animation */
.dotes_anim_bloack .dots {
  position: absolute;
  border-radius: 50%;
}

.dotes_anim_bloack .dots::before {
  content: "";
  border-radius: 50%;
  position: absolute;
}

.dotes_anim_bloack .dotes_1 {
  width: 120px;
  height: 120px;
  top: 135px;
  left: 75px;
  animation: reverce_anim_round 12s infinite linear;
}

.dotes_anim_bloack .dotes_1::before {
  width: 8px;
  height: 8px;
  background: #ff6b64;
  top: 0;
  left: 0;
}

.dotes_anim_bloack .dotes_2 {
  width: 90px;
  height: 60px;
  top: 47px;
  left: 65%;
  animation: anim_round 9s infinite linear;
}

.dotes_anim_bloack .dotes_2::before {
  width: 6px;
  height: 6px;
  background: #ff6b64;
  top: 0;
  left: 0;
}

.dotes_anim_bloack .dotes_3 {
  width: 120px;
  height: 120px;
  top: 175px;
  right: 165px;
  animation: reverce_anim_round 12s infinite linear;
}

.dotes_anim_bloack .dotes_3::before {
  width: 10px;
  height: 10px;
  background: #c47bea;
  top: 0;
  right: 0;
}

.dotes_anim_bloack .dotes_4 {
  width: 100px;
  height: 140px;
  top: 33%;
  left: 290px;
  animation: anim_round 8s infinite linear;
}

.dotes_anim_bloack .dotes_4::before {
  width: 6px;
  height: 6px;
  background: #ffb135;
  top: 0;
  left: 0;
}

.dotes_anim_bloack .dotes_5 {
  width: 120px;
  height: 120px;
  top: 37%;
  left: 68%;
  animation: reverce_anim_round 15s infinite linear;
}

.dotes_anim_bloack .dotes_5::before {
  width: 10px;
  height: 10px;
  background: #ffb135;
  top: 0;
  left: 0;
}

.dotes_anim_bloack .dotes_6 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 90px;
  animation: anim_round 17s infinite linear;
}

.dotes_anim_bloack .dotes_6::before {
  width: 4px;
  height: 4px;
  background: #c47bea;
  top: 0;
  right: 0;
}

.dotes_anim_bloack .dotes_7 {
  width: 120px;
  height: 120px;
  bottom: 18%;
  left: 200px;
  animation: reverce_anim_round 14s infinite linear;
}

.dotes_anim_bloack .dotes_7::before {
  width: 4px;
  height: 4px;
  background: #5c5fff;
  top: 0;
  left: 0;
}

.dotes_anim_bloack .dotes_8 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 250px;
  animation: reverce_anim_round 10s infinite linear;
}

.dotes_anim_bloack .dotes_8::before {
  width: 12px;
  height: 12px;
  background: #ffa168;
  top: 0;
  left: 0;
}

.dotes_anim_bloack .dotes_9 {
  width: 120px;
  height: 120px;
  bottom: 12%;
  left: 600px;
  animation: reverce_anim_round 20s infinite linear;
}

.dotes_anim_bloack .dotes_9::before {
  width: 12px;
  height: 12px;
  background: #f19d99;
  top: 0;
  left: 0;
}

.dotes_anim_bloack .dotes_10 {
  width: 120px;
  height: 120px;
  top: 350px;
  left: 25px;
  animation: reverce_anim_round 10s infinite linear;
}

.dotes_anim_bloack .dotes_10::before {
  width: 9px;
  height: 9px;
  background: #6a49f2;
  top: 0;
  left: 0;
}

@keyframes anim_round {
  0% {
    transform: rotate(0);
  }

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

@keyframes reverce_anim_round {
  0% {
    transform: rotate(0);
  }

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


/* ------------Waves-Animation---------------- */
.waves-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 150px;
    height: 150px;
}

.waves {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    position: absolute;
    top: 0;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    position: absolute;
    top: 0;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}



/* slider controls */
.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border-radius: 15px;
    margin: 0 5px;
    border: solid 1px var(--primary);
}

.owl-carousel .owl-dots button.active {
    background-color: var(--primary);
}

.container.container-sm {
    max-width: 780px;
}


/* -------------Preloader-Css-Start-------------- */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--body-text);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--secondary);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}




/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
    position: absolute;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
}

header.fix_style {
    position: fixed;
    top: 0;
    background-image:none;
    backdrop-filter: blur(5px);
    padding: 15px 0;
    transition: none;
    opacity: 0;
    pointer-events: none;
    background-image: none;
    color: black;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(7.6px);
    -webkit-backdrop-filter: blur(7.6px);
}

header.fixed {
   pointer-events: all;
   opacity: 1;
   transition: .4s all;
}

header.fixed .navbar {
    padding: 0;
}

/* navigation bar */
.navbar {
    padding-left: 0;
    padding-right: 0;
    padding-top: 25px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 14px;
    font-weight: 500;
    color: var(--body-text);
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-expand-lg .navbar-nav .nav-link.light_btn {
    color: var(--white);
    background-color: var(--primary);
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 10px;
    margin-left: 20px;
    position: relative;
    text-transform: capitalize;
}

.navbar-brand img {
    width: 135px;
}



/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px 10px 0 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover {
    background-color: var(--white);
    box-shadow: 0px 2px 4px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    position: relative;
    right: 15px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
    position: absolute;
    top: 100%;
    background-color: var(--white);
    border-radius: 0 10px 10px 10px;
    min-width: 210px;
    max-width: 230px;
    margin-top: -10px;
    transition: .4s all;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
    margin-left: 0;
    padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    font-size: 15px;
    position: relative;
    transition: .4s all;
    line-height: 35px;
    font-weight: 500;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid var(--primary);
    border-radius: 10px;
    margin-right: 5px;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
    padding-left: 15px;
    color: var(--primary);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
    color: var(--primary);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
    opacity: 1;
    pointer-events: all;
    margin-top: -1px;
}

.navbar .btn.puprple_btn {
    margin: 0 5px;
}

/* navigation toggle menu */
.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;
    
    /*disable selection*/
    -webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.toggle-bar {
	width: 25px;
	margin: 10px 0;
	position: relative;
	border-top: 2px solid var(--secondary);
	display: block;
}

.toggle-bar::before,
.toggle-bar::after {
	content: "";
	display: block;
	background: var(--secondary);
	height: 2px;
	width: 30px;
	position: absolute;
	top: -12px;
	right: 0px;
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-ms-transform-origin: 13%;
	-webkit-transform-origin: 13%;
	transform-origin: 7%;
}

.white_header .toggle-bar , 
.white_header .toggle-bar::before,
.white_header .toggle-bar::after {
    border-top: 2px solid var(--secondary);
}

.toggle-bar::after {
    top: 7px;
}

.toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
 }

.toggle-wrap.active .toggle-bar::after {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


/* ---------Hero-Slider-Css-Start------------------ */
/* hero slider wraper */
.banner_section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
}

.banner_section .container {
    position: relative;
}

.banner_section .banner_shape_images {
    position: relative;
    display: flex;
}

.banner_section .banner_shape_images .hero_image_2 {
    position: absolute;
    top: -5px;
    right: -22px;
}


.banner_section .banner_shape_images .hero_image_2 img {
    max-width: inherit;
    display: block;
}

.banner_section .row {
    align-items: center;
}

/* hero slider text */
.banner_section .banner_text {
    margin-top: -30px;
    padding-right: 20px;
}

/* hero slider heading h1 */
.banner_section .banner_text h1 {
    font-size: 48px;
    color: var(--secondary);
    letter-spacing: -1px;
    font-weight: normal;
    margin-top: 15px;
}

.banner_section .banner_text h1 span {
    color: var(--primary);
    font-weight: 600;
}


/* hero slider p */
.banner_section .banner_text p {
	padding: 10px 0;
    font-size: 20px;

}


/* hero slider button */
.banner_section .app_btn {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    justify-items: center;
}

/* hero slider list */
.banner_section .app_btn li a {
    display: block;
    position: relative;
    border-radius: 12px;
    transition: .4s all;/*width: 182px;*/
    padding: 0 5px;
}

.banner_section .app_btn li a img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease-in-out;
}

.banner_section .app_btn li a .white_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.banner_section .app_btn li a:hover .blue_img {
    opacity: 0.5;
}

.banner_section .app_btn li a:hover .white_img {
    opacity: 1;
}

@media (max-width:576px){
    .banner_section .app_btn {
    display: block;
    padding: 10px 0;
}
    .banner_section .app_btn li a{
        padding: 10px 0;
    }


}

/* hero slider users */
.banner_section .used_app {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.banner_section .used_app ul {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.banner_section .used_app ul li:not(:first-child) {
    margin-left: -15px;
}

.banner_section .used_app p {
    font-size: 15px;
    line-height: 19px;
    margin-bottom: 0;
}

.banner_section .banner_text .type-wrap .typed {
	color: var(--primary);
    font-size: 20px;
}


/* hero slider images */
.banner_section .banner_slider {
    display: flex;
    position: relative;
}

.banner_section .banner_slider .left_icon {
    position: absolute;
    left: 15px;
    bottom: 70px;
    z-index: 9999;
    display: none;
}

.banner_section .banner_slider .right_icon {
    position: absolute;
    right: 15px;
    bottom: 150px;
    z-index: 9999;
}

/* hero slider mobile frame */
.banner_section .banner_slider .slider_frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 325px;
}

.banner_section .banner_slider #frmae_slider::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    background-color: #fff;
    width: calc(100% - 10px);
    height: 89%;
    border-radius: 20px;
}

.banner_section .banner_slider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 475px;
    height: 475px;
    border-radius: 100%;
    background-color: #BF463B;
    z-index: -5;
}

.banner_section .banner_slider #frmae_slider {
    width: 305px;
    margin: 0 auto;
}


/* hero slider control dots */
.banner_section .owl-dots {
    margin-top: 40px;
}

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
    border-radius: 40px;
}



/* ---------- text List Flow Css Start ------------- */

.text_list_section {
	margin-top: -50px;
}

.text_list_section .slider_block {
    background-color: var(--brand-red);
    padding: 20px 0;
    width: 100%;
    overflow-x: hidden;
}

.text_list_section .down_fix {
    position: relative;
    bottom: -30px;
    z-index: 9;
}

.text_list_section .down_fix::after {
    content: "";
    position: absolute;
    right: 0;
    top: -10px;
    width: 22px;
    height: 22px;
    background-image: url(../images/bigstar.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.text_list_section.rotet_down {
    transform: rotate(0.5deg);
}

.text_list_section .owl-stage,
.text_list_section .owl-stage-outer,
.textFlow_list .owl-stage,
.textFlow_list .owl-stage-outer {
    height: 45px;
}

.text_block {
    display: flex;
    align-items: center;
}

.text_block span {
    color: var(--white);
    font-size: 40px;
    font-family: var(--font-bebas);
    font-weight: 700;
    line-height: 1;
}

.text_block .mark_star {
    margin: 0 60px;
    font-family: 'Playball', cursive;
}


/* ------------Trusted-Section-Css-Start----------- */

.trusted_section .company_logos img {
    filter: grayscale(1);
    margin: 0 auto;
    padding: 0 20px;
    transition: .4s all;
    background: var(--white);
    border-radius: 12px;
    border: solid 1px var(--border); 
}

.trusted_section .company_logos img:hover {
    filter: grayscale(0);
}



/* ----------Feature-Detail-Section-start------ */

/* features section wraper */
.features_section .feature_detail {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    
}

/* features section image */
.features_section .feature_detail .feature_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
}

.features_section .feature_detail .feature_img img {
    max-width: 100%;
}

/* features section box */

.features_section .feature_detail .feature_box {
    max-width: 430px;
}

.features_section .feature_detail .feature_box .data_block {
    margin-bottom: 50px;
    background: var(--white);
    border: solid 1px var(--border);
    border-radius: 20px;
    padding: 30px;

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.features_section .feature_detail .feature_box .data_block:hover {
    border: solid 1px var(--primary);
    transition: all ease-in-out .2s;
}

.features_section .feature_detail .feature_box .data_block:hover .icon img {
    transform: rotate(360deg);
    transition: transform 2s;
}

.features_section .feature_detail .feature_box .data_block h6 {
    color: var(--secondary);
}

.features_section .feature_detail .left_data {
    text-align: right;
    padding-left: 100px;
}

.features_section .feature_detail .right_data {
    padding-right: 100px;
}

.features_section .feature_detail .left_data .data_block .icon {
    /*margin-right: -15px;*/
    margin-bottom: 20px;
}

.features_section .feature_detail .left_data .data_block .icon img {
    max-width: 100%;
}

.features_section .feature_detail .right_data .data_block .icon {
    /*margin-left: -15px;*/
    margin-bottom: 20px;
}

.features_section .feature_detail .right_data .data_block .icon img {
    max-width: 100%;
}

.features_section .container {
    max-width: 1370px;
}


/* ---------- service 2 colom section-------- */

.service_section {
    position: relative;
    padding-left: 15px !important;
    padding-right: 15px !important;
}


.service_section .inner_sec {
    margin: 0 auto;
    background-color: var(--white);
    padding: 70px 0;
    border-radius: 30px;
    border: solid 1px var(--border);
    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
    font-size: 20px;
}

.service_section .service_blocks {
    padding:50px 0;
    align-items: center;
}

.service_section .service_blocks .img img {
    max-width: 100%;
    border-radius: 20px;
}

.service_section .service_text {
    padding-right: 150px;
}

.service_section .service_text.right_side {
    padding-left: 100px;
    padding-right: 0;
}

.service_section .service_text h4 {
    margin: 25px 0;
}

.service_section .service_text h4 span {
    color: var(--primary);
    font-size: 28px;
}


.service_section .service_text .btn_block {
    margin-top: 40px;
}



/* ------------Two Colom Section Css------------ */
.two_colom_section {
    position: relative;
}

.two_colom_section .service_blocks {
    padding:50px 0 50px 0;
    align-items: center;
}

.two_colom_section .service_blocks .img img {
    max-width: 100%;
    border-radius: 20px;
}

.two_colom_section .service_text {
    padding-right: 150px;
}

.two_colom_section .service_text.right_side {
    padding-left: 150px;
    padding-right: 0;
}

.two_colom_section .service_text h3 {
    margin:10px 0 20px 0;
}

.two_colom_section .service_blocks.sb_2 {
	padding-bottom: 0;
}

.two_colom_section .service_text h3 span {
    color: var(--primary);
}

.two_colom_section .service_text .listing_block .text h6 {
    color: var(--secondary);
}

.two_colom_section .service_text .listing_block li {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.two_colom_section .service_text .listing_block li .icon span {
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    color: var(--white);
    background-color: var(--dark-black);
    border-radius: 100px;
    font-size: 8px;
    margin-top: 3px;
}

.two_colom_section .service_text .listing_block li .text {
    width: calc(100% - 50px);
}

.two_colom_section .service_text .feature_list li {
    display: flex;
    align-items: start;
    gap: 5px;
}

.two_colom_section .service_text .feature_list li .icon span {
    color: var(--primary);
    font-size: 18px;
}

.two_colom_section .service_text .feature_list li p {
    margin: 0;
    padding-top: 2px;
}

.two_colom_section .service_text .btn_block {
    margin-top: 30px;
}

.two_colom_section .service_text .listing_block li .icon span {
    background-color: var(--primary);
}

.two_colom_section .customer_payment .service_text {
    padding: 0;
    max-width: 385px;
    display: table;
    margin: 0 auto;
}


/* -----------------About-App-Section-Css-Start------------------ */

/* about us section wraper */
.about_app_section .about_img {
    display: flex;
    align-items: center;
    position: relative;
}

/* about us section images*/
.about_app_section .about_img img {
    max-width: 100%;
}

.about_app_section .about_img::before {
    content: "";
    position: absolute;
    left: 38%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: var(--white);
    border-radius: 100%;
    z-index: -1;
}

.about_app_section .about_img .screen_img {
    margin-left: -135px;
    margin-top: 110px;
}

.about_app_section .about_text .section_title {
    text-align: left;
}

.about_app_section .about_text .section_title h3 {
    padding: 15px 0 10px 0;
}

/* about us section  statastics nomber */
.about_app_section .about_text .app_statstic {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 40px;
}

.about_app_section .about_text .app_statstic li {
    width: 248px;
    background-color: var(--white);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 15px 10px;
    padding-left: 35px;
    box-shadow: 0px 4px 10px #EDE9FE;
}

.about_app_section .about_text .app_statstic li .icon {
    margin-right: 9px;
}

.about_app_section .about_text .app_statstic li p {
    margin-bottom: 0;
    line-height: 1;
    color: var(--secondary);
}

.about_app_section .about_text .app_statstic li p:first-child {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 3px;
}


/* how it works video model   */
.modal {
    z-index: 999999;
}

.modal-backdrop.show {
    z-index: 99999;
    opacity: .7;
}

.youtube-video .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 1240px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.youtube-video .modal-footer {
    border: none;
    text-align: center;
    display: block;
    padding: 0;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

#close-video {
    color: #fff;
    font-size: 30px;
}

/* -----------------Intro-Video-Css-Start------------------ */

/* Intro video  */

.intro_video .container {
	max-width: 1370px;
}

.intro_video .yt_video {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.intro_video .yt_video .thumbnil {
    position: relative;
}

.intro_video .yt_video .thumbnil img {
    max-width: 100%;
    border-radius: 20px;
}

.intro_video .yt_video .thumbnil a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    font-weight: 600;
    z-index: 999;
    cursor: pointer;
}

.intro_video .yt_video .thumbnil a span {
    display: block;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.3;
}

.intro_video .yt_video .thumbnil a .play_btn {
    background-color: rgba(255, 255, 255, 0.1);
    width: 92px;
    height: 92px;
    border-radius: 100px;
    text-align: center;
    margin: 0 auto;
    line-height: 80px;
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.intro_video .yt_video .thumbnil a .play_btn img {
    width: 72px;
    position: relative;
    z-index: 999;
}

.intro_video .yt_video .thumbnil .title_badge{
	color: var(--white);
	font-size: 12px;
	display: inline;
	padding: 7px 18px;
}


.testimonial_section .testimonial_block {
    background-size: cover;
    background-color: var(--lighter1);
    background-position: center;
    position: relative;
    margin-top: 65px;
}

.testimonial_section .testimonial_block .testimonial_slide_box {
    text-align: center;
    width: 430px;
    padding: 10px;
    margin: 0 auto;
}

/* testimonials rating  */
.testimonial_section .testimonial_block .rating span {
    color: #FC9400;
    font-size: 18px;
}

.testimonial_section .testimonial_block .testimonial_slide_box .review {
    margin-top: 10px;
    margin-bottom: 30px;
}

/* testimonials image  */
.testimonial_section .testimonial_block .testimonial_slide_box .testimonial_img img {
    margin: 0 auto;
}

/* testimonials heading h3 */
.testimonial_section .testimonial_block .testimonial_slide_box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 10px;
}

.testimonial_section .testimonial_block .testimonial_slide_box .designation {
    font-size: 15px;
}

/* testimonials total review */
.testimonial_section .total_review {
    text-align: center;
    margin-top: 60px;
}

.testimonial_section .total_review .rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* testimonials paragraph */
.testimonial_section .total_review .rating p {
    margin-bottom: 0;
    font-weight: 600;
    margin-left: 5px;
    color: var(--secondary);
}

/* testimonials heading */
.testimonial_section .total_review h3 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--secondary);
}

.testimonial_section .total_review a {
    color: var(--primary);
    font-weight: 700;
}

.testimonial_section .testimonial_block .avtar_faces {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
}

.testimonial_section .testimonial_block .avtar_faces img {
    max-width: 100%;
}


/* -------------------Pricing-Section---------------------- */

/* pricing wraper  */
.pricing_section .toggle_block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

/* pricing toggle button */
.pricing_section .toggle_block span {
    color: var(--secondary);
    font-weight: 600;
    display: block;
    margin: 0 5px;
}

.tog_btn.month_active {
    left: 35px !important;
}

.pricing_section .toggle_block span.deactive {
    color: var(--body-text);
}

.pricing_section .toggle_block .offer {
    background-color: var(--white);
    border-radius: 5px;
    padding: 2px 10px;
    font-weight: 400;
    font-size: 13px;
    color: var(--primary);
}

.pricing_section .toggle_block .tog_block {
    width: 70px;
    height: 35px;
    background-color: var(--white);
    border-radius: 18px;
    margin: 0 10px;
    position: relative;
    cursor: pointer;
}

.pricing_section .toggle_block .tog_block .tog_btn {
    height: 23px;
    width: 23px;
    border-radius: 25px;
    display: block;
    background-color: var(--primary);
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: .4s all;
}

.pricing_section .toggle_block .month.active,
.pricing_section .toggle_block .years.active {
    color: var(--primary);
}

/* pricing pannel */
.pricing_section .pricing_pannel {
    margin-top: 25px;
    display: none;
}

.pricing_section .pricing_pannel.active {
    display: block;
}

.pricing_section .pricing_pannel .pricing_block {
    text-align: left;
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: solid 1px var(--border);
    position: relative;

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.pricing_section .pricing_pannel .pricing_block .pkg_icon {
	text-align: left;
}

.pricing_section .pricing_pannel .pricing_block.highlited_block {
    border: solid 2px var(--primary);
    overflow: hidden;
}


/* pricing box image */
.pricing_section .pricing_pannel .pricing_block .icon img {
    width: 120px;
}

/* pricing box heading h3 */
.pricing_section .pricing_pannel .pricing_block .pkg_name h6 {
    margin-bottom: 0;
    padding: 8px 0 0 0;

}

.pricing_section .pricing_pannel .pricing_block .pkg_name span {
    color: var(--body-text);
    font-size: 15px;
}

.pricing_section .pricing_pannel .pricing_block .price {
    font-size: 45px;
    color: var(--primary);
    margin: 0px 0 25px 0;
    display: block;
    font-weight: 600;
    padding: 0;
}

.pricing_section .pricing_pannel .pricing_block .price span {
    font-size: 18px;
    color: var(--primary);
    font-weight: 300;
}

.pricing_section .pricing_pannel .pricing_block.highlited_block .price span {
    color: var(--white);
}


.pricing_section .pricing_pannel .pricing_block.highlited_block .offer	{ 
	position: absolute;
    right: -30px;
    top: 22px;
    background-color: var(--primary);
    padding: 5px 30px;
    line-height: 1.2;
    font-weight: 600;
    font-size: 13px;
    color: var(--white);
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* pricing box list */
.pricing_section .pricing_pannel .pricing_block .benifits {
    margin-bottom: 25px;
   
}

.pricing_section .pricing_pannel .pricing_block .benifits_block {
    padding: 30px 0 0 0;
    border-top: solid 1px var(--lighter3);
}


.pricing_section .pricing_pannel .pricing_block .benifits li p {
    margin: 0;
    width: calc(100% - 20px);
    font-weight: 400;
    padding-top: 0px;
    font-size: 16px;
    padding-bottom: 14px;
}


.pricing_section .pricing_pannel .pricing_block .benifits li {
    display: flex;
    align-items: start;
    margin:0;
}


.pricing_section .pricing_pannel .pricing_block .benifits li .icon {
    margin-right: 5px;
    width: 17px;
}

.pricing_section .pricing_pannel .pricing_block .benifits li .icon .icofont-check-circled {
    color: #00ae3d;
}

.pricing_section .pricing_pannel .pricing_block .benifits li .icon .icofont-close-circled {
    color: #dd4617;
}

.pricing_section .contact_text {
    text-align: center;
    margin-bottom: 0;
}

.pricing_section .contact_text a {
    color: var(--primary);
    text-decoration: underline;
}


/* =========Priicing Page Css Start - Table style============ */
.pricing_page_block {
    position: relative;
}

.pricing_page_block .table_content {
    background-color: var(--white);
    border-radius: 20px;
    border: solid 1px var(--border);
    margin-top: 50px;
}

.table_content .pricing_table {
    display: flex;
}

.table_content .pricing_table .pricing_block.pricing_feature {
    text-align: left;
}


.table_content .pricing_table .pricing_block {
    width: 25%;
    border-right: solid 1px var(--border);
    text-align: center;
}

.table_content .pricing_table .pricing_block.no_border {
    border-right: none;
}


.table_content .pricing_table .pricing_block .pricing_title {
    padding: 50px;
    min-height: 225px;
}

/*  recomment table css start */

.table_content .pricing_table .pricing_block.recomend {
	background: var(--lighter1);
}

.table_content .pricing_table .pricing_block .pricing_title.recomend {
   background: var(--primary);
}

.table_content .pricing_table .pricing_block .pricing_title.recomend h6, .pricing h6 {
	color: var(--white);
}

.table_content .pricing_table .pricing_block .pricing_title.recomend span {
	color: var(--white);
}

.table_content .pricing_table .pricing_block .pricing_title.recomend .pricing h3 {
	color: var(--white);
}

.table_content .pricing_table .pricing_block .pricing_title.recomend .pricing span {
	color: var(--white);
}

.table_content .pricing_table .pricing_block .btn_block {
	padding: 30px 0;
}


/*  recomment table css end */

.table_content .pricing_table .pricing_block .pricing_title h6 {
    margin: 0;
}

.table_content .pricing_table .pricing_block .pricing_title .pricing {
    padding: 20px 0 0 0;
}

.table_content .pricing_table .pricing_block .pricing_title .pricing h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.table_content .pricing_table .pricing_block .pricing_title .pricing span {
    font-size: 15px;
    margin-left: -10px;
    color: var(--secondary);
    font-weight: 400;
}

.table_content .pricing_table .mobile_text {
    display: none;
}

.table_content .pricing_table p {
    margin: 0;
}

.table_content .pricing_table ul li {
    padding: 15px 5px;
    border-top: 1px solid var(--border);
}

.table_content .pricing_table ul li:nth-child(even) { 
	background: #faf9fe; 
}

.table_content .pricing_table ul.features li {
    padding: 15px 5px 15px 30px;
}

.table_content .pricing_table ul.features li:nth-child(even) { 
	background: #faf9fe; 
}

.table_content .pricing_table .pricing_block ul li:last-child {
    border-bottom: 1px solid #e2dcd1;
}

.table_content .pricing_table .pricing_block .features li p {
    font-weight: 700;
}

.table_content .pricing_table .pricing_block ul li p .icofont-close-circled {
    color: var(--white);
    background: var(--red-color);
    border-radius: 100px;
    padding: 4px;
}

.table_content .pricing_table .pricing_block ul li p .icofont-check-circled {
    color: var(--white);
    background: var(--green-color);
    border-radius: 100px;
    padding: 4px;
}

.table_content .bottom_text {
    padding: 25px 15px;
}

.table_content .bottom_text p {
    margin: 0;
}

.table_content .bottom_text p a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
    transition: .4s all;
}

.table_content .bottom_text p a:hover {
    color: var(--dark-black);
}



/* -------------FAQ-Section-Css-Start----------------- */


.faq_section .nav-tabs {
    justify-content: center;
    margin-bottom: 30px;
    border: none;
}

.faq_section .nav-tabs .nav-item.show .nav-link,
.faq_section .nav-tabs .nav-link.active,
.faq_section .nav-tabs .nav-link:hover,
.faq_section .nav-tabs .nav-link {
    border: none;
    margin: 0;
}

.faq_section .nav-tabs .nav-item {
    position: relative;
}

.faq_section .nav-tabs .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
}

.faq_section .nav-tabs .nav-item button {
    background-color: #fff;
    padding: 10px 36px;
    border-radius: 10px;
    font-weight: 500;
}

.faq_section .nav-tabs .nav-item:first-child:before {
    border-radius: 10px 0 0 10px;
}

.faq_section .nav-tabs .nav-item:last-child:before {
    border-radius: 0 10px 10px 0;
}

.faq_section .nav-tabs .nav-item.show .nav-link,
.faq_section .nav-tabs .nav-link.active {
    background-color: #5379e4;
    color: #fff;
}

.faq_section .accordion {
    margin-bottom: -20px;
}

.faq_section .card {
    border: none;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px !important;
    border:solid 1px var(--border) !important ;

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.faq_section .card .card-header {
    background-color: #fff;
    /*border:solid 1px var(--border) ;*/
    border-radius: 10px;
    padding: 15px 20px;border: 0
}

.faq_section .card .card-header button {
    width: 100%;
    text-align: left;
    color: var(--secondary); 
    text-decoration: none;
    padding: 0;
    font-weight: 700;
    position: relative;
    padding-right: 50px;
    font-size: 18px;
}

.faq_section .card .card-header button.collapsed {
    color: var(--secondary); 
}

.faq_section .card .card-header i{
	color: var(--secondary); 
	font-weight: 400;
}

.faq_section .card .card-header button:focus {
    outline: none;
    box-shadow: none;
}

.faq_section .card .card-header button .icons i {
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--dark-black);
}

.faq_section .card .card-header button.collapsed .icons .icofont-minus,
.faq_section .card .card-header button .icons .icofont-plus {
    display: none;
}

.faq_section .card .card-header button .icons .icofont-minus,
.faq_section .card .card-header button.collapsed .icons .icofont-plus {
    display: block;
}

.faq_section .card .card-body {
    padding-top: 12px;

}



/* -----------Download_App_Section-Start------------------ */

/* download app wraper */
.free_app_section {
    padding-top: 70px;
    position: relative;
}

.free_app_section .container {
    max-width: 1370px;
}

.free_app_section .container .free_app_inner {
    background-color: white;
    border-radius: 30px;
    padding: 80px 100px;
    position: relative;
    z-index: 999999;
    background-repeat: repeat;
    overflow: hidden;
}


.free_app_section .container .free_app_inner:before{
    display: none;
}

div.free_text div.section_title h2{
    color: var(--secondary);
}

/* download section elements animation */

.free_app_section .element {
	position: relative;
	z-index: 100;
}

.free_app_section .element .element1, .element2 {
	position: absolute;
}

.free_app_section .element .element1 {
	left: 510px;
	top: -20px;
	animation: mymove 15s infinite;
}

.free_app_section .element .element2 {
	left: 0;
	top: 500px;
	animation: mymove 10s infinite;
}

@keyframes mymove {
  50% {transform: rotate(180deg);}
}


/* download app dark background */
.free_app_section .container .free_app_inner .dark_bg {
    overflow: hidden;
}

.free_app_section .container .free_app_inner .dark_bg span {
    z-index: 9999;
}

.free_app_section .container .free_app_inner .row {
    align-items: center;
}

.free_app_section .container .free_app_inner .free_text .section_title {
    text-align: left;
}

/* download app heading h2 */
.free_app_section .container .free_app_inner .free_text .section_title h2 {
    margin-bottom: 10px;
    font-weight: 600;
}


.free_app_section .container .free_app_inner .free_text .section_title p {
    padding: 0;
}

.free_app_section .container .free_app_inner .free_text .app_btn {
    display: flex;
    align-items: center;
}

.free_app_section .container .free_app_inner .free_text .app_btn li a {
    display: block;
    position: relative;
    border-radius: 12px;
    transition: .4s all;
    padding: 5px 0;
}


.free_app_section .container .free_app_inner .free_text .app_btn li a img{
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease-in-out;
}


.free_app_section .container .free_app_inner .free_text .app_btn li:last-child {
    margin-left: 25px;
}

.free_app_section .container .free_app_inner .free_img {
    align-items: center;
    text-align: center;
}


.purple_backdrop {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffd6ef;
    background: radial-gradient(circle,rgba(255, 214, 239, 1) 0%, rgba(247, 235, 205, 1) 51%, rgba(255, 227, 191, 1) 100%);
    z-index: 99999;
    opacity: 0;
    transition: .4s all;
    pointer-events: none;
}




/* ---------------Latest_Story-Css-Start------------- */

/* latest story box */
.latest_story .story_box {
    background-color: var(--white);
    text-align: center;
    border-radius: 20px;
    border:solid 1px var(--border);
    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.latest_story .story_box:hover {
    border:solid 1px var(--primary);
    transition: all ease .3s;
}

/* latest story image */
.latest_story .story_box .story_img {
    position: relative;
}

.latest_story .story_box .story_img img {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
}

.latest_story .story_box .story_img span {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 14px;
    color: var(--white);
}

/* latest story pargraph */
.latest_story .story_box .story_text {
    padding: 30px;
    text-align: left;
}

.latest_story .story_box .story_text span {
    background-color: var(--lighter1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

/* latest story heading h3 */
.latest_story .story_box .story_text h5 {
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 15px;
    font-weight: 700;
}

.latest_story .story_box .story_text h5 a {
    color: var(--secondary);
}

.latest_story .story_box .story_text h5 a:hover {
    color: var(--primary);
    transition: all ease-in-out .2s;
}


.latest_story .story_box .story_text .story_info {
	border-top: solid 1px var(--border);
    margin-top: 25px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.latest_story .story_box .story_text .story_info .time {
    font-size: 14px;
    text-align: left;
}

.latest_story .story_box .story_text .story_info a {
    font-size: 14px;
    text-align: right;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}


.latest_story .story_box .story_text a:hover {
    text-decoration:underline;
}



/* ------  CTA section ------------- */

.cta_section.new {
    padding-top: 50px;
}

.cta_section.new .cta_box{
    background: var(--primary);
    position: relative; 
    z-index: 99;
    border-radius: 20px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -110px;
}

.cta_section.new .cta_box .section_title{
    position: relative;
    display: flex;
    flex-wrap:wrap;
    width: 100%;
    padding-left: 80px;
}

.cta_section.new .cta_box .section_title h3{
    margin-bottom: 0;
    line-height: 1.2;
}

.cta_section.new .cta_box .section_title p {
    padding: 0;
    text-align: left;
}

.cta_section.new .cta_box .section_title .customer_icon{
    position: absolute;
    left:0;
    top:10%;
}

.cta_section.new .cta_box .btn_block{
    display: flex;
    justify-content: end; 
    align-content: center; 
    height: 100%; 
    flex-wrap: nowrap;
}

.cta_section.new .cta_box .btn{
    float: left;
    padding: 15px 15px;
    background-color: var(--white);
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    width: 150px;
}

.cta_section.new .cta_box .call_btn {
    background-color: var(--secondary);
    margin-right: 15px;
}

.cta_section.new .cta_box .email_btn:hover {
    background-color: var(--secondary);
    transition: all ease-in-out .5s;
    color: var(--white);
}

.cta_section.new .cta_box .right{
    width: 54%;
}

.cta_section.new .cta_box .element .element1, .t_element2 {
    position: absolute;
}

.cta_section.new .cta_box .element .element1 {
    right: 35%;
    top: 10%;
    animation: mymove 15s infinite;
}

.cta_section.new .cta_box .element .element2 {
    left: 20%;
    bottom: 6%;
    animation: mymove 8s infinite;
}


/* ------Footer-Css-Start-------------- */
/* footer wraper */
footer {
    position: relative;
}

footer .top_footer {
    background-color: white;
    background-repeat: repeat;
    padding: 210px 0 00px 0;
    position: relative;
    overflow: hidden;
}


footer .top_footer:before{
display: none;
}

/* footer logo */
footer .top_footer .logo {
    margin-bottom: 40px;
}

footer .top_footer .logo img {
    width: 135px;
}

footer .top_footer .abt_side .app_btn {
    display: flex;
}

footer .top_footer .abt_side .app_btn li {
    margin: 0 20px 0 0;
}

footer .top_footer .abt_side li {
    padding: 0 0 20px 0;
}

footer .top_footer .abt_side p {
    padding: 0 80px 20px 0;
    line-height: normal;
    font-size: 20px;
}

/* footer social media icon */
footer .top_footer .social_media {
    display: flex;
    justify-content: center;
}

/* footer link list */
footer .top_footer .social_media li a {
    display: block;
    width: 37px;
    height: 37px;
    text-align: center;
    line-height: 34px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-right: 10px;
    transition: .4s all;
}

footer .top_footer .social_media li a:hover {
    background-color: var(--primary);
    color: var(--white);
}

footer .top_footer .try_out {
    margin-left: -20px;
}

footer .app_btn li a {
    display: block;
    padding: 14px 24px;
    background-color: var(--white);
    position: relative;
    border-radius: 12px;
    transition: .4s all;
    text-align: center;
}

footer .app_btn li a img {
    height: 60px;
}

footer .app_btn li a:hover {
    background: var(--lighter1);
}


footer .app_btn li:last-child {
    margin-top: 20px;
}

footer .news_letter form .form-group {
    max-width: 430px;
    position: relative;
}

footer .news_letter form .form-group .form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    min-height: 60px;
    color: var(--white);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

footer .news_letter form .form-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

footer .news_letter form .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    transition: .4s all;
}

footer .news_letter form .form-group button:hover {
    background-color: var(--white);
    color: var(--primary);
}

footer .news_letter form .note {
    font-size: 16px;
}

/* footer heading and text colors variable */
footer h2,
footer h6,
footer a {
    color: var(--white);
}

footer a:hover {
    color: var(--white);
}

/* footer heading h3 */
footer h6 {
    position: relative;
    font-weight: 600;
    margin-bottom: 55px;
    padding-left: 10px;
    line-height: .8;
}

footer h6::before {
    content: "";
    width: 3px;
    height: 18px;
    background-color: var(--white);
    position: absolute;
    margin-left: -10px;
}

footer .links ul li a {
    display: block;
    margin-bottom: 16px;
    font-size: 16px;
}

footer .links ul li a:hover {
    text-decoration: underline;
}

/* footer last */
footer .bottom_footer {
    background-color: rgba(0, 0, 0, 0.3);
    margin-top: 80px;
    padding: 30px 0 20px 0;
}

footer .bottom_footer p {
    margin-bottom: 0;
    font-size: 14px;
}

footer .bottom_footer .developer_text {
    text-align: right;
}

footer .bottom_footer .developer_text a {
    text-decoration: underline;
}


/* footer elements animation */

.top_footer .element .element1, .element2 {
    position: absolute;
}

.top_footer .element .element1 {
    left: 120px;
    top: 200px;
    animation: mymove 15s infinite;
}

.top_footer .element .element2 {
    right: 70px;
    bottom: 200px;
    animation: mymove 10s infinite;
}

@keyframes mymove {
  50% {transform: rotate(180deg);}
}



/* footer go top button */
.go_top {
    position: fixed;
    left: 30px;
    bottom: 25px;
    cursor: pointer;
    transition: .4s all;
    opacity: 0;
    z-index: 100;
}

.go_top span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 150px;
    font-size: 25px;
    border: solid 1px var(--white);
}

.go_top:hover {
    bottom: 80px;
}


@keyframes star_down_one {
    0% {
        opacity: 0;
        top: -250px;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}


/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
}

.about_app_section .about_img .screen_img img {
    animation-delay: 3s;
}


@keyframes moving_object {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moving_position_animatin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}



/* ------ Inner Page Banner Css Start ------------- */

/* Bredcrumb Css Start */
.bred_crumb {
    min-height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--lighter1);
    position: relative;
    overflow: hidden;
}


.bred_crumb .bred_text {
    text-align: center;
    z-index: 1000;
    position: relative;
    width: 70%;
    margin: 0 auto;
    padding-top: 50px;
}

.bred_crumb .title_badge {
    color: var(--primary);
}


.bred_crumb .bred_text h1 + p {
    margin-top: 5px;
    padding: 0 120px;
}

.bred_crumb .bred_text p{
    font-size: 16px;
}

.bred_crumb .bred_text ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bred_crumb .bred_text ul li {
    margin: 0 5px;
}

.bred_crumb .bred_text ul li a, .bred_crumb .bred_text ul li span {
    font-size: 14px;
    transition: .4s all;
}

.bred_crumb .bred_text ul li a:hover {
    text-decoration: underline;
    color: var(--primary);
}

.bred_crumb .bred_text .search_bar {
    margin-top: 25px;
    position: relative;
    z-index: 1000;
}

.bred_crumb .bred_text .search_bar form .form-group {
    position: relative;
    max-width: 750px;
    height: 60px;
    margin: 0 auto;
}

.bred_crumb .bred_text .search_bar form .form-group .form-control {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--primary);
    font-size: 16px;
    padding-left: 20px;
    color: var(--body-text);

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.bred_crumb .bred_text .search_bar form .form-group .form-control::placeholder {
    color: var(--body-text);
}

.bred_crumb .bred_text .search_bar form .form-group .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary);
}

.bred_crumb .bred_text .search_bar form .form-group .btn {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    line-height: 56px;
    font-size: 23px;
    color: var(--primary);
}

.bred_crumb .bred_text .search_bar form .form-group .btn:hover {
    background-color: var(--primary);
    color: var(--white);
}



/* ----About App Soluction Section--- */

.app_solution_section .row {
    align-items: center;
}

.app_solution_section .app_text {
    padding-right: 40px;
} 

.app_solution_section .app_text .section_title {
    text-align: left;
} 

.app_solution_section .app_text .section_title h3 {
    letter-spacing: normal;
    padding-top: 10px;
}

.app_solution_section .app_text p {
    padding:0 40px 15px 0;
}

.app_solution_section .app_images {
    position: relative;
    width: 100%;
}

.app_solution_section .app_images img {
     width: 100%;
}



/* About-Page-Sectino */

.about_app_section.about_page_sectino.we_best {
    position: relative;
}

.about_page_sectino img {
	max-width: 100%;}

.about_app_section.about_page_sectino {
	align-items: center;
}

.about_app_section.about_page_sectino .about_text .feature_list {
    margin-bottom: 40px;
}

.about_app_section.about_page_sectino .about_text .feature_list li {
    display: flex;
    align-items: start;
    gap: 5px;
}

.about_app_section.about_page_sectino .about_text .feature_list li .icon span {
    color: var(--primary);
    font-size: 18px;
}

.about_app_section.about_page_sectino .about_text .feature_list li p {
    margin: 0;
    padding-top: 2px;
    text-align: left;
}


/* about page section elements animation */

.we_best .element .element1, .element2 {
    position: absolute;
}

.we_best .element .element1 {
    right: 200px;
    bottom: 200px;
    animation: mymove 15s infinite;
}

.we_best .element .element2 {
    left: 150px;
    top: 50px;
    animation: mymove 10s infinite;
}

@keyframes mymove {
  50% {transform: rotate(180deg);}
}


/* ===============Testimonial Section Css Start============= */

.testimonial_section {
    position: relative;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 50px;
}

.testimonial_inner {
    max-width: 1370px;
    margin: 0 auto;
    background-color: var(--white);
    background-repeat: repeat;
    padding: 80px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: solid 1px var(--border);

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.testimonial_section .testimonial_inner .testimonial_slides {
	margin-top: 50px;
}

.testimonial_inner .dotes_blue {
    position: absolute;
    top: -75%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial_section .title {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    width: 100%;
    text-align: center;
}

.testimonial_section .title .star {
    display: flex;
    justify-content: center;
    /*transform: rotate(-3deg);*/
    margin-bottom: -20px;
}

.testimonial_section .title .star span,
.testimonial_section .testimonial_box .testi_text .star span {
    color: #fc9400;
}

.testimonial_section .title .star .sub_title {
    padding: 2px;
}

.testimonial_section .title .sub_title {
    /*transform: rotate(-3deg);*/
    position: relative;
    bottom: -20px;
    z-index: 9;
}

.testimonial_section .title .sub_title::after {
    content: "";
    position: absolute;
    right: 0;
    top: -10px;
    width: 22px;
    height: 22px;
    background-image: url(../images/bigstar.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonial_section .title .sub_title {
    color: var(--white);
    display: inline-block;
    padding: 2px 20px;
    border-radius: 100px;
    background-color: var(--primary);
}

.testimonial_box {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    gap: 60px;
}

.testimonial_box .testi_img {
    width: 350px;
    position: relative;
}

.testimonial_box .testi_img .play_icon {
    position: absolute;
    left: 20%;
    top: 80%;
    transform: translate(-50%, -50%);
}

.testimonial_box .testi_img .play_icon img {
    width: 80px;
    aspect-ratio: 1/1;
    opacity: 0.9;
}

.testimonial_box .testi_img .user_img {
    width: 150px;
    aspect-ratio: 1/1;
    border-radius: 12px;
    object-fit: cover;
}

.testimonial_box .testi_text {
    width: calc(100% - 315px);
}

.testimonial_box .testi_text .star {
    display: flex;
    margin-bottom: 10px;
}

.testimonial_box .testi_text p {
    font-weight: normal;
    font-size: 24px;
    line-height: 1.5;
    color: var(--secondary);
}

.testimonial_box .user_info {
    display: flex;
    gap: 5px;
    color: var(--secondary);
    flex-wrap:wrap;
}

.testimonial_box .user_info h6 {
    margin: 0;
    color: var(--secondary);
    width: 100%;
}

.testimonial_box .user_info span {
    font-size: 16px;
}


/* testimonial elements animation */

.testimonial_inner .t_element .t_element1, .t_element2 {
	position: absolute;
}

.testimonial_inner .t_element .t_element1 {
	left: 2%;
	top: 8%;
	animation: mymove 15s infinite;
}

.testimonial_inner .t_element .t_element2 {
	right: 2%;
	bottom: 5%;
	animation: mymove 8s infinite;
}

@keyframes mymove {
  50% {transform: rotate(40deg);}
}


/* -----------experts_team_sectio---------- */

.experts_team_section .experts_box {
    position: relative;
    text-align: center;
    padding: 0;
    border-radius: 20px;
    background-color: var(--white);
    transition: .4s all;
    border: solid 1px var(--border);

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.experts_team_section .experts_box img {
    max-width: 100%;
    border-radius: 35px;
    padding: 20px;
}

.experts_team_section .experts_box .text {
    padding: 10px 0 30px 0;
}

.experts_team_section .experts_box .text h6 {
    transition: .4s all;
}

.experts_team_section .experts_box .text span {
    color: var(--body-text);
}

.experts_team_section .experts_box .social_media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.experts_team_section .experts_box .social_media a {
    display: block;
    width: 33px;
    height: 33px;
    border: 1px solid #CCCCE2;
    border-radius: 50px;
    text-align: center;
    line-height: 31px;
    color: #898AAE;
    margin: 0 5px;
    transition: .4s all;
    font-size: 15px;
}

.experts_team_section .experts_box .social_media a:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.experts_team_section .experts_box:hover {
    border: solid 1px var(--primary);
}

.experts_team_section .experts_box:hover h6 {
    color: var(--primary);
}

.about_trust_section {
    margin-bottom: 40px;
}



/* ------ Blog List Css Start ------------- */

.bred_crumb.blog_page {
    min-height: 750px;
}

.bred_crumb .bred_text.blog {
	padding-top: 0;
	margin-top: -140px;
} 

.blog_list_main {
    position: relative;
}

.blog_list_main > .container > .row {
    align-items: center;
}

.blog_list_main .editor_choice {
	position: relative;
    display: flex;
    background: var(--white);
    border: solid 1px var(--border);
    border-radius: 20px;
    padding: 50px 35px;
    overflow: hidden;
    align-items: center;

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.blog_list_main .editor_choice:hover {
    border:solid 1px var(--primary);
    transition: all ease .3s;
}

.blog_list_main .blog_img {
    position: relative;
}

.blog_list_main .blog_img img {
    max-width: 100%;
    border-radius: 12px;
}

.blog_list_main .blog_img span {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 14px;
    color: var(--white);
}

.blog_list_main .blog_text .section_title {
    text-align: left;
    padding-bottom: 0;
}


.blog_list_main .editor_choice .blog_text .section_title h5 {
    margin-top: 15px;
}

.blog_list_main .editor_choice .blog_text .section_title h5 a {
    color: var(--secondary);
}

.blog_list_main .editor_choice .blog_text .section_title h5 a:hover {
    color: var(--primary);
}

.blog_list_main .editor_choice .blog_text .section_title p {
    font-size: 16px;
    padding: 0;
}

.blog_list_main .editor_choice .choice_badge {
	position: absolute;
	right: -80px;
	top: -10px;
    background-color: var(--primary);
    color: var(--white);
    padding: 40px 80px 20px 70px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    transform: rotate(45deg);
    z-index: 100;
    letter-spacing: 1px;
}

.blog_list_main .editor_choice .blog_text {
    padding: 0px 50px;
}

.blog_list_main .editor_choice .blog_text .blog_tag {
    background-color: var(--lighter1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}


.blog_list_main .editor_choice .blog_text .story_info {
	border-top: solid 1px var(--border);
    margin-top: 25px;
    padding-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog_list_main .editor_choice .blog_text .story_info .time {
    font-size: 16px;
    text-align: left;
}

.blog_list_main .editor_choice .blog_text .story_info a {
    font-size: 14px;
    text-align: right;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}


.latest_story .story_box .story_text a:hover {
    text-decoration:underline;
}


.blog_list_main .blog_text a:hover {
    text-decoration: underline;
}

.blog_list_story.row_am {
    padding-top: 30px;
}

.blog_list_story .story_box {
    text-align: left;
    margin-bottom: 40px;
}

/* Pagination Css Start */
.pagination_block ul {display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.pagination_block ul li:not(:first-child , :last-child) a {margin: 0 5px;
    transition: .4s all;
    display: block;
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 50px;
    text-align: center;
    line-height: 35px;
}

.pagination_block ul li:first-child {
    margin-right: 20px;
}

.pagination_block ul li:last-child {
    margin-left: 20px;
}

.pagination_block ul li:not(:first-child , :last-child) a:hover , .pagination_block ul li:not(:first-child , :last-child) a.active {
    background-color: var(--primary);
    color: var(--white);
}

.pagination_block ul li:first-child a:hover {
    color: var(--primary);
}

.pagination_block ul li:last-child  a:hover {
    color: var(--primary);
}


/* ------ Blog Single Css Start ------------- */

.blog_detail_section {
    position: relative;
    padding: 0 0 50px 0;
    margin-top: -650px;
}

.blog_head {
    margin-bottom: 45px;
}

.blog_head .back_text {
    position: relative;
    margin-bottom: 25px;
}

.blog_head .back_text a {
    text-align: left;
    font-size: 16px;
    color: var(--secondary);
}

.blog_head .back_text a:hover {
    text-decoration: underline;
    transition: all ease-in-out .3s;
}

.blog_head .tags_info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_head .tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    padding: 2px 15px;
    border-radius: 6px;
    background-color: var(--white);
    border: solid 1px var(--border);
}

.blog_head .tags_info ul {
    display: flex;
    align-items: center;
}

.blog_head .tags_info ul li {
    position: relative;
    padding: 0 10px 0 15px;
    font-size: 14px;
}

.blog_head .tags_info ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--body-text);
    border-radius: 10px;
    left: 0;
    position: absolute;
    top: calc(50% - 2.5px);
}

.blog_head h1 {
    margin: 15px 0 30px 0;
}

.blog_head .avtar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.blog_head .avtar img {
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 100px;
}

.blog_head .avtar .text {
    width: calc(100% - 60px);
    color: var(--white);
}

.blog_head .avtar .text h6 {
    margin-bottom: 0;
    font-size: 18px;
}

.blog_head .avtar .text span {
    font-size: 14px;
    color: var(--body-text);
}

.blog_body .img {
    margin-bottom: 40px;

}

.blog_body .img img {
    width: 100%;
    border-radius: 20px;
}

.blog_body .listings {
    padding-left: 30px;
    margin: 30px 0;
}

.blog_body .listings li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.blog_body .listings li .icon {
    color: var(--primery);
}

.blog_body .listings li p {
    margin: 0;
}

.blog_body h4 {
    margin-bottom: 10px;
    margin-top: 50px;
}

.blog_body .yt_video {
    margin: 30px 0;
}

.blog_body .yt_video iframe {
    width: 100%;
    aspect-ratio: 1/0.5;
    border-radius: 20px;
}

.blog_body .highlight_text {
    padding: 50px 100px 50px 0;
    margin: 30px 0;
    background: var(--white);
    border: solid 1px var(--border);
    border-radius: 12px;

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.blog_body .highlight_text h6 {
    line-height: 1.5;
    border-left: solid 6px var(--primary);
    padding-left: 50px;
}

.blog_body .social_media {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.blog_body .social_media li a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background-color: var(--white);
    border-radius: 100px;
    color: var(--primary);
    display: block;
    text-align: center;
    line-height: 35px;
    transition: .4s all;
}

.blog_body .social_media li a:hover {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}


/* comment section Css Start */
.comment_section .section_title {
    padding-bottom: 0px;
}

.comment_section .section_title h3 {
    text-align: left;
    border-top: 2px solid var(--border);
    padding-top: 30px;
}

.comment_section ul {
    margin-top: 30px;
}

.comment_section ul li {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.comment_section ul li:last-child {
    border-bottom: 1px solid var(--border);
}

.comment_section ul li.replay_comment {
    margin-left: 110px;
}

.comment_section ul li .authore_info {
    display: flex;
    align-items: center;
    width: 260px;
}

.comment_section ul li .authore_info .avtar {
    width: 88px;
    margin-right: 20px;
}

.comment_section ul li .authore_info .avtar img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    object-fit: cover;
}

.comment_section ul li .authore_info .text {
    width: calc(100% - 108px);
}

.comment_section ul li .authore_info .text h6 {
    color: var(--secondary);
}

.comment_section ul li .authore_info .text span {
    font-size: 14px;
}

.comment_section ul li .comment {
    width: calc(100% - 310px);
    margin-left: 50px;
}

.comment_section ul li .comment p {
    margin-bottom: 0;
}

.comment_form_section {
    padding-top: 50px;
}
.comment_form_section .section_title {
    text-align: left;
    padding-bottom: 0px;
}

.comment_form_section .section_title p {
    padding: 0;
}

.comment_form_section form .form-group {
    margin-bottom: 30px;
}

.comment_form_section form .form-group .form-control {
    border-radius: 10px;
    border: 1px solid var(--border);
    color: var(--dark-black);
    height: 60px;
    padding: 10px 20px;
}

.comment_form_section form .form-group .form-control::placeholder {
    color: var(--dark-black);
}

.comment_form_section form .form-group textarea.form-control {
    min-height: 135px;
}



/* comment-form-section */

.comment_form_section form {
    margin-top: 30px;
}

.comment_form_section form .form-group .form-control {
    border-radius: 12px;
    height: 60px;
    margin-bottom: 30px;
    color: var(--body-text);
    padding: 15px;
    border: solid 1px var(--border);
}

.comment_form_section form .form-group .form-control::placeholder {
    color: var(--body-text);
}

.comment_form_section form .form-group textarea.form-control {
    height: 140px;
    padding-top: 15px;
    resize: none;
}


/* ===========SignUp Section Css Start=============== */

/* Sign Up Css Start */
.signup_section {
    padding: 50px 0;
}

.signup_section .top_part {
    padding-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.signup_section .top_part .back_btn {
    position: absolute;
    left: 0;
}

.signup_section .form_block {
    display: flex;
    background-color: var(--primary);
    border-radius: 40px;
    padding: 80px 80px 0 80px;
    position: relative;
    background-image: url(../images/pattern2.png);
    background-repeat: repeat;
    overflow: hidden;

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}


.signup_section .form_block:before{
    background: url(../images/gradient_bg.png) no-repeat;
    position: absolute;
    left: -200px;
    bottom: -500px;
    width: 1026px;
    height: 1026px;
    content: ""
}

.signup_section .form_block .pattern-rotate-2 {
	position: absolute;
    bottom: -5%;
    left: -5%;
    /*transform: translateX(-50%);*/
}

.signup_section .form_block .form_side {
    width: 50%;
    text-align: left;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 50px;
    z-index: 10;
}

.signup_section .form_block .form_side .section_title h4 {
    text-align: center;
    padding-top: 10px; 
}

.signup_section .form_block .form_side .section_title p {
    padding: 0;
}

.signup_section .form_block .side_screen .section_title h2 {
    color: var(--white);
    text-align: left;
    padding-bottom: 10px;
}

.signup_section .form_block .side_screen .section_title p {
    color: var(--white);
    text-align: left;
    padding: 0;
}

.signup_section .form_block .form_side form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #999ca6;
    padding-left: 0;
    font-size: 16px;
}

.signup_section .form_block .form_side form .form-group {
    margin-bottom: 30px;
}

.signup_section .form_block .form_side form .form-control::placeholder {
    color: var(--dark-black);
    font-weight: 500;
}

.signup_section .form_block .form_side form .form-control:focus {
    box-shadow: none;
    color: var(--primary);
    border-color: var(--primary);
    font-weight: 500;
}

.signup_section .form_block .form_side form .forgate_check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.signup_section .form_block .form_side form .forgate_check a {
    text-decoration: underline;
    font-weight: 400;
    font-size: 14px;
    margin-top: -10px;
}

.signup_section .form_block .form_side form .forgate_check .coustome_checkbox {
    padding-top: 0;
}

.signup_section .form_block .form_side form .forgate_check .coustome_checkbox label {
    font-size: 14px;
    color: var(--dark-black);
    font-weight: 400;
}

.signup_section .form_block .form_side form .forgate_check .checkmark {
    top: 5px;
    border-radius: 4px;
}

.signup_section .form_block .coustome_checkbox input:checked~.checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.signup_section .form_block .form_side .puprple_btn,
.signup_section .form_block .form_side .btn_block {
    width: 100%;
}

.signup_section .form_block .form_side .google_btn {
    width: 100%;
    text-align: center;
    border-radius: 10px;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 20px 0 30px 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

.signup_section .form_block .form_side .google_btn img {
    height: 20px;
    margin-right: 10px;
}

.signup_section .form_block .form_side .google_btn:hover {
    border-color: var(--primary);
}

.signup_section .form_side .sign_in_here p {
    margin: 0;
    color: var(--body-text);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
}

.signup_section .form_side .sign_in_here p a {
    color: var(--primary);
    text-decoration: underline;
}

.signup_section .form_side .sign_in_here p a:hover {
    color: var(--dark-black);
}

.signup_section .form_block .side_screen {
    width: 50%;
    background-color: var(--dark-black);
    padding: 0 80px 0 0;
    overflow: hidden;
    position: relative;
}


.signup_section .form_block .side_screen .scrren {
    /*text-align: center;*/
    position: absolute;
    z-index: 9;
    bottom: 0;
}

.signup_section .form_block .side_screen .scrren img {
    max-width: 100%;
}



/* ------ Contact Page Css Start ------------- */
.contact_page_section .contact_inner {
    position: relative;
}


.contact_page_section .contact_inner .contact_form .section_title p {
    padding: 0px;
}

.contact_page_section .contact_inner .contact_form {
    width: 100%;
    padding: 50px 60px;
    background-color: #fff;
    border: solid 1px var(--border);
    border-radius: 20px;

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}


.contact_page_section .contact_inner .contact_form form {
    margin-top: 30px;
}

.contact_page_section .contact_inner .contact_form form .form-group {
    margin-bottom: 20px;
}

.contact_page_section .contact_inner .contact_form form .form-group .form-control {
    height: 60px;
    padding: 5px 20px;
    color: var(--body-text);
    border: 2px solid #E1DBF4;
    border-radius: 12px;
    font-weight: 400;
    background: var(--lighter1);
    border: solid 1px var(--purplishgray);
}

.contact_page_section .contact_inner .contact_form form .form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
    color: var(--primary);
}

.contact_page_section .contact_inner .contact_form form .form-group textarea.form-control {
    height: 140px;
    padding-top: 15px;
}

.contact_page_section .contact_inner .contact_form form .term_check {
    display: flex;
    align-items: center;
}

.contact_page_section .contact_inner .contact_form form .term_check input {
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
}

.contact_page_section .contact_inner .contact_form form .term_check label {
    font-size: 13px;
    margin-bottom: 0;
    margin-left: 7px;
}

.contact_page_section .contact_inner .contact_form form .form-group button {
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 0;
}

.contact_page_section .contact_inner .contact_info .ticket_box {
	position: relative;
    background: var(--white);
    border: solid 1px var(--border);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    overflow: hidden;

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.contact_page_section .contact_inner .contact_info .ticket_box:hover img {
	transform: rotate(360deg);
	transition: transform 2s;
}

.contact_page_section .contact_inner .contact_info .ticket_box:hover {
	border: solid 1px var(--primary);
}

.contact_page_section .contact_inner .contact_info .ticket_box .pattern-rotate {
	position: absolute;
    top: -65%;
    right: -50%;
}

.contact_page_section .contact_inner .contact_info .ticket_box .icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 100;
}

.contact_page_section .contact_inner .contact_info .ticket_box .icon img{
    width: 70px;
}

.contact_page_section .contact_inner .contact_info {
    width: 90%;
}


.contact_page_section .contact_inner .contact_info .section_title {
    text-align: left;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.contact_page_section .contact_inner .contact_info .section_title p {
    padding: 0;
    margin-bottom: 15px;
}

.contact_page_section .contact_inner .contact_info .btn {
    margin: 10px 0 0 0;
}

.contact_page_section .contact_inner .contact_info .contact_info_list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact_page_section .contact_inner .contact_info .contact_info_list li:hover img{
    transform: rotate(360deg);
	transition: transform 2s;
}

.contact_page_section .contact_inner .contact_info .contact_info_list li:last-child {
    margin-bottom: 0;
}

.contact_page_section .contact_inner .contact_info .contact_info_list li .img {
    width: 70px;
    margin-right: 20px;
}

.contact_page_section .contact_inner .contact_info .contact_info_list li .img img {
    max-width: 70px;
}


.contact_page_section .contact_inner .contact_info .contact_info_list li .text {
    width: calc(100% - 85px);
}

.contact_page_section .contact_inner .contact_info .contact_info_list li .text span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
}

.contact_page_section .contact_inner .contact_info .contact_info_list li .text p , 
.contact_page_section .contact_inner .contact_info .contact_info_list li .text a {margin: 0;}

.contact_page_section .contact_inner .contact_info .contact_info_list li .text a:hover {
    color: var(--secondary);
}

.map_section {
    margin: 0 0 50px 0;
}



/* ------ home whychoose section  ------------- */

.whychoose_section {
    position: relative;
}

.whychoose_section .whychoose_dh {
    align-items: center;
}

.whychoose_section .whychoose_support{ 
    position: relative; 
    display: flex; 
    flex-wrap: wrap;
}

.whychoose_section .whychoose_box{ 
    align-items: center;
    background-color: var(--white);
    border:solid 1px var(--border);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: unset;
    max-width: 500px;
    position: relative;

    -webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.whychoose_section .whychoose_box:hover { 
    border:solid 1px var(--primary); 
    transition: all ease-in-out .4s; 
}

.whychoose_section .choose_icon{ 
    position: absolute; 
}

.whychoose_section .whychoose_box:hover .choose_icon{ 
    transform: rotate(360deg);
    transition: transform 2s;
}

.whychoose_section .choose_text{ 
    padding-left: 95px; 
}


.whychoose_support:hover .spport_icon{ 
    transform: rotate(360deg);
    transition: transform 2s;
}

.whychoose_section .choose_play{ 
    color: var(--white); 
    background-color: var(--primary); 
    font-size: 14px; 
    padding: 15px; 
    border-radius: 30px 0px 30px 30px;
    position: absolute;
    right: 0; 
    top:0; 
    width: 163px;
    height: 163px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-content: center;
    cursor: pointer;
    border-left: solid 4px var(--lighter1);
    border-bottom: solid 4px var(--lighter1);

}

.whychoose_support:hover .play-button{ 
    transform: rotate(360deg);
    transition: transform 2s;
}


.whychoose_section .choose_text p{ 
    margin-bottom: 0;
    font-size: 18px;
}


/* whychoose elements animation */
.whychoose_section .element .element1, .element2 {
    position: absolute;
}

.whychoose_section .element .element1 {
    left: 120px;
    bottom: 100px;
    animation: mymove 15s infinite;
    position: absolute;
}

.whychoose_section .element .element2 {
    right: 70px;
    top: 200px;
    animation: mymove 10s infinite;
    position: absolute;
}

@keyframes mymove {
  50% {transform: rotate(180deg);}
}


/* ------ Best features section  ------------- */

.service_section.best_features .service_text {
	padding-right: 99px;
}

.service_section.best_features .service_text.right_side {
	padding-left: 50px;
}

.app_blocks {
	justify-content: center;
}


.app_blocks .app_btn {
	display: flex;
	align-items: center;
    width: 80%;
    justify-self: center;
}

.app_blocks h6{
	margin-bottom: 25px;
	text-align: center;
	width: 100%;
}

.app_blocks .app_btn li a {
	display: block;
	position: relative; 
	transition: .4s all;
    padding: 0 5px;
}

.app_blocks .app_btn li a:hover {
	background-color: var(--white);
}

.app_blocks .app_btn li a:hover .blue_img {
	opacity: 1;
}

.app_blocks .app_btn li a img {
	transition: .4s all;
    border-radius: 20px;
}

.app_blocks .app_btn li a:hover .white_img {
	opacity: 0;
}

.app_blocks .app_btn li a .white_img {
	position: absolute;
	left: 50%; 
	transform: translateX(-50%); 
	opacity: 1;
}



/* ------ howitworks section  ------------- */

.howwork_section{
	position: relative;
	background-size: cover;
	padding-bottom: 100px;
}

.howwork_section .work_box{
	margin:0 auto;
	background: var(--white); 
	border: solid 1px var(--primary); 
	border-radius: 20px; 
	padding:40px 30px;
	z-index: 0;
	position: relative;
	max-width: 350px;

}


.howwork_section .work_box .work_title{
	display: flex;
	align-items: center; 
	justify-content: center;
	margin-bottom: 30px;
	text-align: left;
}


.howwork_section .work_box .work_text{
	padding: 0px 5px;
	text-align: center;
}


.howwork_section .work_box p:last-child{
	margin-bottom: 0;
    font-size: 18px;
}

.howwork_section .work_step{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 80px;
	height: 80px;
}


.howwork_section .step-box{
	background-color:#dc2323 ;
	width: 50px;
	height: 50px;
	border-radius:20px 0 20px 0;
	font-size: 22px;
	color: var(--white);
	display: flex; 
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	margin: 32px;
}

.howwork_section .work_box:hover .step-box { 
	background: var(--primary);
	transition: all ease-in-out .1s;
}

.howwork_section .work_box:hover .work_title img { 
	transform: rotate(360deg);
    transition: transform 2s;
}

.howwork_section .device_img{
	margin-top: 80px;
}


/* ------ elevate growth   ------------- */

.growth_title .section_title{
	text-align: left;
}

.elevate_growth_section {
	position: relative;
    background-color: #fdf3dd;
}

.elevate_growth_section .growth_img{
	margin-top: 50px;
	position: relative;
}

.elevate_growth_section .growth_img img{
	border-radius:20px;
}

.elevate_growth_section .watch-video{
	position: absolute;
	right: 0;
	top: 0;
	width: 225px;
	height: 80px;
	cursor: pointer;
}


.elevate_growth_section .watch_btn{
	background-color: var(--white);
	width: 196px;
	height: 80px;
	border-radius:0 20px 0 20px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--primary);
	display: flex; 
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	margin:0 14px;
	opacity: 1;
	position: relative;
}

.elevate_growth_section .watch_btn i{
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	margin-right: 5px;
}


.elevate_growth_section .watch-video .arrow_icon{
	position: absolute;
	right:-60px;
	top:-20px;
}

.elevate_growth_section .watch_btn:hover{
	background-color: var(--primary);
	color: var(--white);
	transition: all ease .3s;
}

.elevate_growth_section .growth_title_text{
	height: 100%;
	display: flex;
	flex-wrap: wrap; 
	align-content: normal; 
	padding-top: 40px; 
	line-height: 1.8; 
}

.elevate_growth_section .growth_title h2{
	max-width: 450px;
    color: var(--secondary);
}

.elevate_growth_section .growth_static{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin-top: 50px;
}

.elevate_growth_section .growth_static li{
	width: 100%;
	display: flex;
	flex-wrap:wrap;
	align-content:center;
	justify-content:center;
}

.elevate_growth_section .growth_static li .growth_box{
	width: 90%;
	margin: 0 auto;
}

.elevate_growth_section .counter_box{
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: solid 2px rgb(0 0 0 / 80%);
    box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2.1px);
    padding: 30px;
}

.elevate_growth_section .counter_box:hover { 
	border: solid 1px rgba(71, 71, 71, 0.462);  
	transition: .4s all;
}

.elevate_growth_section .counter_box p{
	margin-bottom: 0;
}

.elevate_growth_section .counter_box p span{
	font-size: 35px;
	line-height: 1.2em;
	font-weight: 700;
}

.elevate_growth_section .counter_box .icon{
	position: absolute;
	padding-top: 5px;
    width: 60px;
}


.elevate_growth_section .counter_box .text{
	padding: 0 0 0 80px;
}

.elevate_growth_section .counter_box div.text p{
    color: black;
}

.elevate_growth_section .counter_box div.text p span{
    color: black;
}

/* elevate growth elements animation */

.elevate_growth_section .element .element1, .element2 {
    position: absolute;
}

.elevate_growth_section .element .element1 {
    left: 120px;
    top: 200px;
    animation: mymove 15s infinite;
}

.elevate_growth_section .element .element2 {
    right: 70px;
    bottom: 600px;
    animation: mymove 10s infinite;
}

@keyframes mymove {
  50% {transform: rotate(180deg);}
}


/* ------ Vertical Tab  ------------- */

.visitors_leads {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.lead_inner .nav-pills {
	display:none;
}

.lead_inner {
    max-width: 1340px; 
    margin: 0 auto; 
    background-color: var(--primary); 
    border-radius: 30px; 
    padding: 100px 95px; 
    overflow: hidden; 
    position: relative;
    background-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.convert_leads .section_title h2{
    color: black;
}

.convert_leads{
    margin-bottom: 40px
}

.lead_inner .nav-pills .nav-link { 
    color:black; 
    background: rgba(255, 255, 255, 0.65);
    position: relative;
    border-radius: 10px;
    padding: 12px 20px; 
    margin-bottom: 20px; 
    font-size: 18px;
    font-weight: 600;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.lead_inner .nav-pills .nav-link.active {
    color: #dc2323; 
    background: #fff;
}

.lead_inner .nav-pills .nav-link.active::before {
    opacity: 1;
}

.lead_inner .card{
    background: transparent
}

.lead_inner .tab-content{
    color: var(--white);
}


.lead_inner .feature_list { 
    margin-top: 20px; 
    margin-bottom: 10px;
}

.lead_inner .feature_list li {
    display: flex;
    align-items: start;gap: 5px;
    color: var(--white);
}

.lead_inner p{
    color: var(--secondary);
    margin-bottom: 5px;
}

.lead_text{
    padding: 0 40px 0 60px
}

.lead_text h5{
    padding-bottom: 15px;
    color: var(--secondary);
}

.lead_img{
    text-align: center;
    border-radius: 20px;
}

.visitors_leads .btn_block a{
    position: relative;
    margin-top: 15px;
}

.visitors_leads .card-header a .card-arrow{
    width: 10px;
    height: 10px;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 2px solid rgb(0 0 0);
    border-right: 2px solid rgb(0 0 0);
    float: right;
    position: absolute;
    top: 21px;
    right: 12px;
}

.visitors_leads .card-header a[aria-expanded="true"] .card-arrow{ 
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.visitors_leads .card-header a[aria-expanded="false"] .card-arrow{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.lead_inner .card-header{
    text-align: left;
}

.lead_inner .nav-pills .nav-link::before { 
	content: '';  
	display: block;  
	border-top: 8px solid transparent; 
	border-left: 10px solid #fff;  
	border-bottom: 8px solid transparent; 
	position: absolute; 
	top: 50%; 
	right: -10px; 
	transform: translateY(-50%); 
	opacity: 0; 
}


/* ------ home testimonial  ------------- */
.home_testimonial{
	background-size: cover;
    border-top: solid 1px var(--border);
    border-bottom: solid 1px var(--border);
    padding-top: 100px;
    background-color: floralwhite;
}


.home_testimonial .testimonial_inner{
	background: none;
	border: 0;
	border-radius: 0;
}

.home_testimonial .item {
	display: flex;
	flex: 1 0 auto;
	height: 350px;
}

.home_testimonial .testimonial_box .testi_img .user_img {
	width: 80px;
	border-radius: 100%;
}

.home_testimonial .testimonial_box .testi_text{
	width: 100%;
}

.home_testimonial .testi_img{
	display: flex;
	gap: 15px;
}

.home_testimonial .owl-carousel .owl-item img {
    border-radius: 0;
}

.home_testimonial .testimonial_box{
	display: flex;
	flex-wrap: wrap;
	gap:5px;
	background: var(--white); 
	border: solid 1px var(--primary); 
	border-radius: 20px;
	padding: 30px;
	max-width: 540px;
}

.home_testimonial .testimonial_box .user_info {
	display: flex;
	flex-wrap:wrap;
	align-content:center;
}

.home_testimonial .testimonial_box .user_info p{
	margin: 0;
	line-height: 1em;
}

.home_testimonial .testimonial_box .user_info .star{
	width: 100%;
	float: left; 
	line-height: 1em;
}

.home_testimonial .testimonial_box .testi_text h4{
	font-size: 18px;
	margin-bottom: 20px;
}

.home_testimonial .testimonial_box .testi_text p{
	font-size: 16px;
	font-weight: 300;
}

.home_testimonial .testimonial_box .user_info .star span {
	color: #fc9400;
}

.home_testimonial .owl-prev span, .home_testimonial .owl-next span{
	opacity: 0;
} 

.home_testimonial .owl-next:before{
display: none;
}

.home_testimonial .owl-prev:before{
display: none;
}

.home_testimonial .owl-nav{
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
}

.testi-corner {
	position: absolute;
	right: -5px; 
	bottom: -5px; 
	width: 80px; 
	height: 80px;
}

.home_testimonial .btn_block{
	margin: 50px auto 0;
	display: table;
}

.home_testimonial .btn_block .btn{ 
	position: relative; 
}

.home_testimonial .testimonial_inner {
	padding:40px 0 0 0;
}


@keyframes mymove {
  50% {transform: rotate(40deg);}
}


footer .top_footer .social_media{
	justify-content: center;
}


/* ------ features page ------------- */

 /*feature 3 box row*/
.features_list .container{
	padding-bottom: 100px;
}

.features_list .list-box {
	background: var(--white);
	border: solid 1px var(--border);
	border-radius: 20px;
	position: relative;
	height: 100%;
	width: 100%;

	-webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.features_list .list-box:hover{
	background: var(--purplishgray);
	cursor: pointer;
	transition: .4s all;
}

.features_list .list-box:hover .text{
	color: var(--white);
}

.features_list .list-box:hover .icon{
	transform: rotate(360deg);
    transition: transform 2s;
}

.features_list .list-box:hover h6{
	color: var(--white);
}

.features_list .list-box .icon{
	margin-bottom: 20px;
	width: 80px;
	height: 80px;
	border-radius: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	padding-top: 16px;
}

.features_list .list-box .text h6{
	margin-bottom: 20px;
}

.features_list .list-content{ 
	padding: 35px;
}

.features_list .col-lg-4, .col-md-6{
	margin-bottom: 40px;
}

.features_list .btn_block{
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}


/*Dashboard analytic*/
.dashboard_analytics .analytic-box{
	background-color: var(--white);
	border-radius: 20px;
	padding: 50px 45px;
	display: flex;
	align-content:center;
	height: 100%;
	border: solid 1px var(--border);

	-webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.dashboard_analytics .analytic-box:hover {
	border: solid 1px var(--primary);
	transition: .4s all;
}

.dashboard_analytics .analytic-box:hover .icon{
	transform: rotate(360deg);
    transition: transform 2s;
}

.dashboard_analytics .analytic-box .icon{
	width: 80px;
	height: 80px; 
	border-radius: 100%; 
	display: flex; 
	flex-wrap: wrap; 
	align-content: center; 
	justify-content: center; 
	padding-top: 16px;
	margin-bottom: 30px;
}

.dashboard_analytics .section_title{
	margin-bottom: 45px;
}

.dashboard_analytics .analytic-img img{
	float: right;
}

.dashboard_analytics .analytic-content{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: start;
}

.dashboard_analytics .analytic-img1{
	margin-top: 30px;
}


.dashboard_analytics .col-lg-4, .col-md-6  {
	margin-bottom: 0;
}

div.col-md-6 div p{
    color: var(--secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

/* ------ About us page ------------- */

.banner-usp .container, .ceo_message_box .container {
	max-width: 1170px !important;
}

.bred_crumb.abt .container{
	max-width: 1370px;
    margin-bottom: 20px;
}

.bred_crumb.abt{
	align-items: flex-end;
	margin-bottom: 0;
    min-height: 850px;
}

.abt.bred_crumb .bred_text{
	max-width: 930px;
	margin: 0 auto;
	padding-top: 180px;
} 

.abt.bred_crumb .bred_text h1 + p{
	padding: 0;
}

.abt.bred_crumb .bred_text p{
	margin-top: 20px;
	font-size: 18px;
}



/*about page banner usp*/

.banner-usp{
	position: relative;
	background-color: var(--white);
	border-radius: 20px;
	display: flex;
	margin-top: 80px;
}

.banner-usp ul{
	display: flex;
	height: 100%;
	padding: 0;
	width: 100%;
}

.banner-usp li{
	border-right: solid 1px var(--border);
	display: flex;
	flex-wrap:wrap;
	height: 100%;
	align-content:center;
	padding: 75px 40px;
	width: 25%;
}

.banner-usp li:hover .icon img{
	transform: rotate(360deg);
    transition: transform 2s;
}

.banner-usp li:first-child{
	padding-left: 0;
	width: 23%;
}

.banner-usp li:last-child{
	border-right:0 ;
}

.banner-usp .usp_box p span {
	margin-bottom: 0; 
	font-weight: 700;
	font-size: 45px;
}

.banner-usp .usp_box .icon{
	margin-bottom: 30px;
}

.banner-usp .usp_box p{
	font-size: 18px; 
	font-weight: 700; 
	line-height: 1.4em;
	margin: 0;
	margin-bottom: 5px;
}

.banner-usp .usp_box p:last-child{
	margin-bottom: 0;
}



/*about page ceo message*/

.ceo_message_box .container{
	position: relative;
}

.ceo_message .container{
	max-width: 1370px;
}

.ceo_message_box{
    background-color: var(--white);
    background-repeat: repeat;
	border-radius: 20px;
	display: flex;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 75px 0;
	position: relative; 
	overflow: hidden; 
	margin-bottom: 50px;
}

.ceo_message_box .message_box{
	display: flex;
	align-items: flex-start;
	position: relative;
	max-width: 100%; 
	margin: 0 auto; 
	gap: 30px;
}

.ceo_message_box .message_box .message_img {
	width: 150px;
	position: relative;
}

.ceo_message_box .message_box .message_img img { 
	width: 100%; 
	aspect-ratio: 1/1; 
	border-radius: 40px; 
	object-fit: cover;
}

.ceo_message_box .message_box .message_text {
	width: calc(100% - 100px);
	padding-right: 3%;
}

.ceo_message_box .message_box .service_badge {
	display: inline-block;
	font-size: 16px; 
	font-weight: 700; 
	text-transform: uppercase;
	margin-bottom: 10px;
}

.ceo_message_box .message_box h4{
	font-size: 30px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--body-text);
	margin-bottom: 20px;
}

.ceo_message_box .ceo_info h6{
	color: var(--body-text);
	margin-bottom: 0;
	letter-spacing: 1px;
}

.ceo_message_box .ceo_info span{
	font-weight: 400;

}

.ceo_message .client_review{
	border-radius: 18px;
	display: flex;
	flex-wrap:wrap;
	justify-content:center;
	align-content:center;
	padding: 40px 20px;
	max-width: 254px;
}

.ceo_message .client_review p{
	color: var(--body-text);
	margin-bottom: 3px;
	text-align: center;
	width: 100%}

.ceo_message .client_review p a{
	color: var(--primary);
	font-weight: 600;
	text-decoration: underline;
}


/*.ceo message box element */
.ceo_message_box .t_element .element1 {
	left: 5%;
	bottom: 11%;
	animation: mymove 8s infinite;
	position: absolute;
}

.ceo_message_box .t_element .element2 {
	right: 16%;
	top: 2%;
	animation: mymove 8s infinite;
	position: absolute;
}


/* value vision mission */
.value_content {
	margin-top: 0px;
	background: var(--white);
	border-radius: 22px;
	overflow: hidden;
}

.value_content .icon{
	margin-bottom: 65px;
}

.value_content h4{
	margin-bottom: 15px; 
}

.value_content .col-md-4:nth-child(2){
	margin-left: -4%;
	-ms-flex: 0 0 34.333333%;  
	flex: 0 0 34.333333%;  
	max-width: 34.333333%;
}

.value_content .col-md-4:nth-child(3){
	margin-left: -2%;
	-ms-flex: 0 0 35.333333%;  
	flex: 0 0 35.333333%;  
	max-width: 35.333333%;
}

.value_content .value_box{
	padding: 40px;
	border-left: 6px solid var(--lighter1);
	border-radius: 22px;
	height: 100%;
}

.value_content .value_box:hover .icon{
	transform: rotate(360deg);
    transition: transform 2s;
}

.value_content .value_box:hover h4 {
	color: var(--primary); 
	transition: all ease-in-out .3s; 
}

.value_content .value_box .col-md-4:nth-child(1):first-child .value_box{
	border: 0;
}

.value_content .value_box p:last-child{
	margin-bottom: 0;
}

.value_content .row{
	align-items: inherit;
}



/* about we_best */ 
.about_text{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	max-width: 89%;
	float: right;
}



/* timeline */
.our_journey {
	margin-top: 50px;
}

.our_journey .child {
	text-align: left; 
	max-width: 500px;
}

.our_journey .section_title {
	text-align: left; 
}

.our_journey .section_title h2 { 
	margin-bottom: 20px;
}

.our_journey .section_title p {
	padding: 0;
}

.our_journey .jouney-title{
	max-width: 500px;
}

.our_journey .parent{
	height: 100%;
}

.our_journey .fixed .child{
	top: 90px;
}

.our_journey .timeline_info{
	position: relative;
}

.our_journey .timeline_box h6{
	margin-bottom: 10px;
}

.our_journey .timeline_box {
	display: flex;
	align-items: center;
	position: relative;
	max-width: 950px; 
	margin: 0 auto;
	gap: 30px; 
	border-radius: 12px; 
	background-color: var(--white); 
	border: solid 1px var(--border);
	padding:30px 35px;
	margin-bottom: 45px;
	-webkit-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	-moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
	box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
}

.our_journey .timeline_box:hover {
	border: solid 1px var(--primary);
	transition: all ease .3s;
}

.our_journey .timeline_box:last-child{
	margin-bottom: 0;
}

.our_journey .timeline_box .timeline_img {
	width: 175px; 
	position: relative;
}

.our_journey .timeline_box .timeline_img img{
	border-radius: 12px;
}

.our_journey .timeline_box .timeline_content{
	width: calc(100% - 175px);
}

.timeline_content .year-tag{
	border-radius: 22px;
	color: var(--white);
	background:var(--primary);
	padding: 0 15px;
	font-size: 14px;
	margin-bottom: 15px;
	display: inline-block;
}

.our_journey.timeline_content p{
	margin-bottom: 0;
}

.our_journey .timeline_info::after {
	content: ""; 
	width: 2px; 
	height: 100%;  
	position: absolute; 
	top: 0; 
	left: 6.5rem; 
	z-index: -1;
	border-left:2px dashed var(--secondary);
	height: 100%;
}

#timeline { 
	overflow: hidden; 
	position: relative;
}

.our_journey .timeline_box {
	transition: transform 0.5s ease;
}

.our_journey  .element1 {
  right: 12%;
  top:50%;
  animation: mymove 8s infinite;
  position: absolute;
}

.scroll-up {
transform: translateY(-50px); /* Adjust the distance as needed */
}


/*new section page*/

.parent {
	position: relative;
	width: 100%;
	height: 100vh;
}

.absolute .child {
	position: absolute; 
	bottom: 0; 
	top: auto;
}

.fixed .child {
	position: fixed; 
	top: 0; 
	bottom: auto;
}

@media(max-width: 420px){
    .banner_section .banner_text .type-wrap .typed{
        display: none;
    }

    section.banner_section div.banner_text div.type-wrap span{
        display: none;
    }
}

.banner_section .banner_slider .right_icon{
    display: none;
}

/* --- FAQ Component Styles --- */
.faq-background {
    width: 100%;
    padding-top: 10rem; /* py-8 */
    padding-bottom: 2rem; /* py-8 */
    background-color: #0a0a1f;
}

.main-heading {
    /* font-sugo (using Bebas Neue as a stand-in), text-white, uppercase, text-start */
    font-family: 'Noto Sans', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    text-align: left;
    padding-left: 1rem;
    padding-bottom: 1rem;
    width: calc(100% - 20%);
    justify-self: center;
    
    /* font-regular, text-3xl, leading-tight */
    font-weight: 400;
    line-height: 1.25;
    justify-items: start;
    padding-top: 4rem;
}

/* Styling for the individual lines inside the heading */
.main-heading span {
    display: block; /* block */
}

.faq-container {
    /* The space-y-4 equivalent */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: calc(100% - 20%);
    justify-self: center;
}

.faq-item {
    background-color: ghostwhite;
    border-radius: 0.5rem; /* rounded-lg */
    margin: 0.5rem; /* m-2 */
    padding: 1rem 1rem; /* px-4 py-4 */
}

.faq-item[open] > .faq-question .faq-icon {
    transform: rotate(45deg); /* group-open:rotate-45 */
}

.faq-question {
    display: flex;
    align-items: center;
    list-style: none;
    color: #3f3f3f;
    font-weight: 700;
    width: 100%;
    font-size: 12px;
    cursor: pointer;
    text-align: start;
    justify-content: space-between;
}

/* Removes the default arrow/marker from the <summary> element */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem; /* Mobile first icon size */
    transition: transform 0.2s ease-in-out; /* transition-transform duration-200 */
}

.faq-answer {
    color: var(--text-light);
    margin-top: 1rem; /* Added for better spacing after summary */
    text-align: left;
    line-height: 1.2;
}

.faq-answer p{
    font-size: 12px;
}

@media (min-width: 550px){
 .faq-answer p{
    font-size: 16px;
}   
}

.promo-section {
    width: 100%;
    background-color: #0a0a1f;
    padding: 8rem 0; /* py-12 */
}

.promo-section__container {
    max-width: 768px; /* max-w-screen-md */
    margin: 0 auto;
    padding: 0 1rem; /* px-4 */
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    margin-top: 5rem;
}

.promo-section__title {
    font-weight: 300; /* font-light */
    color: #fff;
    font-size: 2.25rem; /* text-4xl */
    line-height: 2.5rem;
}

.promo-section__text {
    color: #fff;
    font-weight: 500; /* font-medium */
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75rem;
}

.promo-section__buttons {
    display: flex;
    justify-content: center;
    gap: 5px; /* space-x-4 */
    margin-top: 1rem; /* mt-4 */
}

@media (min-width: 800px){
 
.promo-section__buttons {
    display: flex;
}   
}

.promo-section__button-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.promo-section__button-img:hover {
    transform: scale(1.05);
}

.site-footer {
    width: 100%; /* w-screen */
    background-color: #0a0a1f;
    color: #ffffff;
    font-family: var(--font-primary);
    padding: 2rem 1rem; /* py-8 px-4 */
    
    /* Reemplaza flex flex-col justify-between */
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Espacio entre secciones del footer */
}

.footer-logo-main {
    text-align: center;
}

.footer-logo-main img, .footer-logo-mobile {
    height: 70px; /* h-[70px] */
}

.footer-promo {
    text-align: center;
}

.promo-heading {
    font-weight: 400; /* font-regular */
    font-size: 30px;
    line-height: 39px;
    margin-bottom: 0.5rem; /* mb-2 */
}

.promo-heading .text-highlight {
    color: var(--highlight-color);
}

.promo-subheading {
    font-weight: 300; /* font-light */
    font-size: 24px;
    line-height: 40px;
}

.footer-divider {
    width: 12rem; /* w-48 */
    height: 4px; /* h-1 (4px es más visible que 1px) */
    margin: 1rem auto; /* my-4 mx-auto */
    background-color: var(--divider-color);
    border: 0;
    border-radius: 2px;
}

.footer-links-container {
    width: 100%;
    display: flex;
    flex-direction: column; /* Apilado en móvil */
    text-align: center; /* Centrado en móvil */
    gap: 1.5rem;
}

.copyright-desktop {
    display: none; /* hidden en móvil */
}

.copyright-text {
    font-size: 0.75rem; /* text-xs */
    color: var(--text-gray-400);
}


.footer p{
    color: #3f3f3f;
}

.links-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    margin-bottom: 0.5rem;
    color: white;
}

.links-list {
    list-style: none;
    /* Reemplaza space-y-1 */
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.links-list a {
    color: var(--text-gray-300);
    text-decoration: none;
    font-size: 1rem; /* text-base */
    transition: color 0.2s ease;
}

.links-list a:hover {
    text-decoration: underline;
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.app-store-links {
    display: flex;
    justify-content: center;
    gap: 1rem; /* space-x-4 */
    margin-top: 1rem; /* mt-4 */
}


/* --- Media Queries for Responsiveness --- */

/* min-[480px] breakpoint */
@media (min-width: 480px) {
    .faq-question {
        font-size: 1.125rem; /* text-lg */
        margin-bottom: 0;
    }
    .faq-icon {
        font-size: 1.5rem; /* text-2xl */
        margin-bottom: 0;
    }
}

/* sm: 640px and up */
@media (min-width: 640px) {
    .promo-section__title {
        font-size: 3rem; /* sm:text-5xl */
        line-height: 1;
    }
    .footer-links-container {
        flex-direction: row; /* sm:flex-row */
        justify-content: space-evenly; /* sm:justify-evenly */
        text-align: left; /* Alineado a la izquierda en pantallas grandes */
    }
}

/* md: 768px and up */
@media (min-width: 768px) {
    .main-heading {
        padding-top: 3rem; /* md:py-12 */
        padding-bottom: 3rem;
        padding-left: 3rem;
    }
    .heading-line-1 {
        font-size: 5rem; /* md:text-9xl */
        line-height: 1.2;
    }
    .heading-line-2 {
        font-size: 10rem;
        line-height: 0.8;
    }
    .faq-item {
        padding-left: 1.5rem; /* md:px-6 */
        padding-right: 1.5rem;
    }
    .faq-question {
        font-size: 1.5rem; /* md:text-[24px] */
    }
    .faq-icon {
        font-size: 2.25rem; /* md:text-4xl */
    }
    .promo-section__title {
        font-size: 3.75rem; /* md:text-6xl */
    }
    .promo-section__text {
        font-size: 1.5rem; /* md:text-2xl */
        line-height: 2rem;
    }
    .footer-divider {
        margin-top: 2.5rem; /* md:my-10 */
        margin-bottom: 2.5rem;
        width: 20rem; /* md:w-80 */
    }
    .copyright-desktop {
        display: block; /* md:block */
        width: 120px;
        text-align: center;
    }
    .copyright-desktop img {
        width: 100%;
    }
    /* Ocultar la versión móvil del copyright y logo inferior */
    .footer-bottom {
        display: none;
    }
}

/* lg: 1024px and up (laptops) */
@media (min-width: 1024px) {
    .faq-item {
        margin-left: 2rem; /* lg:mx-8 */
        margin-right: 2rem;
    }
}

/* xl: 1280px and up */
@media (min-width: 1280px) {
    .main-heading {
        /* xl:space-y-8 -> Using gap for modern browsers */
        display: flex;
        flex-direction: column;
        gap: 2rem; 
    }
    .heading-line-1 {
        font-size: 7.5rem;
        line-height: 1.2;
    }
    .heading-line-2 {
        font-size: 10rem;
        line-height: 0.8;
    }
    .faq-question,
    .faq-answer {
        text-align: left; /* xl:text-start */
    }
    .promo-section__title {
        font-size: 4.5rem; /* xl:text-8xl (ajustado de 6rem) */
    }
    .promo-section__text {
        font-size: 1.875rem; /* xl:text-3xl */
        line-height: 2.25rem;
    }
}

.li-icons-section3{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.icon-section3{
    padding: 15px;
}

.home_testimonial .owl-nav button.owl-prev,
.home_testimonial .owl-nav button.owl-next {
    /* Shape, Size, and Appearance */
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 50%; /* This makes them perfect circles */
    
    /* Center the SVG icon inside the circle */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Add a subtle shadow for depth */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    /* Smooth transition for hover effects */
    transition: all 0.3s ease-in-out;
}

/* 2. Add a hover effect to give user feedback */
.home_testimonial .owl-nav button.owl-prev:hover,
.home_testimonial .owl-nav button.owl-next:hover {
    cursor: pointer;
    background: #f7f7f7;
    border-color: #03473e; /* Use your brand color on hover */
}


/* 3. Style the SVG icon INSIDE the button */
.home_testimonial .owl-nav button.owl-prev svg,
.home_testimonial .owl-nav button.owl-next svg {
    width: 22px;  /* Control the size of the arrow icon */
    height: 22px;
    stroke: #03473e; /* Set the arrow color */
    stroke-width: 2.5;
}


/* 4. Position the buttons */
/* This is the container for the buttons. We position it vertically centered. */
.home_testimonial .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  /* This makes sure the buttons can be clicked even if they are "outside" the carousel area */
  z-index: 10; 
}

/* Position the 'previous' button on the left side */
.home_testimonial .owl-nav button.owl-prev {
    position: absolute; /* Position relative to the .owl-nav container */
    left: -25px; /* ADJUST THIS VALUE to move it left or right */
}

/* Position the 'next' button on the right side */
.home_testimonial .owl-nav button.owl-next {
    position: absolute; /* Position relative to the .owl-nav container */
    right: -25px; /* ADJUST THIS VALUE to move it left or right */
}

.app-download-buttons-group {
  display: flex;
  flex-direction: column; /* Stacks the buttons vertically */
  align-items: center;    /* Centers the buttons horizontally */
  gap: 15px;              /* Adjust the space between buttons */
  width: 100%;            /* Ensure the container takes up available width */
}

.app-download-buttons-group .promo-section__button-img {
  max-width: 220px; /* Adjust this value to your liking */
  width: 100%;      /* This overrides your original "width: 60%" but only for these images */
  height: auto;     /* Maintains the aspect ratio */
  display: block;  
  transition: transform 0.2s ease-in-out;
}

.app-download-buttons-group .promo-section__button-img:hover {
  transform: scale(1.05); /* Makes the button slightly larger on hover */
}

@media (min-width: 470px) {
  .app-store-links{
    width: 80%;
  }
}

@media (min-width: 768px) {
    .promo-section__buttons{
        gap: 2rem;
    }

    .app_blocks .app_btn{
        width: 60%;
    }
}

.hero {
  padding: 180px 0 100px;
  overflow: hidden;
}

.hero .hero__badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    background: var(--primary);
    color: var(--white);
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
}

.hero .hero__badge i {
  margin-right: 8px;
}

.hero .hero__heading {
  font-size: 50px;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .hero__heading span {
  color: var(--primary);
}

.hero .hero__paragraph {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero .hero__buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.hero .hero__button-start {
  background-color: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.hero .hero__button-start:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
  color: white;
}

.hero .hero__button-start:active {
  color: white;
  border-color: white;
  transform: scale(0.95);
}

.hero .hero__button-play {
  color: #2c3e50;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero .hero__button-play i {
  font-size: 28px;
  color: var(--primary);
}

.hero .hero__button-play:hover {
  color:var(--primary);
}

.hero .hero__image-wrapper {
  text-align: center;
}

/* Responsive adjustments for Hero */
@media (max-width: 991.98px) {
  .hero {
    padding: 140px 0 100px;
  }
  .hero .hero__heading {
    font-size: 34px;
  }
  .hero .hero__paragraph {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero .hero__buttons {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# 2. Stats Section
# Styles for the section with id="stats"
--------------------------------------------------------------*/
.stats-bar {
  padding: 40px 0;
  background-color: var(--lighter1);
}

.stats-bar .stats-bar__item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stats-bar .stats-bar__item i {
  font-size: 32px;
  color: var(--primary);
  background-color: var(--lighter1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats-bar .stats-bar__number {
  font-size: 24px;
  font-weight: 800;
  color: #2c3e50;
  display: block;
}

.stats-bar .stats-bar__text {
  margin: 0;
  font-size: 15px;
  color: #5d6d7e;
}

/* DONE SO FAR */

/*--------------------------------------------------------------
# 3. Features with Tabs Section
# Styles for the section with id="features-tabs"
--------------------------------------------------------------*/
.features-tabs {
  padding: 80px 0;
  background-color: var(--lighter1);
}

.features-tabs .features-tabs__header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  background-color: var(--lighter1);
}

.features-tabs .features-tabs__header p {
  color: #6c757d;
  max-width: 600px;
  margin: 15px auto 0 auto;
}

.features-tabs .features-tabs__nav {
  margin-top: 40px;
  border-bottom: none;
}

.features-tabs .features-tabs__nav .nav-link {
  border: none;
  padding: 12px 10px;
  border-radius: 50px;
  color: #555;
  font-weight: 600;
  margin: 0 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.features-tabs .features-tabs__nav .nav-link:hover {
  color: var(--primary);
}

.features-tabs .features-tabs__nav .nav-link.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px #e86f7b;
}

.features-tabs .features-tabs__content-wrapper {
  margin-top: 40px;
}

.features-tabs .features-tabs__title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.features-tabs .features-tabs__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.features-tabs .features-tabs__list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.6;
}

.features-tabs .features-tabs__list i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary);
  font-size: 18px;
}

/* Responsive adjustments for Features with Tabs */
@media (min-width: 450px) {
  .features-tabs .features-tabs__nav .nav-link {
    padding: 12px 20px;
  }
}
@media (max-width: 991.98px) {
  .features-tabs .features-tabs__content-wrapper .col-lg-6:last-child {
    margin-top: 30px; 
  }
}

/*--------------------------------------------------------------
# 4. Features with Phone Mockup Section
# Styles for the section with id="features"
--------------------------------------------------------------*/
.phone-features {
  padding: 80px 0;
  overflow: hidden;
}

.phone-features .phone-features__item {
    margin-bottom: 40px;
    padding: 10px;
    border-radius: 20px;
    text-align: center !important;
    margin-bottom: 50px !important;
    background-color: white !important;
    padding: 20px !important;
    border-radius: 20px !important;
    box-shadow: 0px 10px 19px -1px rgba(234, 230, 254, 1) !important;
}

.phone-features .col-lg-4 .phone-features__item:last-child {
  margin-bottom: 0;
}

.phone-features .phone-features__icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 32px;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.phone-features .phone-features__item:hover .phone-features__icon {
  color: #fff;
}

.phone-features .phone-features__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.phone-features .phone-features__description {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 15px;
}

.phone-features .phone-features__mockup {
  padding: 0 20px;
}

/* Responsive adjustments for Phone Features */
@media (max-width: 991.98px) {
  .phone-features .phone-features__item {
    margin-bottom: 50px;
    text-align: center !important;
    margin-bottom: 50px !important;
    background-color: white !important;
    padding: 20px !important;
    border-radius: 20px !important;
    box-shadow: 0px 10px 19px -1px rgba(234, 230, 254, 1) !important;
  }
  .phone-features .phone-features__item .d-flex {
    flex-direction: column !important;
    justify-content: flex-start !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    background-color: white !important;
    padding: 20px !important;
    border-radius: 20px !important;
  }
  .phone-features .phone-features__mockup {
    margin: 20px auto 60px auto;
    max-width: 300px;
  }
  .phone-features .col-lg-4 {
    margin-bottom: 20px;
  }
  .phone-features .col-lg-4:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .phone-features .phone-features__item {
    text-align: left;
  }
  .phone-features .phone-features__mockup {
    max-width: 280px;
  }
}

.image-style__borders{
    border-radius: 20px;
}

.navbar-toggler.custom-toggler {
  border: none;         /* The rounded corners */
  padding: 0.5rem;            /* Some space around the icon */
  transition: all .2s ease-in-out;
}

/* You might want to remove the default blue glow on click */
.navbar-toggler.custom-toggler:focus {
  box-shadow: none;
}

.promo-section__reclutadores{
    background-color: #0a0a1f;
    padding-top: 12rem;
}

.video-call-feature {
            padding-top: 2rem;
            padding-bottom: 2rem;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* Título Principal de la Sección */
        .video-call-feature__heading {
            font-size: 3rem;
            font-weight: 500;
            line-height: 1.2;
            color: #3c4043;
            margin-bottom: 1.5rem; /* Espacio después del título */
            font-family: Arial, Helvetica, sans-serif;
        }
        
        /* Párrafo Descriptivo de la Sección */
        .video-call-feature__paragraph {
            font-size: 1.1rem;
            color: #5f6368;
            margin-bottom: 2rem; /* Espacio después del párrafo */
        }
        
        /* Enlace "Más información" de la Sección */
        .video-call-feature__link {
            color: var(--brand-red); /* Color específico para este enlace */
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out;
        }
        .video-call-feature__link:hover {
            color: var(--brand-red-hover);
            text-decoration: underline;
        }

        /* Contenedor de la imagen para control de espaciado */
        .video-call-feature__image-wrapper {
            /* Espacio superior en vista móvil */
            margin-top: 2rem;
        }

        .bg-custom-dark {
            background-color: var(--dark-background);
        }

        /* Clase de utilidad para el texto verde */
        .text-custom-red {
            color: var(--brand-red);
        }

        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        
        /* Ajuste opcional para que el texto del enlace sea más audaz */
        .link-bold {
            font-weight: 600;
        }
        .link-bold:hover {
            text-decoration: underline;
        }

        /* Opcional: Un sutil efecto de "brillo" en la imagen como en el diseño */
        .phone-image-glow {
            box-shadow: 0px 0px 85px -35px rgba(37, 211, 102, 0.4);
        }

        .section-full-height {
            min-height: 95vh; /* Usa min-height en lugar de height */
            display: flex; /* Activa Flexbox para la alineación vertical */
            align-items: center; /* Centra el contenido verticalmente */
            padding-top: 2rem;
            padding-bottom: 2rem;
        }


        /* Ajustes nuevos */

        /* --- Variable Definitions --- */
/* You can define your --dark-background here if it's not already global */
:root {
    --dark-background: #000000;
    --brand-red: #dc2323;
    --brand-red-hover: #af1212;
    --brand-red-dark: #B91C1C;
    --brand-blue: #3B82F6;
    --brand-green: #10B981;
    --brand-mint: #A7F3D0;
    --brand-lavender: #E0E7FF;
    --neutral-white: #F9FAFB;
    --text-primary: #111827;
    --text-secondary: #6B7280;   
}


/* --- Style Overrides for Your Existing Classes --- */

/* Ensure the background is black for this specific header */
.bg-custom-dark {
    background-color: var(--dark-background) !important;
}

/* Adapt the heading class for the hero section */
.video-call-feature__heading_main {
    font-size: 2rem; /* Larger font size for the hero heading */
    font-weight: 700;  /* Bolder text */
    color: var(--body-text);    /* White color text */
    position: static;
    top: 20px;
}

/* Adapt the paragraph class for the hero section */
.video-call-feature__paragraph_main {
    font-size: 1rem; /* Slightly larger font size */
    color: rgba(255, 255, 255, 0.9); /* Off-white color */
    width: 100%;
    justify-self: center;
}


/* --- New Classes for the Manychat Design --- */

.manychat-logo {
    height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}



/* todas las sections con una imagen de background  */
 .hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/jovenTalentyNew.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
} 
.hero-section-jovenes{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/introTalentyLarge.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
    height: 115vh;
}
.hero-section-jovenes-pt2{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/jovenFelizNew1.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
}

.hero-section-jovenes-pt3{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/encontrarTrabajo.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
}
.hero-section-empresas{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/bussinessMan.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
}
 .hero-section-nosotros {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/AboutsUs.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
}
 .hero-section-reclutadores {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/vendedorLarge.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
}
.hero-section-reclutadores-3{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/EmpresasSectionLarge.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
}
.hero-section-empresas-3{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/talentyEmpresasSection3.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
}
.hero-section-blog-3{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/introBlog2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
}
.hero-section-green{
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background-image: url(../images/greenNewLarge.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-wrap: wrap;
    padding: 0;
}



@media (min-width: 1200px){
        .hero-section-empresas{
        height: 120vh;
    }
    .connect-banner{
        height: 120vh;
    }
}


@media (max-width: 557.98px) {
    .hero-section {
        background-image: url(../images/jovenTalentyMedium.jpg);
        position: relative;
        overflow: hidden;
        min-height: 85vh;
    }
    .hero-section-jovenes{
        background-image: url(../images/introTalentyMedium.jpg);
        position: relative;
        overflow: hidden;
        min-height: 85vh;
    }
    .hero-section-jovenes-pt2{
        background-image: url(../images/jovenFelizNewMovil.jpg);
        position: relative;
        overflow: hidden;
        min-height: 85vh;
    }
    .hero-section-jovenes-pt3{
        background-image: url(../images/encontrarTrabajoMovil.jpg);
        position: relative;
        overflow: hidden;
        min-height: 85vh;
    }
    .hero-section-empresas{
        background-image: url(../images/bussinessManMedium.jpg);
        position: relative;
        overflow: hidden;
        min-height: 85vh;
    }
    .hero-section-empresas-3{
        background-image: url(../images/empresasMovilMini.jpg);
        position: relative;
        overflow: hidden;
        min-height: 85vh;
    }
    .hero-section-green{
        background-image: url(../images/greenNewMedium.jpg);
        position: relative;
        overflow: hidden;
        min-height: 85vh;
    }

}


/* 2. Style the background image container */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Lowest layer */
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the section without distortion */
}

/* 3. Adjust the overlay to sit on top of the background */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Middle layer */
}

/* 4. Ensure your content sits on top of everything */
.hero-section .container {
  position: relative;
  z-index: 3; /* Top layer */
}
    

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Ensure content is above the overlay */
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* New primary call-to-action button style */
.btn-cta-primary {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.btn-cta-primary:hover {
    background-color: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
    color: #fff;
}

.meta-partner {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.meta-logo {
    margin-right: 10px;
}

.hero-image-container {
    position: relative;
}

.hero-image-framed {
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.1);
    max-width: 90%;
}

.chat-bubble {
    position: absolute;
    bottom: 40px;
    right: 10px;
    color: white;
    padding: 20px;
    border-radius: 20px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: rgb(0 0 0 / 17%);
    backdrop-filter: blur(7.6px);
    -webkit-backdrop-filter: blur(7.6px);
    border-radius: 20px;
}

.chat-bubble .btn-light {
    width: 100%;
}


/* --- Responsive Adjustments --- */

header.fixed div.container nav.navbar li.nav-item a.nav-link {
    color: var(--body-text);
    font-weight: 500;
}

.text-custom-white{
    color: #ffffff;
}

.how-it-works-section {
            padding: 80px 0;
            background-color: #ffffff;
            font-family: sans-serif;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title .subtitle {
            font-size: 14px;
            font-weight: 600;
            color: #adb5bd;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #212529;
        }

        .step-item {
            text-align: center;
            position: relative;
        }

        .step-icon-wrapper {
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .step-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: var(--white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .main-title{
                font-size: 4.5rem;
                font-weight: 700;
                color: var(--secondary);
        }

        .step-icon svg {
            width: 48px;
            height: 48px;
            fill: #ffffff;
        }

        .step-item .step-number {
            font-size: 18px;
            font-weight: 600;
            color: #dc2323;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .step-item .step-description {
            font-size: 20px;
            color: var(--body-text);
        }

        /* Arrows for desktop view */
        @media (min-width: 768px) {
            .step-item:not(:last-child)::after {
                content: '\2192'; /* Unicode Right Arrow */
                position: absolute;
                top: 45px;
                right: -40px;
                font-size: 28px;
                font-weight: 700;
                color: #ced4da;
                z-index: 1;
            }
        }
        
        /* Spacing for mobile view */
        @media (max-width: 767.98px) {
            .step-item {
                margin-bottom: 40px;
            }
             .step-item:last-child {
                margin-bottom: 0;
            }
            .how-it-works-section {
                padding: 60px 0;
            }
            .section-title .main-title {
                font-size: 28px;
            }
        }

        

        .graident-bg-1{
            background-color: #fff8e6;;
        }


        .graident-bg-2 {
  background: linear-gradient(135deg, #fff6ee, #ffe3ea);
}
.connect-banner {
  position: relative;
  min-height: 90vh; 
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.connect-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.connect-banner .container {
  position: relative;
  z-index: 2;
}

.btn-promo-red {
  background-color: #d9363e;
  border-color: #d9363e;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-promo-red:hover {
  background-color: #c22a32;
  color: #ffffff;
}


/*--------------------------------------------------------------
# UNIQUE BACKGROUND IMAGES for Each Banner
# ⚠️ IMPORTANT: Change these image paths!
--------------------------------------------------------------*/

/* 
#banner-1 {
  background-image: url('../images/girlGreen.png');
}

#banner-2 {
  background-image: url('../images/chicaEdit1.png');
}


#banner-3 {
  background-image: url('../images/chicoEditCompress1.jpg');
}
#banner-4 {
  background-image: url('path/to/your/image-for-section-4.jpg');
}
*/

/*--------------------------------------------------------------
# Callout Box Styles (Default and Left-aligned)
--------------------------------------------------------------*/
.callout-box {
  position: absolute;
  top: 50%;
  background-color: #d9363e;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 220px;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  z-index: 3;
}

/* Default position: RIGHT */
.callout-box {
  right: 5%;
  transform: translateY(-70%);
}

.callout-box::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #d9363e;
}

/* Modifier for position: LEFT */
.callout-box.callout-box--left {
  left: 5%;
  right: auto; /* Unset the right property */
}

.callout-box.callout-box--left::after {
  left: auto; /* Unset the left property */
  right: -10px; /* Position arrow on the right */
  border-right: none;
  border-left: 10px solid #d9363e; /* Flip the arrow */
}

.callout-box a {
  color: #ffffff;
  text-decoration: underline;
}

.callout-box a:hover {
  color: #f0f0f0;
}

.about-section {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 90vh;
    align-content: center;
}

.about-section__subheading {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about-section__heading {
  font-weight: 700;
}

.about-section__description:last-child {
  margin-bottom: 0;
}

.about-section__read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-section__read-more-icon {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about-section__read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about-section__read-more:hover .about-section__read-more-icon {
  margin-left: 10px;
}

.about-section__icon-box {
padding: 40px 40px;
    margin: 10px 0;
    align-items: center;
    background-color: var(--white);
    border: solid 1px var(--border);
    border-radius: 20px;
    margin-bottom: 30px;
    flex-wrap: unset;
    max-width: 500px;
    position: relative;
    -webkit-box-shadow: 0px 10px 19px -1px rgba(234, 230, 254, 1);
    -moz-box-shadow: 0px 10px 19px -1px rgba(234,230,254,1);
    box-shadow: 0px 10px 19px -1px rgba(234, 230, 254, 1);
}

.about-section__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about-section__icon-box-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about-section__icon-box-description {
  margin-bottom: 0;
}

.about-section__icon-box:hover .about-section__icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Specific positioning for certain icon boxes */
.about-section__icon-grid .about-section__icon-grid-item:nth-child(2) .about-section__icon-box,
.about-section__icon-grid .about-section__icon-grid-item:nth-child(4) .about-section__icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {
  .about-section__icon-grid .about-section__icon-grid-item:nth-child(2) .about-section__icon-box,
  .about-section__icon-grid .about-section__icon-grid-item:nth-child(4) .about-section__icon-box {
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
    .hero-section {
        /* .section-full-height becomes auto, so we adjust padding */
        min-height: auto;
        padding-top: 0rem;
        padding-bottom: 0rem;
        text-align: center;
    }
    
    .hero-text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 15rem;
    }

    .video-call-feature__heading_main {
        font-size: 1.8rem; /* Adjust font size for mobile */
        justify-self: anchor-center;
        top: 5rem;
    }

    .video-call-feature__paragraph {
        font-size: 1.1rem; /* Adjust font size for mobile */
    }
}

@media (min-width: 992px) {
    h1.video-call-feature__heading_main{
        color: var(--body-text);
        font-size: 3rem;
    }
}

@media (max-width: 490.98px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }
}

.connect-banner {
  position: relative;
  overflow: hidden; /* Recommended for positioning */
}

/* 2. Style the new background container */
.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Puts it on the bottom layer */
}

.banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the section without stretching */
}

/* 3. Ensure your main content stays on top */
.connect-banner .container {
  position: relative;
  z-index: 2; /* Puts the content on the top layer */
}


#banner-2 {
  position: relative;
  overflow: hidden;
}

/* 2. Style the new background container */
.banner-2-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Bottom layer */
}

.banner-2-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill the container without stretching */
}

/* 3. Ensure your main content stays on top */
#banner-2 .container {
  position: relative;
  z-index: 2; /* Top layer */
}

/* 1. Set the section as the positioning container */
#banner-3 {
  position: relative;
  overflow: hidden;
}

/* 2. Style the background container */
.banner-3-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Bottom layer */
}

.banner-3-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill the container without stretching */
}

/* 3. Ensure your content stays on top */
#banner-3 .container {
  position: relative;
  z-index: 2; /* Top layer */
}

.banner-content{
    background: rgb(0 0 0 / 17%);
    backdrop-filter: blur(7.6px);
    -webkit-backdrop-filter: blur(7.6px);
    border-radius: 20px;
    padding: 5px;
    margin-top: 25rem;
    margin-bottom: 0rem;
}

@media (min-width: 1200px) {
    .banner-content {
        margin-top: 15rem;
        padding: 10px;
        margin-left: 30px;
    }
}

.font-white{
    color: white;
}

.text-responsive {
  font-size: 0.8rem;
  line-height: 1.6;
}

/* For screens 768px (Bootstrap's md breakpoint) and wider */
@media (min-width: 768px) {
  .text-responsive {
    font-size: 1rem;
  }
}

.header-responsive {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 600;
}

/* For screens 768px (Bootstrap's md breakpoint) and wider */
@media (min-width: 768px) {
  .header-responsive {
    font-size: 1.25rem;
  }
}

/* --- Main Wrapper --- */
.agency-collage-layout {
    max-width: 1800px;
    margin: auto; /* Center the layout */
    padding-bottom: 5rem;
    padding-top: 5rem;
}

.agency-collage-layout .card {
    border: none;
    border-radius: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- Left Column --- */

.agency-collage-layout .card-blue {
    background-color: #8bb8f3;
    color: #0d1f39;
    position: relative;
    overflow: hidden;
}

.agency-collage-layout .card-blue .card-body {
    padding: 2rem;
}

.agency-collage-layout .logo-icon {
    fill: #0d1f39;
}

.agency-collage-layout .agency-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    max-width: 300px;
}

.agency-collage-layout .abstract-design {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 120px;
    opacity: 0.8;
}

.agency-collage-layout .vertical-text-wrapper {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background-color: var(--brand-red);
    color: #0d1f39;
    padding: 1rem 0.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0.5rem 0 0 0.5rem;
}

.agency-collage-layout .ethan-img {
    height: 100%;
    object-fit: cover;
    border-radius: 0 0.5rem 0.5rem 0;
}

.agency-collage-layout .tag-container {
    flex-wrap: wrap;
    position: relative;
    bottom: 4rem;
    align-self: center;
}

.agency-collage-layout .tag {
    background-color: #e0e0e0;
    color: #5f5f5f;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.agency-collage-layout .card-green {
    background-color: #d9f38b;
}

.agency-collage-layout .design-agency-title {
    font-weight: 700;
    color: #0d1f39;
    margin: 0;
}

.agency-collage-layout .logo-icon-small {
    margin-bottom: 0.5rem;
}

.agency-collage-layout .bring-vision {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: #0d1f39;
    margin: 0;
}


/* --- Center Column --- */
.agency-collage-layout .mobile-mockup {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.agency-collage-layout .mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.agency-collage-layout .handle {
    font-size: 0.9rem;
    color: #999;
}

.agency-collage-layout .mockup-body h2 {
    font-weight: 600;
    font-size: 2.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #0d1f39;
}

.agency-collage-layout .company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.agency-collage-layout .success-manager {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    padding: 1rem;
    border-radius: 1rem;
}

.agency-collage-layout .success-manager img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.agency-collage-layout .manager-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.5rem;
}

.agency-collage-layout .btn-discuss {
    background-color: var(--brand-red);
    color: #0d1f39;
    font-weight: 600;
    border-radius: 1.5rem;
    padding: 0.5rem 1.5rem;
}

/* --- Right Column --- */

.agency-collage-layout .right-column-wrapper {
    display: flex;
    flex-direction: column;
}

.agency-collage-layout .right-card {
    background-color: #d9f38b;
    color: #0d1f39;
}

.agency-collage-layout .right-card .card-img-top {
    border-radius: 1rem 1rem 0 0;
    max-height: 200px;
    object-fit: cover;
}

.agency-collage-layout .passion-text {
    font-weight: 600;
    margin: 0.5rem 0 0 0;
}

.agency-collage-layout .alto-vision-card {
    background-color: white;
    flex-grow: 1;
}

.agency-collage-layout .alto-vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.agency-collage-layout .team-img-2 {
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.agency-collage-layout .btn-contact {
    background-color: var(--brand-red);
    color: #0d1f39;
    font-weight: 600;
    border-radius: 1.5rem;
    padding: 0.75rem 2rem;
    width: 100%;
}

.agency-collage-layout .logo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 1rem;
}

.agency-collage-layout .logo-text {
    font-size: 1.5rem;
}

.agency-collage-layout .color-swatches {
    display: flex;
}

.agency-collage-layout .swatch {
    width: 30px;
    height: 30px;
    border-radius: 0.5rem;
    margin-left: 0.5rem;
}

.agency-collage-layout .swatch.green { background-color: var(--brand-red); }
.agency-collage-layout .swatch.blue { background-color: var(--); }

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .agency-collage-layout .agency-title {
        font-size: 2.5rem;
    }
    .agency-collage-layout .abstract-design {
        width: 100px;
    }
    .agency-collage-layout .mobile-mockup {
        margin-top: 1.5rem;
    }
    .agency-collage-layout .logo-footer {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .agency-collage-layout .row > div {
        margin-bottom: 1rem;
    }
    .agency-collage-layout .mockup-body h2 {
        font-size: 1.8rem;
    }
}

.agency-collage-layout .card-blue {
    background-color: var(--brand-blue); /* #3B82F6 */
    color: var(--neutral-white); /* Blanco para contraste */
}

.agency-collage-layout .vertical-text-wrapper {
    background-color: var(--brand-red); 
    color: white;
    z-index: 2;
    position: absolute;
}

.agency-collage-layout .tag {
    background-color: var(--brand-lavender); /* Suave lavanda */
    color: var(--text-primary);
}

.agency-collage-layout .card-green {
    background-color: var(--brand-green); /* Verde menta suave */
}

.agency-collage-layout .design-agency-title,
.agency-collage-layout .bring-vision,
.agency-collage-layout .mockup-body h2,
.agency-collage-layout .alto-vision-title {
    color: var(--text-primary);
}

.agency-collage-layout .success-manager {
    background: var(--neutral-white); 
    border: 1px solid #e5e7eb; /* Suave línea */
}

.agency-collage-layout .btn-discuss,
.agency-collage-layout .btn-contact {
    background-color: var(--brand-red);
    color: white;
    font-weight: 600;
    border-radius: 1.5rem;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.2s ease;
}

.agency-collage-layout .btn-discuss:hover,
.agency-collage-layout .btn-contact:hover {
    background-color: var(--brand-red-dark); /* Hover oscuro */
}

.agency-collage-layout .right-card {
    background-color: var(--brand-green); /* Verde positivo */
    color: white;
}

.agency-collage-layout .logo-footer {
    background-color: var(--neutral-white);
}

.agency-collage-layout .swatch.green {
    background-color: var(--brand-red);
}

.agency-collage-layout .swatch.blue {
    background-color: var(--brand-blue);
}

.hero-content-section_3rdsection {
    min-height: 80vh;
    font-family: 'Public+Sans', sans-serif;
    
    /* Flexbox for vertical alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BEM Block: .hero-content
  This is the main component container.
*/
.hero-content {
    width: 100%; /* Ensure it takes up the container width */
}

/*
  BEM Element: .hero-content__headline
  This styles the heading text inside the .hero-content block.
*/
.hero-content__headline {
    color: var(--body-text); /* Dark navy blue */
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 1.5rem 0; /* Use margin for spacing between lines */
}

/*
  BEM Element: .hero-content__highlight
  This styles the specific span of text inside a headline.
*/
.hero-content__highlight {
    color: var(--brand-red); /* Light purple/lavender */
}

/* === RESPONSIVE STYLES === */

/* For tablets and smaller desktops */
@media (max-width: 991.98px) {
    .hero-content__headline {
        font-size: 2.75rem;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
        color: var(--body-text)
    }
}

/* For mobile devices */
@media (max-width: 767.98px) {
    .hero-content__headline {
        font-size: 2rem;
        line-height: 1.5;
    }
}


.impact-showcase-section {
    background-color: #ffc965;
    color: #ffffff;
    padding: 80px 0;
    overflow-x: hidden;
}
.impact-showcase-section2{
    background-color: #fff;
    color: var(--body-text);
    padding: 80px 0;
    overflow-x: hidden;
}

/* Left Column: Informational Content */
.impact-showcase__content-left {
    padding-right: 30px;
}

.impact-showcase__heading {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
}

.impact-showcase__text--highlight {
    color: var(--brand-red); /* In the original, this might be a slightly different shade, but appears white */
    font-weight: 700;
}

/* Logo Container - Simulating a carousel/slider */
.impact-showcase__logo-container {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping */
    gap: 3.3rem; /* Matches the margin-right from the original code */
    opacity: 0.85;
    padding: 10px 0;
    overflow-x: auto; /* Enables horizontal scrolling on smaller screens */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}
/* Hide scrollbar for a cleaner look */
.impact-showcase__logo-container::-webkit-scrollbar {
    display: none;
}
.impact-showcase__logo-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


.logo-item {
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap; /* Keeps logo text on one line */
    flex-shrink: 0;
}

/* Right Column: App Mockup */
.app-mockup {
    background-color: #ffffff;
    color: #212529;
    border-radius: 12px;
    padding: 0.2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.app-mockup__header {
    margin-bottom: 2rem;
}

.app-mockup__back-link {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.app-mockup__back-link:hover {
    color: #212529;
}

.app-mockup__heading {
    font-size: 2rem;
    font-weight: 700;
}

.app-mockup__subheading {
    color: #6c757d;
}

/* Playbook Card Styling */
.playbook-card {
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px; /* Ensures a consistent minimum height */
    color: #212529;
}

.playbook-card__title {
    font-size: 1rem;
    font-weight: 700;
}

.playbook-card__author {
    font-size: 0.8rem;
    color: #495057;
    margin-top: 15px;
}

/* Modifier classes for card colors */
.playbook-card--yellow { background-color: #fecb43; }
.playbook-card--gray { background-color: #f0f2f5; }
.playbook-card--blue { background-color: #62c3e1; }
.playbook-card--orange { background-color: #fdb27e; }

.app-mockup__footer {
    border-top: 1px solid #e9ecef;
    margin-top: 1rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #6c757d;
}

/* === Responsive Adjustments === */
@media (max-width: 991.98px) {
    .impact-showcase__content-left {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    .impact-showcase__logo-container {
        justify-content: flex-start; /* Allows scrolling from the beginning */
    }
}
@media (max-width: 767.98px) {
    .impact-showcase__heading {
        font-size: 1.5rem;
    }
    .app-mockup__heading {
        font-size: 1.75rem;
    }
}

.text-black {
    color: #000000;
}

.blog-main {
    max-width: 1200px; /* Max width for content */
}

/* Header and Navbar Styles */
.blog-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.blog-navbar-brand {
    font-weight: bold;
    color: #333;
}

.blog-navbar-nav .blog-nav-link,
.blog-navbar-nav .blog-nav-link-dropdown {
    color: #555;
    padding: 0.5rem 1rem;
}

.blog-navbar-nav .blog-nav-item.dropdown .blog-dropdown-menu {
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-navbar-nav .blog-nav-link:hover,
.blog-navbar-nav .blog-nav-link-dropdown:hover {
    color: #007bff;
}

.blog-search-button {
    border: none;
    background: transparent;
    color: #555;
}

.blog-search-button:hover {
    color: #000;
}


/* Section Titles */
.blog-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

/* Hero Post Section */
.blog-hero-post .row {
    background-color: #e6f7e6; /* Light green background for the content area */
    border-radius: 8px;
    overflow: hidden; /* Ensures the border-radius applies to image */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-hero-image-col {
    padding: 0; /* Remove padding for the image column */
}

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 8px 0 0 8px; /* Rounded corners on left side */
}

.blog-hero-content-col {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-hero-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-hero-excerpt {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-hero-read-more {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.blog-hero-read-more:hover {
    color: #0056b3;
}

.blog-hero-read-time {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

/* Post Card Styles (for Latest and Editor's Choice) */
.blog-post-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease-in-out;
    height: 100%; /* Ensure cards in a row have equal height */
    display: flex;
    flex-direction: column;
    padding: 1px;
}

.blog-post-card:hover {
    transform: translateY(-5px);
}

.blog-post-card-img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 180px; /* Fixed height for consistent image size */
    object-fit: cover;
}

.blog-post-card-body {
    padding: 1rem;
    flex-grow: 1; /* Allows content to expand */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-post-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-post-card-read-time {
    font-size: 0.85rem;
    color: #777;
    margin-top: auto; /* Pushes read time to the bottom */
}

.countdown-container {
    padding: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between segments */
    margin-bottom: 10px;
}

.time-segment {
    border-radius: 8px;
    min-width: 60px; /* Ensure segments have a consistent width */
}

.time-segment span:first-child { /* The number */
    display: block;
    font-size: 2.6em;
    font-weight: bold;
    color: #fff; 
    line-height: 1; /* Remove extra space */
    margin-bottom: 5px;
}

.time-segment .label { /* The "Days", "Hours" text */
    display: block;
    font-size: 0.7em;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#promotion-status {
    font-size: 1.5em;
    color: #28a745; /* Green for success message */
    font-weight: bold;
}

.hidden {
    display: none;
}

.swipeEmpleosRealesIndex{
    position: absolute;
    top: -200px;
    justify-self: anchor-center;
    display: grid;
    font-weight: 600;
}


@media (max-width: 992px){
 
    .swipeEmpleosRealesIndex {
    top: -350px;

    }
}

