@font-face {
    font-family: Fedra;
    src: url(../Font/Fedra.ttf);
}

@font-face {
    font-family: Vazir;
    src: url(../Font/Vazir.ttf);
}

body::-webkit-scrollbar{
    display: none;
}

.Main-BackGround{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: #f4f4f4; */
    /* overflow-y: scroll; */
}

*{
    box-sizing: border-box;
}



/* ===================================================================== Header */
.Main-Header{
    position: relative;
    background-color: #0F0F0F;        
    width: 100%;
    height: 49px;
}

.Main-Header_MSIMG{
    background-size: 100% 100%;
    width: 50px;
}

.Main-Header_Menu{
    display: none;
    cursor: pointer;
    font-size: 48px;
    position: absolute;
    right: 9px;
}

.Main-Header_User{
    float: right;
}
.Main-Header_User i{
    transition: 0.8s;
    position: absolute;
    right: 9px;
    line-height: 55px;
    font-size: 40px;
    color: white;
}
.Main-Header_User a{
    position: absolute;
    top: 14px;
    right: 55px;
    transition: 0.8s;
    color: white;
    font-family: Fedra;
    font-size: 15px;
    text-shadow: -1px 1px 0px red;
}
.Main-Header_User a:hover{
    opacity: 0.5;
    text-shadow: -1px 1px 0px green;
}

@media only screen and (max-width: 1000px) {
    .Main-Header_Menu{
        display: block;
    }
    .Main-Header_User i{
        right: 70px;
    }
    .Main-Header_User a{
        right: 120px;
    }
}





/* ===================================================================== Nav */
.Main-NavSelect{
    border-bottom-style: dashed;
    border-top-style: solid;
    border-width: 2px;
    background-color: #232D3F;
    width: 100%;
    text-align: center;
}
.Main-NavSelect_Center{
    position: relative;
    left: 50%;
    transform: translate(-50%);
}
.Main-NavSelect button{
    border: 3px solid black;
    border-radius: 5px;
    margin: 15px;
    padding: 8px;
    padding-top: 4px;
    cursor: pointer;
    transition: 0.8s;
    font-size: 24px;
    font-family: Fedra;
    box-shadow: 0 0 10px rgb(0,124,255);
}
.Main-NavSelect button:hover{
    opacity: 0.5;
    margin-left: 80px;
    margin-right: 80px;
}
.Main-NavSelect a{
    color: #444;
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {
    .Main-NavSelect button:hover{
        opacity: 0.5;
        margin-left: 40px;
        margin-right: 40px;
    }
}
@media only screen and (max-width: 1000px) {
    .Main-NavSelect{
        display: none;
    }
}


/* ===================================================================== Display Show Item */
.DisplayADSLink .DisplayADSImgLink1{
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    /* box-shadow: 0 0 0.5vw 0.4vw lightblue; */
    box-shadow: 0 0 0.5vw 0.3vw gold;
    border-radius: 10px;
}
.DisplayADSLink .DisplayADSImgLink2{
    position: relative;
    left: 50%;
    transform: translate(-50%);
    /* width: 1230px; */
    width: 80%;
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: 0 0 0.5vw 0.3vw yellow;
}


.Main-MainOriginal{
    position: relative;
    left: 50%;
    transform: translate(-50%);
    width: 1230px;
}

.Display_BaxShow{
    position: relative;
    left: 50%;
    transform: translate(-50%);
    width: 1120px;
    display: table;
}

.Display_BaxShow_Left{
    float: left;
    width: 28%;
    margin-right: 1%;
}

.Display_BaxShow_Right{
    float: left;
    width: 71%;
    background-color: #ccc;
    box-shadow: 0px 0px 5px black;
}

/* ===================================================================== Footer */

.Main-Footer{
    background-color: #232D3F;
    width: 100%;
    /* border-width: 0.5vw;
    border-top-style: solid; */
    height: 320px;
    background: linear-gradient(to top,#232D3F 80%,rgba(255,255,255,0.5) 100%);
}

.Main-Footer-Logo{
    position: relative;
    right: 5%;
    top: 29%;
    float: right;
    background-size: 100% 100%;
    width: 200px;
}

.footerCopyRight{
    width: 100%;
    height: 60px;
    background-color: #0F0F0F;
    border-width: 0.5vw;
    border-top-style: solid;
    border-width: 2px;
}

.footerCopyRight h3{
    text-align: center;
    color: #444;
    font-family: Fedra;
    /* text-shadow: 0 0 10px rgb(0,124,255);    */
    line-height: 20px;
}