body {
    font-family: var(--montserrat);
    font-size: var(--bodyFontSize);
    line-height: var(--bodyLineHeight);
    font-weight: var(--bodyFontWeight);
    background-color: var(--pagebgcolor);
    color: var(--pageFontColor);
    overflow-x: hidden !important;

}
body.mennu-opened .menu-over{
    opacity: 1;
    visibility: visible;
}
.page-wrapper{
    overflow-x: hidden !important;
    min-height: 100svh;
}

small{
    font-weight: inherit;
}
html {

    font-size: var(--bodyFontSize);
    scroll-behavior: smooth;
}




a:hover,
a:visited,
a:focus {
    text-decoration: none;
}

h1 {font-size: var(--h1Size); font-weight: var(--bodyFontWeight);}
h2 {font-size: var(--h2Size); font-weight: var(--bodyFontWeight);}
h3 {font-size: var(--h3Size); font-weight: var(--bodyFontWeight);}
h4 {font-size: var(--h4Size); font-weight: var(--bodyFontWeight);}
h5 {font-size: var(--h5Size); font-weight: var(--bodyFontWeight);}
p {
    font-size: var(--bodyFontSize);
    line-height: var(--bodyLineHeight);

}
strong{
    font-weight: var(--bodyStrongWeight);
}
section {
    position: relative;
}

/*

.section.abs{
    position: fixed;
    width: 100svw;
    height: 100svh;
    top: -100svh;
    left: 0;
    transition: all 0.5s ease-in-out;
}
.section.abs.active{
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}
.section.abs.left{
    top: 0;
    left: -100svw;
}
.section.abs.right{
    top: 0;
    left: 100svw;
}
*/

u{
    text-decoration: underline 2px solid currentColor;
}
.full-h-must {height: 100svh;}
.full-h-max {max-height: 100svh;}
.full-h-min {min-height: 100svh;}
.half-h-must {height: 50svh;}
.half-h-max {max-height: 50svh;}
.half-h-min {min-height: 50svh;}
.quarter-h-must {height: 75svh;}
.quarter-h-max {max-height: 75svh;}
.quarter-h-min {min-height: 75svh;}
.manuel-h-must {height: 450px;}

.font-weight-100 {font-weight: 100;}
.font-weight-200 {font-weight: 200;}
.font-weight-300 {font-weight: 300;}
.font-weight-400 {font-weight: 400;}
.font-weight-500 {font-weight: 500;}
.font-weight-600 {font-weight: 600;}
.font-weight-700 {font-weight: 700;}
.font-weight-800 {font-weight: 800;}

.content-container{
    width: var(--contentArea);
    margin: auto;
}

.page-wrapper{
    height: fit-content;
}
.padding-area{
    padding: 100px 10svw;
}

/*header"*/

