/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
}

body::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: "mobile";
    display: none;
}

@media only screen and (min-width: 1050px) {
    body::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: "desktop";
    }
}

thead th {
    color: white !important;
}

a {
    color: #267481;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

section {
    background-color: var(--color-background);
    padding: 60px 0;
    overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
}

.metrics {
    background-image: url("./assets/img/spyral.svg");
    background-size: 10%;
    background-repeat: no-repeat;
    background-position: center;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.section-title h2:before,
.section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    display: inline-block;
}

.section-title h2:before {
    margin: 0 15px 10px 0;
}

.section-title h2:after {
    margin: 0 0 10px 15px;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --color-box-background: rgba(var(--color-default-rgb), 0.05);
    color: var(--color-default);
    background-color: var(--color-background);
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid rgba(var(--color-default-rgb), 0.1);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: var(--color-box-background);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
}

/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
    --color-background: #ffffff;
    --color-inverse: #ffffff;
    background-color: var(--color-background);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo img {
    /* max-height: 40px; */
    max-width: 150px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.header .logo span {
    font-size: 24px;
    font-weight: 600;
    padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    background: var(--color-primary);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    background: rgba(var(--color-primary-rgb), 0.85);
}

/* 
@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
} */

/* Global Header on page scroll
  ------------------------------*/
.scrolled .header {
    --color-background: #ffffff;
    --color-secondary: #444444;
    --color-nav: #444444;
    --color-nav-hover: #e84545;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
  ------------------------------*/
section {
    scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
    section {
        scroll-margin-top: 66px;
    }
}

/* Home Page Custom Header
  ------------------------------*/
.index-page .header {
    --color-background: rgba(255, 255, 255, 0);
    --color-secondary: #ffffff;
    --color-nav: rgba(255, 255, 255, 0.515);
    --color-nav-hover: #ffffff;
}

/* Home Page Custom Header on page scroll
  ------------------------------*/
.index-page.scrolled .header {
    --color-background: #ffffff;
    --color-secondary: #444444;
    --color-nav: #444444;
    --color-nav-hover: #d83535;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--color-nav);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--font-secondary);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--color-nav-hover);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--color-nav-dropdown-background);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--color-nav-dropdown);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--color-nav-dropdown-hover);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: var(--color-nav-dropdown-background);
        box-shadow: 0px 0px 20px rgba(var(--color-default-rgb), 0.1);
        display: block;
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--color-nav-dropdown);
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: var(--color-nav-dropdown-hover);
    }

    .navmenu .megamenu:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dd-box-shadow {
        box-shadow: 0px 0px 30px rgba(var(--color-default-rgb), 0.15);
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--color-nav);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--color-nav-mobile-background);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(var(--color-default-rgb), 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--color-nav-dropdown);
        padding: 10px 20px;
        font-family: var(--font-secondary);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: rgba(var(--color-primary-rgb), 0.1);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--color-primary);
        color: var(--color-inverse);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--color-nav-dropdown-hover);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--color-primary);
        color: var(--color-inverse);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul,
    .navmenu .megamenu ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--color-nav-dropdown-background);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul,
    .navmenu .megamenu ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active,
    .navmenu .megamenu>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/

#contact {
    background-image: url("../img/background_blue.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 40px;
    bottom: 40px;
    z-index: 99999;
    background-color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: rgba(var(--color-primary-rgb), 0.8);
    color: #ffffff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/

@keyframes fadeIn {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #081b21;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#overlay #logo {
    width: 50%;
    height: auto;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
.footer {
    --color-background: #f4f4f4;
    --color-box-background: #eaeaea;
    color: var(--color-default);
    background-color: var(--color-background);
    font-size: 14px;
    padding-bottom: 50px;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 0;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--color-secondary);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--font-primary);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(var(--color-default-rgb), 0.5);
    font-size: 16px;
    color: rgba(var(--color-default-rgb), 0.5);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.footer h4 {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: rgba(var(--color-default-rgb), 0.8);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--color-primary);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: var(--color-box-background);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
  # Home Page
  --------------------------------------------------------------*/
/* Hero Section - Home Page
  ------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero .container-fluid {
    padding: 4rem 10rem;
}

.hero #contactForm {
    width: 75%;
    border-radius: 20px;
    margin-top: 1rem;
}

.hero #responsive-facial-img {
    display: none;
}

@media (max-width: 768px) {
    .hero .container-fluid {
        padding: 4rem 1rem;
    }

    .hero #contactForm {
        width: 90%;
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 2rem !important;
    }

    .hero p {
        font-size: 1.2rem !important;
    }

    .hero #responsive-facial-img {
        display: block;
    }

    .hero #facial-img {
        display: none;
    }

}

/*--------------------------------------------------------------
  # Services section
  --------------------------------------------------------------*/

#services #appointment {
    border-radius: 10px;
    height: 100%;
    background-color: #1aa9d0;
    transition: background-color 0.5s ease;
}

