/*
CodedBy C.ArdaAkin with PhpStorm
 * Date: 29.06.2024
 * Time: 13:18
*/

header.desctop{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 14px;
    z-index: 500;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(221, 221, 221, 0.47);

}
header.desctop.fixed{
    background: WHITE;
}
header.desctop a.logo{
    display: block;
    text-align: left;
}
header.desctop a.logo img{
    display: inline-block;
    max-width: 180px;
    transition: all 0.3s ease-in-out;

}
header.desctop.fixed a.logo img{
    max-width: 80px;
}
header.desctop ul.desctop-menu-list{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
}
header.desctop ul.desctop-menu-list li{
    display: inline-flex;
    list-style-type: none;
}
header.desctop ul.desctop-menu-list li a{
    color: WHITE;
    padding: 5px 12px;
    font-weight: 600;
    text-transform: uppercase;
}
header.desctop.fixed ul.desctop-menu-list li a{
    color: var(--pageFontColorSoft);
}

header.mobile{
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 800;
    padding: 5px;

    background: transparent;
}


header.mobile a.logo{
    padding: 5px;
}
header.mobile a.logo img{
    max-width: 150px;
}
header.mobile .header-button{
    color: white;
    display: flex;
}


header ul.header-main-list li a {

}
.menu-trigger{
    transform: translateY(0) !important;


}
.menu-trigger > span{
    height: 21px;
}
.menu-trigger span.lines{
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: 3px;
}
.menu-trigger span.lines span{
    width: 100%;
    border-radius: 15px;
    background: white;
    margin-top: 5px;
    display: flex;
    height: 2px;
    transition: all 0.3s ease-in-out;
}
.menu-trigger span.lines span:first-child{
    margin-top: 0;
    transform: translateY(0);
}
.menu-trigger.opened span.lines{
    transform:rotate(45deg);
}
.menu-trigger.opened span.lines span{

}
.menu-trigger.opened span.lines span:first-child{
    transform: translateY(6px);

}
.menu-trigger.opened span.lines span:nth-child(2){
    transform: rotate(90deg);
}
.menu-trigger.opened span.lines span:last-child{
    opacity: 0;
}

.menu-nav{
    position: fixed;
    left: -100svw;
    height: 100svh;
    top: 0;
    transition: all 0.3s ease-in-out;
    width: 100svw;
    z-index: 600;
    background-color: rgba(0,0,0,0.9);
    background-image: url(../img/elements/astronot.png);
    background-size: 350px auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.menu-nav.opened{
    left: 0;
}
.menu-nav .menu-nav-container{
    height: fit-content;
    padding-top: 140px;
}
.menu-nav .menu-nav-top{


}
.menu-nav .menu-nav-container ul.menu-list{
    display: flex;
    flex-direction: column;
    padding-left: 0;
    align-items: start;
    justify-content: center;
}
.menu-nav .menu-nav-container ul.menu-list li{
    width: 100%;
    list-style-type: none;
    margin-top: 20px;
}
.menu-nav .menu-nav-container ul.menu-list li:last-child{
    border-bottom: none;
}
.menu-nav .menu-nav-container ul.menu-list li a{
    font-size: 2em;
    color: #fff;
    font-weight: 600;
    font-family: var(--barlow);
    letter-spacing: 1px;
    padding: 14px 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;

}

.menu-nav .menu-nav-container ul.nav{}


@media(min-width: 1487px){}
@media(min-width: 1280px){
    header.desctop{
        display: flex;
    }
    header.mobile{
        display: none;
    }
}
@media(min-width: 992px){}

@media(max-width: 1486px){}
@media(max-width: 1281px){

    header.desctop{
        display: none;
    }
    header.mobile{
        display: flex;
    }
    header .bilim-logo{
        font-size: 1.2em;
    }
    header ul.header-main-list li a > span{
        display: none;
    }

    header ul.header-main-list li{
        margin: 2px 2px;
    }
    header ul.header-main-list{
        padding-right: 0;
        justify-content: space-between;
    }

    .full-h-to-half{
        height: 50dvh !important;
        max-height: 50dvh !important;
        min-height: 50dvh !important;
    }
    .cart-content .cart-body{
        height: 80%;
        overflow-y: scroll;
        overflow-x: hidden;

    }
    .cart-content .cart-footer{
        height: 20%;
    }
     .cart-content{
        width: 100dvw !important;
        left: 100dvw;
         height: calc(100dvh - 100px) !important;
        top: 100px !important;
         border-top: 5px solid var(--brandColor5);
         box-shadow: none !important;
    }
    .cart-content.cart-content-opened{
        left: 0dvw !important;
        top: 100px !important;
    }

}
@media(max-width: 991px){}
