:root {
    --main-color: #fc1313;
    --body-bg: #1b1b1c;
    --box-bg: #111;
    --text-color: #ffffff;

    --nav-height: 0px;
    --space-top: 50px;
}
::selection {
    color: var(--main-color);
    background: var(--box-bg);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 1em;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--box-bg);
    color: var(--text-color);
    padding-top: var(--nav-height);
}

#page_overlay {
    position: fixed;
    position: fixed;
    z-index: 98;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

ul li,li{
  list-style: none;
}

a {
    text-decoration: none;
    color: unset;
}

a:hover{

color: var(--main-color)!important;

}
img {
    max-width: 100%;
}

.main-color {
    color: var(--main-color);
}

.container {
    max-width: 1920px;
    padding: 0 0 0 50px;
    margin: auto;
    overflow: hidden;
}


/**************************************************************/

#spss{
    display: none;
    position: absolute;
  top: 0;
  left: 0;
    height: 100vh;
    width: 100%;
    background: black;
    color: white;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.balala{
  overflow: hidden;
text-overflow: ellipsis;
width: 100%;
display: -webkit-box;
-webkit-line-clamp: 5;
line-clamp: 2;
-webkit-box-orient: vertical;
}




/* Search Style */ 
#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
       -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
           -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
         -moz-transform: translate(0px, -100%) scale(0, 0);
          -ms-transform: translate(0px, -100%) scale(0, 0);
         -o-transform: translate(0px, -100%) scale(0, 0);
              transform: translate(0px, -100%) scale(0, 0);    
    opacity: 0;
    display: none;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
       -moz-transform: translate(0px, 0px) scale(1, 1);
          -ms-transform: translate(0px, 0px) scale(1, 1);
           -o-transform: translate(0px, 0px) scale(1, 1);
               transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
    z-index: 106;
    display: block;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -51px;
    width: 60%;
    margin-left: 20%;
    color: rgb(255, 255, 255);
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, .8);
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    font-size: 1.5em;
    font-weight: 300;
    text-align: center;
    outline: none;
    padding: 10px;
}
  
#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
      opacity: 1;
      font-size: 27px;
    color: #fff;
background: transparent;
border: none;

}

#search .close:hover{
  color: #FC2121;
  cursor: pointer;
}


/*************************************************************/

footer .container, .nav-wrapper .container, .dx .container {
    max-width: 1920px;
    padding: 0 40px;
    margin: auto;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
   
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #000000;
}



.navbar{
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.7) 10%,transparent);
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 99;
    transition: background-color .4s;

}


.navbar .logo a{
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 25px;
    text-transform: uppercase;
}

.navbar .nav_right > ul{
    display: flex;
    align-items: center;
}

.navbar .nav_right ul li.nr_li{
    margin-left: 25px;
    cursor: pointer;
    color: #fff;
    font-size: 1.5em;
    position: relative;
}

.navbar .nav_right ul li.nr_li:hover {
    color: var(--main-color);
}

.navbar .nav_right ul li img{
    width: 35px;
    vertical-align: middle;
    border-radius: 4px;
}

.navbar .dd_menu {
    position: absolute;
    right: -25px;
    top: 47px;
    display: flex;
    background: var(--box-bg);
    border-radius: 4px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.25);
    display: none;
}

.dropdown-item{
    color: #fff;
}


.dropdown-item:focus, .dropdown-item:hover{

background-color: var(--body-bg);
border-top-left-radius: 4px;
border-top-right-radius: 4px;
color: var(--main-color);

}
.navbar .dd_menu .dd_left{
    padding: 15px 0 0 10px;

    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.navbar .dd_menu .dd_left li{
    color: var(--text-color);
}



.navbar .dd_menu .dd_right {
}


.navbar .dd_menu .dd_right ul .dropdown-menu{
    display: contents;

}


.navbar .dd_menu li{
    margin-bottom: 10px;
    color: #fff;
}

.navbar .dd_menu:before{
    content: "";
    position: absolute;
    top: -20px;
    right: 30px;
    border: 10px solid;
    border-color: transparent transparent var(--box-bg) transparent;
}

.navbar .dd_main.active .dd_menu{
    display: flex;
}



.btn {
    background-color: var(--main-color);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 700;
    display: inline-flex;
    position: relative;
    align-items: center;
    border-radius: 4px;
}


.btn-hover:hover::before {
    width: 100%;
}


.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{

    padding: 0 20px!important;
    height: 100%;
    font-size: 4em;
}

.btn i,
.btn span {
    z-index: 1;
}

.btn i {
    margin-right: 1rem;
}

.hamburger-menu {
    --size: 30px;
    height: var(--size);
    width: var(--size);
    cursor: pointer;
    z-index: 101;
    position: relative;
    display: none;
    align-items: center;
}

.hamburger {
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: var(--size);
    height: 3px;
    border-radius: 0.5rem;
    background-color: var(--text-color);
    transition: 0.4s;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    bottom: -10px;
}

.hamburger-menu.active .hamburger {
    background-color: transparent;
}

.hamburger-menu.active .hamburger::before {
    transform-origin: top left;
    transform: rotate(45deg);
    left: 6px;
}

.hamburger-menu.active .hamburger::after {
    transform-origin: bottom left;
    transform: rotate(-45deg);
    left: 6px;
}

.hero-slide-item {
    padding-top: 30%;
    position: relative;
    overflow: hidden;
}

.hero-slide-item img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    display: flex;
}

