:root{
    --green: #88CDC7;
    --green-light: #EDF5F6;
    --gray-blue: #575A86;
    --lavender-blue: #5C64D0;
    --lavender-light:#F7F6FF;
    --gray-bone: #F8F6F3;
    --white-mist:#F9F6F6;
    --gray-brown: #777272;
    --gray-pink:#B1A7A7;
    --blue-ice: #F1F4FF;
    --ash-blue:#B2B4BE;
    --accent:#4499A1;
}
/**/
html{
    scroll-padding-top: 4rem;
}
a{
    text-decoration: none;
}
/**/

/*google fonts*/
.nunito-sans-drapp-normal {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
            "wdth" 100,
            "YTLC" 500;
}
.nunito-sans-drapp-semibold {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
            "wdth" 100,
            "YTLC" 500;
}
.nunito-sans-drapp-extrabold {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings:
            "wdth" 100,
            "YTLC" 500;
}
.poppins-regular, p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
/*google fonts*/

/**/
p, .text{
    color: var(--gray-blue);
}
/**/

.txt-color {
    color: var(--gray-brown);
}

/*Fancy*/
.link-fancy::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 5%);
    transition: opacity 350ms;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .7;
}
.link-fancy i{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 48px;
    height: 48px;
    margin: auto;
    transition: opacity 350ms;
    opacity: .7;
}
.link-fancy:hover::after{
    opacity: 0;
}
.link-fancy:hover i{
    opacity: 1;
}
/*Fancy*/

/*Menú*/
#main-menu{
    position: fixed;
    height: 100%;
    right: -280px;
    z-index: 2;
    width: 280px;
    top: 0;
    transition: right ease-in 300ms;
}
#main-menu.open{
    right: 0;
}
#main-menu > span{
    background-color: rgb(0 0 0 / 25%);
    position: fixed;
    height: 100%;
    width: calc(100% - 280px);
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms;
}
#main-menu.show-overlay > span{
    opacity: 1;
    pointer-events: initial;
}
/*Menú*/

/*utilities*/
.text-green{
    color: var(--green);
}
.text-gray-brown{
    color: var(--gray-brown);
}
.text-gray-pink{
    color: var(--gray-pink);
}
.text-accent{
    color: var(--accent);
}
.bg-green{
    background-color: var(--green);
}
.bg-green-light{
    background-color: var(--green-light);
}
.bg-gray-blue{
    background-color: var(--gray-blue);
}
.bg-lavender-blue{
    background-color: var(--lavender-blue);
}
.bg-lavender-light{
    background-color: var(--lavender-light);
}
.bg-white-mist{
    background-color: var(--white-mist);
}
.bg-gray-bone{
    background-color: var(--gray-bone);
}
.bg-blue-ice{
    background-color: var(--blue-ice);
}
.bg-accent{
    background-color: var(--accent);
}
.bg{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.border-img{
    border: 1px solid var(--ash-blue);
}
.custom-btn{
    border:1px solid transparent;
}
.custom-btn:hover{
    background-color: var(--bs-secondary)!important;
    box-shadow: none;
}
.custom-shadow{
    box-shadow: 0 1px 4px rgb(0 0 0 / 20%);
}
.link:hover, .link:hover i{
    text-decoration: underline;
    color:var(--bs-secondary);
}
.ratio-19-9{
    aspect-ratio: 19/9;
    object-fit: contain;
}
/*utilities*/

/*owl carrousel*/
.item-owl{
    min-height: 70vh;
}
.item-owl > div{
    z-index: 1;
}
.item-owl::before{
    background-color: rgb(0 0 0 / 40%);
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .85;
}
.owl-theme .owl-nav.disabled+.owl-dots{
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
}
.owl-theme .owl-dots .owl-dot span{
    background-color: var(--bs-light);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: var(--bs-primary);
}
.owl-theme .owl-dots .owl-dot.active span{
    width: 1.5rem;
}
.owl-carousel .owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    margin: auto;
}
.owl-theme .owl-nav [class*=owl-]{
    position: absolute;
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 50rem;
    background-color: var(--bs-white)!important;
    border: 1px solid var(--accent)!important;
    bottom: -1rem;
}
.owl-theme .owl-nav [class*=owl-] span{
    color: var(--accent);
    font-size: 2rem;
    text-align: center;
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 6px;
    left: 0;
}
.owl-theme .owl-nav [class*=owl-]:hover{
    background-color: var(--bs-primary)!important;
}
.owl-theme .owl-nav [class*=owl-]:active{
    outline: 1px dotted var(--gray-blue);
}
.owl-theme .owl-nav [class*=owl-]:hover span{
    color: var(--bs-white);
}
.owl-carousel .owl-nav button.owl-prev{
    left: -20px;
}
.owl-carousel .owl-nav button.owl-next{
    right: 0;
}
.text-limit{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 48px;
}

/*New*/
.owl-carousel .item-new img{
    width: 100%;
    height: 100%;
}
/*New*/

/*Testimonials*/
.owl-carousel#owl-testimonios .owl-dots{
    float: left;
    height: 40px;
    display: flex;
    align-items: end;
    margin-top: 1.5rem;
}
.owl-carousel#owl-testimonios .owl-nav{
    float: right;
    margin-top: 1.5rem;
    position: static;
    height: auto;
    width: auto;
    display: flex;
    gap: 1rem;
}
.owl-theme#owl-testimonios .owl-nav [class*=owl-]{
    position: relative;
    top: 0;
    left: 0;
    border: 0!important;
}
.owl-theme#owl-testimonios .owl-dots .owl-dot:not(.active) span{
    background-color: var(--ash-blue);
}
button.play{
    bottom: 1rem;
    right: 1.7rem;
}
button.play i{
    top: 1px;
    left: 1px;
}
.icon-linkedin:hover svg{
    fill: var(--bs-primary);
}
/*Testimonials*/

.whatsapp {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
}
.whatsapp-icon {
    margin-top:13px;
}

/*owl carrousel*/

/*Mobile*/
@media (width >= 768px){
    #utilities{
        width: 100%;
    }
    #btn-prev,
    #btn-next{
        width: 40px;
        height: 40px;
        top: 5px;
    }
    #main-menu{
        position: static;
        width: 100%;
        height: auto;
    }
    #main-menu.show-overlay > span{
        display: none;
    }
    .owl-carousel .item-new img{
        width: 100px;
        height: 100px;
    }
}
/*Mobile*/