/* custom font */
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito/static/Nunito-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito/static/Nunito-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
body {
    font-family: 'Nunito', sans-serif;
}
/* custom font end */

/* navbar settings */
.mobile-topbar {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 1200px) {
    .mobile-topbar {
        display: none !important;
    }
}
/* navbar end */

/* home-pict */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.logo {
    max-width: 100%;
    height: auto;
}
.logo-dki {
    width: 120px;
}
.logo-dtkte {
    width: 180px;
}
/* home-pict end */

.icon {
    justify-content: center;
    align-items: center;
    margin-left: 40%;
}

.iconimg {
    width: 75px;
    height: auto;
}

.owl-carousel .item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    box-sizing: border-box;
    height: 100%;
}

.item-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-desktop {
    display: inline-block;
}

.mobile-login {
    display: none;
}

.menu-link, #topbarUserDropdown {
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-link:hover {
    transform: translateY(-5px);
    color: white;
}

.dropdown-text {
    display: block;
    padding: 0.5rem 1rem;
    color: #6c757d;
    cursor: default;
}

.dropdown-text:hover {
    background-color: transparent;
}

.submenu-link {
    text-decoration: none !important;
}

.a {
    text-decoration: none;
}

.user-dropdown::after {
    display: none !important;
}

.user-dropdown-name {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 16px;
}

/* custom button color */
.btn.btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: #fff !important;
}

.btn.btn-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
    color: #fff !important;
}
/* custom button color end */

/* custom box */
.box {
    background: #f0eeee;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}
/* custom box end */

/* tablet-size (≤ 992px) */
@media (max-width: 992px) {
    .main-nav {
        position: relative;
    }

    .main-nav ul.nav {
        display: flex;
    }

    body {
        padding-top: 0;
    }

    .login-desktop {
        display: block !important;
    }

    /* home-pict */
    .logo-dki {
        width: 85px;
    }
    
    .logo-dtkte {
        width: 150px;
    }

    .down-buttons .main-blue-button-hover a {
        font-size: 15px;
        padding: 10px 20px;
        display: inline-block;
        margin-bottom: 20px;
    }
}

/* mobile-size */
@media (max-width: 576px) {
    .main-nav ul.nav {
        display: none;
        flex-direction: column;
    }
    .menu-trigger {
        display: block;
    }

    /* home-pict */
    .logo-wrapper {
        justify-content: center;
    }
    .logo-dki {
        width: 60px;
    }
    .logo-dtkte {
        width: 100px;
    }

    .header-text h2 {
        font-size: 20px;
        line-height: 1.4;
    }
    .header-text h4 {
        font-size: 18px;  
        margin-top: 10px;
    }
    .header-text p {
        font-size: 14px;   
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .header-text table img {
        width: 25% !important;
        margin: 0;
    }
    .header-text {
        text-align: center;    
        padding: 10px 5px;
    }
    
    .down-buttons .main-blue-button-hover a {
        font-size: 14px;
        padding: 10px 20px;
        display: inline-block;
        margin-bottom: 10px;
    }

    .header-area .main-nav .nav li:last-child a {
        color: inherit !important;
    }
}