/* HEADER START */

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 10px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 1200px;
    gap: 30px;
    padding: 15px 0px;
    border-bottom: 1px solid #5462FF20;
}

.header-rast {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: 20px;
}
.header-logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    transform: translateY(-4px) translateX(2px);
}

.header-rast a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.8);
}

.header-chap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-chap .basketheader{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: gray;
    border: 2px solid black;
    border-radius: 0 50% 50% 50%;
    font-size: 20px;
    padding: 7px;
}

.header-chap .loginheader{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 15px 7px 15px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 20px 20px 20px 20px;
}

.header-chap .phoneheader {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #5462FF;
    color: white;
    border-radius: 20px 0 20px 20px;
    padding: 5px 15px 5px 10px;
    position: relative;
    border: none;
    cursor: pointer;
    transition: all .5s;
}

.header-chap .phoneheader img {
    width: 20px;
}

.header-chap .phoneheader:active {
    transform: scale(0.96);
}

.header-chap .phoneheader:before,
.header-chap .phoneheader:after {
    position: absolute;
    content: "";
    width: 100%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
}

.header-chap .phoneheader:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #7d2ae8 20%, transparent 30%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
        10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
            40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
            50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
            50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.header-chap .phoneheader:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%),
        radial-gradient(circle, #7d2ae8 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
            70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
            105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
            110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

/* HEADER END */






/* HEADER MOBILE START */

.headerm{
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
}
.headerm-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 1200px;
    border-bottom: 1px solid #5462FF20;
    padding: 15px 0px;
}

.headerm-rast{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
}
.headerm-rast-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transform: rotate(180deg) translateY(-2px);
    cursor: pointer;
}
.headerm-rast-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.headerm-rast-logo img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    transform: translateY(-4px) translateX(2px);
    
}



.headerm-chap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.headerm-chap .basketheaderm{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border: 2px solid black;
    background-color: black;
    padding: 10px;
    border-radius: 50%;
}
.headerm-chap .headermphone{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border: 2px solid blue;
    background-color: blue;
    padding: 10px;
    border-radius: 50%;
}
.headerm-chap .loginheaderm{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border: 2px solid orange;
    background-color: orange;
    padding: 10px;
    border-radius: 50%;
}






.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 black;
    background-color: white;
    height: 100vh;
    transition: all 1s;
}
.menu-top{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 2px solid black;
}
.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: gray;
    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:1100px) {

    header{
        display: none;
    }
    .headerm{
        display: flex;
    }

    .headerm-chap .loginheaderm,
    .headerm-chap .headermphone,
    .headerm-chap .basketheaderm{
        font-size: 16px;
        padding: 8px;
    }
    
}

/* RESPONSIVE END */