@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --nunito: "Nunito Sans", sans-serif;
    --poppins: "Poppins", sans-serif;
    --primary: #22627F;
    --secondary: #172B4D;
    --white: #fff;
    --black18: #181818;
    --hovercolor: rgba(22, 150, 208, 1);
    --textcolor: #44546F;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--nunito);
}



a,
.btn {
    transition: all 0.25s ease 0s;
}

a:hover {
    color: var(--hovercolor);
    /* text-decoration: underline; */
}

p {
    font-size: 15px;
    line-height: 24px;
    color: var(--textcolor);

}

.btn:focus {
    box-shadow: none;
}

body {
    font-family: var(--poppins);
    color: var(--textcolor);
    margin: 0;
    padding: 0;
}

/* Contenedor principal para centrar y limitar ancho */
.container,
.container-fluid,
main,
section,
header,
footer {
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Para pantallas más pequeñas, usar todo el ancho disponible */
@media (max-width: 1230px) {
    .container,
    .container-fluid,
    main,
    section,
    header,
    footer {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.purplebg {
    background-color: #A358E0 !important;
}

.main-header {
    font-family: var(--nunito);
}

.main-header nav .nav li a {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
}

.btn-header {
    background-color: #22627F;
    border-color: #22627F;
    font-size: 13px;
    font-family: var(--nunito);
    font-weight: 600;
    border-radius: 10px;
    color: var(--white);
    padding: 10px 23px;
}

.btn-header:hover {
    background-color: var(--hovercolor);
    border-color: var(--hovercolor);
    color: #fff;
}

.btn-headerlink {
    font-size: 17px;
    font-weight: 600;
    color: var(--black18);
    text-decoration: none;
    background: transparent;
    border: none;
}

.banner-slider {
    background: url(../images/banner-bglight.png);
    background-size: cover;
    background-position: top center;
    background-clip: border-box;
}

.banner-slider h1 {
    font-size: 62px;
    font-weight: 900;
    font-family: var(--nunito);
    line-height: 75px;
    color: var(--secondary);
}

.cat-slide h6,
.client-logo h6 {
    font-weight: 600;
    color: #172B4D;
    font-size: 18px;
    margin-bottom: 28px;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 800 !important;
    /* border-bottom: 2px solid #333; */
}

.banner-slider h1 span {
    color: var(--primary);
}

.banner-slider p {
    font-size: 22px;
    width: 68%;
    margin: 0 auto;
    color: var(--textcolor);
    line-height: 33px;
    text-transform: capitalize;
    font-family: var(--poppins);
}

.banner-slider p span {
    font-weight: 500;
}

.banner-btn {
    background: linear-gradient(356deg, rgba(22, 150, 208, 1) 0%, rgba(33, 97, 126, 1) 100%);
    color: var(--white);
    font-weight: 700 !important;
    font-family: var(--nunito);
    font-size: 16px;
    padding: 12px 45px;
    border-radius: 10px;
    margin-right: 20px;
    /* transition: all 0.5s ease; */
}

.banner-btn:hover {
    background: linear-gradient(rgba(33, 97, 126, 1) 0%, 356deg, rgba(22, 150, 208, 1) 100%);
    color: var(--white);
}

.banner-btn2 {
    font-weight: 700 !important;
    font-family: var(--nunito);
    font-size: 16px;
    padding: 12px 45px;
    border-radius: 10px;
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.banner-btn2:hover {
    background: var(--hovercolor);
    color: var(--white);
    border-color: var(--hovercolor);
    /* border: none; */
}

.btn-link {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--nunito);
    text-decoration: none;
}

.btn-link:focus {
    background: #f2f2f2;
    border: 1px solid #181818;
}

.language-dropdown {
    position: relative;
    padding-right: 13px;
}

.language-dropdown:after {
    content: '';
    background: #ccc;
    height: 16px;
    width: 1px;
    position: absolute;
    top: 11px;
    right: 6px;
}

.cat-slide .item-box {
    height: 376px;
    width: 315px;
    border-radius: 10px;
    background-position: right top;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
}

.item-box h4 {
    color: #fff;
    margin-top: 65px;
    padding-left: 20px;
    width: 61%;
}

.item-boximg {
    position: absolute;
    bottom: 0;
    right: -47px;
}

.cat-slide .slick-slide {
    margin-left: 27px;
}

/* the parent */
.cat-slide .slick-list {
    margin-left: -27px;
}

.section-head {
    font-size: 45px;
    color: var(--secondary);
    font-weight: 800;
    font-family: var(--nunito);
    text-transform: capitalize;
}

.section-head span {
    color: var(--primary);
}

.sec-spacing {
    padding: 130px 0;
}

.features .tab-sec .nav-tabs {
    justify-content: space-between;
}

.features .tab-sec .nav-tabs {
    border: none;
}

.features .tab-sec .nav-tabs span {
    width: 100%;
    display: block;
    color: rgba(17, 17, 17, 0.63);
    font-size: 17px;
    font-weight: 500;
    margin-top: 7px;
}

.features .tab-sec .nav-tabs .nav-link {
    box-shadow: 0 0 3px rgba(33, 97, 126, 0.25);
    border: none;
    width: 87%;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 10px;
    font-family: var(--nunito);
}

.tab-sec .nav-tabs li.nav-item {
    width: 24%;
    justify-content: center;
    display: inline-flex;
}

.tab-sec .nav-tabs .nav-item.show .nav-link,
.tab-sec .nav-tabs .nav-link.active {
    box-shadow: 0 0 24px rgba(33, 97, 126, 0.4) !important;
}

.tab-sec .nav-tabs .nav-item.show .nav-link span,
.tab-sec .nav-tabs .nav-link.active span {
    color: #111111;
    font-weight: 700;
}

.features .tab-content {
    background: var(--white);
    box-shadow: 0 0 3px rgba(33, 97, 126, 0.45);
    width: 97%;
    margin: 37px auto 0;
    min-height: 430px;
    padding: 50px;
}

.list-none {
    list-style-type: none;
}

.features .tab-pane h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.features .tab-pane ul {
    list-style-type: none;
    padding: 0;
    font-size: 14px;
}

.features .tab-pane ul li {
    padding-bottom: 14px;
}

.features .tab-pane ul li span {
    width: 23px;
    display: inline-block;
}

.addon-sec {
    background: url('../images/smart-addbg.jpg');
    background-size: cover;
}

.addon-sec .section-head {
    font-size: 51px;
    line-height: 55px;
    font-weight: 900;
}

.addon-sec .banner-btn {
    background: var(--primary);
    padding: 16px 54px;
}

.addon-sec .banner-btn:hover {
    background: var(--secondary);
}

.contains-box {
    background: rgba(33, 97, 126, 0.09);
    padding: 38px 48px;
    border-radius: 10px;
    margin-bottom: 33px;
}

.contains-box h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}
.contains-box.expanded #imageCol {
    display: none;
}

.contains-box.expanded #textCol {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.text-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.text-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.btn:focus, 
.btn-link:focus {
  border: none;
  background: none;
}



.unleash-sec .item-boxes {
    box-shadow: 0 0 3px rgba(33, 97, 126, 0.44);
    padding: 19px 22px;
    width: 100%;
    display: inline-block;
    border-radius: 10px;
    background: var(--white);
}

.your-slider a {
    text-decoration: none;
}

.unleash-sec .item-boxes h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 18px;
    margin-top: 10px;
}

