/* HEADER START */

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    gap: 10px;
    padding: 15px 0;
}

.header-rast {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-rast a img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
}

.header-vasat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-vasat a {
    text-decoration: none;
    color: black;
    transition: all .5s;
}

.header-vasat a:hover {
    color: orange;
}

.header-chap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-chap a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    padding: 5px 20px;
    background-color: orange;
    border: 2px solid orange;
    color: white;
    border-radius: 20px;
    transition: all .5s;
    font-size: 14px;
}

.header-chap a:hover {
    color: black;
}

/* HEADER END */




/* HEADER MOBILE START */

.headerm {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    background-color: transparent;
}

.headerm-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 1200px;
    gap: 10px;
    padding: 10px 0;
}

.headerm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.headerm-rast {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.headerm-rast-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
}

.headerm-rast-menu i {
    color: black;
    transform: translateY(-2px);
}

.headerm-vasat{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.headerm-vasat img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.headerm-chap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.headerm-chap #alogin {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background-color: black;
    padding: 6px 8px;
    font-size: 20px;
    border: 2px solid black;
    border-radius: 10px;
}



.menu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 100;
    gap: 30px;
    padding: 15px;
    width: 80%;
    border-left: 2px solid orange;
    background-color: white;
    height: 100vh;
    transition: all 1s;
}

.menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 2px solid #1A374D;
    gap: 5px;
    color: orange;
    font-size: 18px;
}

.menu-top i {
    font-size: 25px;
    cursor: pointer;
    color: black;
}

.menu-btn {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    overflow-y: auto;
}

.menu-btn a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 19px;
}

.menu-bg {
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 99;
    display: none;
}

/* HEADER MOBILE END */







/* RESPONSIVE START */

@media screen and (max-width:950px) {

    header {
        display: none;
    }

    .headerm {
        display: flex;
    }

    .headerm-rast-menu {
        font-size: 32px;
    }

    .headerm-rast-logo {
        width: 70px;
    }

    .headerm-chap .loginheaderm{
        font-size: 20px;
        padding: 12px;
    }

}

/* RESPONSIVE END */