/*sliderarea*/
.main-slider-area{

    height: 100svh;
    width: 100svw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:radial-gradient(var(--brandColor1), #282679);
}
.main-slider-area::after{
    content:'';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/elements/microphone.png");
    background-size: auto 70%;
    background-position: 65% bottom;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
    z-index: 20;
}
.main-slider-area .content{
    position: relative;
    z-index: 30;
}
.main-slider-area .section-title{
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 6em;
    line-height: 0.866;
    color: #e5e1d8;
    /* text-shadow: 0px 12px 9px rgba(0, 0, 0, 0.35); */
    letter-spacing: -7px;
/*    position: relative;
    display: block;
    font-weight: 800;
    font-size: 8em;
    line-height: 0.866;
    color: #e5e1d8;
    text-shadow: 0px 12px 9px rgba(0, 0, 0, 0.35);
    letter-spacing: -7px;*/
}
.main-slider-area .section-title span.onair{

    position: absolute;
    font-family: var(--allison);
    text-transform: lowercase;
    letter-spacing: 1px;
    width: 100%;
    font-weight: 700;
    bottom: -25px;
    text-shadow:  2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 2px 2px #fff, -2px -2px #fff, 2px -2px #fff, -2px 2px #fff !important;
    display: block;
    text-align: right;
    transform:rotate(-15deg);
    margin-top: -40px;
    left: 0;
    color: #212121;
    font-size: 1.5em;
    transition: all 0.5s ease-in-out;

}
.main-slider-area p.info1{
    color: #e8e8e8 !important;
    font-weight: 900;
    font-size: 3em;
    font-style: italic;
}
.main-slider-area p.info2{
    color: #fff !important;
    font-weight: 500;
    font-size: 1.5em;
}
.main-slider-area .main-slider-section-img{
    padding: 0;
    margin: 0;
    width: fit-content;
    position: relative;
}
.main-slider-area .main-slider-section-img img{
    position: relative;
    z-index: 20;
    max-height: 500px;
}
.main-slider-area .main-slider-section-img::after{
    content: '';
    width: 80%;
    height: 80%;
    border-radius: 100%;
    background: transparent;
    border: 20px solid WHITE;
    opacity: 0;
    position: absolute;
    left: 10%;
    top: 10%;
    z-index: 10;
    animation: img-frame-anim 2s ease-in-out infinite;
}
@-webkit-keyframes img-frame-anim {
    0%{
        transform: perspective(100px) translateZ(0);
        opacity: 0.5;
    }
    50%{
        transform: perspective(100px) translateZ(40px);
        opacity: 0;
    }
    100%{
        transform: perspective(100px) translateZ(0);
        opacity: 0;
    }
}


.frequencies{
    position: relative;
    margin-top: -160px;
    z-index: 60;
}
.frequencies .content-container{
    border-radius: 250px;
    background: transparent;
    height: 100px;
    color: WHITE;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: all 0.3s ease-in-out;
}
.frequencies .content-container:hover{

}
.frequencies .content-container .planet-area{
    height: 100%;
    width: 20%;
    border-right: 1px solid #bebebe;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-top-left-radius: 53px;
    border-bottom-left-radius: 53px;
    cursor: pointer;
}
.frequencies .content-container .cities-area{
    height: 100%;
    width: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top-right-radius: 53px;
    border-bottom-right-radius: 53px;
    position: relative;
}
.frequencies .content-container .cities-area > *{
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.frequencies .content-container .cities-area > .earth{
    top: 0;
}
.frequencies .content-container .cities-area > .mars{
    top: 100%;
}

.frequencies .content-container .cities-area.marsopen > .earth{
    top: -100%;
}
.frequencies .content-container .cities-area.marsopen > .mars{
    top: 0%;
}

.frequencies .city-detail{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 96px;
    line-height: 2em;
    border-right: 1px solid rgba(255, 255, 255, 0.22);

}
.frequencies .city-detail span.cityname{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1em;
    font-weight: 700;
    font-family: var(--oswald);
}
.frequencies .city-detail span.frequency{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1.3em;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: var(--oswald);
}

.frequencies .content-container .planet-area span{
    display: flex;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-family: var(--oswald);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}
.frequencies .content-container .planet-area .select-area{
    position: absolute;
    width: 100%;
    top: 110%;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    border-top-left-radius: 53px;
    border-bottom-left-radius: 53px;
    background: #efefef;
    /* box-shadow: 2px 18px 60px #00000047; */
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.frequencies .content-container .planet-area .select-area.opened{
    top: 0;
    visibility: visible;
    opacity: 1;
}
.frequencies .content-container .planet-area .select-area span{
    width: 100%;
    display: flex;
    padding: 5px 12px;
    font-size: 1.2em;
    font-weight: 500;
    color: var(--pageFontColorSoft);
    border-bottom: 1px solid #e1e1e1;

}
.frequencies .content-container .planet-area .select-area span:last-child{
    border-bottom: none;
}
.main-slider-area .cities::after{
    /*height: 100%;*/
    /*width: 60px;*/
    /*left: -60px;*/
    /*top: 0;*/
    /*position: absolute;*/
    /*content: '';*/
    /*background-image: url(../img/elements/soft-left.png);*/
    /*background-size: cover;*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
}

/*tools*/
.shadow-lg{
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 47%) !important;
}
.card{

}
.neon{
    text-shadow:
            0 0 7px #fff,
            0 0 10px #fff,
            0 0 21px #fff,
            0 0 42px #0fa,
            0 0 82px #0fa,
            0 0 92px #0fa,
            0 0 102px #0fa,
            0 0 151px #0fa;
}
.section-title{
    font-size: 2em;
    font-weight: 700;
}
.section-sub-title{
    font-size:1.3em;
    opacity: 1;
    letter-spacing: 0;
    padding-top: 5px;
    font-weight: 300;
}
.bg-img{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.bg-shape-left{
    background-size: auto 100% !important;
    background-position: right center !important;
    background-repeat: no-repeat !important;
    background: url(../img/tresor-icon-gr-half.png);
}
.bg-shape-right{
    background-size: auto 100% !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
    background: url(../img/tresor-icon-gr-half-right.png);
}
.bg-shape-palm{
    background-image: url(../img/palm3.png);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
.gray-section{
    background: var(--brandColor4);
    padding-top: 120px !important;
    margin-top: -70px;
}
.section-final-anim{
    position: relative;
}
.section-final-anim::after{
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 18px;
    bottom: -18px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEcAAAASCAYAAAAJ88NbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA1OTBEMTlENzRBQzExRUE5QzVGQzEyQjg4OEFDMzg2IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA1OTBEMTlFNzRBQzExRUE5QzVGQzEyQjg4OEFDMzg2Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDU5MEQxOUI3NEFDMTFFQTlDNUZDMTJCODg4QUMzODYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDU5MEQxOUM3NEFDMTFFQTlDNUZDMTJCODg4QUMzODYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz542bGZAAABr0lEQVR42uzYSyhEURjAcXOQsp2SsrCRQrHwKlYWYsHGTrMhicRKKTbKhig2SilqImVli4ViQ2pSVmJh4TFqLOSZGsb/1FcmDTP3zrnjzjRf/RZzu+cx3z33PK5nPdcTyclGzMhDCE/yuxDF2bR8J6fox7UClKEOLeiAN8PzcIMDBHCBIF49vFbxCuajE4NozaCE6LdlFWu+8Gcg1g2JJCc6GjCFtjROyh1msYJHEvPrjcpixcdoRxeu0iwpYcyjAgs6MfEKKJsNbaEaG2mSmHMZ9aN4SLSQSqJB3YgPSy5PzCZqcWK1oDLQ+LCe1FyamGl049lOYRPJ0TNar0xwbopJTMD2JlcZ6sgH+uVJuSHGZVVNKpTBDkXkSfnsDmNDK9IAZkxUphzooF7B6nGU4sSEZP+1bKpC5VBHz9CMkahzm5OxixrsmaxUOdhhPVEvohJ+GfKm4xY9sjENmq5cpeCpXssfqJI90YuBOu8xJgdkfzIr0n8nJ3qXOoQS9GEH7xbrOJRtQynm8OZkh60ePE2H/n7UhEYZWeXyCcUr24NLnGIf2zIKjcZfB88vAQYAvTRWJf47zJwAAAAASUVORK5CYII=) repeat-x;
    -webkit-animation: 1s linear 0s infinite normal none running slide-two;
    animation: 1s linear 0s infinite normal none running slide-two;
    transition: all 0.1s ease-in-out;
}
@-webkit-keyframes slide-tow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 0;
    }
}
.bg-brand-1{background-color: var(--brandColor1);}
.bg-brand-2{background-color: var(--brandColor2);}
.bg-brand-3{background-color: var(--brandColor3);}
.bg-brand-4{background-color: var(--brandColor4);}
.bg-brand-5{background-color: var(--brandColor5);}
.bg-gray{background-color: var(--gray);}

.clr-brand-1{color: var(--brandColor1);}
.clr-brand-2{color: var(--brandColor2);}
.clr-brand-3{color: var(--brandColor3);}
.clr-brand-4{color: var(--brandColor4);}
.clr-brand-5{color: var(--brandColor5);}

.divider-1{
    display: inline-block;
    width: 60px;
    height: 60px;
    background: url(../img/tresor-icon-gr.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: invert(1);
    opacity: 0.5;
}


.quantity-row{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    width: 100%;
    border: 1px solid #ddd;
    height: 36px;
}
.quantity-row > *{
    height: 36px;
}
.quantity-row input{
    width: 60%;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 1em;
    font-weight: 300;
    border-bottom-width: 0 !important;
    font-style: italic;
}
.quantity-row button{

    border: none;
    background: transparent;
    box-shadow: none !important;
    outline: none !important;
    width: 19%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.quantity-row button:first-child{
    border-right: 1px solid #ddd;
}
.quantity-row button:last-child{
    border-left: 1px solid #ddd;
}

.product-gallery-nav{}
.product-gallery-nav a{
    color: var(--pageFontColor);

}
.product-gallery-nav i{
    font-size: 3em;
}

.product-detail-gallery{}
.product-detail-gallery .item{}
a.produt-img-box{
    position: relative;
    width: 100%;
    display: block;

    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.produt-img-box::after{
    content: "\e90e";
    font-family: 'icomoon' !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(49, 49, 49, 0.3);
    color: WHITE;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.produt-img-box:hover::after{
    visibility: visible;
    opacity: 1;
    font-size: 4em;
}

.product-detail-area{}
.product-detail-area .product-name{}
.product-detail-area .price{
    font-family: Maginia, sans-serif;
    width: 100%;
    display: block;
    font-size: 1.5em;
    letter-spacing: 1px;
    font-weight: 600;
}
.product-detail-area .price del{
    font-size: 0.8em;
    margin-left: 12px;
    padding-left: 10px;
    border-left: 1px solid #ddd;
    opacity: 0.6;
}

.product-details{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding-left: 0;
    margin-bottom: 0;
}
.product-details li{

    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 5px 15px;
    border-left: 1px solid #eee;
}
.product-details li:nth-child(2n+1){

}
.product-details li p{
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-bottom: 0;
    font-size: 0.8em;
}
.product-details li span{
    display: inline-flex;
}
.product-details li span:first-child{
    font-weight: 600;

    text-transform: uppercase;
}
.product-details li span:last-child{
    font-weight: var(--bodyFontWeight);
    display: flex;
    width: 100%;
}



.input-group{
    position: relative;
}

input[type="password"],
input[type="text"],
input[type="email"],
input[type="date"],
input[type="datetime-local"],
input[type="number"],
input[type="month"],
input[type="file"],
input[type="week"],
select,
textarea,
input[type="url"]{
    background: transparent;
    height: 36px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #2d2d2d;
    width: 100%;
    font-size: 0.9em;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    transition-delay: 0s !important;
    outline: none !important;
}


input[type="password"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="number"]:focus,
input[type="month"]:focus,
input[type="file"]:focus,
input[type="week"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus,
input[type="password"]:hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="date"]:hover,
input[type="datetime-local"]:hover,
input[type="number"]:hover,
input[type="month"]:hover,
input[type="file"]:hover,
input[type="week"]:hover,
input[type="url"]:hover,
select:hover,
textarea:hover,
{
    outline: none !important;
    box-shadow: none!important;
    border-bottom: 1px solid BLACK;


}
input[type="password"]::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="date"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="number"]::placeholder,
input[type="month"]::placeholder,
input[type="file"]::placeholder,
input[type="week"]::placeholder,
select::placeholder,
textarea::placeholder,
input[type="url"]::placeholder{
    font-size: 0.8em;
    font-style: italic;
    opacity: 0.4;
}

.input-group i + input[type="password"],
.input-group i + input[type="text"],
.input-group i + input[type="email"],
.input-group i + input[type="date"],
.input-group i + input[type="datetime-local"],
.input-group i + input[type="number"],
.input-group i + input[type="month"],
.input-group i + input[type="file"],
.input-group i + input[type="week"],
.input-group i + select,
.input-group i + textarea,
.input-group i + input[type="url"]{
    padding-left: 40px;

}
.input-group i{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 20;

}




.input-group label{
    margin-bottom: 10px;
    display: block;
    width: 100%;
    font-size: 1em;
    font-weight: 600;
    font-family: Maginia, sans-serif;
    letter-spacing: 1px;
}



/*buttons*/
.bilim-btn{
    position: relative;
    font-size: 0.9em !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 21px;
    background-color: transparent;
    color: var(--pageFontColor);
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}
.bilim-btn.border-bottom{
    border-width: 1px !important;
    border-color: black !important;
}
.bilim-btn:hover,
.bilim-btn:active{
    text-decoration: none;
    color: currentColor;
}
.bilim-btn i {
    font-weight: 700;
}
.bilim-btn:hover{
}



.bilim-btn.btn-1{
    background-color: var(--brandColor1);
    color: WHITE;
}
.bilim-btn.btn-2{
    background-color: var(--brandColor2);
    color: #3b3b3b;
}
.bilim-btn.btn-3{
    background-color: var(--brandColor3);
    color: #fff;
}
.bilim-btn.btn-4{
    background-color: var(--brandColor4);
    color: #545454;
}
.bilim-btn.btn-5{
    background-color: var(--brandColor5);
    color: #545454;
}
.bilim-btn.btn-6{
    background-color: #fff;
    color: var(--pageFontColor);
}
.bilim-btn.btn-7{
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.58);
    color: WHITE;
}

.btn-danger{color:WHITE !important;background-color: var(--danger) !important;}
.btn-success{color:WHITE !important;background-color: var(--success) !important;}
.btn-warning{background-color: var(--warning) !important;}
.btn-info{background-color: var(--info) !important;}
.btn-dark{background-color: var(--dark); color: WHITE !important;}
.bilim-btn:hover{
    transform: translateY(-5px);
    opacity: 0.9;
}
/* ===> Boostrap Buttons <=== */
.btn-success,.btn-success:hover{background-color: var(--success);}
.btn-danger,.btn-danger:hover{background-color: var(--danger);}
.btn-warning,.btn-warning:hover{background-color: var(--warning);}
.btn-info,.btn-info:hover{background-color: var(--info);}


/*footer*/
footer{
    min-height: 30svh;
    border-top: 1px solid #ddd;
    margin-top: 10svh;
    padding-bottom: 10svh;
    position: relative;
}
footer .footer-brand{
    padding-top: 50px;
    padding-bottom: 50px;
}
footer::before{
    content:'';
    position: absolute;
    left: calc(50% - 30px);
    top: -30px;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: url(../img/tresor-icon-gr.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: invert(1);
    opacity: 0.5;
}
footer .bilim-logo{
    display: inline-block;
    text-align: center;
    font-family: "Baskervville", sans-serif !important;
    font-size: 2em;
    text-transform: capitalize;
    color: var(--pageFontColor);
}
footer .bilim-logo span{
    display: block;
    text-align: right;
    font-size: 0.6em;
    font-style: italic;
    color: #6a6a6a;
}
footer .footer-sect-head{
    font-size: 1.2em;
    font-style: italic;
    font-family: Maginia, sans-serif;
    font-weight: 4 00;
}
footer .column-footer-head{
    font-weight: 800;
    margin-bottom: 0;
    font-size: 1em;
    font-family: Maginia, sans-serif;
}
footer .footer-list{
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
footer .footer-list li{
    display: inline-flex;
    list-style-type: none;
}
footer .footer-list li a{
    display: block;
    width: 100%;
    padding: 6px 12px;
    color: var(--pageFontColor);
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 500;
    letter-spacing: 1px;
}
.kunye-list{
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    flex-wrap: wrap;

}
.kunye-list li{
    border-right: 1px solid #ddd;
    align-items: start;
    padding: 12px;
    justify-content: center;
    display: inline-flex;

    flex-direction: column;
    margin-bottom: 5px;
    list-style-type: none;
    font-style: italic;
    font-size: 1em;
    line-height: 1.2em;
}
.kunye-list li.head{}
.kunye-list li strong{}

.mars-popup{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    z-index: 900;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    height: 100%;
}
.mars-popup.opened{

    visibility: visible;
    opacity: 1;
}
.mars-popup .bg-over{
    position: absolute;
    z-index: 30;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(0,0,0,0.8);
}
.mars-popup .content{
    display: flex;
    padding: 30px;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    background: WHITE;
    position: relative;
    z-index: 40;
    transform: translateY(50svh);
    transition: all 0.5s ease-in-out;
    overflow-y: scroll;
    max-height: 80svh;
    max-width: 90svw;
}
.mars-popup.opened .content{
    transform: translateY(0svh);
}

/*.mars-popup .content .img-area{
    height: 100%;
    display: flex;
    min-height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.mars-popup .content .content-area{
    height: 100%;
    display: flex;

}*/

.mars-popup .closer{
    position: absolute;
    bottom: 20px;
    width: 120px;
    left: calc(50% - 60px);
    z-index: 60;
}


.mars-player{
    background: linear-gradient(to bottom, #33383e 0%, #17191d 100%);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    max-width: 550px;
    width: fit-content;
}
.mars-player .player-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}
.mars-player .player-content .playpause-area {
    padding: 8px;
}
.mars-player .player-content .playpause-area .playpause-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid #292a2f;
    background: radial-gradient(at top left, rgb(57, 59, 64) 0%, rgb(12, 13, 16) 112%);

}
.mars-player .player-content .playpause-area .playpause-button i{
    color: #fff;
}

.mars-player .player-content .mute-area {
    padding: 8px;
}
.mars-player .player-content .mute-area .mute {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid #292a2f;
    background: radial-gradient(at top left, rgb(57, 59, 64) 0%, rgb(12, 13, 16) 112%);

    overflow: hidden;
    position: relative;
}
.mars-player .player-content .mute-area .mute i{
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    transition: all 0.1s ease-in-out;
}
.mars-player .player-content .mute-area .mute i:first-child{
    top: 0;
}
.mars-player .player-content .mute-area .mute i:last-child{
    top: 50px;
}
.mars-player.mute .player-content .mute-area .mute i:first-child{
    top: -50px;
}
.mars-player.mute .player-content .mute-area .mute i:last-child{
    top: 0;
}

.mars-player .player-content .volume{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 12px;
}
.mars-player .player-content .volume input{
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    appearance: none;
    background: linear-gradient(to top, #33383e 0%, #0d0e10 100%);
}
.mars-player .player-content .volume input[type="range"]::-webkit-slider-thumb{
    appearance: none;

    width: 0;
    height: 100%;
    margin-top: -5px;
    background: transparent;
    box-shadow: -200px 0 0 200px #ddd;
}
.mars-player .player-content .volume input[type="range"]::-webkit-slider-runnable-track{
    appearance: none;
    height: 10px;
}
.mars-player .volume-text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 40px;
    padding-left: 10px;
}
.mars-player .volume-text > span{
    width: 100%;
    font-size: 0.8em;
}
.mars-player .volume-text > span:first-child{
    font-family: var(--oswald);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #ddd;
}
.mars-player .volume-text > span:last-child{
    font-style: italic;
}
audio{
    opacity: 0;
    visibility: hidden;
    display: none;
}

.social-media {
    padding: 10px;
    margin-left: 10px;
}

.social-media a {
    color: #fff;
    margin-right: 5px;
}