.unleash-sec .item-boxes p {
    font-size: 15px;
}

.green-sec {
    position: relative;
}

.green-sec:before {
    content: '';
    background: var(--primary);
    width: 100%;
    height: 93%;
    position: absolute;
    top: 136px;
    left: 0;
    z-index: -1;
}

.rview-box {
    position: relative;
}

.rview-box .greenbox {
    background: #D7EBF3;
    border-radius: 10px;
    padding: 72px 46px;
    height: 337px;
    align-content: center;
}

.rview-box .greenbox p {
    font-size: 18px;
    line-height: 31px;
    color: #44546F;
    margin-bottom: 41px;
}

.rview-box .greenbox h6 {
    color: var(--black18);
}

.rview-box .logobox {
    background: #F2F2F2;
    width: 164px;
    height: 154px;
    align-content: center;
    justify-items: center;
    border-radius: 10px;
    position: absolute;
    bottom: -32px;
    right: -46px;
}

.client-slide .slick-slide {
    padding-bottom: 50px;
    padding-right: 59px;
}

.client-slide ul.slick-dots {
    list-style: none;
    width: 94%;
    display: inline-block;
    padding: 0;
    text-align: center;
    position: absolute;
    bottom: -14px;
    left: 0;
}

.client-slide ul.slick-dots li {
    display: inline-block;
    margin: 0 3px;
}