.item-content-wraper {
    padding-left: 50px;
    width: 30%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.item-content-wraper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.item-content-title {
    font-size: 3rem;
    line-height: 3rem;
    font-weight: 900;
}

.movie-infos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: calc(var(--space-top) / 2);
}

.movie-info {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.movie-info span {
    margin-left: 5px;
}

.movie-info i {
    color: var(--main-color);
}

.movie-info ~ .movie-info {
    margin-left: 5px;
}

.item-content-description {
    font-size: 1.15rem;
    margin-top: var(--space-top);
    line-height: 1.5rem;
}

.item-action {
    margin-top: var(--space-top);
}

.carousel-nav-center {
    position: relative;
}

.carousel-nav-center .owl-nav button i {
    font-size: 3rem;
}

.carousel-nav-center .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-nav-center .owl-nav .owl-prev {
    position: absolute;
    left: 5px;
}

.carousel-nav-center .owl-nav .owl-next {
    position: absolute;
    right: 5px;
}

.owl-nav button {
    border: none;
    outline: none;
}

.owl-nav button i {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.owl-nav button:hover i {
    color: var(--main-color);
}

.top-down {
    transform: translateY(-50px);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-6 {
    transition-delay: 0.6s;
}

.delay-8 {
    transition-delay: 0.8s;
}

.owl-item.active .top-down {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}





.movie-item {

display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 300px;
  height: 180px;
  border-radius: 5px;


}

.owl-carousel .owl-stage-outer{

    overflow: unset!important;
}
.slick-list{
    overflow-x: hidden;
    overflow-y: unset;
}

.slick-track{

    display: flex;
    align-items: center;
       transition:  ease 2s;

}

.movie-item img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.movie-item img:hover {
    opacity: .6;
}




.movie-item-title {
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    font-weight: 700;
}

.we{
justify-content: space-between;
width: auto;
flex-wrap: nowrap;
word-break: keep-all
}

.we a{
padding: 10px ;
}

.section {
    padding-top: 80px;
}

.section-header {
    margin-bottom: 30px;
    padding-left: 20px;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    border-left: 4px solid var(--main-color);
    display: flex;
    align-items: center;
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-box {
    padding: 50px;
    margin: 15px 0;
    background-color: var(--box-bg);
    border-top: 5px solid transparent;
    transition: transform 0.3s ease-in-out;
}

.pricing-box:hover {
    transform: translateY(-20px);
}

.pricing-box.hightlight {
    border-top: 5px solid var(--main-color);
}

.pricing-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
}

.pricing-price {
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
}

.pricing-box-content {
    text-align: center;
    margin-top: 60px;
    font-size: 1.25rem;
}

.pricing-box-action {
    text-align: center;
    margin-top: 60px;
}

footer.section {
    margin-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background-color: var(--box-bg);
}

footer a:hover {
    color: var(--main-color);
}

footer a.logo {
    margin-top: -2.5rem;
    display: block;
}

footer a.logo:hover {
    color: unset;
}

.social-list {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.social-item {
    --size: 30px;
    height: var(--size);
    width: var(--size);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--text-color);
    color: var(--main-color);
}

.social-item:hover {
    background-color: var(--main-color);
    color: var(--text-color);
}

.social-item ~ .social-item {
    margin-left: 20px;
}

footer .content {
    margin-top: 20px;
}

.footer-menu {
    list-style-type: none;
}

.footer-menu a {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.footer-menu a:hover {
    transform: translateX(5px);
}

.copyright {
    padding: 10px;
    border-top: 1px solid var(--body-bg);
    background-color: var(--box-bg);
    text-align: center;
}

/* RESPONSIVE */

@media only screen and (max-width: 1280px) {
    html {
        font-size: 14px;
    }

    .hero-slide-item {
        padding-top: 50%;
    }

    .item-content-wraper {
        width: 50%;
    }
}

@media only screen and (max-width: 850px) {
    html {
        font-size: 12px;
    }

    .container, .x.container,.navbar {
        padding: 0 15px;
    }



    .hero-slide-item {
        height: 80vh;
        padding-top: unset;
    }

    .item-content-wraper {
        width: 100%;
        height: 100%;
        padding-bottom: 20px;
        padding-right: 5rem;
        background-color: rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .hero-slide-item-content {
        position: relative;
    }

    .hero-slide-item img {
        height: 100%;
    }

    .item-content-title {
        font-size: 3rem;
    }

    .hamburger-menu {
        display: grid;
    }

    .nav-menu {
        /* display: none; */
        position: absolute;
        top: 100%;
        left: -100%;
        background-color: #000000;
        flex-direction: column;
        width: 80%;
        height: 100vh;
        padding: 20px;
        transition: 0.3s ease-in-out;
    }

    .nav-menu li {
        margin: 10px 30px;
    }

    .nav-menu.active {
        left: 0;
    }


    .d.movie-infos{

        justify-content: center;
    }
}

@media all and (max-width:975px){

 .mobile-not{display:none!important;visibility:hidden}

}


@media all and (max-width:604px){

.owl-item.active .top-down{
    justify-content: center;
}

.navbar .dd_menu::before{
    right: 22px;
}

.navbar .dd_menu{

    right: -15px;
}

.div-content .row{

    flex-direction: column;
}
.div-widget ul li{
    width: 100%;
}

.we{
    display: none!important;
}

.limits{
    min-width: 250px;
}

}


@media all and (min-width:975px){.mobile-yes{display:none!important;visibility:hidden}}
