:root {
    --color-text: #f6f6f6;
    --color-text-hover: #cdcdcd;
    --color-gray: #ebeaea;
    --background-color: #1f1f1f;
    --background-purple: #6274d0
}

*,
::after,
::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    user-select: none;
    list-style: none;
    outline: none;
    text-decoration: none
}

html {
    font-size: 62.5%
}

body {
    font-family: 'IRANSansX';
    background-color: var(--background-color);
    color: var(--color-text);
    max-width: 1920px;
    margin: 0 auto;
    position: relative
}

button,
input::placeholder,
input {
    font-family: 'IRANSansX'
}

input[type="search"]::-webkit-search-cancel-button {
    appearance: none;
    display: none
}

a {
    color: var(--color-text)
}

.container {
    width: 97%;
    margin: 0 auto
}

.box--shadow-top {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 250;
    width: 100%;
    height: 45rem;
    background: linear-gradient(0deg, #1f1f1f00 0%, #1f1f1f30 26%, #1f1f1fe3 92%)
}

@media screen and (max-width: 900px) {
    .box--shadow-top {
        display: none !important
    }
}

@media screen and (min-width: 900px) {
    .container {
        width: 92%;
        margin: 0 auto
    }
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: transparent
}

::-webkit-scrollbar-thumb {
    background: #0c0c0cec;
    border-radius: 2rem
}

::-webkit-scrollbar-thumb:hover {
    background: #303030ec
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.navbar .navWeb {
    display: none;
    border-radius: 2rem;
    width: 100%;
    margin: 2.5rem auto 0;
    padding: 2rem 3rem;
    transition: all ease-in .1s;
    position: fixed;
    top: 0;
    z-index: 999;
    max-width: 1920px
}

.activeScroll {
    width: 95% !important;
    background-color: #161616df;
    box-shadow: 0 0 20px 2px #151515f9;
    backdrop-filter: blur(10px);
    margin-top: 1.5rem !important
}

.activeScrollMobile {
    width: 96% !important;
    bottom: 1rem !important
}

.navbar .navMobile {
    position: fixed;
    display: flex;
    width: 100%;
    bottom: 0;
    z-index: 999;
    transition: all ease-in .1s
}

.navbar .navMobile ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 90%;
    margin: 0 0.5rem 0 0.5rem;
    border-radius: 8rem;
    padding: 1rem .5rem .8rem .5rem;
    border: 1px solid #ffffff1f;
    backdrop-filter: blur(14px) saturate(180%);
    box-shadow: 0 10px 30px #00000059;
    background: #14141459;
    transition: all ease-in .2s
}

.navbar .navMobile ul li {
    display: flex;
    flex: 1 auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: #e3e3e3
}

.navbar .navWeb .right ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    font-size: 1.6rem;
    font-weight: 500
}

.navbar .navWeb .right ul li a {
    transition: all ease-in .1s
}

.navbar .navWeb .right ul li a:hover {
    color: var(--color-text-hover)
}

.navbar .navWeb .right ul li svg {
    margin-bottom: -.7rem
}

.navbar .navWeb .left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem
}

.navbar .navWeb .left .login {
    display: none
}

.navbar .navWeb .left .profile {
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    padding: .5rem .5rem 0;
    cursor: pointer
}

.navbar .navWeb .left .profile img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    object-fit: cover;
    width: 5rem;
    height: 5rem
}

.navbar .navWeb .left .lan .lan__two {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem
}

.navbar .navWeb .left .lan .lan__text {
    font-size: 1.3rem;
    font-weight: 600
}

.navbar .navWeb .left .lan .lan__arrow {
    margin-right: -.5rem;
    margin-bottom: -.3rem
}

.activeLanArrow {
    transform: rotate(180deg);
    transition: transform .3s ease
}

.navbar .navWeb .left .lan {
    position: relative
}

.navbar .navWeb .left .lan .showMenu {
    position: absolute;
    width: 8rem;
    height: 9rem;
    background-color: transparent;
    top: 2rem;
    right: -1rem;
    display: none
}

.activeLan {
    display: flex !important
}

.navbar .navWeb .left .lan .showMenu ul {
    width: 100%;
    height: 100%;
    background-color: #181818e8;
    border-radius: .5rem;
    margin-top: .5rem;
    box-shadow: 0 0 20px 2px #252525;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem
}

.navbar .navWeb .left .lan .showMenu ul li {
    cursor: pointer;
    transition: all ease-in .1s
}

.navbar .navWeb .left .lan .showMenu ul li:hover {
    color: var(--color-text-hover)
}

@media screen and (min-width: 900px) {
    .navbar .navWeb {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .navbar .navMobile {
        display: none
    }
}

@media screen and (max-width: 375px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 15rem !important;
        height: 21rem !important
    }
}

@media screen and (max-width: 455px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 17rem;
        height: 23rem
    }

    .swiper-list swiper-slide .image_cover_video .title--video {
        font-size: 1.4rem
    }
}

@media screen and (min-width: 455px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 14rem;
        height: 21rem
    }

    .swiper-list swiper-slide .image_cover_video .title--video {
        font-size: 1.4rem
    }

    .swiper-list swiper-slide .image_cover_video .star--video .left,
    .swiper-list swiper-slide .image_cover_video .year--video {
        font-size: 1.3rem
    }

    .swiper-list swiper-slide .image_cover_video .star--video .right svg {
        width: 14px;
        height: 14px
    }
}

