@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.promo {
    width: 100%;
    background: #ef4035;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 17px;
}

.promo__text {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.promo i {
    color: #FCCC12;
    font-size: 17px;
}

.promo a,
.videos__element a,
.blog__element a {
    text-decoration: none;
}

.header {
    width: 100%;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 140px 10px 140px;
    position: relative;
    z-index: 2;
    background: #30D5C8;
    background: linear-gradient(-90deg, #30D5C8 0.00%,
    rgba(0,0,0,0 ) 100.00%);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000;
    transition: background-color 0.5s ease;
}

.sticky + .sticky-indicator {
    padding-top: 102px;
}

@media only screen and (max-width: 1500px) {
    .header {
        padding: 10px 80px 10px 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .header {
        padding: 10px 60px 10px 60px;
    }
}

@media only screen and (max-width: 700px) {
    .header {
        padding: 10px 20px 10px 20px;
    }
}

@media only screen and (max-width: 500px) {
    .header {
        padding: 10px 10px 10px 10px;
    }
}

.header__logo {
    margin: 0 auto 0 0;
    outline: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo img {
    height: 48px;
}

.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-evenly;
    margin: 0 0 0 auto;
    position: relative;
    gap: 30px;
    row-gap: 20px;
}

@media only screen and (max-width: 1390px) {
    .header__nav {
        background: white;
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: calc(100vh - 120px);
        top: 100%;
        width: 100%;
        z-index: 999;
        left: 0;
        padding: 10px 0;
        overflow-y: auto !important;
        -webkit-transform: translateX(100vw);
        transform: translateX(100vw);
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }
    .header__nav--open {
        -webkit-transform: translateX(0vw);
        transform: translateX(0vw);
        -webkit-transition: 0.4s;
        transition: 0.4s;
        overflow-y: auto;
    }
}

@media only screen and (max-width: 750px) {
    .header__nav {
        height: calc(100vh - 120px);
    }
}

.header__link {
    color: #fff;
    outline: none;
    text-decoration: none;
    margin: 0 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 20px;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: lowercase;
    font-family: "Roboto";
}

.header__link:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #999;
}

.header__nav--open .header__link,
.header__nav--open .header___button--inNav {
    color: #000;
}

.header__nav--open .header___button--colored {
    color: #fff;
}

.header__searchBtn {
    color: #fff;
    height: 100%;
    outline: none;
    text-decoration: none;
    margin: 0 auto 0 30px;
    border: none;
    background: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 20px;
    position: relative;
    z-index: 1;
    right: 5px;
    border-radius: 6px;
}

.header__searchBtn:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
}

@media only screen and (max-width: 1570px) {
    .header__searchBtn {
        margin: 0 auto 0 20px;
    }
}

@media only screen and (max-width: 1390px) {
    .header__searchBtn {
        margin: 0 10px 0 auto;
        padding: 0;
    }
}

.header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 0 auto;
    gap: 20px;
}

@media only screen and (max-width: 1390px) {
    .header__buttons {
        margin: 0 0 0 10px;
    }
}

@media only screen and (max-width: 700px) {
    .header__buttons {
        display: none;
    }
}

.header___button {
    padding: 9px 28px;
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    outline: none;
    text-decoration: none;
    border-radius: 6px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    white-space: nowrap;
    text-transform: lowercase;
    font-family: "Roboto";
}

.header___button:hover {
    color: #999;
}

@media only screen and (max-width: 750px) {
    .header___button {
        padding: 5px 12px;
    }
}

.header___button--colored {
    background: #135954;
    color: #fff;
}

.header___button--colored:hover {
    background: #176b65;
    color: #fff;
}

.header___button--inNav {
    display: none;
}

