/* HEADER START */

.htop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #17234f;
}

.htop-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    gap: 10px;
    padding: 10px 10px 15px 10px;
}

.htop-rast {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    color: white;
}

.htop-rast i {
    color: #1eac7a;
    font-size: 17px;
}

.htop-chap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
}

.htop-chap a {
    text-decoration: none;
    color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid #D6D9E8;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    gap: 10px;
    padding: 20px 10px;
}

.header-rast {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.header-rast img {
    width: 30px;
}

.header-rast p {
    font-size: 22px;
}

.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: #1c40bf;
}

.header-chap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-chap a {
    text-decoration: none;
    color: black;
    gap: 5px;
    font-size: 14px;
}

.header-chap #auth {
    padding: 10px 20px;
    background-color: #1eac7a;
    border-color: #1eac7a;
    box-shadow: 0 18px 32px 0 rgba(30, 172, 122, 0.1);
    color: white;
    border-radius: 10px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .5s;
}

.header-chap #auth:hover {
    box-shadow: none;
    background-color: #1c9b6e;
}

/* HEADER END */









/* HEADER MOBILE START */

.headerm {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    background-color: white;
    border-bottom: 1px solid #D6D9E8;
}

.headerm-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 10px 0;
}

.headerm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.headerm-top-rast {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.headerm-top-rast-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
    color: black;
    font-size: 26px;
    cursor: pointer;
}

.headerm-top-rast-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: black;
}
.headerm-top-rast-logo img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.headerm-top-rast-logo p {
    font-size: 16px;
}

.headerm-top-chap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerm-top-chap a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background-color: #1eac7a;
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid #1eac7a;
    font-size: 12px;
    box-shadow: 0 18px 32px 0 rgba(30, 172, 122, 0.1);
    gap: 10px;
    transition: all .5s;
}

.headerm-top-chap a:hover {
    box-shadow: none;
}







.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 #17234f;
    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 #17234f;
    color: #17234f;
    gap: 10px;
}

.menu-top i {
    font-size: 25px;
    cursor: pointer;
}

.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:550px) {

    .htop-container{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    header {
        display: none;
    }

    .headerm {
        display: flex;
    }

}

@media screen and (min-width:550px) and (max-width:900px) {

    header {
        display: none;
    }

    .headerm {
        display: flex;
    }

}

/* RESPONSIVE END */