* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

:root {
    --main-color: #2fc4ee;
    --light-grey: #ececec;
    --white: #fff;
    --light: #fdfdfd;
    --grey: #bfbfbf;
    --dark: #131313;
    --red: #d50418;
    --light-red: #cf291d;
}

html {
    height: 100%;
}

body {
    font-size: 1rem;
    color: var(--dark);
    background-color: var(--light-grey);
    font-family: "Source Sans Pro", sans-serif;
    position: relative;
    min-height: 100%;
}

.d-flex {
    display: flex;
}

p {
    line-height: 1.4rem;
}

.menu-icon {
    transform: scale(var(--ggs, 1));
}

.menu-icon,
.menu-icon::after,
.menu-icon::before {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
    color: var(--white);
}

.menu-icon::after,
.menu-icon::before {
    content: "";
    position: absolute;
    top: -6px;
}

.menu-icon::after {
    top: 6px;
}

.arrow-down {
    box-sizing: border-box;
    position: relative;
    top: 2px;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px;
}

.arrow-down::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(138deg);
    left: 4px;
    top: 2px;
}

.home {
    background: linear-gradient(to left, currentColor 5px, transparent 0) no-repeat 0 bottom/4px 2px, linear-gradient(to left, currentColor 5px, transparent 0) no-repeat right bottom/4px 2px;
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 18px;
    height: 14px;
    border: 2px solid;
    border-top: 0;
    border-bottom: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: -2px;
}

.home::after,
.home::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
}

.home::before {
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-left-radius: 4px;
    transform: rotate(45deg);
    top: -5px;
    border-radius: 3px;
    width: 14px;
    height: 14px;
    left: 0;
}

.home::after {
    width: 8px;
    height: 10px;
    border: 2px solid;
    border-radius: 100px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
    left: 3px;
    bottom: 0;
}

.close {
    cursor: pointer;
    box-sizing: border-box;
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 40px;
}

.close::after,
.close::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 16px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    border-radius: 5px;
    top: 8px;
    left: 1px;
}

.close::after {
    transform: rotate(-45deg);
}

header {
    margin: 0 auto;
}

.toggle,
[id^="drop"] {
    display: none;
}

nav {
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 99;
    height: 68px;
    background: #131313;
}

#logo {
    display: block;
    padding: 0 30px;
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
}

#logo img {
    max-width: 300px;
    margin: 10px auto;
}

nav:after {
    content: "";
    display: table;
    clear: both;
}

nav ul {
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

nav ul li {
    margin: 0;
    display: block;
    float: left;
}

nav a {
    font-size: 18px;
    padding: 0 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    height: 68px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

nav .login-wrap a {
    text-transform: none;
}

nav a.login {
    padding: 0;
    position: absolute;
    top: 0px;
}

nav a.login:hover .btn-login svg {
    fill: var(--red)
}

nav ul li ul li:hover {
    color: var(--grey);
}

nav a:hover,
nav label:hover {
    color: var(--light-red);
}

nav ul ul {
    display: none;
    position: absolute;
    top: 52px;
    right: -12px;
    min-width: 160px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 0;
}

nav a:hover>ul,
nav ul li:hover>ul {
    display: inherit;
    background-color: var(--white);
    position: absolute;
    top: 68px;
    right: -38px;
    padding: 10px 0;
}

nav ul li:hover>ul {
    position: relative;
    right: 0;
    top: 0;
}

nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    padding: 6px 20px;
}

nav ul ul ul li {
    position: relative;
    top: -60px;
    left: 170px;
}

li>a:only-child:after {
    content: "";
}

@media all and (max-width: 990px) {
    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }
    nav {
        margin: 0;
    }
    .menu,
    .toggle+a {
        display: none;
        z-index: 9;
    }
    .toggle {
        display: block;
        padding: 14px 20px;
        color: var(--dark);
        font-size: 17px;
        text-decoration: none;
        border: none;
    }
    .toggle-icon {
        position: absolute;
        top: 18px;
        right: 0;
        z-index: 99;
    }
    [id^="drop"]:checked+ul {
        display: block;
        text-align: center;
        position: absolute;
        background: var(--dark);
        width: 100%;
    }
    nav ul li {
        display: block;
        width: 100%;
        background: var(--dark);
    }
    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }
    nav ul ul ul a {
        padding: 0 80px;
    }
    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #fff;
        font-size: 17px;
    }
    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #eee;
    }
    nav ul ul {
        float: none;
        position: static;
        color: #fff;
    }
    nav ul li:hover>ul,
    nav ul ul li:hover>ul {
        display: none;
    }
    nav ul ul li {
        display: block;
        width: 100%;
    }
    nav ul ul ul li {
        position: static;
    }
}