.client-slide ul.slick-dots li button {
    font-size: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    position: relative;
}

.client-slide ul.slick-dots li.slick-active button:after {
    content: '';
    background: var(--primary);
    width: 9px;
    height: 9px;
    position: absolute;
    top: 2.2px;
    left: 2.3px;
    margin: 0 auto;
    border-radius: 50%;
}

.trust-number {
    background: var(--primary);
    padding: 110px 0;
}

.trust-number h2 {
    font-size: 87px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
}

.trust-number p {
    color: var(--white);
    font-size: 20px;
}

.support-texts {
    background: #D7EBF3;
    padding: 36px 0 31px 0;
    width: 100%;
    display: inline-block;
    font-size: 21px;
    line-height: 41px;
    color: var(--secondary);
    font-weight: 600;
}

.support-texts img {
    margin-right: 12px;
}

.faq-sec .accordion-item {
    border: 1px solid #000;
    border-radius: 10px !important;
    margin-bottom: 30px;
    padding: 28px 17px;
    position: relative;
}

.faq-sec button.accordion-button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 19px;
    font-weight: 700;
    color: var(--secondary) !important;
    padding-bottom: 11px;
}

.faq-sec .accordion-body {
    padding: 0;
    margin-top: 13px;
}

.faq-sec .accordion-item:not(:first-of-type) {
    border-top: 1px solid #000;
}

.faq-sec button.accordion-button {
    padding: 0;
}

.faq-sec .accordion-body {
    z-index: 9;
    position: relative;
    font-size: 16px;
    line-height: 30px;
}

.faq-sec .accordion-header {
    position: relative;
    z-index: 9;
}

.faq-sec .accordion-collapse.collapse.show:before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: hsla(0, 0%, 100%, 1);
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 1) 0%, hsla(197, 54%, 90%, 1) 49%, hsla(0, 0%, 100%, 1) 100%);
    /* background: -moz-linear-gradient(90deg, hsla(0, 0%, 100%, 1) 0%, hsla(197, 54%, 90%, 1) 49%, hsla(0, 0%, 100%, 1) 100%); */
    /* background: -webkit-linear-gradient(90deg, hsla(0, 0%, 100%, 1) 0%, hsla(197, 54%, 90%, 1) 49%, hsla(0, 0%, 100%, 1) 100%); */
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#D7EBF3", GradientType=1);
    z-index: 0;
    border-radius: 10px;
}

.accordion-item.collapsed-item {
    border: none;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
    border-top: 0 !important;
}

.call-toact {
    background: url("../images/callac-backbg.png");
    background-position: center 52px;
    background-repeat: no-repeat;
    background-size: 600px;
}

.call-toact .innerdiv {
    background: url("../images/callact-bg.jpg");
    padding: 67px 0;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.call-toact .innerdiv p {
    font-size: 20px;
}

.banner-btn.call-btn {
    background: #093134;
    margin: 10px 0 0 0;
    padding-top: 19px;
    padding-bottom: 19px;
    text-transform: uppercase;
}

footer {
    background: #292929;
    padding: 73px 0 0;
    color: #fff;
}

footer p {
    line-height: 24px;
    margin-top: 11px;
    color: var(--white);
}

footer h3 {
    font-size: 20px;
    font-weight: 700;
}

footer ul {
    list-style-type: none;
    padding: 15px 0 0;
}

footer ul li {
    padding-bottom: 13px;
}

footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
}