@media only screen and (max-width: 700px) {
    .header___button--inNav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header__hamburger {
    width: 40px;
    height: 40px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    background: none;
    outline: none;
    display: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mobile-display {
    display: none;
}

@media only screen and (max-width: 1390px) {
    .header__hamburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .mobile-display {
        display: flex;
    }

    .dropdown {
        display: none;
    }
}

.header__hamburger:hover {
    cursor: pointer;
    opacity: 0.6;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.header__hamburger span {
    width: 24px;
    height: 3px;
    background: #fff;
    position: absolute;
}

.header__hamburger .first {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

.header__hamburger .second {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 1;
}

.header__hamburger .third {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.header__hamburger .first--open {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header__hamburger .second--open {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
}

.header__hamburger .third--open {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.footer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

.footer__container {
    padding: 30px 140px 30px 140px;
    background: #145954;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 60px;
}

@media only screen and (max-width: 1500px) {
    .footer__container {
        padding: 30px 80px 30px 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .footer__container {
        padding: 30px 60px 30px 60px;
    }
}

@media only screen and (max-width: 700px) {
    .footer__container {
        padding: 30px 20px 30px 20px;
    }
}

@media only screen and (max-width: 500px) {
    .footer__container {
        padding: 30px 10px 30px 10px;
    }
}

@media only screen and (max-width: 1050px) {
    .footer__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 40px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 430px) {
    .footer__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
    }
}

.footer__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media only screen and (max-width: 1050px) {
    .footer__column {
        max-width: 600px;
    }
}

@media only screen and (max-width: 600px) {
    .footer__column {
        width: 100%;
    }
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

.footer__p {
    font-size: 16px;
    line-height: 30px;
    color: white;
    font-weight: 400;
}

.footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media only screen and (max-width: 600px) {
    .footer__nav {
        width: 100%;
    }
    .footer__nav--withoutTitle {
        margin: 0;
    }
}

.footer__link {
    color: white;
    font-size: 16px;
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin: 0 0 20px 0;
}

.footer__link:hover {
    opacity: 0.5;
}

.footer__payments {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

@media only screen and (max-width: 1500px) {
    .footer__payments {
        padding: 40px 80px 40px 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .footer__payments {
        padding: 40px 60px 40px 60px;
    }
}

@media only screen and (max-width: 700px) {
    .footer__payments {
        padding: 40px 20px 40px 20px;
    }
}

@media only screen and (max-width: 500px) {
    .footer__payments {
        padding: 40px 10px 40px 10px;
    }
}

.footer__payments img {
    height: 25px;
}

@media only screen and (max-width: 1170px) {
    .footer__payments {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer__logo {
    height: 90px;
    margin: 0 0 60px 0;
}

.footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 50px 0 0;
    min-width: 50%;
}
@media only screen and (max-width: 600px) {
    .footer__menu {
        width: 45%;
        margin-right: 20px;
    }
}

.main {
    width: 100%;
    overflow: hidden;
    margin-top: -100px;
}

.latest-video-section {
    display: flex;
    flex-direction: column;
}

.latest-video-section .bigLinkBtn {
    margin-top: 30px;
    margin-bottom: 50px;
}

.latestVideo {
    padding: 0 140px 0 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 20px 0 30px 0;
    width: 100%;
}

.latest-title.title span {
    font-family: "Open Sans", sans-serif;
    font-size: 26px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #4a4a4a;
    padding-top: 40px;
}

@media only screen and (max-width: 1500px) {
    .latestVideo {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .latestVideo {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .latestVideo {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .latestVideo {
        padding: 0 10px 0 10px;
    }
}

.latestVideo__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    grid-gap: 16px;
    text-decoration: none;
}

.latestVideo__grid h2.videos__title {
    padding-top: 5px;
}

@media only screen and (max-width: 660px) {
    .latestVideo__grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: center;
    }
}

.latestVideo__bigImg {
    width: 100%;
    height: 100%;
    aspect-ratio: 10/5.6;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 18px;
}

.latestVideo__smallGrid {
    display: flex;
    /*flex: auto;*/
    flex-direction: row;
    gap: 16px;
    flex-basis: 50%;
    flex-wrap: wrap;
}

.latestVideo__smallImg {
    width: 100%;
    aspect-ratio: 10/5.5;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 18px;
    flex: 1 0 100%;
    max-width: calc(50% - 16px);
}

.coloredContainer, .whiteContainer, .blackContainer {
    background: #F8F8F8;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.whiteContainer {
    background: #fff;
}

.blackContainer {
    background: #000;
}

.coloredContainer__title {
    color: #393939;
    font-weight: 500;
    font-size: 28px;
}

.whiteContainer .coloredContainer__title,
.blackContainer .coloredContainer__title {
    color: #4A4A4A;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
}

.whiteContainer .see-more-btn,
.blackContainer .see-more-btn {
    color: #fff;
    background: #171717;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 20px;
    transition: 0.4s;
    width: fit-content;
    text-align: center;
}

.studios .col .see-more-btn {
    background: #292929;
}

.studios .col .open-btn {
    padding: 4px 8px;
}

.blackContainer .models__title {
    font-size: 17px;
}

.see-more-btn:hover,
.studios .col .see-more-btn:hover {
    background: #135954;
}

@media only screen and (max-width: 660px) {
    .coloredContainer__title {
        font-size: 26px;
        text-align: center;
    }

    .latestVideo__smallGrid {
        flex-direction: row;
        margin-bottom: 15px;
    }

    .latestVideo__smallImg {
        flex: 1 0 100%;
        max-width: calc(50% - 8px);
    }

    .latestVideo .videos__data {
        width: 100%;
    }
}

.bigParagraph {
    width: 100%;
    padding: 0 140px 0 140px;
    text-align: center;
    color: #393939;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 50px 0;
}

@media only screen and (max-width: 1500px) {
    .bigParagraph {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .bigParagraph {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .bigParagraph {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .bigParagraph {
        padding: 0 10px 0 10px;
    }
}

.clock {
    width: 100%;
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #145954;
    position: relative;
    overflow: hidden;
}

.backdrop__bg {
    min-width: 100%;
    width: max-content;
    position: absolute;
    bottom: -50px;
    left: 0;
    color: #0d3936;
    font-size: 15.6em;
    text-align: center;
    z-index: 0;
    font-family: "Exo 2";
}

.clock__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-family: "Roboto";
}

@media only screen and (max-width: 800px) {
    .clock__title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 600px) {
    .clock__title {
        font-size: 24px;
    }

    .backdrop__bg {
        bottom: -13px;
        font-size: 4.3em;
    }
}

.clock__flipClockWrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.clock .flip-clock {
    text-align: center;
    -webkit-perspective: 400px;
    perspective: 400px;
    /*margin: 0 auto;*/
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.clock .flip-clock *,
.clock .flip-clock *:before,
.clock .flip-clock *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.clock .flip-clock__piece {
    display: inline-block;
    margin: 0 10px;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 430px) {
    .clock .flip-clock__piece {
        margin: 0 5px;
    }
}

.clock .flip-clock__slot {
    font-size: 16px;
    font-weight: 600;
    padding: 3px 0;
    width: 100%;
    color: #145954;
    /*background: #f6f6f6;*/
    display: block;
    position: relative;
    text-transform: lowercase;
    font-family: "Exo 2";
    margin-top: -30px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 730px) {
    .clock .flip-clock__slot {
        font-size: 12px;
        margin-top: -22px;
    }
}

.clock .card {
    display: block;
    position: relative;
    padding: 0.2em;
    padding-bottom: 1em;
    font-size: 68px;
    line-height: 1.4;
}

@media only screen and (max-width: 730px) {
    .clock .card {
        font-size: 40px;
    }
}

@media only screen and (max-width: 430px) {
    .clock .card {
        font-size: 36px;
    }
}

.flip-clock__card.card {
    background: #135954;
    background: linear-gradient(180deg,
    #135954 0.00%,
    #f6f6f6 100.00%);
}

.clock .card__top {
    display: block;
    height: 0.8em;
    color: #145954;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 1.7em;
    font-weight: normal;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    font-family: "Exo 2";
}

@-webkit-keyframes flipTop {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        z-index: 2;
    }
    0%, 99% {
        opacity: 0.99;
    }
    100% {
        -webkit-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
        opacity: 0;
    }
}

@keyframes flipTop {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        z-index: 2;
    }
    0%, 99% {
        opacity: 0.99;
    }
    100% {
        -webkit-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
        opacity: 0;
    }
}

@-webkit-keyframes flipBottom {
    0%, 50% {
        z-index: -1;
        -webkit-transform: rotateX(90deg);
        transform: rotateX(90deg);
        opacity: 0;
    }
    51% {
        opacity: 0.99;
    }
    100% {
        opacity: 0.99;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        z-index: 5;
    }
}

@keyframes flipBottom {
    0%, 50% {
        z-index: -1;
        -webkit-transform: rotateX(90deg);
        transform: rotateX(90deg);
        opacity: 0;
    }
    51% {
        opacity: 0.99;
    }
    100% {
        opacity: 0.99;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        z-index: 5;
    }
}

.title {
    width: 100%;
    margin: 20px 0 0;
    background: #000;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.title span {
    color: #fff;
    padding: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 27px;
    font-weight: 300;
    background: #000;
    z-index: 1;
    position: relative;
}

.title::before,
.title::after {
    content: "";
    width: 50%;
    height: 3px;
    position: absolute;
}

.title::before {
    left: 0;
    background: #135954;
    background: linear-gradient(-90deg,
    #135954 0.00%,
    #000000 100.00%);
}

.title::after {
    right: 0;
    background: #135954;
    background: linear-gradient(90deg,
    #135954 0.00%,
    #000000 100.00%);
}

@media only screen and (max-width: 720px) {
    .title span {
        font-size: 24px;
    }
}

.bigLinkBtn {
    margin: 70px auto 70px auto;
    width: 500px;
    max-width: 90%;
    height: 66px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 28px;
    font-weight: normal;
    background: #000;
    text-decoration: none;
    outline: none;
    padding: 25px 55px;
    font-family: "Expo 2", sans-serif;
    border: 3px solid #30D5C8;
    filter: drop-shadow(0px 0px 8px #30D5C8);
}

.bigLinkBtn:hover {
    filter: drop-shadow(0px 0px 20px #30D5C8);
}

@media only screen and (max-width: 720px) {
    .bigLinkBtn {
        font-size: 23px;
        padding: 16px 30px;
    }
}

@media only screen and (max-width: 380px) {
    .bigLinkBtn {
        font-size: 18px;
        border-radius: 20px 0 20px 0;
    }
}

.changeFilters {
    padding: 0 140px 0 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    width: 100%;
    margin: -15px 0 35px;
}

.filters-video-list {
    justify-content: flex-start;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1500px) {
    .changeFilters {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .changeFilters {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .changeFilters {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .changeFilters {
        padding: 0 10px 0 10px;
    }
}

.changeFilters__link {
    color: #393939;
    font-size: 20px;
    outline: none;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    padding: 8px 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 10px;
}

.changeFilters__link:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0.6;
}

.changeFilters__link--active {
    border: 1px solid #393939;
}

@media only screen and (max-width: 580px) {
    .changeFilters__link {
        font-size: 14px;
        padding: 7px 16px;
    }
}

.tags {
    width: 100%;
    padding: 0 140px 0 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 1500px) {
    .tags {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .tags {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .tags {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .tags {
        padding: 0 10px 0 10px;
    }
}

.tags__menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px 0 45px 0;
}

.tags__page {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    outline: none;
    color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 6px;
    padding: 2px 15px;
    margin-right: 1px;
}

.tags__page:last-child {
    margin-right: 0;
}

.tags__page:hover {
    color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: #135954;
}

.tags__page--active {
    color: white;
    background: #135954;
}

.tags__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    margin: 0px 0 40px 0;
    width: 100%;
}

@media only screen and (max-width: 1400px) {
    .tags__list {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 880px) {
    .tags__list {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

.tags__tagLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    outline: none;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    text-transform: lowercase;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tags__tagLink:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0.6;
}

.tags__tagLink .dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #135954;
    margin: 0 15px 0 0;
}

.tags__tagLink .number {
    margin: 0 0 0 5px;
    font-weight: 500;
}

@media only screen and (max-width: 700px) {
    .tags__tagLink {
        font-size: 14px;
    }
    .tags__tagLink .dot {
        width: 8px;
        height: 8px;
    }
}

body {
    width: 100%;
}

.categories, .error, .my-profile, .paysites {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    padding: 0 140px 0 140px;
    margin-top: 10px;
}

@media only screen and (max-width: 1500px) {
    .categories, .error, .my-profile, .paysites {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .categories, .error, .my-profile, .paysites {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .categories, .error, .my-profile, .paysites {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .categories, .error, .my-profile, paysites {
        padding: 0 10px 0 10px;
    }
}

@media only screen and (max-width: 1310px) {
    .categories, .paysites {
        -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-row-gap: 20px;
    }
}

@media only screen and (max-width: 840px) {
    .categories, .paysites {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-row-gap: 20px;
    }
}

@media only screen and (max-width: 540px) {
    .categories, .paysites {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 18px;
    }
}

@media only screen and (max-width: 370px) {
    .categories, .paysites {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.categories__element, .models__element, .paysites__element {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: none;
    text-decoration: none;
    gap: 8px;
    transition: .4s;
    position: relative;
    border-width: 3px;
    border-style: solid;
    border-color: transparent;
    background: #145954;
}

.models__element:hover {
    border-color: #00baff;
}

.categories__element:nth-child(odd):hover,
.paysites__element:nth-child(odd):hover {
    border-color: #00baff;
}

.categories__element:nth-child(even):hover,
.paysites__element:nth-child(even):hover {
    border-color: #680088;
}

.categories__picture, .models__picture, .paysites__picture {
    width: 100%;
    object-fit: cover;
}

.categories__picture, .paysites__picture {
    aspect-ratio: 1/1;
}

.models .categories__picture {
    aspect-ratio: 6.5/10;
}

.models__picture, .blackContainer .categories .categories__picture {
    aspect-ratio: 1/1;
}

.categories__title, .models__title, .paysites__title {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    font-family: "Roboto", sans-serif;
}

.models__title {
    padding-bottom: 4px;
}

.categories__title, .paysites__title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.categories__element:nth-child(odd) .categories__title,
.paysites__element:nth-child(odd) .paysites__title {
    background: rgba(161,229,255,0 );
    background: linear-gradient(180deg,
    rgba(161,229,255,0 ) 0.00%, #135954 100.00%);
}

.categories__element:nth-child(even) .categories__title,
.paysites__element:nth-child(even) .paysites__title {
    background: rgba(255,255,255,0);
    background: linear-gradient(180deg,
    rgba(255,255,255,0) 0.00%,
    #680088 100.00%);
}

.blog {
    padding: 0 140px 0 140px;
    display: -ms-grid;
    display: grid;
    width: 100%;
    max-width: 1360px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 16px;
    margin: 20px auto;
}

@media only screen and (max-width: 1500px) {
    .blog {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .blog {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .blog {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .blog {
        padding: 0 10px 0 10px;
    }
}

@media only screen and (max-width: 870px) {
    .blog {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.blog__element {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blog__img {
    width: 100%;
    aspect-ratio: 10/7;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 8px;
}

.blog__title {
    font-family: "Roboto";
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    max-width: 510px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog__element:nth-child(even) .blog__title {
    color: #30D5C8;
}

@media only screen and (max-width: 1350px) {
    .blog__title {
        max-width: 430px;
    }
}

@media only screen and (max-width: 1050px) {
    .blog__title {
        font-size: 16px;
        max-width: 350px;
    }
}

@media only screen and (max-width: 450px) {
    .blog__title {
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
}

@media only screen and (max-width: 340px) {
    .blog__title {
        max-width: 200px;
    }
}

.blog__description {
    color: #fff;
    font-weight: 300;
    line-height: 30px;
    max-width: 510px;
    font-family: "Roboto";
    font-size: 20px;
}

@media only screen and (max-width: 450px) {
    .blog__description {
        width: 100%;
        font-size: 18px;
    }
}

.single-post, .contact-page {
    padding: 0 140px 0 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    max-width: 1360px;
    gap: 18px;
    margin: 50px auto 30px auto;
}

.margin-0-auto {
    margin: 0 auto;
    max-width: 100%;
}

.margin-top-40 {
    margin-top:40px;
}

.margin-bottom-40 {
    margin-bottom:40px;
}

.margin-bottom-50 {
    margin-bottom:50px;
}

.margin-bottom-20 {
    margin-bottom:20px;
}

@media only screen and (max-width: 1500px) {
    .single-post, .contact-page {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .single-post, .contact-page {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .single-post, .contact-page {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .single-post, .contact-page {
        padding: 0 10px 0 10px;
    }
}

.single-post__image {
    width: 100%;
    /*aspect-ratio: 10/4;
    -o-object-fit: cover;
    object-fit: cover;*/
}

.single-post__title {
    font-size: 18px;
    color: #fff;
    width: 100%;
    font-family: "Roboto";
    font-weight: bold;
}

@media only screen and (max-width: 450px) {
    .single-post__title {
        font-size: 16px;
    }
}

.single-post__text {
    color: #fff;
    font-family: "Roboto";
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    font-weight: 300;
}

@media only screen and (max-width: 450px) {
    .single-post__text {
        font-size: 17px;
        line-height: 22px;
    }
}

.videos, .models, .studios {
    padding: 0 140px 0 140px;
    width: 100%;
    display: -ms-grid;
    display: grid;
    /*
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    */
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin: 0 0 50px 0;
    grid-row-gap: 34px;
}

.studios {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.studios .col {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.studios .col  .title {
    margin-top: 0;
}

.studios .col .row {
    display: flex;
    color: #fff;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 30px;
    align-items: center;
    flex-direction: row;
}

.studios .col .row .studio-name {
    font-size: 22px;
    font-weight: 500;
    font-family: "Roboto";
    float: left;
    width: 100%;
}

.studios .col .row .studio-counter {
    font-size: 14px;
    font-weight: 500;
    font-family: "Exo 2";
    width: 100%;
}

.studios .col .row .studio-counter-box {
    float: right;
    padding: 8px 18px;
    border-color: #30D5C8;
    border-width: 2px;
    border-style: solid;
}

.studios .col:nth-child(even),
.studios .col:nth-child(even) .title,
.studios .col:nth-child(even) .title span {
    background: #171717;
}

.studio-description {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    font-family: "Roboto";
    text-align: center;
    padding-bottom: 15px;
}

.models {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

@media only screen and (max-width: 1500px) {
    .videos, .models, .studios {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .videos, .models, .studios {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .videos, .models, .studios {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .videos, .models, .studios {
        padding: 0 10px 0 10px;
    }
}

.videos--topMargin {
    margin-top: 20px;
}

.videos--bottomMargin {
    margin-bottom: 50px;
}

@media only screen and (max-width: 1430px) {
    .videos, .studios {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .models {
        -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 950px) {
    .videos, .studios {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .models {
        -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 700px) {
    .models {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 500px) {
    .models {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

.videos__element {
    width: 100%;
    max-width: 346px;
    display: inline-block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 5px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 950px) {
    .videos__element {
        max-width: 100%;
    }   
}

.videos__img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 10/7;
}

.videos__data {
    gap: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.videos__date, .videos__time {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
}

.videos__date span, .videos__time span {
    color: #30D5C8;
}

.videos__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    outline: none;
    text-decoration: none;
    gap: 16px;
}

.videos__title {
    height: 50px;
    padding: 12px 0;
    color: #fff;
    font-size: 22px;
    width: 100%;
    max-width: 470px;
    vertical-align: center;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Roboto", sans-serif;
}

.videos__models {
    font-family: "Roboto";
    font-size: 17px;
    font-weight: bold;
    font-style: normal;
    text-align: left;
    color: #30D5C8;
}

.videos__wrapper-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: -2px;
}

@media only screen and (max-width: 1830px) {
    .videos__title {
        max-width: 370px;
    }
}

@media only screen and (max-width: 1430px) {
    .videos__title {
        max-width: 470px;
    }
}

@media only screen and (max-width: 1230px) {
    .videos__title {
        max-width: 370px;
    }
}

@media only screen and (max-width: 950px) {
    .videos__title {
        max-width: 470px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 560px) {
    .videos__title {
        max-width: 370px;
    }
}

@media only screen and (max-width: 370px) {
    .videos__title {
        max-width: 240px;
    }
}

.videos__quality {
    color: #fff;
    font-size: 16px;
    filter: drop-shadow(0px 0px 3px #135954);
    background: #135954;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    width: 44px;
    height: 44px;
    font-family: "Expo 2", sans-serif;
}

@media only screen and (max-width: 950px) {
    .videos__quality {
        font-size: 18px;
    }
}

.login {
    margin: 10px 0;
    padding: 0 140px 0 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

@media only screen and (max-width: 1500px) {
    .login {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .login {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .login {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .login {
        padding: 0 10px 0 10px;
    }
}

.login__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 60px 0;
}

@media only screen and (max-width: 560px) {
    .login__form {
        width: 100%;
    }
}

.login__formWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    margin: 0 0 30px 0;
}

@media only screen and (max-width: 560px) {
    .login__formWrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
}

.login__input {
    text-align: center;
    color: #fff;
    width: 315px;
    height: 50px;
    outline: none;
    font-size: 18px;
    font-weight: normal;
    font-family: Roboto, sans-serif;
    padding: 5px;
    background: #262626;
}

.login__input::placeholder {
    color: #fff !important;
    opacity: 1;
}

@media only screen and (max-width: 560px) {
    .login__input {
        width: 90%;
        max-width: 300px;
    }
}

.login__submit, .form-btn {
    font-size: 20px;
    color: white;
    font-weight: 600;
    padding: 10px 100px;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    text-transform: lowercase;
    filter: drop-shadow(0px 0px 8px #135954);
    background: #135954
}

.login__submit:hover, .form-btn:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    filter: drop-shadow(0px 0px 20px #135954);
    cursor: pointer;
}

.login__unlimited {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 30px 0;
    gap: 30px;
}

@media only screen and (max-width: 780px) {
    .login__unlimited {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.login__leftWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (max-width: 780px) {
    .login__leftWrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.login__h2 {
    font-size: 55px;
    line-height: 66px;
    text-align: right;
    color: #7F84B7;
    font-weight: 1000;
}

@media only screen and (max-width: 950px) {
    .login__h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 780px) {
    .login__h2 {
        text-align: center;
        font-size: 30px;
    }
    .login__h2 br {
        display: none;
    }
}

.login__p2 {
    max-width: 380px;
    text-align: right;
    font-size: 34px;
    font-weight: 300;
    line-height: 50px;
}

.login__p2 span {
    font-weight: 800;
}

@media only screen and (max-width: 950px) {
    .login__p2 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 780px) {
    .login__p2 {
        font-size: 18px;
        text-align: center;
    }
}

.login__rightWrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px;
}

.login__rightWrapper .element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #393939;
    font-size: 24px;
    font-weight: 400;
}

.login__rightWrapper .element .bold {
    font-weight: 800;
}

.login__rightWrapper .element .dot {
    width: 12px;
    height: 12px;
    background: #EA90EA;
    margin: 0 30px 0 0;
    border-radius: 100%;
}

@media only screen and (max-width: 950px) {
    .login__rightWrapper .element {
        font-size: 16px;
    }
}

.login__paragraph {
    text-align: center;
    width: 90%;
    color: #fff;
    font-size: 24px;
    line-height: 45px;
    font-weight: normal;
    margin: 0 0 60px 0;
    font-family: Roboto;

    @media only screen and (max-width: 600px) {
        font-size: 15px;
        line-height: 30px;
    }
}

.login__rowPhotos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
}

.login__rowPhotos img {
    height: 120px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@media only screen and (max-width: 450px) {
    .login__rowPhotos img {
        height: 80px;
        width: 71px;
    }
}

.video {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 140px 0 140px;
    background: #000;
}

@media only screen and (max-width: 1500px) {
    .video {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .video {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .video {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .video {
        padding: 0 10px 0 10px;
    }
}

@media only screen and (max-width: 1200px) {
    .video {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.video__leftWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 30px 0 0;
    width: 100%;
    padding-top: 40px;
}

@media only screen and (max-width: 1200px) {
    .video__leftWrapper {
        margin: 0 0 10px 0;
        width: 100%;
    }
}

.video__videoWrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    overflow: hidden;
    margin: 0 0 20px 0;
    width: 100%;
    aspect-ratio: 2/1;
    position: relative;
}

.video__videoWrapper iframe {
    height: 100%;
    width: 100%;
}

.video__filmDescription {
    width: 100%;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    font-style: normal;
    text-align: left;
    color: #ffffff;
}

.video__rightWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 450px;
    padding-top: 40px;
    padding-bottom: 10px;
}

.video__rightWrapper .bigLinkBtn {
    max-width: 100%;
    margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
    .video__rightWrapper {
        width: 100%;
        max-width: 100%;
    }
}

.video__rightWrapper .bigLinkBtn {
    width: 100%;
    min-width: 0;
}

.video__rightWrapper .videos__title {
    font-size: 26px;

}

@media only screen and (max-width: 1830px) {
    .video__rightWrapper .videos__title {
        max-width: 450px;
    }
}

@media only screen and (max-width: 1200px) {
    .video__rightWrapper .videos__title {
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
}

.video__rightWrapper .video__infoModelNames .video__infoModelLink {
    color: #fff;
}

.video__rightWrapper .video__infoModelNames .video__infoModelLink:hover {
    color: #30D5C8;
    opacity: 1;
}

.video__rowWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 30px 0;
}

.video__rowWrapper--title {
    margin: 5px 0 0 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media only screen and (max-width: 780px) {
    .video__rowWrapper--title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin: 10px 0;
    }
}

.video__infoTitle {
    font-weight: bold;
    margin: 0 5px 0 0;
}

.video__infoModelLink {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: inline;
    outline: none;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    white-space: nowrap;
    margin: 0 6px 0 0;
    font-family: "Roboto", sans-serif;
}

.video__rightWrapper .video__infoTitle {
    font-size: 16px;
    color: #30D5C8;
    font-family: "Roboto", sans-serif;
}

.video__infoModelLink:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #30D5C8;
}

.video__downloadMovieLink {
    width: 100%;
    padding: 14px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: none;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin: 0 0 24px 0;
    background: #292929;
    border-color: transparent;
    border-width: 1px;
    border-style: solid;
}

.video__downloadMovieLink .text {
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-family: "Roboto";
}

.video__downloadMovieLink .text .bold {
    font-weight: 700;
}

.video__downloadMovieLink i {
    color: #fff;
    font-size: 16px;
    margin: 0 0 0 auto;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

@media only screen and (max-width: 420px) {
    .video__downloadMovieLink .text {
        font-size: 13px;
    }
    .video__downloadMovieLink i {
        font-size: 14px;
    }
}

.video__downloadMovieLink:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-color: #30D5C8;
}

.video__downloadMovieLink:hover .text {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.video__sliderWrapper {
    margin: 20px 0 ;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (max-width: 1200px) {
    .video__sliderWrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.video__navBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    outline: none;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.video__navBtn i {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #4a4a4a;
    font-size: 40px;
}

.video__navBtn:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
}

.video__navBtn:hover i {
    color: #fccc12;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.video__navBtn--prev {
    margin: 0 10px 0 0;
}

.video__navBtn--next {
    margin: 0 0 0 10px;
}

.video__slider {
    width: 100%;
    max-width: 500px;
    display: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (max-width: 1700px) {
    .video__slider {
        max-width: 500px;
    }
}

@media only screen and (max-width: 1600px) {
    .video__slider {
        max-width: 500px;
    }
}

@media only screen and (max-width: 1500px) {
    .video__slider {
        max-width: 440px;
    }
}

@media only screen and (max-width: 1400px) {
    .video__slider {
        max-width: 420px;
    }
}

@media only screen and (max-width: 1250px) {
    .video__slider {
        max-width: 400px;
    }
}

@media only screen and (max-width: 1200px) {
    .video__slider {
        max-width: calc(100vw - 180px);
    }
}

@media only screen and (max-width: 900px) {
    .video__slider {
        max-width: calc(100vw - 160px);
    }
}

@media only screen and (max-width: 700px) {
    .video__slider {
        max-width: calc(100vw - 100px);
    }
}

.video__slider .swiper {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.video__slider .swiper-wrapper {
    width: 100%;
    max-width: 100%;
}

.video__slider .swiper-slide {
    width: 95px;
    height: auto;
    text-decoration: none;
    outline: none;
}

.video__slider .swiper-slide img {
    width: 100%;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border: 2px solid rgba(255, 0, 0, 0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.video__slider .swiper-slide img:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 2px solid #C864C8;
    cursor: pointer;
}

.gallery {
    width: 100%;
    padding: 0 140px 0 140px;
    margin: 20px 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[6];
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-gap: 20px;
}

@media only screen and (max-width: 1500px) {
    .gallery {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .gallery {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .gallery {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .gallery {
        padding: 0 10px 0 10px;
    }
}

@media only screen and (max-width: 1230px) {
    .gallery {
        -ms-grid-columns: (minmax(0, 1fr))[4];
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-gap: 8px;
    }
}

@media only screen and (max-width: 800px) {
    .gallery {
        -ms-grid-columns: (minmax(0, 1fr))[3];
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 490px) {
    .gallery {
        -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 320px) {
    .gallery {
        -ms-grid-columns: (minmax(0, 1fr))[1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.gallery__element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    outline: none;
    text-decoration: none;
}

.gallery__element img {
    width: 100%;
    aspect-ratio: 10/6.5;
    -o-object-position: center;
    object-position: center;
    border-radius: 22px 0 22px 0;
    border: 2px solid rgba(0, 0, 0, 0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery__element img:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 2px solid #C864C8;
    cursor: pointer;
}

* {
    border: 0;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body, html {
    scroll-behavior: smooth;
    max-width: 100vw;
    margin: 0;
    padding: 0!important;
    background: #000;
    font-family: "Open Sans", sans-serif !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: safe flex-start;
    -ms-flex-align: safe flex-start;
    align-items: safe flex-start;
    -webkit-box-pack: safe flex-start;
    -ms-flex-pack: safe flex-start;
    justify-content: safe flex-start;
    position: relative;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100%;
}

body {
    overflow-x: hidden;
}

.body--open {
    overflow-y: hidden !important;
}
/*# sourceMappingURL=style.css.map */
.pagination-container {
    text-align: center;
    width: 100%;
    padding-bottom: 40px;
}

.pagination a,
.pagination i {
    color: white;
    text-decoration: none;
}

.pagination .page {
    width: 33px;
    height: 33px;
    text-align: center;
    margin: 0 7px;
    font-size: 15px;
    border: 2px solid #30D5C8;
    font-weight: bold;
    filter: drop-shadow(0px 0px 6px #30D5C8);
    background: #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
}

.pagination span.page {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.pagination .next, .pagination .prev {
    width: 40px;
    text-align: center;
    display: inline-block;
}

.model-info {
    width: 100%;
    margin-top: 20px;
    font-family: "Roboto", sans-serif;
}

.model-info .model-list {
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 20px;
    font-size: 18px;
}

.model-info .model-list li {
    flex: 1 0 100%;
    line-height: 25px;
    border-bottom: 1px solid #0d4340;
    padding: 10px 0;
}

@media (min-width: 768px) {
    .model-info .model-list li {
        max-width: 50%;
    }
}

.model-info .model-list li .sub-label {
    color: #30D5C8;
    display: inline-block;
}

.model-info .model-list li .desc {
    color: #fff;
    display: inline-block;
    font-weight: bold;
}

.model-info .single-post__text {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
}

.single-post__text a {
    color: #135954;
    text-decoration: none;
}

.single-post__text a:hover {
    color: #30D5C8;
}

.single-post__text p {
    margin-top: 10px;
}

.single-post__text h2 {
    margin-top: 20px;
}

.search-wrap {
    height: 45px;
    line-height: 45px;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.search-wrap input {
    border: 2px solid #135954;
    border-radius: 6px;
    width: 100%;
    height: 40px;
    line-height: 1.4;
    padding: 0 20px;
    outline: none;
    position: relative;
    background: #fff;
    z-index: 2;
}

.search-box {
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    margin-right: 40px;
    overflow: hidden;
    display: none;
}

.search-box form {
    display: flex;
    align-items: center;
}

.search-box.active {
    display: block;
}

.search-box .header__searchBtn {
    cursor: pointer;
    margin-right: -1px;
    width: 40px;
    height: 40px;
}

.btn-trigger-search {
    cursor: pointer;
}

@media (max-width: 1039px) {
    .search-box {
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,.6);
        z-index: 10;
    }

    .search-box.active {
        display: flex;
    }

    .search-box form {
        max-width: 420px;
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .search-wrap {
        display: block;
    }

    .search-box .header__searchBtn {
        line-height: 40px;
        font-size: 16px;
        font-weight: 800;
        outline: none;
        text-decoration: none;
        -webkit-transition: 0.4s;
        transition: 0.4s;
        white-space: nowrap;
        width: 90px;
        margin-left: 10px;
        margin-top: 4px;
        cursor: pointer;
    }
}

.empty-section.error {
    margin-top: 0;
}

.empty-section {
    display: inline;
}

.no-videos, .no-performers, .no-tags, .no-channels, .no-articles, .notification.error {
    font-size: 15px;
    color: #fff;
    margin-top: 20px;
    width: 100%;
    border-radius: 15px;
    padding: 15px;
    background: #145954;
}

.icon {
    font-size: 2rem;
}

.notification.error {
    margin-bottom: 20px;
}

#thisPlayer_logo {
    display: none;
}

.form-input, .form-textarea {
    width: 100%;
    margin-bottom: 15px;
    color: #fff;
    height: 50px;
    outline: none;
    font-size: 18px;
    font-weight: normal;
    font-family: Roboto, sans-serif;
    background: #262626;
    padding: 5px 5px 5px 15px;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #fff;
}

.form-textarea {
    height: 100px;
}

.captcha-wrapper {
    width: 100%;
    display: flex;
}

.captcha-img {
    float: left;
    height: 50px;
}

.captcha-input {
    flex: 2;
    margin-left: 10px;
}

.contact-page {
    align-items: center;
    margin-bottom: 30px;
}

.submit-wrapper {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
}

.notification {
    display: flex;
}

.notification .icon {
    margin-left: 20px;
    margin-right: 25px;
    align-self: center;
    rotate: 90deg;
}

.notification .text {
    flex: 2;
    align-self: center;
}

.my-profile {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
}

.user-aside {
    background: #145954;
    padding-bottom: 10px;
}

.user-avatar {
    display: flex;
    align-items: center;
    padding: 20px;
}

.user-name {
    color: #fff;
    margin-bottom: 10px;
    font-family: "Roboto";
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
}

.user-avatar .image {
    display: block;
    position: relative;
    width: 90px;
    height: 90px;
    overflow: hidden;
    margin-right: 30px;
    background: #fff;
}

.user-avatar .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
}

.user-actions a {
    display: flex;
    align-items: center;
    padding: 0 35px;
    min-height: 43px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #fff;
    margin-top: 5px;
    font-family: "Roboto";
    font-size: 17px;
    font-weight: normal;
}

.user-actions a:hover {
    background: #292929;
}

@media (min-width: 920px) {
    .user-aside {
        flex: 0 0 317px;
    }
}

.user-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    flex: 1 1 auto;
    flex-direction: column;
}

.user-menu {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
    gap: 20px;
}

.user-info .form-btn {
    padding: 20px 0;
    width: 100%;
    text-align: center;
    background: #292929;
    filter: none;
    transition: .4s;
    font-family: "Roboto";
    font-size: 18px;
    font-weight: normal;
    text-transform: none;
}

.user-info .form-btn:hover {
    background: #135954;
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 7px;
    margin-bottom: -2px;
    background-size: unset;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(100%) contrast(103%);
}

.user-actions .btn-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(100%) contrast(103%);
    width: 15px;
    height: 15px;
    margin-right: 30px;
}

.user-actions a.active {
    background: #0d4340;
}

@media (max-width: 920px) {
    .my-profile {
        display: flex;
        flex-direction: column;
    }
    .user-info .form-btn {
        font-size: 14px;
    }
    .user-avatar {
        flex-direction: column;
    }
    .user-avatar .image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .btn-icon {
        width: 15px;
        height: 15px;
        margin-right: 4px;
    }
}

.user-stats {
    width: 100%;
}

.user-stat-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 47px;
    padding: 0 30px;
    flex-direction: row;
    color: #fff;
    font-family: "Roboto";
    font-size: 18px;
    font-weight: normal;
    border-bottom: 1px solid #0d4340;
    margin-bottom: 5px;
}

.user-stat-item .sub-label {
    flex: 0 0 20%;
}

.form-btn-fully-rounded {
    border-radius: 22px;
}

.form-btn-fully-rounded:hover .btn-icon {
    filter: brightness(0) saturate(100%) invert(77%) sepia(61%) saturate(852%) hue-rotate(344deg) brightness(105%) contrast(104%);
}

.btn-icon-play {
    background-image: url('../images/svg/icon-play-2.svg');
}

.btn-icon-user {
    background-image: url('../images/svg/icon-user-2.svg');
}

.btn-icon-heart {
    background-image: url('../images/svg/icon-heart-2.svg');
}

.btn-icon-cog {
    background-image: url('../images/svg/icon-cog-2.svg');
}

.btn-icon-power {
    background-image: url('../images/svg/icon-power-2.svg');
}

.btn-icon-home {
    background-image: url('../images/svg/icon-home-2.svg');
}

.dropdown {
    position: relative;
    align-items: baseline;
    cursor: pointer;
}

.dropdown a.header__link {
    position: relative;
    z-index: 1;
}

.dropdown:hover {
    opacity: 1;
}

.dropdown .dropdown-content {
    display: none;
    position: absolute;
    min-width: 140px;
    width: auto;
    height: auto;
    left: -10px;
    padding-top: 35px;
}

.dropdown .dropdown-content--movies {
    min-width: 300px;
}

.dropdown .dropdown-content a {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    margin: 0;
    background: #135954;
    justify-content: left;
    padding-left: 15px;
}

.dropdown .dropdown-content a:hover {
    background-color: #30D5C8;
    opacity: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.bottom-margin-10 {
    margin-bottom: 10px;
}

.pornstar-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
}


@media (max-width: 768px) {
    .pornstar-wrapper {
        flex-direction: column;
    }

    .pornstar-info {
        flex: 1;
        width: 100%;
    }
}

.pornstar-image {
    min-width: 300px;
    width: 400px;
    height: 500px;
    overflow: hidden;
}

.pornstar-image img {
    /*-o-object-fit: cover;
    object-fit: cover;*/
    width: 400px;
    /*height: 500px;*/
}

.models__picture {
    aspect-ratio: 5.5/10;
}

.pornstar-info {
    flex: 1 1 auto;
}

.pornstar-info .single-post__title {
    margin-bottom: 30px;
    font-size: 28px;
    font-family: Roboto, sans-serif;
}

.main .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.main .swiper-wrapper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    /*height: 700px;*/
    max-height: 700px;
    position: relative;
    transition-property: transform;
}

.main .swiper-wrapper .swiper-slide img {
    width: 100%;
    display: block!important;
    object-fit: cover;
}

#mb_age_warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4F5163;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.mb_age_warning-wrapper {
    text-align: center;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
    padding: 0 10px;
}

.mb_age_warning-wrapper a {
    text-decoration: none;
    color: #fff;
}

.btn-confirm-age {
    margin-top: 15px;
    margin-bottom: 15px;
    border-color: #737588;
    padding: 10px 30px;
}

.noscroll {
    position: fixed;
}

/* join section */
.join {
    margin: 20px 0;
    padding: 0 140px 0 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

@media only screen and (max-width: 1500px) {
    .join {
        padding: 0 80px 0 80px;
    }
}

@media only screen and (max-width: 1090px) {
    .join {
        padding: 0 60px 0 60px;
    }
}

@media only screen and (max-width: 700px) {
    .join {
        padding: 0 20px 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .join {
        padding: 0 10px 0 10px;
    }
}

.plan__wrapper {
    display: flex;
    gap: 35px;
    width: 100%;
    margin-bottom: 60px;
    justify-content: center;
}

.plan__wrapper .plan_item {
    overflow: hidden;
    width: 18%;
}

.plan__wrapper:has(.plan_item--selected) .plan_item {

}


.plan__wrapper:has(.plan_item--selected){
    padding-left: 15%;
    padding-right: 15%;
    width: 64%;
}

.plan__wrapper .plan_item img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    object-position: top;
    display: block;
}

.plan__wrapper .plan_item .plan_description {
    width: 100%;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 35px;
    flex-direction: column;
    color: #fff;
}

.plan__wrapper .plan_item:nth-child(odd) .plan_description {
    background: #145954
}

.plan__wrapper .plan_item:nth-child(even) .plan_description,
.plan__wrapper .plan_item--selected.plan_item .plan_description
{
    background: #108279;
}

.plan__wrapper .plan_item .plan_description span {
    width: 100%;
    text-align: center;
}

.plan__wrapper .plan_item .plan_description span.plan_title {
    font-weight: bold;
    font-size: 28px;
    font-family: Roboto, sans-serif;
}

.plan__wrapper .plan_item .plan_description span.plan_subtitle {
    color: #30D5C8;
    font-weight: bold;
    font-size: 18px;
    margin-top: 6px;
    font-family: Roboto, sans-serif;
}

.plan__wrapper .plan_item .plan_description span.plan_info {
    font-weight: 300;
    font-size: 16px;
    padding: 20px 30px;
    font-family: Roboto, sans-serif;
    line-height: 27px;
}

.plan__wrapper .plan_item .plan_description button,
.subscription_form button[type="submit"] {
    font-size: 25px;
    color: white;
    font-weight: bold;
    padding: 10px 70px;
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: #00A799;
    font-family: Roboto, sans-serif;
    width: 100%;
    text-transform: uppercase;
}

.plan__wrapper .plan_item .plan_description button:hover,
.subscription_form button[type="submit"]:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #30D5C8;
    background: #fff;
    cursor: pointer;
}

.plan__wrapper .plan_item--selected.plan_item .plan_description button {
    background: #fff;
    color: #30D5C8;
    text-transform: uppercase;
}

.plan__wrapper .plan_item--selected.plan_item .plan_description button:hover {
    color: #fff;
    background: #00A799;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.price {
    margin-bottom: 35px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.price .label {
    font-size: 55px;
    font-weight: bold;
    color: #30D5C8;
}

.price .desc {
    font-size: 16px;
    text-align: right;
    font-weight: normal;
    font-family: Roboto, sans-serif;
    font-style: italic;
    margin-top: -10px;
}

.price .label .super {
    vertical-align: baseline;
    font-size: 33px;
    font-weight: normal;
    color: #fff;
    margin-right: 3px;
}

.plan__wrapper .plan_item .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media only screen and (max-width: 980px) {
    .plan__wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .plan__wrapper .plan_item .col:last-child {
        min-width: 50%;
    }

    .price .label .super {
        font-size: 24px;
    }

    .price .label {
        font-size: 50px;
    }

    .price .desc {
        font-size: 20px;
    }

    .plan__wrapper .plan_item .plan_description button {
        padding: 10px 25px;
        font-size: 18px;
        width: auto;
        text-transform: uppercase;
    }

    .plan__wrapper .plan_item .plan_description {
        flex-direction: row;
        gap: 15px;
        padding: 20px;
    }

    .plan__wrapper .plan_item .plan_description span {
        text-align: left;
    }

    .plan__wrapper {
        grid-template-columns: 1fr;
    }
    .plan__wrapper .plan_item {
        width: unset !important;
    }

    .plan__wrapper .plan_item img {
        display: none;
    }

    .plan__wrapper .plan_item .plan_description span.plan_title {
        font-size: 28px;
    }

    .plan__wrapper .plan_item .plan_description span.plan_subtitle {
        font-size: 20px;
    }

    .plan__wrapper .plan_item .plan_description span.plan_info {
        font-size: 12px;
        padding: 0;
        margin-top: 5px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1200px) {
    .plan__wrapper {
        gap: 25px;
    }
    .plan__wrapper:has(.plan_item--selected) {
        width: unset;
    }
    .plan__wrapper .plan_item {
        width: 32%;
    }
}

@media only screen and (min-width: 1201px) and (max-width: 1400px) {
    .plan__wrapper .plan_item {
        width: 28%;
    }
}

@media only screen and (min-width: 1401px) and (max-width: 2000px) {
    .plan__wrapper .plan_item {
        width: 25%;
    }
}
@media only screen and (min-width: 2101px) {
    .plan__wrapper:has(.plan_item--selected) {
        max-width: 64%;
    }

}
.plan__wrapper:has(.plan_item--selected) {
    width: unset;
}
.secure__info_wrapper {
    margin-bottom: 60px;
    margin-top: 30px;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    min-height: 45px;
    display: flex;
}

.secure__span {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.4rem;
    padding: 9px;
    background: #393939;
    text-align: center;
}

.secure__icon {
    min-width: 40px;
    background-color: #8FE5CF;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100%;
}

.icon-lock {
    background-image: url('../images/svg/icon-lock.svg');
}

.icon-shield {
    background-image: url('../images/svg/icon-shield.svg');
}

@media only screen and (max-width: 980px) {
    .secure__span {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.plan_item--hidden {
    display: none;
}

.subscription_form {
    border: 3px solid #00A799;
    display: none;
    position: relative;
    min-width: 50%;
}

.subscription_form span.label {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #ffffff;
}

.subscription_form p,
.subscription_form label {
    color: #fff;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.subscription_form p a {
    color: #B16EB1;
    text-decoration: none;
}

.subscription_form p {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.subscription_form--visible {
    display: block;
}

.payment_methods, .user-data-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.user-data-wrapper {
    flex-direction: column;
}

.payment_methods .payment_method,
.user-data-wrapper input {
    border: 3px solid #135954;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    background: #000;
    font-family: "Exo 2";
    color: #fff
}

.payment_methods .payment_method {
    cursor: pointer;
}

.user-data-wrapper input {
    border: none;
    background: #262626;
    padding: 15px;
}

.user-data-wrapper input::placeholder {
    color: #fff;
}

.payment_methods .payment_method--selected {
    background: #135954;
    transition: 0.4s;
}

.subscription_form .payment_providers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    padding: 30px 5px 20px;
}

.subscription_form .payment_providers img {
    height: 14px;
    width: auto;
}

.plan__wrapper:has(.plan_item--selected) {
    padding-left: 15%;
    padding-right: 15%;
}

@media only screen and (max-width: 980px) {
    .plan__wrapper:has(.plan_item--selected) {
        padding: 0;
    }
}

.subscription_form form span.label {
    font-size: 17px;
}

.email-updates {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-left: 20px;
    margin-right: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.email-updates input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 3px solid #135954;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.email-updates input:checked ~ .checkmark:after,
.email-updates:hover input ~ .checkmark:after {
    display: block;
}

.email-updates:hover input:not(:checked) ~ .checkmark:after {
    background: #fff;
}

.email-updates .checkmark:after {
    width: 10px;
    height: 10px;
    background: #30D5C8;
    top: 50%;
    left: 50%;
    margin-left: -5px;
    margin-top: -5px;
}

.join_error {
    color: #30D5C8;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    display: inline-block;
    float: left;
    height: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.user-data-wrapper .join_error {
    margin-bottom: -15px;
}

.footer__column-links {
    min-width: 45%;
}

.footer__container {
    gap: 40px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.videos-bar-wrapper__silver,
.videos-bar-wrapper__silver .title,
.videos-bar-wrapper__silver .title span {
    background-color: #eeeeee;
    color: #4a4a4a;
    font-family: "Open Sans", sans-serif;
}

/* widget unlimited access */
.unlimited-access {
    width: 800px;
    max-width: 100%;
}

.unlimited-access .access-info__header {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.unlimited-access .access-info__header h4 {
    font-size: 40px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;

    @media only screen and (max-width: 800px) {
        font-size: 25px;
    }
}

.unlimited-access .access-info__wrapper {
    border: 1px solid #ef4035;
    border-top: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 30px 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #4a4a4a;
}

.unlimited-access .access-info__wrapper .info-description {
    font-size: 18px;
    padding-bottom: 30px;
    font-weight: bold;

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

.unlimited-access .access-info__wrapper .info-description .red-accent {
    color: #ef4035;
}

/* widget instant access */
.instant-access {
    padding-left: 140px;
    padding-right: 140px;
    padding-top: 20px;
    width: 100%;
    background: #145954;
    position: relative;
    overflow: hidden;

    @media only screen and (max-width: 800px) {
        padding-left: 0;
        padding-right: 0;
    }
}

.instant-access .bigLinkBtn {
    margin-bottom: 0;
    margin-top: 0;
}

.instant-access .wrapper {
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.instant-access .wrapper .access-info__header h4 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #fff;
}

.instant-access .wrapper .access-info__header h3 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #30D5C8;
    padding-top: 15px;
}

.clock__h3 {
    font-size: 34px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .clock__h3 {
        font-size: 22px;
    }
}

.clock__h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 20px 0;
}

@media only screen and (max-width: 800px) {
    .clock__h4 {
        font-size: 16px;
    }
}

.access__rowList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 20px 0;
    flex-wrap: wrap;
}

.access__rowList .text {
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    display: block;
    font-family: Roboto;
}

.access__rowList .dot {
    display: block;
    min-width: 8px;
    min-height: 8px;
    border-radius: 100%;
    background: #135954;
    margin: 0 25px;
}

@media only screen and (max-width: 880px) {
    .access__rowList {
        margin: 0 0 20px 0;
    }
    .access__rowList .text {
        font-size: 16px;
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    .access__rowList .dot {
        display: none;
    }
}

.studios .videos {
    padding: 0;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
}

.studios .videos .videos__title {
    max-width: 300px;
    font-size: 20px;
}

@media only screen and (max-width: 880px) {
    .studios .videos {
        grid-template-columns: 1fr;
        -ms-grid-columns: 1fr;
    }
}
.plan_item--selected{
    width: unset !important;
}