@media all and (max-width: 330px) {
    nav ul li {
        display: block;
        width: 94%;
    }
}

.home {
    background: linear-gradient(to left, currentColor 5px, transparent 0) no-repeat 0 bottom/4px 2px, linear-gradient(to left, currentColor 5px, transparent 0) no-repeat right bottom/4px 2px;
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 18px;
    height: 14px;
    border: 2px solid;
    border-top: 0;
    border-bottom: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: -2px;
}

.home::after,
.home::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
}

.home::before {
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-left-radius: 4px;
    transform: rotate(45deg);
    top: -5px;
    border-radius: 3px;
    width: 14px;
    height: 14px;
    left: 0;
}

.home::after {
    width: 8px;
    height: 10px;
    border: 2px solid;
    border-radius: 100px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
    left: 3px;
    bottom: 0;
}

.main-container-login {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 99;
    content: "";
    background: rgba(158, 139, 166, 0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}

.login-wrap {
    padding: 0.1rem 1.5rem;
    text-align: right;
    color: var(--white);
}

.content .login-wrap {
    text-align: center;
    color: var(--dark);
    padding: 20px;
    margin: 0 auto;
    max-width: 350px;
}

.content .login-wrap h1 {
    margin: 0 auto 20px;
}

.login-wrap a {
    color: #fff;
}

.content .login-wrap.contact-wrap {
    margin: 55px auto;
    background: var(--light);
}

.main-login .container {
    filter: blur(10px);
    position: relative
}

.main-login:after {
    display: block;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 9999;
    top: 0;
}

.main-login {
    height: 795px;
    overflow: hidden;
}

.login-absolute {
    position: absolute;
    margin: 0 auto;
    top: 18%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
}

.login-absolute h1 {
    text-align: center;
}

.tab {
    overflow: hidden;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: 0;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    font-family: "Source Sans Pro", sans-serif;
}

.tab button:hover {
    border-bottom: 2px solid var(--purple);
}

.tab button.active {
    border-bottom: 2px solid var(--purple);
}

.tabcontent {
    display: none;
    padding: 6px 20px;
    border-top: none;
}

.close,
.close-login {
    cursor: pointer;
    box-sizing: border-box;
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 40px;
}

.close-login:after,
.close-login:before,
.close::after,
.close::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 16px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    border-radius: 5px;
    top: 8px;
    left: 1px;
}

.close-login:after,
.close::after {
    transform: rotate(-45deg);
}

input.form-control,
textarea {
    padding: 10px;
    outline: none;
    width: 100%;
    max-width: 312px;
    margin: 10px auto;
    text-align: center;
    display: block;
    border: 1px solid var(--light-grey);
}

textarea {
    margin-bottom: 20px;
}

.alert-danger {
    color: red;
    text-align: center;
    display: revert;
    border: 1px solid red;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 20px auto;
}

.alert-success {
    color: rgb(72, 189, 72);
    text-align: center;
    display: revert;
    border: 1px solid rgb(72, 189, 72);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 20px auto;
}

.btn {
    border: none;
    border-radius: 5px;
    width: 100%;
    max-width: 120px;
    height: 38px;
    color: #fff;
    background: var(--red);
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}

.btn-login {
    cursor: pointer;
    background-color: transparent;
    width: 25px;
    margin: 0;
}

.btn-login svg {
    fill: #fff;
    width: 12px;
    height: 20px;
    position: relative;
    top: 3px;
}

.color-btn {
    background: var(--main-color);
    text-transform: uppercase;
    font-size: 25px;
    margin: 20px 0;
    cursor: pointer;
    display: block;
    font-weight: 600;
    padding: 0 20px;
}

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

.yellow {
    background-color: var(--yellow);
}

.purple {
    background-color: var(--purple);
}

.green {
    background-color: var(--green);
}

.red {
    background-color: var(--red);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 99;
}

ul.sidebar-menu .logo {
    width: 100%;
    padding: 20px 25px 0;
}

ul.sidebar-menu .icon {
    width: 40px;
    margin-right: 10px;
}