@media screen and (min-width: 570px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 17rem;
        height: 25rem
    }
}

@media screen and (min-width: 680px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 17rem;
        height: 25rem
    }

    .swiper-list swiper-slide .image_cover_video .title--video {
        font-size: 1.5rem
    }

    .swiper-list swiper-slide .image_cover_video .star--video .left,
    .swiper-list swiper-slide .image_cover_video .year--video {
        font-size: 1.4rem
    }

    .swiper-list swiper-slide .image_cover_video .star--video .right svg {
        width: 15px;
        height: 15px
    }
}

@media screen and (min-width: 900px) {
    main {
        margin-top: 17rem
    }

    .swiper-list swiper-slide .image_cover_video {
        width: 17rem;
        height: 25rem
    }

    .swiper-list swiper-slide .image_cover_video .title--video {
        font-size: 1.6rem
    }

    .swiper-list .boxList-video .continue-video span:nth-child(1) {
        font-size: 1.5rem;
        font-weight: 700
    }

    .swiper-list .boxList-video .continue-video span:nth-child(2) {
        width: 30px;
        height: 30px;
        transition: all ease-in-out .1s
    }
}

@media screen and (min-width: 915px) {
    main {
        margin-top: 7rem !important
    }

    .swiper-list swiper-slide .image_cover_video {
        width: 18rem;
        height: 27rem
    }

    .swiper-list swiper-slide .image_cover_video .star--video .left,
    .swiper-list swiper-slide .image_cover_video .year--video {
        font-size: 1.6rem
    }

    .swiper-list swiper-slide .image_cover_video .star--video .right svg {
        width: 16px;
        height: 16px
    }
}

@media screen and (min-width: 1024px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 18rem;
        height: 26rem
    }

    .swiper-list swiper-slide .image_cover_video .title--video {
        font-size: 1.7rem
    }
}

@media screen and (min-width: 1250px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 22rem;
        height: 32rem
    }

    .swiper-list swiper-slide .image_cover_video .star--video .left,
    .swiper-list swiper-slide .image_cover_video .year--video {
        font-size: 1.7rem
    }

    .swiper-list swiper-slide .image_cover_video .star--video .right svg {
        width: 17px;
        height: 17px
    }
}

@media screen and (min-width: 1500px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 25rem;
        height: 37rem
    }

    .swiper-list swiper-slide .image_cover_video .title--video {
        font-size: 1.8rem
    }
}

@media screen and (min-width: 1600px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 23rem;
        height: 34rem
    }
}

@media screen and (min-width: 1900px) {
    .swiper-list swiper-slide .image_cover_video {
        width: 27rem;
        height: 40rem
    }

    .swiper-list swiper-slide .image_cover_video .title--video {
        font-size: 1.9rem
    }
}

.swiper-list {
    margin-top: 5rem
}

swiper-container {
    width: 100%;
    height: 100%
}

.image_cover_video img {
    z-index: 100;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center
}

.swiper-list swiper-slide .image_cover_video {
    background-image: url(../../uploads/default_image/thumbnail.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 1rem;
    text-align: center;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding-right: 1rem;
    position: relative;
    cursor: pointer
}

.swiper-list swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.swiper-list swiper-slide .shadow-boxVideo {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 400;
    background: linear-gradient(0deg, #0e0e0ec4 30%, #1f1d1d11 100%);
    width: 100%;
    height: 30%;
    border-radius: 1rem
}

.swiper-list swiper-slide .box-star-year {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 1rem;
    z-index: 500;
    margin-right: -.5rem;
    font-size: 1.4rem;
    margin-bottom: .5rem
}

.swiper-list swiper-slide .title--video {
    z-index: 500;
    margin-bottom: 1rem
}

.swiper-list swiper-slide .star--video .right svg {
    width: 13px;
    height: 13px;
    margin-bottom: -.2rem
}

.swiper-list swiper-slide .star--video .left,
.swiper-list swiper-slide .year--video {
    font-size: 1.3rem
}

.swiper-list .boxList-video {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem
}

.swiper-list .boxList-video .nameList-video {
    font-size: 1.6rem;
    font-weight: 700
}

.swiper-list .boxList-video .continue-video {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.swiper-list .boxList-video .continue-video span:nth-child(1) {
    font-size: 1.4rem;
    font-weight: 700
}

.swiper-list .boxList-video .continue-video span:nth-child(2) {
    width: 30px;
    height: 30px;
    transition: all ease-in-out .1s
}

.swiper-list .boxList-video .continue-video:hover span:nth-child(2) {
    margin-left: -.3rem
}
 
.swiper-list swiper-slide .shadow-hover {
    background: radial-gradient(circle, #0000001c 0%, #000000c4 100%);
    position: absolute;
    width: 100%;
    height: 100%
}

.swiper-list swiper-slide .title--video {
    text-align: right
}

.Loding {
    position: absolute;
    z-index: 1000;
    background: #1e1e1e;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

swiper-container {
    opacity: 0;
}