/* ===========================
   HEADER
=========================== */
body {
    font-family: 'Poppins', sans-serif !important;

}

.mod-list li.active>a {
    text-decoration: none !important;
}

.mod-list li a:hover {
    text-decoration: none !important;
}

.triks-header{
    align-items:center;
    justify-content:space-between;
    height:110px;
    padding:0 max(calc(50vw - 600px), 5%);
    background:#fff;
}

.desktop-header {
    display: flex;
}

.mobile-header {
    display: none;
}

.desktop-header,
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-logo img {
    height: 55px;
    width: auto;
}

.mobile-menu-button {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

.mod-list li a{
    color: #0b2341;
}

@media (max-width: 960px) {
    .contact-btn {
        margin-left: 0px !important;
        margin-top: 2rem !important;
        width: 100% !important;
    }
}
/* =========================
   MOBILE MENU
   ========================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;

    width: min(85%, 400px);
    height: 100vh;

    background: #ffffff;

    z-index: 9999;

    padding: 30px;

    transform: translateX(100%);
    transition: transform 0.3s ease;

    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}


/* Open state */

.mobile-menu.is-open {
    transform: translateX(0);
}


/* Close button */

.mobile-menu-close {
    display: block;

    margin-left: auto;

    border: none;
    background: none;

    font-size: 36px;
    line-height: 1;

    cursor: pointer;

    color: #191a74;
}


/* Navigation */

.mobile-nav {
    margin-top: 50px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 25px;
}

.mobile-nav a {
    display: block;

    color: #191a74;
    text-decoration: none;

    font-size: 20px;
    font-weight: 500;
}

.mobile-nav a:hover {
    color: #424077;
}


/* Prevent background scrolling */

body.menu-open {
    overflow: hidden;
}


/* Only show mobile menu below 960px */

@media (min-width: 961px) {

    .mobile-menu {
        display: none;
    }

}

@media (max-width: 960px) {

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

}

/* logo */

.triks-logo img{
    height:80px;
    width:auto;
}

/* center menu */

.triks-nav{
    flex:1;
    display:flex;
    justify-content:center;
}

/* Joomla menu */

.triks-nav .mod-menu{
    display:flex;
    flex-direction:row;
    gap:48px;
    list-style:none;
    margin:0;
    padding:0;
}

.triks-nav .nav-item{
    margin:0;
}

.triks-nav a{
    font-family: "inter";
    text-decoration:none;
    color:#222;
    font-size:20px;
    font-weight:400;
}

.triks-nav a:hover{
    color:#22318b;
}

/* contact */

.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:140px;
    height:65px;
    border-radius:14px;
    background:#24267f;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
    font-size: 20px;
}

.contact-btn:hover{
    background:#16195f;
    color:#fff;
}

#hero,
#services,
#aboutUs,
#partners {
    scroll-margin-top: 100px;
}

.item-101 > a {
    cursor: pointer;
}