.lang {
    padding: 5px 33px;
}

.lang img {
    margin-right: 10px;
}

.lang-select {
    background-color: #fff;
    font-size: 1em;
    color: #707070;
    border-radius: 5px;
    border: none;
    outline: 0;
    box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%);
    padding: 5px;
}

.header-mobile {
    max-width: 990px;
    margin: 0 auto;
}

.header-mobile .logo img,
ul.sidebar-menu .logo img {
    max-width: 120px;
}

.header-mobile .btn-login {
    border-radius: 8px;
    width: 35px;
    height: 35px;
    margin: 10px;
}

.header-mobile .logo img {
    margin-top: 8px;
}

ul.sidebar-menu {
    margin: 0;
    padding: 0;
    width: 250px;
    list-style: none;
    list-style-type: none;
    height: 100%;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    left: -100%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 999;
    background: var(--light);
}

.sidebar-menu li a span {
    margin: 0 auto;
    color: #fff;
}

.sidebar-menu .menu-play a span {
    color: var(--main-color);
}

.sidebar-menu .menu-learn a span {
    color: var(--yellow);
}

.sidebar-menu .menu-enjoy a span {
    color: var(--purple);
}

.sidebar-menu .menu-fit a span {
    color: var(--green);
}

.sidebar-menu .menu-adult a span {
    color: var(--red);
}

.sidebar-menu li a {
    background-color: var(--light);
    padding: 18px 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
    position: relative;
    font-size: 1.1em;
}

.sidebar-menu li a:after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    right: 30px;
    top: 24px;
    transition: all 0.5s ease;
}

.sidebar-menu li.active a::after {
    transform: rotate(225deg);
}

.sidebar-menu li a:hover {
    background-color: var(--light);
    padding: 18px 25px;
    display: flex;
    text-decoration: none;
    color: var(--dark);
}

li.have-children ul li a:after {
    display: none;
}

li.have-children ul {
    padding: 0;
}

li.have-children ul li a {
    color: var(--dark);
    height: auto;
    text-align: left;
    display: block;
    font-weight: 700;
    font-size: 15px;
}

li.have-children ul li a:hover {
    color: var(--red);
}

li,
li.have-children {
    position: relative;
}

.sidebar-menu .have-children>ul {
    display: none;
}

.sidebar-menu .have-children:last-child>ul {
    margin-bottom: 50px;
}

.container {
    margin: 25px auto 0;
    width: 100%;
    max-width: 1268px;
}

.content::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 9;
    opacity: 0;
}

