@font-face {
    font-family: 'anjoman';
    font-weight: 800;
    src: url('assets/fonts/AnjomanMax-Black.woff') format('woff');
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'anjoman';
    font-weight: 600;
    src: url('assets/fonts/Anjoman-Bold.woff2') format('woff2');
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'anjoman';
    font-weight: normal;
    src: url('assets/fonts/Anjoman-Regular.woff2') format('woff2');
    font-style: normal;
    font-display: block;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}
li,ul{
    list-style: none;
}
body{
    font-family: 'anjoman', tahoma;
    font-color: 'white';
    background: #C596F2;
}
header img{
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.container{
    max-width: 1260px;
    padding: 32px;
    margin: 0 auto;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.intro > div{
    position: relative;
    width: calc(100% - 410px);
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@keyframes slidertransport {
    0%{
        transform: translateX(0px)
    }
    100%{
        transform: translateX(7200px);
    }
}
.tag-slider-container{
    overflow: hidden;
    position: relative;
}
.tag-slider-container:after{
    content: ' ';
    position: absolute;
    left: -1px;
    top: 0;
    height: 100%;
    width: 100px;

}
.tag-slider-container:before{
    content: ' ';
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    width: 100px;

}
.tag-slider-container > div:nth-child(1){
    animation: slidertransport 200s infinite linear;
}
.tag-slider-container > div:nth-child(2){
    animation: slidertransport 120s infinite linear;
}
.tag-slider-container > div:nth-child(3){
    animation: slidertransport 200s infinite linear;
}
.intro h1{
    font-size: 68px;
    line-height: 1.5;
    text-shadow: 0 0 1px #000;
}
.intro{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.intro span{
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 26px;
    padding: 0 10px;
    margin-top: 2rem;
    display: block;
}
.intro img{
    width: 400px;
    margin-top: -3rem;
}
h2{
    text-align: center;
    margin: 2rem 0 2rem 0;
    font-weight: 900;
    color:white;
    font-size: 26px;
}
.properties{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 4rem 0;
}
.properties > div{
    position: relative;
    padding-top: 1.4rem;
    flex-grow: 1;
}
.properties > div:before{
    content: '';
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
}
.properties > div:after{
    content: '';
    background: #fff;
    position: absolute;
    top: 5px;
    right: 0;
    width: 64px;
    height: 2px;
}
.properties b{
    font-size: 21px;
}
.properties span{
    font-size: 18px;
    text-shadow: 0 0 1px #000;
}
.properties svg{
    float: right;
    margin: 0 0 0 8px;
    width: 26px;
}
.properties > div > div{
    overflow: hidden;
}
.server-box{
    background: #fff;
    margin-top: 2rem;
    padding: 32px 45px;
}
h3{
    background: #F9E467;
    display: inline;
    font-size: 28px;
    padding: 0 6px;
    color:red;
}
.text-20{
    margin-top: 0.5rem;
    font-size: 20px;
        color:white;

}
.server-box ul{
    display: flex;
    font-size: 22px;
    gap: 3rem;
    border-bottom: 2px solid #A7A7A7;
}
.max-w-600{
    max-width: 640px;
}
.server-box ul li{
    line-height: 60px;
    cursor: pointer;
    transition: color 0.3s;
}
.server-box ul li:hover{
    color: #aaa;
}
.server-box ul li.active{
    font-weight: 900;
    color: #000 !important;
}
.alert{
    color: #FF0000;
    border: 1px solid #FF0000;
    padding: 6px 8px;
    font-weight: 600;
    font-size: 14px;
    margin: 1rem 0;
}
.server-item{
    border: 1px solid #000;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.server-list{
    display: none;
}
.server-list>.b{
    font-size: 24px;
    font-weight: 900;
    margin: 4rem 0 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.server-date b{
    display: block;
    font-weight: normal;
}
.server-date span{
    color: #626262;
    text-wrap: nowrap
}
.server-destination{
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.server-destination > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.button{
    position: relative;
    color: #000;
    background: #FBDB2F;
    padding: 12px 15px;
    font-weight: 900;
    font-size: 16px;
    border: 1px solid #000;
    box-shadow: 6px 6px 0 0px #000;
    text-wrap: nowrap;
    font-family: 'anjoman', serif;
    cursor: pointer;
}
.button.orange{
    background: #FD6A16;
    font-size: 14px;
}
.server-item .button{
    line-height: 22px;
}
.server-buttons{
    display: flex;
    gap: 1rem;
}
.server-prices{
    display: flex;
}
.server-prices i{
    display: block;
    height: 50px;
    width: 1px;
    background: #000;
    margin: 0 10px;
}
.server-item > div{
    display: flex;
    align-items: center;
}
.server-destination span{
    color: #7A7A7A;
    font-size: 13px;
}
footer{
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 5rem;
}
.server-prices b{
    display: block;
    position: relative;
}
.server-prices b:after{
    content: 'تومان';
    font-size: 11px;
}
.server-prices > div:first-child b:before{
    content: ' ';
    position: absolute;
    height: 1px;
    width: 100%;
    background: #f00;
    transform: rotate(8deg);
    top: 13px;
}
.bg{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background: #00000088;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.45s;
}
.bg.open{
    visibility: visible;
    opacity: 1;
}
.bg>div{
    position: relative;
    width: 100%;
    max-width: 768px;
    background: #fff;
    border: 1px solid #000;
    padding: 16px;
}
.popup h3{
    display: block;
    width: 100%;
}
.bg label span{
    display: block
}
label{
    width: 100%;
    display: block;
    position: relative;
}
input,select{
    outline: none;
    width: 100%;
    padding: 2px 6px;
    margin-top: 4px;
    border-radius: 0;
    border: 1px solid #000;
    min-height: 36px;
    font-family: 'anjoman', tahoma;
}
[name="phone"]{
    direction: rtl;
}
.bg form{
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.popup svg{
    position: absolute;
    left: 30px;
    top: 30px;
    cursor: pointer;
    color: #000;
    z-index: 10;
}
.sort{
    position: relative;
    font-size: 16px;
    z-index: 10;
}
.sort svg{
    display: inline-block;
    transform: rotateX(180deg);
    width: 14px;
    transition: 0.3s ease;
}
.sort span{
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sort > ul{
    position: absolute;
    border: 1px solid #000;
    background: #fff;
    padding: 10px;
    font-size: 12px;
    display: block;
    left: 0;
    width: 141px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    transform: translateY(30px);
}
.sort:hover ul{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sort:hover svg{
    transform: rotateX(0deg);
}
.sort > ul li{
    line-height: 30px;
}
.server-salebox{
    margin-top: 4rem;
    background: #fff;
    box-shadow: 15px 15px 0 0px #000;
    padding: 32px 45px 0 45px;
    position: relative;
}
.server-card{
    width: 380px;
    margin: 2rem 0;
}
.server-card .server-item{
    flex-wrap: wrap;
    padding: 16px;
    gap: 1.5rem;
}
.server-card .server-destination {
    width: 100%;
}
.server-card .server-prices {
    font-size: 15px;
    justify-content: space-between;
    width: 100%;
}
.server-item-action{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.server-item-action > div{
    display: flex;
    align-items: center;

}
.server-items{
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}
.owl-stage-outer{
    direction: rtl;
}
.server-salebox-gif{
    position: absolute;
    left: 0;
    top: 0;
    width: 260px;
}
.owl-carousel .owl-stage{
    display: flex;
    align-items: flex-end;
}
.server-card .server-destination svg{
    width: 100%;
    height: auto;
}
.mt-5{
    margin-top: 5rem;
}
.support-item{
    border: 1px solid #000;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}
.support-item p{
    margin-top: 8px;
    color: #666;
}
.server-salebox:before{
    content: ' ';
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    right: -15px;
    z-index: -1;
    background: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.server-salebox:after{
    content: ' ';
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -15px;
    left: 0;
    z-index: -1;
    background: #000;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.button:before{
    content: ' ';
    position: absolute;
    width: 7px;
    height: 7px;
    top: -1px;
    right: -8px;
    background: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.button:after{
    content: ' ';
    position: absolute;
    width: 7px;
    height: 7px;
    bottom: -7px;
    left: -1px;
    background: #000;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.support-item b{
    font-size: 18px;
}
.flex{
    display: flex;
}
.col-8{
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 15px;
}
.col-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 15px;
}
.col-12{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
}
.purchase .server-item{
    background: #fff;
}
.inputs{
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #000;
    padding: 20px 24px;
    margin-top: 2rem;
}
.checkout{
    background: #fff;
    border: 1px solid #000;
    padding: 20px 24px;
}
.checkout .button{
    width: 130px;
    margin: auto;
    text-align: center;
    display: block;
}
.coupon{
    width: 120px;
    text-align: center;
    border: 2px solid #FD6A16;
    color: #FD6A16;
    line-height: 32px;
    margin-right: 8px;
    cursor: pointer;
}
.checkout input{
    margin: 0;
}
.checkout-label{
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
[type="checkbox"]{
    width: 16px;
    height: 16px;
}
.price-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.coupon-holder{
    display: flex;
    padding: 1rem 0;
    margin: 1rem 0;
    border-bottom: 1px solid #000;
}
.price-holder .price b{

}
.tag-slider-container > div{
    display: flex
}
.tag-slider-container span{
    background: rgba(0, 0, 0, 0);
    color: #000;
}
.mobile-nav{
    display: none;
}

@media only screen and (max-width: 600px) {
    .server-salebox>img{
        display: none;
    }
    .support-item{
        display: block;
    }
    .server-items img{
        width: 120px !important;
    }
    .server-salebox{
        padding: 32px 16px 0 16px;
    }
    .server-salebox .server-items{
        display: block;
        margin: 0 -16px 0 -32px;
        width: calc(100% + 32px);
    }
    .server-salebox .server-item{
        width: calc(100% - 32px);
        padding: 16px 8px;
    }
    .support-item a{
        margin: auto;
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
    .support-item
    .server-salebox h3{
        position: relative;
        z-index: 1;
        background: rgba(0,0,0,0);
    }
    .mobile-nav{
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        background: #000;
    }
    .mobile-nav a{
        padding: 1rem 0;
        color: #fbdb2f;
        width: 33.33%;
        text-align: center;
        border-left: 1px solid #fff1;
    }
    .mobile-nav a:last-child{
        border: none;
    }
    .intro img{
        order: 0;
        width: 250px;
        margin: 0 auto -6rem auto;
    }
    .intro > div{
        order: 1;
        width: 100%;
    }
    .intro h1{
        font-size: 48px;
        line-height: normal;
    }
    .intro{
        flex-direction: row-reverse;
    }
    .intro span{
        font-size: 24px;
        width: calc(100vw - 60px);
        text-align: center;
    }
    .properties{
        display: block;
    }
    .properties > div{
        width: 100%;
        margin-bottom: 2rem;
    }
    .properties b{
        font-size: 20px;
    }
    h2{
        font-size: 24px;
    }
    .server-item{
        flex-wrap: wrap;
        padding: 16px;
        gap: 1.5rem;
    }
    .server-buttons{
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .server-prices{
        font-size: 15px;
        justify-content: space-between;
        width: 100%;
    }
    .bg>div {
        width: 90%;
    }
    label{
        width: 100%;
    }
    .popup h3 {
        font-size: 20px;
    }
    .server-destination{
        width: 100%;
    }
    .server-box {
        padding: 32px;
    }
    .server-box ul{
        justify-content: space-between;
    }
    .col-8{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;

    }
    .col-4{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}