*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.btn-padding{
    padding: 9px 22px!important;
}
a{
    text-decoration: none!important;
}
.hr-line{
    height: 2px;
    width: 100%;
    background-color: #606060c2;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    position: sticky;
}
/* Header  */


body {
    transition: background 0.3s ease-in-out;
}
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    padding: 10px 0;
}
.header-container {
    border: 1px solid black;
    background: #fff;
    border-radius: 9px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
/* .header-logo h1 {
    font-weight: 900;
    font-size: 2rem;
} */
.header-logo a img {
    /* height: 61px;
    width: 187px;
    object-fit: contain; */
    height: 44px;
    width: 140px;
    object-fit: contain;
}
.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}
.header-link ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 0;
    margin: 0;
}
.header-link ul li a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.header-link ul li a:hover {
    color: red;
}
.header-buttons {
    display: flex;
    gap: 20px;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
}
.header-buttons-mob{
    display: none;
}












/* footer  */
.footer-start{
    display: flex;
    justify-content: space-between;
}
.footer-start .footer-sec .footer-page-link{
    display: flex;
    gap: 20px;
}
.footer-start .footer-sec .footer-page-link a{
    color: #000;
    transition: all .3s ease-in-out;
}
.footer-start .footer-sec .footer-page-link a:hover{
    color: red;
    /* text-decoration: none; */
}
.footer-start .footer-third .footer-social-link{
    display: flex;
    gap: 10px;
}
.footer-start .footer-third .footer-social-link a{
    font-size: 18px;
    color: #000;
    transition: all .6s ease-in-out;
}
.footer-start .footer-third .footer-social-link a:hover{
    color: red;
    /* text-decoration: none; */
    transform: scale(1.5);
}
.footer-end{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-end span a{
   color: #000;
   transition: all .3s ease-in-out;
}
.footer-end span a:hover{
   color: red;
   
}

@media (max-width: 1082px) {
    .menu-btn {
        display: block;
        /* z-index: 1001; */
    }
    .header-buttons{
        display: none;
    }
    .header-link {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    .header-link ul {
        flex-direction: column;
        gap: 20px;
    }
    .header-buttons-mob {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        gap: 20px;
    }
    .nav-active {
        right: 0;
    }
    .overlay-active {
        display: block;
    }
}