@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
.main-btn{
    display: flex;
    a, button{
        overflow: hidden;
        box-shadow: 0px 4px 4px 0px #00000040;
        padding: 16px 32px;
        background-color: #fff;
        color: #000;
        text-decoration: none;
        position: relative;
        border: none;
        outline: none;
        i{
            color: #000;
            padding-left: 10px;
            transition: all 0.3s ease;
        }
        &:before{
            position: absolute;
            content: attr(data-content);;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 0;
            left: -100%;
            height: 100%;
            width: 100%;
            background-color: #f1b600;
            transition: all 0.3s ease;
        }
        &:hover{
            &:before{
                left: 0;
            }
        }

    }
    &.bordered{
        a, button{
            border: 1px solid #545454;
        }
    }
    &.secondary{
        a, button{
            background-color: #f1b600;
            &:before{
                background-color: #fff;
            }
        }
    }
    @media(max-width:991px){
        a, button{
            padding: 8px 16px;
            font-size: 14px;
        }
    }
}

.main-titles{
    display: flex;
    justify-content: space-between;
    align-items: center;
    .left{
        width: 60%;
        h3{
            font-weight: 400;
            font-size: 34px;
            color: #353535;
        }
    }
    .right{
        width: 40%;
        h6{
            text-align: right;
            font-weight: 700;
            font-size: 20px;
            color: #DFA80E;
        }
    }
}

.small-title{
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #C0910D;
}
.navbar {
    padding: 0 !important;
    .logo{
        max-width: 200px;
        height: 100%;
        transform: scale(0.7);
    }
    .top {
        background-color: #f1b600;
        border-bottom: 1px solid #808080;
    }

    .navbar-sub {
        background-color: #ffffff;
    }

    .nav-item {
        line-height: 30px;
    }
    .nav-link, .icon-btn {
        color: #444 !important;
        font-weight: 600;
        padding: 8px 16px !important;
        border-right: 1px solid #fff;

        font-weight: 600;
        font-size: 18px;
    }

    .nav-link:hover {
        color: #000 !important;
    }

    .brand-logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: #888;
    }

    .brand-logo span {
        color: #f1b600;
    }

    .icon-btn {
        background: none;
        border: none;
        border-right: 1px solid #fff;
        padding: 0.5rem;
        font-size: 1.2rem;
    }
    .whole{
        
        border-left: 1px solid #808080;
    }
    .navbar-sub{
        padding: 5px 0;
        a{
            font-weight: 500;
            font-size: 20px;
            color: #545454 !important;
        }
    }
    @media(max-width: 991.98px) {
        .navbar-nav{
            width: 100%;

        }
        .nav-item{
            /* line-height: 0; */
        }
        .nav-link, .icon-btn{
            border-right: none !important;
            padding: 5px 10px !important;
            font-size: 16px;
        }
        .navbar-toggler{
            margin-right: 10px;
        }
    }
}




@media (max-width: 991.98px) {
    .desktop-submenu {
        display: none !important;
    }
}

footer{
    background-color: #F2BA1C;
    
    .col-lg-3, .col-lg-6{
        padding-bottom: 20px;
        h6{
            font-weight: 700;
            font-size: 20px;
            color: #545454;
        }
        ul{
            padding: 0;margin: 0;
            li{
                list-style: none;
                a{
                    font-weight: 500;
                    font-size: 16px;
                    color: #545454;
                    text-decoration: none;
                    
                }
            }
        }
    }
    .social-icons{
        display: flex;
        gap: 20px;
        a{
            i{
                font-size: 20px;
                color: #545454;
            }
        }
    }
}