.main-news {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.main-news.news-page {
    margin-top: 40px;
}

.single-main-news {
    position: relative;
    background: var(--light);
    box-shadow: 0 0 11px -2px #cecece;
    flex-direction: column;
}


/*.main-news-capture {
  position: absolute;
  z-index: 9;
  bottom: 0;
}*/

.single-main-news img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.single-main-news video {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.main-news.main-videos {
    display: inline-block;
}

.main-news.main-videos .single-main-news,
.section-article {
    margin: 20px 0;
}

.main-news.main-videos .main-news-capture {
    display: flex;
    align-items: center;
}

.main-news.main-videos .main-news-capture h2 {
    background-color: transparent;
    color: var(--dark);
    font-size: 1.4em;
}

.main-news-capture h2 {
    font-size: 15px;
    padding: 12px;
    color: var(--dark);
}

.main-news a:hover .main-news-capture h2,
.best-news a:hover .main-news-capture h2 {
    color: var(--red);
}

.best-news {
    display: flex;
    gap: 1rem;
    margin-bottom: 20px;
}

.best-news a {
    width: 50%;
}

.best-news .single-main-news img {
    height: 285px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.content-sidebar {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 1.2rem;
}

.main-sidebar {
    width: 100%;
    max-width: 975px;
}

.sidebar {
    width: 100%;
}

.swiper-container.Music {
    margin: 20px 0 0;
    height: 375px;
}

.single-app {
    display: flex;
    align-items: center;
    margin: 20px auto;
    flex-wrap: wrap;
}

.single-app .app-description {
    margin: 15px 0 0;
}

.single-app .color-btn {
    text-transform: none;
    font-size: 1.2em;
}

.single-app img {
    max-width: 240px;
    margin-right: 15px;
}

.single-description {
    margin: 20px 0;
}

.more-like-this,
.screenshoots {
    margin: 60px 0;
}

.mfp-counter,
.mfp-title {
    display: none;
}

.back {
    display: flex;
    align-items: center;
    color: var(--main-color);
    cursor: pointer;
    margin-top: 20px;
}

.selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: 0 0;
    border: 1px solid #9a9a9a;
    padding: 5px;
    margin: 5px;
    border-radius: 8px;
    color: #9a9a9a;
    font-size: 0.8rem;
    font-family: "Source Sans Pro", sans-serif;
}

.filters-mobile {
    display: flex;
}

.filters-desktop {
    display: none;
}

option {
    font-family: "Source Sans Pro", sans-serif;
}

.btn-filter {
    width: 100%;
    margin: 10px 0;
}

.content {
    padding: 0 10px;
    position: relative;
}

.article-section {
    box-shadow: 0 0 11px -2px #cecece;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}

.article-section-img {
    width: 100%;
}

.article-section-text {
    padding: 2rem 1rem;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3rem;
    background: var(--light);
    width: 100%;
}

.article-section-text h3 {
    font-size: 1.3rem;
    line-height: 1.5rem;
    color: var(--red);
}

.article-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-section-text p {
    margin: 10px auto;
}

.main-sidebar a:hover .article-section h3 {
    color: var(--red);
}

.top-films {
    text-align: left;
}

.section-title h1,
.section-title h2 {
    font-size: 1.2em;
    text-align: center;
    color: var(--white);
    background: var(--dark);
    padding: 8px;
    text-transform: uppercase;
}

.top-films h2 {
    font-weight: 700;
    font-size: 1.2em;
}

.top-films-wrap {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 20px;
}

.movies-page .top-films-wrap {
    display: inherit;
}

.top-films-single {
    max-width: 145px;
    margin: 0 auto 15px;
    background: var(--light);
    padding: 12px;
}

.music-wrap .top-films-single {
    max-width: 392px;
}

.music-wrap .top-films-single h3 {
    font-size: 1.2rem;
}

.top-films-single h3 {
    font-weight: 500;
    font-size: 1rem;
}

.top-films-single video {
    width: 100%;
}

.top-films-single img {
    width: 145px;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.top-films-single .rating .stars span,
.header-movie .rating .stars span {
    color: var(--red);
}

.top-films-single .rating .stars.two span:nth-child(3),
.top-films-single .rating .stars.two span:nth-child(4),
.top-films-single .rating .stars.two span:nth-child(5) {
    color: var(--grey);
}

.top-films-single .rating .stars.three span:nth-child(4),
.top-films-single .rating .stars.three span:nth-child(5) {
    color: var(--grey);
}

.top-films-single .rating .stars.four span:nth-child(5) {
    color: var(--grey);
}

.top-films-single .rating {
    align-items: center;
    justify-content: space-between;
}

.top-films a,
a {
    color: var(--dark);
}

.apps-section {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 !important;
}

.single-app-section {
    max-width: 190px;
}

.single-app-section h2 {
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--red);
    color: var(--white);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    margin: 10px auto;
}

.apps-section a:hover h2 {
    background-color: var(--yellow);
    color: var(--dark);
}

.single-app-section img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.celebrities-section.celebrities-page {
    background: none;
    padding: 0;
}

.celebrities-page-container {
    flex-wrap: wrap;
    justify-content: center;
}

.celebrities-page-container .celebrities-section-img {
    flex: 1;
}

.single-celebrities-page .celebrities-section-img img {
    width: 100%;
    height: 274px;
    padding: 0 20px;
}

.single-celebrities-page .celebrities-section-img {
    flex-wrap: wrap;
}

.single-celebrities-page .celebrities-section-img>div {
    padding: 0 20px;
}

.celebrities-section-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 15px;
}

.celebrities-section .section-title h2,
.celebrities-section-wrap h3 {
    color: var(--white);
    text-align: center;
}

.celebrities-section-img img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 10px;
    margin: 18px 8px 8px;
}

.apps-section a:hover img,
.celebrities-section-img a:hover img,
.main-news a:hover img,
.top-films a:hover img,
.news-section-wrap a:hover img,
.best-news a:hover img,
.popup-link:hover .card img {
    filter: contrast(1.2);
}

.apps-section .celebrities-section-img img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

.apps-section .celebrities-section-img p {
    margin-bottom: 1rem;
}

.celebrities-section-img a div {
    padding: 16px 0;
    width: 100%;
    text-align: center;
}

.celebrities-section-img .btn {
    margin: 0 auto
}

.celebrities-section-wrap h3 {
    font-weight: 500;
    font-size: 1rem;
}

.celebrities-section-img a {
    align-items: center;
    margin: 20px auto;
    flex-direction: column;
    box-shadow: 0 0 11px -2px #cecece;
    background: var(--light);
}

.celebrities-section-img h3 {
    padding: 0 0 16px 0;
    font-size: 1rem;
    font-weight: 600;
}

.celebrities-section-img a:hover h3 {
    color: var(--red);
}

.news-section-wrap a {
    display: block;
}

.news-section-img img {
    width: 100%;
    margin: 20px auto -4px;
    border-bottom: 5px solid var(--red);
    height: 232px;
    object-fit: cover;
}

.news-section-wrap h2 {
    box-shadow: 0 0 11px -2px #cecece;
    background: var(--light);
    font-size: 1rem;
    line-height: 1.2rem;
    padding: 8px;
}

.news-section-wrap a:hover h2 {
    color: var(--red);
}

.header-movie {
    position: relative;
}

.header-movie img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: brightness(0.3);
}

