.home{
    background: #000;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
    color: var(--white);
}
.logo-box{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.2s .2s ease;
    z-index: 10;
}
.lang-select {
    display: inline-flex;
    vertical-align: bottom;
    margin-right: 5px;
    margin-bottom: 20px;
}

.lang-select a {
    color: var(--main_color);
    margin: 0 5px;
    font-size: 12px;
    line-height: 1;
}

.lang-select a:hover {
    color: #fff;
}
.logo-box a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-box img{
    transition: 1s .2s ease;
    position: relative;
    z-index: 10;
}
.logo-box:before,.logo-box:after,.logo-box a:before,.logo-box a:after{
    content: '';
    position: absolute;
    border-radius: 50%;
    margin-top: -56px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    pointer-events: none;
}
.logo-box a:before {
    background: rgba(10, 10, 10, 0.4);
    width: 164px;
    height: 164px;
    z-index: 4;
}
.logo-box a:after{
    background: rgba(10, 10, 10, 0.2);
    width: 290px;
    height: 290px;
    border-left: 2px solid #CBA054aa;
    border-right: 2px solid #CBA054aa;
    z-index: 3;
    animation-name: roller;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.logo-box:before{
    background: rgba(10, 10, 10, 0.3);
    width: 462px;
    height: 462px;
    border-bottom: 2px solid #CBA054aa;
    border-top: 2px solid #CBA054aa;
    z-index: 2;
    animation-name: roller1;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.logo-box:after{
    background: rgba(10, 10, 12, 0.3);
    width: 644px;
    height: 644px;
    border: none;
    z-index: 1;
}
@keyframes roller {
    0%{transform: rotate(0deg)}
    100%{transform: rotate(360deg)}
}
@keyframes roller1 {
    0%{transform: rotate(0deg)}
    100%{transform: rotate(-360deg)}
}
.header-content{
    display: flex;
    align-items: center;
    z-index: 10;
}
.head-tell{
    color: var(--main_color);
    font-size: 18px;
    padding-left: 44px;
}
.head-tell:before{
    content: '\e902';
    font-size: 28px;
    position: absolute;
    left: 0;
    top: -11px;
}
.header-menu > li > a{
    position: relative;
    color: var(--white);
    line-height: 38px;
    padding: 0 18px;
    height: 100%;
    display: inherit;
}
.header-menu > li > a:hover{
    color: var(--main_color);
}
.header-menu > li > a:before{
    content: '';
    position: absolute;
    border: 3px solid #000;
    background: var(--main_color);
    height: 5px;
    border-radius: 5px;
    top: -4px;
    width: 8px;
    left: calc(50% - 4px);
    transition: 0.3s cubic-bezier(0.25, 0.1, 0.27, 1.71);
    visibility: hidden;
}
.header-menu > li > a:hover:before{
    width: 32px;
    left: calc(50% - 16px);
    visibility: visible;
}
.wrap-menu{
    background:#000;
    border-radius: 10px;
    margin-left: 40px;
}
.sm-logo img{
    width: 116px;
    height: auto;
}
.header-menu{
    padding: 0 5px;
}
.intro .container{
    padding-left: 0 !important;
}
.intro h1{
    text-align: center;
    color: var(--main_color);
    font-size: 26px;
}
.intro p{
    text-align: center;
    font-size: 16px;
}
.intro-title{
    margin-top: 26vh;
}
.online-fee{
    background: var(--dark_2);
    border-radius: 10px;
    font-size: 18px;
    padding: 8px 0 3px 16px;
}
.online-fee-currency{
    position: relative;
    color: var(--main_color);
}
.online-fee-price{
    margin-left: 10px;
}
.online-fee-currency:before{
    content: 'Live';
    position: absolute;
    border-bottom: 1px solid var(--main_color);
    color: #ffffffcf;
    font-family: 'PeydaWeb';
    left: 10%;
    font-size: 12px;
    line-height: 14px;
    top: -27px;
    width: 80%;
    text-align: center;
    animation-name: biting;
    animation-iteration-count: infinite;
    animation-delay: 2s;
    opacity: 1;
}
@keyframes biting {
    0%{opacity: 1}
    50% {opacity: 0.1}
}
.online-fee i{
    margin-left: 10px;
    font-size: 14px;
}
.online-fee .icon-arrow-1{
    margin-left: 20px;
    cursor: pointer;
}
.online-fee .icon-arrow-1:before{
    transition: 0.25s;
    position: relative;
    padding: 8px;
    padding-right: 16px;
    top: 1px;
}
.online-fee .icon-arrow-1:hover:before{
    color: #fff;
}
.navigator-btns{
    transition: 1s ease-in-out;
    height: 80px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}
.navigator-contactinfo{
    position: absolute;
}
.navigator-next:before,.navigator-prev:before{
    content: "\e903";
    display: block;
    transform: rotate(90deg);
    color: var(--main_color);
    padding: 7px 12px;
    cursor: pointer;
    transition: 0.2s;
}
.navigator-btn-prev{
    background: var(--dark_2);
    border-radius: 10px 10px 0 0;
    height: 50%;
    transition: 0.5s;
}
.navigator-btn-next{
    background: var(--dark_2);
    border-radius: 0 0 10px 10px;
    height: 50%;
}
.navigator-btns.open .navigator-btn-next i{
    display: none;
}
.navigator-contactinfo{
    visibility: hidden;
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: .6s ease;
    width: calc(42vw - 100px);
    margin-top: -40px;
}
.aws .navigator-contactinfo{
    visibility: visible;
    opacity: 1;
    clip-path: polygon(100% 0%, 0 0, 0 100%, 100% 100%);
    transition: .6s 1.8s ease;
}
.navigator-contactinfo span{
    FONT-SIZE: 24px;
    color: var(--main_color);
    float: right;
    width: 43px;
    text-align: center;
    margin-left: 10px;
}
.navigator-contactinfo a{
    font-size: 24px;
    color: var(--main_color);
}
.navigator-contactinfo address{
    display: flex;
    font-size: 18px;
    color: #979797;
}

.navigator-prev:before{
    transform: rotate(-90deg);
}
.navigator-next:hover:before,.navigator-prev:hover:before{
    color: #fff;
}
.navigator-next,.navigator-prev{
    position: relative;
    display: block;
    width: 43px;
    height: 40px;
}
.navigator-next:after,.navigator-prev:after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    border-radius: 2px;
    top: -1px;
    background: var(--main_color);
    left: 50%;
    transition: 0.2s ease;
}
.navigator-next:after{
    top:auto;
    bottom: -1px;
}
.navigator-next:hover:after,.navigator-prev:hover:after{
    width: 30%;
    left: 35%;
}
section{
    background-color: #000;
}
section:before{
    content: '';
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    background-image: url(../img/bg2.png);
    background-size: 190% 180%;
    background-position: center;
    opacity: 0.15;
    filter: saturate(2);
}
section:before{
    animation-name : bgmover;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes bgmover{
    0% {background-size: 190% 180%;}
    33% {background-size: 240% 190%;}
    66% {background-size: 200% 140%;}
}
.section-title h3{
    display: inline-block;
    color: var(--main_color);
    font-size: 16px;
    line-height: 36px;
}
.section-title a{
    float: left;
}
section .row{
    justify-content: flex-end;
}
#footerLayout .row{
    justify-content: flex-start;
}
.btn,.button{
    border: 1px solid #6A6A6A;
    border-radius: 5px;
    padding: 2px 20px 1px 20px;
    min-width: 130px;
    text-align: CENTER;
    font-family: var(--main_font);
    position: relative;
    color: #262733;
    font-size: 16px;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: rgb(106,106,106);
    background: -moz-linear-gradient(90deg, rgba(106,106,106,1) 0%, rgb(106, 106, 106) 40%, rgba(203,160,84,1) 60%, rgba(203,160,84,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(106,106,106,1) 0%, rgba(106,106,106,1) 40%, rgba(203,160,84,1) 60%, rgba(203,160,84,1) 100%);
    background: linear-gradient(90deg, rgba(106,106,106,1) 0%, rgba(106,106,106,1) 40%, rgba(203,160,84,1) 60%, rgba(203,160,84,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6a6a6a",endColorstr="#cba054",GradientType=1);
    background-position: left;
    transition: 0.3s linear;
    background-size: 200% 100%;
}

.btn:hover,.button:hover{
    background-position: right;
    border: 1px solid var(--main_color);
    transform-style: preserve-3d;
    transition: 1s ease;
}
.btn:before,.button:before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgb(11, 12, 28) 60%, rgb(28, 28, 28) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgb(28, 28, 28) 60%, rgb(28, 28, 28) 100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgb(11, 28, 28) 60%, rgb(28, 28, 28) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#0b0c1c",GradientType=1);
    background-position: left;
    transition: 0.3s linear;
    background-size: 250% 100%;
    border-radius: 5px;
    transform: translateZ(-1px);
}
.btn:hover:before,.button:hover:before{
    background-position: right;
}

.btn:after,.button:after{
    content: '';
    position: absolute;
    border: 2px solid #6A6A6A;
    background: #6A6A6A;
    height: 5px;
    border-radius: 3px;
    bottom: -2.5px;
    width: 34px;
    left: calc(50% - 16px);
    transition: 0.3s ease;
}
.btn:hover:after,.button:hover:after{
    background: var(--main_color);
    width: 54px;
    left: calc(50% - 27px);
    border: 2px solid rgb(11,12,28);
    border-left: 6px solid rgb(11,12,28);
    border-right: 6px solid rgb(11,12,28);
    border-radius: 8px;
}
.tr{
    display: flex;
}
.card-btn:before{
    display: none;
}
.market .td{
    flex-grow: 1;
    width: 33%;
    font-weight: normal;
    font-size: 12px;
    background: #040404;
    margin: 1px;
    padding: 4px 10px;
    text-align: center;
}
.market-table .tr .td:first-child,.currencies-table .tr .td:nth-child(2){
    border-radius: 0 5px 5px 0;
    text-align: right;
}
.market-table .tr .td:last-child{
    border-radius: 5px 0 0 5px;
}
.market-table{
    background: #000;
    padding: 5px;
    border-radius: 10px;
}
.currency-icon{
    margin: 6px 2px 6px 5px !important;
    width: 20px !important;
    height: 20px;
    padding: 0 !important;
border-radius: 50%;
}
.market-table .tdh{
    position: relative;
    flex-grow: 1;
    width: 33%;
    text-align: center;
    font-size: 12px;
}
.page-template-template-market .table-head .tdh{
    margin: -8px 0 8px 0;
}
.page-template-template-market .currencies-table .table-head {
    margin-right: 36px;
}
.market-table .tdh:before{
    content: '';
    position: absolute;
    display: inline-block;
    height: 5px;
    width: 84%;
    left: 8%;
    background: var(--main_color);
    bottom: -7px;
    border-radius: 10px;
    border: 2px solid #1c1c1c;
}
.currencies-table .table-head {
    margin-right: 28px;
}
.table-head{
    margin: -32px 0 7px 0;
}
.golds-table .tr .td:first-child{
    color: var(--main_color);
}
.blog-carousel .owl-item{
    padding: 1px;
}
.post-item{
    text-align: center;
}
.post-item-image a{
    border: 1px solid transparent;
    overflow: hidden;
    display: block;
    border-radius: 5px;
}
.post-item-image img{
    border-radius: 5px;
    transform: scale(1);
    transition: 5s ease;
    width: 100%;
}
.post-item-image{
    border-radius: 5px;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(172,220,221,0) 35%, rgba(203,160,84,1) 65%, rgba(203,160,84,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(172,220,221,0) 35%, rgba(203,160,84,1) 65%, rgba(203,160,84,1) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(172,220,221,0) 35%, rgba(203,160,84,1) 65%, rgba(203,160,84,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#cba054",GradientType=1);
    background-size: 300% 100%;
    background-position: left;
    transition: .8s ease;
}
.post-item:hover .post-item-image{
    background-position: right;
}
.post-item:hover .post-item-image img{
    transform: scale(1.2);
}
.post-date{
    font-size: 10px;
    color: var(--gray);
    padding: 4px 15px 2px 15px;
    border-radius: 12px;
    position: relative;
    top: -14px;
    background: rgb(24, 24, 24);
    background: -moz-linear-gradient(90deg, rgb(24, 24, 24) 0%, rgb(24, 24, 24) 25%, rgba(203,160,84,1) 75%, rgba(203,160,84,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(9,10,24,1) 0%, rgb(24, 24, 24) 25%, rgba(203,160,84,1) 75%, rgba(203,160,84,1) 100%);
    background: linear-gradient(90deg, rgb(24, 24, 24) 0%, rgb(24, 24, 24) 25%, rgba(203,160,84,1) 75%, rgba(203,160,84,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000",endColorstr="#cba054",GradientType=1);
    background-size: 400% 100%;
    background-position: left;
    transition: .6s 0.1s ease;
    z-index: 1;
}
.post-item:hover .post-date{
    background-position: right;
    color: rgb(24, 24, 24);
}
.post-item h3 a{
    font-size: 18px;
    color: #ccc;
    margin-top: -10px;
    display: block;
    transition: 0.5s;
}
.post-item:hover h3 a{
    color: var(--main_color);
}
.post-item p{
    color: #979797;
}
.banners-grid{
    display: grid;
    grid-template-columns:  33.33% auto 33.33%;
    grid-template-rows:  33% 33% 33%;
    gap : 20px;
}
.banners-grid img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: 1s ease;
}
.banners-grid a:hover img{
    transform: scale(1.1);
}
.banners-grid a{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.bannerl{
    grid-column: 1 /2;
    grid-row: 1/ 4;
}
.banner1{
    grid-column: 2/3;
    grid-row: 1/2;
}
.banner2{
    grid-column: 2/3;
    grid-row: 2/3;
}
.banner3{
    grid-column: 2/3;
    grid-row: 3/4;
}
.bannerr{
    grid-column: 3/4;
    grid-row: 1/4;
}
.banners-grid a:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(9,10,24,.25);
    background: -moz-linear-gradient(0deg, rgb(24, 24, 24) 1%, rgba(9,10,24,0.25) 38%, rgba(9,10,24,0) 100%);
    background: -webkit-linear-gradient(0deg, rgb(24, 24, 24) 1%, rgba(9,10,24,0.25) 38%, rgba(9,10,24,0) 100%);
    background: linear-gradient(0deg, rgb(9, 24, 24) 1%, rgba(9,10,24,0.25) 38%, rgba(9,10,24,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000",endColorstr="#000",GradientType=1);
    transition: .7s ease;
}
.banners-grid a:hover:before{
    height: 50%;
}
.banners-grid a:after{
    content: '';
    position: absolute;
    background: #ffffff5e;
    background: var(--main_color);
    bottom: -3px;
    width: 0;
    left: 50%;
    height: 8px;
    z-index: 2;
    border-radius: 10px;
    transition: .7s ease;
    opacity: 0;
    box-shadow: 0 0 20px #cba054c4;
}
.banners-grid a:hover:after{
    opacity: 1;
    width: 50%;
    left: 25%;
}
.banners-grid h3{
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 15%;
    padding: 0 20px;
    text-align: left;
    font-size: 50px;
    font-weight: bold;
    line-height: 50px;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: -moz-linear-gradient(-90deg, rgba(0,0,0,0) 0%, rgba(172,220,221,0) 40%, rgba(203,160,84,1) 60%, rgba(203,160,84,1) 100%);
    background: -webkit-linear-gradient(-90deg, rgba(0,0,0,0) 0%, rgba(172,220,221,0) 40%, rgba(203,160,84,1) 60%, rgba(203,160,84,1) 100%);
    background: linear-gradient(-90deg, rgba(0,0,0,0) 0%, rgba(172,220,221,0) 40%, rgba(203,160,84,1) 60%, rgba(203,160,84,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#cba054",GradientType=1);
    background-size: 300% 100%;
    background-position: right;
    transition: 1.6s ease;
}
.banners-grid a:hover h3{
    background-position: left;
}
.banner1 h3,.banner2 h3,.banner3 h3{
    top:auto;
    bottom: 10%;
    font-size: 26px;
}
.banner1:after,.banner2:after,.banner3:after{
    display: none;
}
.sections-nav li.active:after{
    background: var(--main_color);
    width: 24px;
}
.home-copyright{
    color: #707070;
    text-align: center;
    pointer-events: none;
}


@media screen and (min-width: 768px) {

    .open .navigator-contactinfo{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 120px;
        top: calc(50% - 60px);
        transition: 1s 1s ease;
        visibility: visible;
        opacity: 1;
    }

    .navigator-btns.open .navigator-btn-next,.navigator-btns.open .navigator-btn-prev{
        height: calc(50% - 60px);
        border-radius: 10px;
    }
    .navigator-btns.open{
        height: calc(100% - 70px);
    }
    .navigator-btns.open .navigator-next:before{
        display: none;
    }
}

@media screen and (max-width: 992px) {

    .head-tell:before{
        display: none;
    }

}

@media screen and (max-width: 768px) {
    .banner1 h3, .banner2 h3, .banner3 h3{
        background-position: left !important;
        font-size: 16px !important;
        line-height: 1 !important;
        padding: 5px !important;
        bottom: 0 !important;
    }
    .bannerl h3, .bannerr h3{
        background-position: left !important;
        font-size: 22px !important;
        line-height: 1 !important;
        padding: 10px !important;
        bottom: 0 !important;
        top: auto !important;
    }
    .banners-grid{
        display: grid;
        grid-template-columns:  16%;
        grid-template-rows:  33%;
        gap : 10px;
    }
    .bannerl{
        grid-column: 4 /7;
        grid-row: 2/ 4;
    }
    .banner1{
        grid-column: 1/3;
        grid-row: 1/2;
    }
    .banner2{
        grid-column: 3/5;
        grid-row: 1/2;
    }
    .banner3{
        grid-column: 5/7;
        grid-row: 1/2;
    }
    .bannerr{
        grid-column: 1/4;
        grid-row: 2/4;
    }
    .logo-box:after{
        display: none;
    }
    .logo-box:before{
        width: 300px;
        height: 300px;
        opacity: 0.8;
    }
    .logo-box a:after{
        height: 230px;
        width: 230px;
        opacity: 0.8;
    }
    .home-copyright{
        display: none;
    }
    .sm-logo img{
        width: 86px;
    }

    .head-tell{
        padding-left: 0;
    }
    .footer-slide-contact{
        display: block;
        position: absolute;
        padding: 0;
        bottom: 110px;
        top: auto;
        left: 0;
        right: 0;
        width: calc(var(--ss-screenWidth));
        max-width: calc(var(--ss-screenWidth));
        padding-right: 0;
        padding-left: 0;
        margin-right: var(--ss-left);
        margin-left: var(--ss-right);
    }
    .aws .footer-slide-contact{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 1;
        visibility: visible;
        transition: 1.5s 1.5s ease;
    }
    .navigator-contactinfo address{font-size: 13px;}
    .navigator-contactinfo a{font-size: 18px;}
    .navigator-contactinfo span{font-size: 18px;margin-top: 5px;}
    .logo-box:before,.logo-box a:after,.logo-box a:before{
        opacity: .85;
    }
}

@media screen and (max-width: 576px) {
    section:before{
        width: 300%;
        height: 100%;
        left: -100%;
    }
    .market .td{
        padding: 4px
    }
}