#services #appointment img {
    transition: transform 0.5s ease;
}

#services #appointment:hover {
    background-color: #3781a1 !important;
}

#services #appointment:hover img {
    transform: rotate(-90deg);
}


/*--------------------------------------------------------------
  # Resources section
  --------------------------------------------------------------*/

#resources {
    background-image: url("../img/resources_wallpaper.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.resource-card {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 14rem;
    padding: 1rem;
    cursor: pointer;
}

.resource-card .card-body {
    flex: 0 1 auto;
}

.resource-card img {
    width: 40%;
}

.resource-card h5 {
    color: #081b21;
}

.resource-card:hover {
    border: red solid 1px !important;

}

@media (max-width: 768px) {

    #resources {
        height: auto !important;
        padding-bottom: 5rem !important;
    }

    .resource-card {
        margin: 3rem 0;
        width: 300px;
        min-height: 200px;
    }

    #resources .row:first-of-type {
        margin-bottom: 0 !important;
    }
}

/*  Benefits section */

#benefits {
    min-height: 100vh;
    background-image: url("../img/background_blue.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#benefits .title>div {
    width: 80%;
}

@media (max-width: 768px) {

    #benefits .title>div {
        width: 100% !important;
    }

    #benefits .title>div h1 {
        font-size: 2.5rem !important;
    }

    #benefits .col-md-4 {
        margin-bottom: 2.5rem !important;
    }

}

/* Clients */

#clients .col-md-3 {
    padding: .5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#clients img {
    max-width: 70%;
    max-height: auto !important;
}

@media (max-width: 768px) {

    #clients .col-md-3 {
        padding: 1.5rem 1.5rem !important;
    }

    #clients img {
        max-width: 100% !important;
    }

}


/* Footer */

footer {
    background: #081b21;
    padding: 30px 0px;
    text-align: center;
}

footer #social_media a{
    color: #c8c8c8;
    text-decoration: none;
    margin: 1rem 4rem;
    font-size: 2.5rem;
}

footer #social_media a:hover{
    color: white;
}

footer #contacts a{
    color: #c8c8c8;
    text-decoration: none;
    margin: 1rem 4rem;
    font-size: 1.5rem;
    text-decoration: none;
}

footer #contacts a:hover{
    color: white;
}

footer #terms {
    color: #c8c8c8 !important;
}

footer #terms a{
    text-decoration: none !important;
    color: #c8c8c8 !important;
}

footer #terms a:hover {
    color: white !important;
}

@media (max-width: 768px) {

    footer {
        padding: 4rem !important;
    }

    footer #social_media a{
        margin: 1rem 2rem !important;
    }

    footer #contacts {
        flex-flow: column !important;
    }

    footer #terms {
        flex-flow: column !important;
    }

    footer #terms a{
        margin-top: 50px !important;
    }

}


/*  */
#divider {
    width: 100%;
    min-height: 100vh;
    background-image: url("../img/background.jpg");
    background-repeat: repeat;
    background-position: center;
    background-size: 100%;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* @media only screen and (min-width: 1050px) {
    body[data-hijacking="on"] {
        overflow: hidden;
    }
} */

.cd-section {
    min-height: 100vh;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#about {
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#about #main_view_vertical {
    display: none;
}

#about #title-vertical {
    display: none !important;
}