.info-movie {
    position: absolute;
    z-index: 9;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
}

.info-movie img {
    height: 210px;
    width: 140px;
    filter: none;
    margin: 20px 0 20px 20px;
}

.movie-rating {
    flex-direction: column;
    margin: 20px;
    color: var(--white);
}

.contact-form-area {
    margin-top: 20px;
}

.contact-form-area label {
    font-weight: 700;
}

.sidebar .top-films-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0;
}

.sidebar .top-films-single {
    max-width: 180px;
    text-align: center;
}

.sidebar .top-films-single img {
    width: 180px;
    border-radius: 10px;
    height: 232px;
    object-fit: cover;
}

.section {
    margin: 30px 0;
}

section.games-section .title-section h2,
section.games-section .title-section i {
    color: var(--main-color);
}

section.stream-section .title-section h2,
section.stream-section .title-section i {
    color: var(--purple);
}

section.ready-section .title-section h2,
section.ready-section .title-section i {
    color: var(--green);
}

section.games-section .title-category i,
section.ready-section .title-category i,
section.stream-section .title-category i {
    color: var(--dark);
}

.bottom-menu {
    box-shadow: 0 0 10px #e6e6e6;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 99999;
    background: var(--white);
}

.bottom-menu a {
    color: #868686;
    display: flex;
    align-items: center;
    width: 22px;
    height: 26px;
}

.audios .mySelection .selection-wrap {
    max-width: 750px;
}

.audios .mySelection .app-description {
    margin: auto 20px;
    max-width: 298px;
    display: block;
}

.audios .mySelection .btn-selection {
    margin: 0;
}

.mySelection.ringtones .selection-wrap {
    margin: 0 8px;
}

.article img {
    width: 100%;
    object-fit: cover;
    margin: 10px auto;
}

.article-wrap h2 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 20px 0;
    line-height: 1.4rem;
}

.article-wrap .sidebar h2 {
    margin: 0;
}

.article p,
article p {
    line-height: 1.5rem;
    font-size: 1.2rem;
    margin: 20px auto;
}

.section.videos,
section.articles {
    margin: 40px 0;
}

.articles-grid,
.flag-grid,
.videos-grid {
    display: flex;
    flex-wrap: wrap;
}

.flag-grid {
    justify-content: space-between;
}

.articles-grid .articles-wrap,
.videos-grid .videos-wrap {
    max-width: 318px;
    margin: 5px;
    background: #fff;
    box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%);
    padding: 12px;
    border-radius: 8px;
}

.articles-grid img,
.videos-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.flag-grid img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
}

.articles-wrap h3,
.flag-wrap h3,
.videos-wrap h3 {
    font-weight: 600;
    color: var(--dark);
    height: 48px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0;
    font-size: 1rem;
    margin: 8px 0;
    text-align: left;
}

.flag-wrap h3 {
    height: auto;
}

.articles-wrap p {
    display: block;
    text-align: left;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    font-weight: 400;
}

.flag-wrap {
    background: 0 0;
    box-shadow: none;
    margin: 0;
    padding: 12px 8px 0;
    width: 100%;
    max-width: 134px;
}