.bottomtext {
    font-size: 14px;
    color: var(--white);
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #dddddd7b;
    margin-top: 20px;
}

ul.social-new {
    display: flex;
    width: 83%;
    padding-top: 8px;
}

ul.social-new li {
    padding-bottom: 0;
    padding-right: 30px;
}

ul.social-new a {
    background: transparent;
    /* width: 36px;
    height: 36px; */
    display: inline-block;
    text-align: center;
    /* line-height: 36px;
    border-radius: 50%; */
}

/* ul.social-new a:hover {
    background: #2280ac;
} */

.banner-arrow {
    position: absolute;
    top: 302px;
    left: 207px;
}

.dropdown-fixed-width {
    width: 900px;
    left: 50%;
    transform: translate(-38%, 58px) !important;
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 29px 20px;
    box-shadow: 0 0 12px #00000038;
    animation: meuwidth 0.1s ease-out;
}
@keyframes meuwidth {
    /* from {width: 0px;}
    to {width: 900px;} */
}


.dropdown-header {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.dropdown-item {
    padding: 10px 15px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-menu li.nav-item {
    width: 100%;
}
.dropdown-menu .nav-tabs{
    border: none !important;
}
.dropdown-menu .nav-tabs .nav-item .nav-link{
    font-size: 18px;
    color: var(--black18);
    font-weight: 700;
    width: 100%;
    text-align: left;
}
.dropdown-menu .nav-tabs .nav-item .nav-link.active{
    background: #F1F1F9;
    border: none;
    border-radius: 5px;
}
.dropdown-menu .inner-items h5,
nav .dropdown-menu .inner-items h5 a{
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
nav .dropdown-menu .inner-items h5 a:hover{
    color: var(--primary);
}
.dropdown-menu .inner-items ul{
    padding: 0;
    margin-bottom: 20px;
}
.dropdown-menu .inner-items ul li{
    padding-left: 0;
}
.dropdown-menu a{
    text-decoration: none;
}
.dropdown-menu .inner-items ul li a{
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
}
.dropdown-menu .inner-items ul li a:hover{
    color: var(--primary);
}
.industry-dropdown li.nav-link {
    width: 33%;
    display: inline-block;
}
.industry-dropdown li.nav-link a {
    position: relative;
    width: 100%;
    display: inline-block;
}
.industry-dropdown li.nav-link a:after {
    content: '';
    background: url('../images/menu-tabarrow.svg');
    width: 14px;
    height: 10px;
    position: absolute;
    background-repeat: no-repeat;
    right: 0;
    top: 7px;
}
.banner-hero {
    background: url('../images/product-herobg.jpg');
    background-position: center;
    background-size: cover;
    height: 560px;
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.ibanner-hero {
    background: url('../images/industry-herobg.jpg');
    height: 100%;
}

.banner-hero .hero-image {
    position: absolute;
    right: 0;
    width: auto;
}

.banner-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #172B4D;
    line-height: 59px;
}

.banner-hero p {
    font-size: 20px;
    font-weight: 500;
    color: #172B4D;
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 23px rgb(0 0 0 / 17%);
    overflow: hidden;
    min-height: 437px;
}

.feature-card .fc-imgs img {
    height: 232px;
    width: 100%;
    object-fit: cover
}

.feature-card .fc-dsc {
    padding: 0 29px;
    margin-top: 20px;
}

.feature-card .fc-dsc h4 {
    font-size: 26px;
    font-weight: 700;
    color: #172B4D;
    margin-bottom: 11px;
}

.feature-cardb.feature-card .fc-imgs {
    text-align: center;
}

.feature-cardb.feature-card .fc-imgs img {
    height: auto;
    width: 91%;
}

.lightgreen {
    background: #e2f6f4;
}

.lightpink {
    background: #F4E5FF;
}

.lightcream {
    background: #FEF1E9;
}

.hero-list ul {
    list-style: none;
    display: inline-flex;
    padding: 0;
    align-content: center;
}

.hero-list ul li {
    display: inline-block;
    margin: 0 22px;
    font-size: 20px;
    align-content: center;
    font-weight: 500;
}

.pricing-card {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 20px;
    transition: box-shadow 0.3s ease-in-out;
    background: #fff;
    height: 100%;
}

.pricing-card:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-weight: bold;
    font-size: 1.25rem;
    color: #172B4D;
    font-size: 19px;
    text-transform: uppercase;
    border-bottom: 1px solid #AEAEAE;
    padding-bottom: 17px;
    padding-top: 7px;
    margin-bottom: 22px;
}

p.price {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    font-family: var(--nunito);
    margin-bottom: 0;
}

p.price span {
    font-size: 18px;
}

p.price-save {
    font-size: 12px;
    font-weight: 400;
}

.btn-buy {
    color: white;
    border: none;
    padding: 11px 20px;
    font-weight: 500;
    border-radius: 8px;
    background: rgb(33, 97, 126);
    background: linear-gradient(46deg, rgba(33, 97, 126, 1) 0%, rgba(22, 150, 208, 1) 100%);
}

.btn-buy:hover {
    color: #fff;
    background: rgb(33, 97, 126);
    background: linear-gradient(46deg, rgba(22, 150, 208, 1) 0%, rgba(33, 97, 126, 1) 100%);
}

.billed-txt {
    font-size: 11px;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 10px;
    color: #34383F;
}

.feature-list li::before {
    content: '✔';
    color: #28a745;
    margin-right: 10px;
}

.banner-pricing {
    height: auto;
}

.leading-sec {
    background: rgba(33, 97, 126, 0.09);
    padding: 50px 40px 50px 90px;
    border-radius: 8px;
}

.leading-sec ul {
    list-style-type: none;
    padding-left: 0;
}

.leading-sec ul li {
    margin-bottom: 8px;
}

.leading-sec ul li img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.w-80 {
    width: 90%;
}

.about-banner {
    height: 500px;
    width: 100%;
    display: inline-block;
    background-image: url('../images/about-bg.jpg');
    color: var(--white);
}

.about-banner h3 {
    font-size: 36px;
    line-height: 57px;
    font-weight: 400;
}

.secnd-sec p {
    font-size: 22px;
    line-height: 35px;
}

#typing::after {
    content: "|";
    /* Cursor character */
    display: inline-block;
    margin-left: 2px;
    font-weight: 300;
    animation: blink 0.7s steps(2, start) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
.whattime-sec ul{
    text-align: left;
    margin-top: 25px;
}
.whattime-sec ul li{
    padding: 12px 0;
}
.whattime-sec ul li a{
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
}
.whattime-sec ul li a:hover{
    color: var(--primary);
}
.form-control {
    background: rgba(0, 80, 156, 0.1);
    border: none;
    padding-left: 18px;
    font-size: 17px;
}
input.form-control {
    height: 57px;
    border-radius: 7px;
}
textarea.form-control{
    padding-top: 15px;
}
.address-bar a{
    color: #44546F;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    margin-top: 5px;
    display: block;
    line-height: 28px;
}
.address-bar .row{
    margin-bottom: 40px;
    margin-top: 10px;
}
.maps{
    display: inline-block;
    width: 100%;
    margin-top: 130px;
    overflow: hidden;
    height: 100%;
    margin-bottom: -13px;
}
.newslie{
    position: relative;
    border-bottom: 1px solid #BDBDBD;
    margin-bottom: 30px;
}
.newslie .date{
    background: rgb(33,97,126);
    background: linear-gradient(46deg, rgba(33, 97, 126, 1) 0%, rgba(22, 150, 208, 1) 100%);
    width: 74px;
    height: 74px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    align-content: center;
    position: absolute;
    top: 7px;
    right: 1px;
}
.newslie img{
    border-radius: 10px;
    width: 100%;
}
.newslie .date span{
    display: block;
    font-size: 11px;
}
.newslie .date span.dtitle {
    font-size: 21px;
    font-weight: 600;
}
.newslie h3{
    font-size: 34px;
    font-weight: 700;
    margin-top: 17px;
    margin-bottom: 27px;
    color: var(--secondary);
}
header.main-header.sticky-head {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
}
.newslie a{
    text-decoration: none;
}
.newslie:last-child {
    border-bottom: none;
}
.promo-cards {
    background: #A9CEDF;
    padding: 50px;
    border-radius: 7px;
    text-align: center;
}
.promo-cards h2{
    font-size: 28px;
    font-weight: 600;
    color: #000;
    line-height: 41px;
    margin-bottom: 40px;
}
.feature-news ul{
    /* list-style-image: url(../images/attached-icon.png); */
    list-style: none;
}
.feature-list.feature-news li::before{
    content: '';
    background: url(../images/attached-icon.png);
    width: 10px;
    height: 21px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -22px;
    top: 7px;
}
.feature-news ul li{
    margin-bottom: 20px;
    color: #34383F;
    position: relative;
}
.feature-news ul li a{
    text-decoration: none;
    color: #000;
}
.feature-news h3{
    color: var(--secondary);
    font-size: 30px;
    font-weight: 700;
    margin-top: 53px;
    margin-bottom: 20px;
}
.industries .row:nth-child(2n+2){
    flex-direction: row-reverse;
}
.industries img{
    width: 100%;
}
.industry-dropdown.simple-dropdown{
    width: 270px;
}
.industry-dropdown.simple-dropdown ul li{
    width: 100%;
}

.dropdown-toggle::after{
    border: none;
    background: url('../images/down-caret.svg');
    vertical-align: .055em;
    width: 9px;
    height: 6px;
}

.layer-in {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 10px #ddd;
  transition: all 0.3s ease;
  max-width: 1400px;
  margin: 0 auto 20px auto;
  cursor: pointer;
  padding: 13px 20px;
}

.layer-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.layicon img {
  width: 40px;
  height: auto;
}

.layihead h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.layer-content {
  max-height: 0;
  overflow: hidden;
  margin-top: 10px;
  transition: max-height 0.4s ease;
}

.layer-in.active .layer-content {
  max-height: fit-content;
  
}


.layers-sec .layer-in:hover{
    background: #d7ebf3;
}

.layers-sec .layer-in .layicon img{
    width: 60px;
}
.layers-sec .layer-in .layihead h3{
    font-family: var(--nunito);
    font-weight: 700;
    color: var(--secondary);

}
.layhide{
    display: flex;
    /* width: 0; */
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease-in-out;
    /* visibility: hidden; */
    /* overflow: hidden; */
    opacity: 0;
    
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.layer-in:hover .layhide{
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
    visibility: visible;
    opacity: 1;
}

.layer1-content ul{
    padding: 0;
    list-style: none;
}
.layer1-content ul li{
    display: inline-block;
    padding-right: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}
.layer1-content ul li:before {
    content: '●';
    position: absolute;
    left: -12px;
    font-size: 12px;
    top: 15%;
}


.contact-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
  }
  
  .left-panel,
  .right-panel {
    flex: 1;
    padding: 6%;
  }
  
  .left-panel {
    background-color: #22627F;
    color: white;
    flex-direction: column;
    justify-content: center;
  }
  
  .left-panel h3 {
    font-size: 23px;
    font-weight: 800;
  }
  
  .left-panel h1 {
    font-size: 49px;
    font-weight: 1000;
  }
  
  .left-panel p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #F1F1F9;
  }
  
  .book-meeting {
    padding: 12px 24px;
    background: linear-gradient(to right, #2f6a7e, #093134);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .book-meeting:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  }

  .right-panel {
    background: linear-gradient(to right, #a7d5e7, #7dcdec);
    flex-direction: column;
    justify-content: center;
    width: 60%;
  }
  
  .right-panel h2 {
    font-weight: 700;
    margin-bottom: 10%;
    color: white;
  }
  
  .contact-form {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .input-group {
    display: flex;
    gap: 20px;
  }
  
  .input-group input {
    flex: 1;
    padding: 16px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    outline: none;
    background-color: white;
  }
  
  textarea {
    width: 100%;
    height: 200px;
    padding: 16px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    outline: none;
    resize: none;
    background-color: white;
  }
  
  .submit-btn {
    margin-top: 10px;
    width: fit-content;
    padding: 12px 24px;
    background: linear-gradient(to right, #23647A, #093134);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

    .submit-btn:disabled {
    background: #cccccc;
    color: #666666;
    box-shadow: none;
    opacity: 0.8;
    transition: none;
        }

  .submit-btn:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  }

  .is-invalid {
  border: 1px solid red;
}


.support-cards .card {
  min-height: 180px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.support-cards .card:hover {
  transform: scale(1.10); /* Zoom suave */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Más sombra para resaltar */
}

  .support-cards .card-body {
  padding: 1rem; /* más espacio interno */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
  text-align: center;
}

  .support-cards .card-title {
    font-weight: 700; /* Más grueso */
    font-size: 1.2rem;
  }

  .support-cards .card-text a {
    text-decoration: underline;
  }

.ihero-image img{
    display: none;
}

@media screen and (max-width:767px) {
    .layhide{
        display: inline-block;
        visibility: visible;
        opacity: 1;
    }

    .contains-box img {
        width: 100%;
    }
    .ibanner-hero .ihero-image img{
        width: 100%;
    }
    .industries img{
        width: 95%;
    }
    
    .newslie h3{font-size: 23px;}
    .banner-slider h1 {
        font-size: 31px;
        line-height: 40px;
    }

    .banner-slider p {
        font-size: 16px;
        line-height: 26px;
        width: 98%;
    }

    .banner-btn2 {
        padding: 9px 23px;
        font-size: 14px;
        border-radius: 7px;
    }

    .banner-btn {
        font-size: 14px;
        padding: 9px 30px;
        border-radius: 7px;
        margin-right: 10px;
    }

    .section-head {
        font-size: 35px;
        padding: 0 20px;
    }

    .sec-spacing {
        padding: 49px 0;
    }

    .tab-sec .nav-tabs li.nav-item {
        width: 50%;
        margin-bottom: 20px;
    }

    .features .tab-content {
        padding: 27px;
    }

    .addon-sec .section-head {
        font-size: 35px;
        line-height: 44px;
    }

    section .banner-btn {
        margin: 0;
    }

    .contains-box .btn img {
        width: 15px;
    }

    .unleash-sec .item-boxes img {
        width: 100%;
    }

    .unleash-sec .item-boxes {
        margin-bottom: 20px;
    }

    .client-slide .slick-slide {
        padding-right: 0;
    }

    .rview-box .greenbox {
        height: auto;
    }

    .trust-number {
        padding: 48px 0;
        text-align: center;
    }

    .trust-number h2 {
        font-size: 63px;
    }

    .faq-sec .accordion-item {
        margin-bottom: 12px;
    }

    footer {
        text-align: center;
    }

    ul.social-new {
        display: inline-flex;
        width: auto;
    }

    nav.justify-content-center {
        justify-content: space-between !important;
    }

    nav button.btn.btn-primary {
        align-self: flex-start;
        background: #fff;
        border: none;
        padding: 0;
        margin-top: 6px;
    }

    nav .justify-content-end {
        justify-content: center !important;
    }

    .banner-hero h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .banner-hero h1 br {
        display: none;
    }

    .banner-hero .hero-image {
        position: static;
    }

    .rview-box .logobox {
        right: 0;
        width: 100px;
        height: 100px;
    }

    header li.nav-item {
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
        padding-top: 5px;
    }

    header li.nav-item:last-child {
        border-bottom: none;
    }

    header .navbar-nav .nav-link {
        font-size: 20px;
        font-weight: 500;
        color: var(--secondary);
    }
    .industries .section-head{
        font-size: 27px;
        padding: 0 0px;
        margin-top: 15px;
    }

    
      
}