.elementor-37 .elementor-element.elementor-element-4a0fa970{--display:flex;--min-height:77px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:5%;}.elementor-37 .elementor-element.elementor-element-4a0fa970:not(.elementor-motion-effects-element-type-background), .elementor-37 .elementor-element.elementor-element-4a0fa970 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-20a0d4d );}.elementor-37 .elementor-element.elementor-element-4a0fa970.e-con{--align-self:center;--flex-grow:0;--flex-shrink:1;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-37 .elementor-element.elementor-element-4a0fa970{--justify-content:space-between;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--flex-wrap:wrap;}}@media(max-width:767px){.elementor-37 .elementor-element.elementor-element-4a0fa970{--min-height:70px;--gap:15px 15px;--row-gap:15px;--column-gap:15px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-a3114d8 */html.tv-cookie-consent #tv-cookie-banner{
    display:none !important;
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-4ca62fc *//*==========================================
ROOT
==========================================*/

:root{

    --primary:#1D6DF2;
    --secondary:#FF6B00;

    --dark:#0F172A;
    --text:#334155;
    --light:#F8FAFC;

    --white:#FFFFFF;

    --radius:22px;

    --shadow:
        0 15px 45px rgba(15,23,42,.08);

    --transition:.35s ease;

    --navbar-height:82px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:"Inter",sans-serif;
    background:#fff;
    color:var(--dark);

}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*==========================================
NAVBAR WRAPPER
==========================================*/

.navbar-wrapper{

    position:fixed;

    top:25px;
    left:0;

    width:100%;

    display:flex;
    justify-content:center;

    z-index:9999;

    transition:.35s ease;

}

/*==========================================
NAVBAR
==========================================*/

.navbar{

    width:min(1380px,92%);

    height:var(--navbar-height);

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(20px);

    border-radius:24px;

    border:1px solid rgba(29,109,242,.08);

    box-shadow:var(--shadow);

    padding:0 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*==========================================
LOGO
==========================================*/

.logo{

    display:flex;
    align-items:center;

}

.logo img{

    width:140px;

    height:auto;

    display:block;

}

/*==========================================
MENU
==========================================*/

.nav-links{

    display:flex;
    align-items:center;

    gap:38px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    color:var(--dark);

    font-size:15px;

    font-weight:600;

    transition:.3s;

    display:flex;

    align-items:center;

    gap:8px;

    position:relative;

}

/* underline */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:3px;

    background:var(--primary);

    border-radius:20px;

    transition:.35s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a:hover::after{

    width:100%;

}

/* active */

.nav-links a.active{

    color:var(--primary);

}

.nav-links a.active::after{

    width:100%;

}

/*==========================================
RIGHT SIDE
==========================================*/

.navbar-right{

    display:flex;

    align-items:center;

    gap:18px;

}

/*==========================================
LANGUAGE
==========================================*/

.language-switcher{

    position:relative;

}

.language-btn{

    border:none;

    background:#F8FAFC;

    border-radius:14px;

    padding:12px 16px;

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

    transition:.3s;

    font-size:14px;

    font-weight:600;

    color:var(--light);

}

.language-btn:hover{

    background:#EEF4FF;

}

/*==========================================
DROPDOWN
==========================================*/

.language-menu{

    position:absolute;

    top:60px;
    right:0;

    width:170px;

    background:#fff;

    border-radius:16px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    overflow:hidden;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.3s;
    padding: 18px;

}

.language-switcher:hover .language-menu{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

.language-menu button{

    width:100%;

    background:none;

    border:none;

    padding:14px 18px;

    text-align:left;

    cursor:pointer;

    transition:.25s;

    font-size:14px;

}

.language-menu button:hover{

    background:#F5F8FF;

}

/*==========================================
LANGUAGE MENU OPEN
==========================================*/

.language-menu.open{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/*==========================================
CTA
==========================================*/

.cta-btn{

    background:var(--secondary);

    color:#fff;

    padding:15px 24px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    transition:.35s;

    box-shadow:

    0 10px 25px rgba(255,107,0,.25);

}

.cta-btn:hover{

    transform:translateY(-3px);

    box-shadow:

    0 18px 40px rgba(255,107,0,.35);

}

/*==========================================
DESKTOP DROPDOWN
==========================================*/

.dropdown{

    position:relative;

}

.dropdown-menu{

    position:absolute;

    top:60px;
    left:0;

    width:220px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 25px 50px rgba(0,0,0,.08);

    padding:10px;

    display:flex;

    flex-direction:column;

    gap:5px;

    opacity:0;

    visibility:hidden;

    transform:translateY(12px);

    transition:.35s;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu a{

    padding:13px 15px;

    border-radius:12px;

}

.dropdown-menu a:hover{

    background:#F5F8FF;

}

/*==========================================
HAMBURGER

(hidden for desktop)

==========================================*/

.hamburger{

    display:none;

}


/*==========================================
STICKY NAVBAR
==========================================*/

.navbar-wrapper.scrolled{

    top:12px;

}

.navbar-wrapper.scrolled .navbar{

    height:72px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(28px);

    box-shadow:
        0 18px 45px rgba(15,23,42,.12);

}

/*==========================================
MOBILE MENU
==========================================*/

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:100%;
    max-width:420px;

    height:100vh;

    background:#ffffff;

    z-index:99999;

    display:flex;

    flex-direction:column;

    padding:35px;

    transition:.45s ease;

    overflow-y:auto;

}

.mobile-menu.active{

    right:0;

}

/*==========================================
MOBILE HEADER
==========================================*/

.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:45px;

}

.mobile-header img{

    width:180px;

}

.close-menu{

    border:none;

    background:#F1F5F9;

    width:46px;
    height:46px;

    border-radius:50%;

    cursor:pointer;

    font-size:20px;

}

/*==========================================
MOBILE LINKS
==========================================*/

.mobile-menu ul{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.mobile-menu ul li a{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 20px;

    border-radius:16px;

    color:var(--dark);

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.mobile-menu ul li a:hover{

    background:#EEF4FF;

    color:var(--primary);

    transform:translateX(8px);

}

/*==========================================
MOBILE LANGUAGE
==========================================*/

.mobile-language{

    margin-top:35px;

}

.mobile-language button{

    width:100%;

    border:none;

    background:#F8FAFC;

    border-radius:16px;

    padding:16px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-weight:600;

}

.mobile-language{

    position:relative;

}

.mobile-language .language-menu{

    position:static;

    width:100%;

    margin-top:12px;

    opacity:0;

    visibility:hidden;

    transform:none;

    max-height:0;

    overflow:hidden;

    padding:0;

    transition:
        max-height .35s ease,
        opacity .35s ease,
        padding .35s ease;

}

.mobile-language .language-menu.open{

    opacity:1;

    visibility:visible;

    max-height:200px;

    padding:12px;
    
    display: flex;
    
    flex-direction: row;
    
    justify-content: space-between;

}

/*==========================================
MOBILE CTA
==========================================*/

.mobile-cta{

    margin-top:30px;

    display:flex;

    justify-content:center;

    align-items:center;

    height:58px;

    background:var(--secondary);

    color:#fff;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.mobile-cta:hover{

    transform:translateY(-2px);

}

/*==========================================
OVERLAY
==========================================*/

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(15,23,42,.45);

    backdrop-filter:blur(6px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==========================================
HAMBURGER
==========================================*/

.hamburger{

    width:48px;

    height:48px;

    border:none;

    background:#F8FAFC;

    border-radius:14px;

    display:none;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    gap:5px;

    cursor:pointer;

}

.hamburger span{

    width:22px;

    height:2px;

    background:var(--light);

    transition:.35s;

    border-radius:20px;

}

.hamburger.active span:nth-child(1){

    transform:
        translateY(7px)
        rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:
        translateY(-7px)
        rotate(-45deg);

}

/*==========================================
TABLET
==========================================*/

@media(max-width:1100px){

    .nav-links{

        display:none;

    }

    .navbar-right{

        display:none;

    }

    .hamburger{

        display:flex;

    }

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:768px){

    .navbar{

        width:94%;

        padding:0 20px;

        height:74px;

    }

    .logo img{

        width:155px;

    }

    .mobile-menu{

        max-width:100%;

    }

}

/*==========================================
SMALL MOBILE
==========================================*/

@media(max-width:480px){

    .mobile-menu{

        padding:25px;

    }

    .mobile-menu ul li a{

        font-size:17px;

        padding:16px;

    }

}

/*==========================================================
  DESKTOP DROPDOWN
==========================================================*/

.dropdown{

    position:relative;

}

.dropdown > a{

    display:flex;

    align-items:center;

    gap:8px;

}

.dropdown > a i{

    font-size:12px;

    transition:.3s ease;

}

.dropdown.open > a i,
.dropdown:hover > a i{

    transform:rotate(180deg);

}


/*==========================================================
  DROPDOWN MENU
==========================================================*/

.dropdown-menu{

    position:absolute;

    top:100%;
    margin-top:10px;

    left:50%;

    transform:
        translateX(-50%)
        translateY(12px);

    width:320px;

    background:#fff;

    border:1px solid #E7EEF8;

    border-radius:20px;

    padding:14px;

    box-shadow:
        0 18px 55px rgba(15,30,70,.10);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:

        opacity .25s ease,

        transform .25s ease,

        visibility .25s ease;

    z-index:999;

}


/*==========================================================*/

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:
        translateX(-50%)
        translateY(0);

}


/*==========================================================*/

.dropdown-menu a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:14px 18px;

    border-radius:14px;

    color:#081633;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:.25s ease;

}


/*==========================================================*/

.dropdown-menu a:hover{

    background:#F4F8FF;

    color:#1D6DF2;

    transform:translateX(4px);

}


/*==========================================================*/

.dropdown-divider{

    height:1px;

    background:#E9EEF7;

    margin:12px 0;

}


/*==========================================================*/

.dropdown-cta{

    color:#FF6B00 !important;

    font-weight:700 !important;

}

.dropdown-cta i{

    transition:.25s ease;

}

.dropdown-cta:hover i{

    transform:translateX(4px);

}


/*==========================================================
  MOBILE ACCORDION
==========================================================*/

.mobile-dropdown{

    display:flex;

    flex-direction:column;
    
    align-items:center;

}


/*==========================================================*/

.mobile-dropdown-btn{

    display:flex;

    align-items:center;

    justify-content:space-between;

    width:100%;

    background:none;

    border:none;

    padding:18px 20px;

    color: #FFF;

    font:inherit;

    cursor:pointer;

}

.mobile-dropdown-btn span{

    display:flex;

    align-items:center;

    gap:14px;

}

.mobile-dropdown-btn i:last-child{

    transition:.3s ease;

}

.mobile-dropdown-btn.open i:last-child{

    transform:rotate(180deg);

}


/*==========================================================*/

.mobile-submenu{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:

        max-height .35s ease,

        opacity .35s ease;

    margin-left:34px;

}


/*==========================================================*/

.mobile-submenu.open{

    max-height:500px;

    opacity:1;

}


/*==========================================================*/

.mobile-submenu li{

    list-style:none;

}


/*==========================================================*/

.mobile-submenu a{

    display:block;

    padding:12px 0;

    color:#5C6A84;

    font-size:15px;

    text-decoration:none;

    transition:.25s ease;

}

.mobile-submenu a:hover{

    color:#1D6DF2;

    transform:translateX(6px);

}


/*==========================================================
  TABLET
==========================================================*/

@media(max-width:991px){

    .dropdown-menu{

        display:none;

    }

}


/*==========================================================
  DESKTOP
==========================================================*/

@media(min-width:992px){

    .mobile-dropdown{

        display:none;

    }

}/* End custom CSS */