.videos-grid .videos-wrap {
    background: 0 0;
    box-shadow: none;
    margin: 0;
    padding: 12px 8px 0;
    width: 100%;
    max-width: 100%;
}

.card-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
}

.fit-grid-gallery .card-columns .card {
    margin-bottom: 0.75rem;
}

.grid-gallery {
    margin: 40px 0;
}

.card {
    box-shadow: none;
}

.mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

footer {
    margin-top: 100px;
    background: var(--dark);
    color: var(--white);
    z-index: 99999;
    bottom: -140px;
    width: 100%;
}

@media(min-width:990px){
footer{position:absolute;}
}
footer a{color:#fff}
footer .footer-wrap {
    display: flex;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 52px;
    line-height: 20px;
    width: 90%;
    font-size: 0.8rem;
    margin: 0 auto;
    align-items: center;
    flex-direction: column;
}

footer .footer-wrap .icon img {
    width: 22px;
    margin: 0 auto;
}

footer .footer-wrap>div {
    flex: 3;
    padding: 0 20px;
}

footer .footer-wrap div.icons {
    flex: 0.5;
    display: flex;
    margin-top: 15px;
}

footer .footer-wrap .icon {
    background: var(--white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
}

footer .footer-wrap a:hover .icon {
    background-color: var(--light-grey);
}

@media (min-width:820px) {
    html {
        height: 100%;
    }
    body {
        font-size: 0.9rem;
        overflow-x: hidden;
        min-height: 100%;
        padding-bottom: 150px;
    }
    .main-container {
        min-height: 100%;
        position: relative;
    }
    .menu-static {
        flex: 25%;
    }
    main {
        flex: 100%;
    }
    .content::after {
        display: none;
    }
    .main-sidebar {
        flex: 4;
    }
    .sidebar {
        flex: 2;
    }
    .main-sidebar.article {
        flex: 2;
    }
    ul.sidebar-menu {
        overflow: hidden;
    }
    .article-section-img {
        width: inherit;
    }
    .article-section-text h3 {
        color: var(--dark);
    }
    .celebrities-section-img a div {
        text-align: left;
        margin-left: 10px;
    }
    .celebrities-section-img .btn {
        margin: 0
    }
    .celebrities-section-img a {
        flex-direction: row;
    }
    .celebrities-section-img img {
        margin: 8px;
    }
    article {
        margin: 20px 0;
        max-width: 1200px;
    }
    article img {
        height: 450px;
    }
    .articles-grid {
        justify-content: left;
    }
    .articles-grid .articles-wrap {
        margin: 12px;
    }
    .flag-grid {
        justify-content: left;
    }
    .terms {
        margin-top: 40px;
    }
    footer .footer-wrap div.icons {
        margin-top: 5px;
    }
}

@media (min-width: 990px) {
    li.have-children ul li a {
        text-align: center;
    }
    nav a.login {
        position: relative;
        top: inherit;
    }
    nav ul li:hover>ul {
        display: inherit;
        background-color: var(--white);
        position: absolute;
        top: 68px;
        right: -38px;
        padding: 10px 0;
    }
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    nav ul ul {
        background: var(--white);
    }
    #logo a {
        padding: 0;
    }
    .content-sidebar {
        flex-wrap: nowrap;
    }
    .main-sidebar {
        flex: 5;
    }
    .top-films-wrap {
        justify-content: space-between;
    }
    .main-sidebar.article {
        flex: 5;
        margin-top: -10px;
    }
    .single-main-news img {
        height: 208px;
        width: 302px;
    }
    .single-main-news {
        flex-direction: row;
    }
    .single-main-news video {
        width: 400px;
    }
    .article-section {
        height: 250px;
        flex-wrap: nowrap;
    }
    .article-section-img img {
        width: 220px;
    }
    .articles-grid .articles-wrap {
        max-width: 270px;
    }
    .card-columns {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }
    footer {
        bottom: 0;
    }
    footer .footer-wrap {
        margin-bottom: 0;
        flex-direction: row;
    }
}

@media (min-width: 1200px) {
    .close {
        display: none;
    }
    .header-mobile {
        display: none;
    }
    .main-container {
        display: flex;
    }
    ul.sidebar-menu {
        left: 0;
    }
    .sidebar {
        flex: 1.5;
    }
    .main-news {
        flex-wrap: nowrap;
    }
    .main-news.news-page {
        flex-wrap: wrap;
    }
}