@media (max-width: 768px) {
    #about #main_view_vertical {
        display: block !important;
    }

    #about #main_view {
        display: none !important;
    }

    #about span{
        font-size: 2rem !important;
    }

    #about img.inner1{
        margin-top: 0 !important;
        transform: rotate(15deg) !important;
        width: 3rem !important;
        height: 3rem !important;
    }

    #about img.inner2{
        height: 3rem !important;
        margin-top: 0 !important;
        margin-left: 1rem !important;
    }

    #about #title-vertical {
        display: block !important;
    }

    #about #title-horizontal {
        display: none !important;
    }

}


.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 3rem;
    background-color: #25D366;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #fff;
    z-index: 1000;
    transition: transform 0.2s;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
}

.whatsapp-icon:hover {
    transform: scale(1.2);
    color: #fff;
}

@media only screen and (min-width: 768px) {
    .cd-section h2 {
        font-size: 4rem;
        font-weight: 300;
    }

    [data-hijacking="on"] .cd-section {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    [data-hijacking="on"] .cd-section>div {
        visibility: visible;
    }

    [data-hijacking="off"] .cd-section>div {
        opacity: 0;
    }

    [data-animation="rotate"] .cd-secti68on {
        -webkit-perspective: 1800px;
        -moz-perspective: 1800px;
        perspective: 1800px;
    }

    [data-hijacking="on"][data-animation="rotate"] .cd-section:not(:first-of-type) {
        -webkit-perspective-origin: center 0;
        -moz-perspective-origin: center 0;
        perspective-origin: center 0;
    }

    [data-animation="scaleDown"] .cd-section>div,
    [data-animation="gallery"] .cd-section>div,
    [data-animation="catch"] .cd-section>div {
        box-shadow: 0 0 0 rgba(25, 30, 46, 0.4);
    }

    [data-animation="opacity"] .cd-section.visible>div {
        z-index: 1;
    }
}

@media only screen and (min-width: 1050px) {
    .cd-section:first-of-type>div::before {
        display: none;
    }
}

@media only screen and (min-width: 1050px) {
    .cd-section>div.container {
        position: fixed;
        top: 0;
        width: 100%;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    [data-hijacking="on"] .cd-section>div {
        position: absolute;
    }

    [data-animation="rotate"] .cd-section>div {
        -webkit-transform-origin: center bottom;
        -moz-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        -o-transform-origin: center bottom;
        transform-origin: center bottom;
    }
}

@media only screen and (max-device-width: 768px) {
    .cd-section .card {
        /* margin-top: 10rem !important; */
        padding: 1.2rem !important;
    }

    header#header .container-fluid {
        padding: 0 0.5rem !important;
    }

    #hero .container .row .col-md-7 h1 {
        font-size: 4rem !important;
    }

    #hero #requestDemo {
        width: 100% !important;
        margin-bottom: 5rem;
    }

    #services #blue_waves {
        margin-left: 0 !important;
    }

    #integrations img {
        width: 95% !important;
        margin-bottom: 3rem !important;
    }

    #title_video {
        margin-top: 3rem !important;
    }

    #contact {
        padding: 10rem 1rem !important;
    }

    #contact #text_contact {
        padding: 0 1.2rem !important;
        margin-bottom: 0 !important;
    }

    #contact #contactForm {
        padding: 0 1.2rem !important;
    }

    #contactWays .col-md-3 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    #formContact #firstname {
        margin-bottom: 1.2rem !important;
    }

    #social {
        margin-top: 1.5rem !important;
    }

    #footer_links {
        flex-direction: column !important;
    }

    #contact_form {
        padding: 0 !important;
    }

    #contact_form #first_name {
        margin-bottom: 1rem !important;
    }

    .scroll-top {
        left: 15px !important;
        bottom: 15px !important;
    }

}

@media only screen and (min-width: 1050px) {
    .cd-vertical-nav {
        display: block;
    }
}

.btn-custom-light {
    transition: background-color 0.5s ease;
}

.btn-custom-light img {
    transition: transform 0.5s ease;
}

.btn-custom-light:hover {
    background-color: #3781a1 !important;
}

.btn-custom-light:hover img {
    transform: rotate(-90deg);
}