/*  GENERAL
------------------------------------------------------------------------------*/

body::-webkit-scrollbar {
    display: none;
}

html,
body {
    -ms-overflow-style: none;
    overflow: auto;
}

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

body {
    position: relative;
    min-width: 320px;
    overflow-x: hidden;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

.wrap {
    max-width: 1550px;
    padding: 0 15px;
    margin: 0 auto;
}

.btn {
    display: block;
    width: 100%;
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 7px 25px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 35px;
    background-color: #9f48be;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: #8838a5;
}

.btn-primary {
    background-color: #7a6dfd;
}

.btn-primary:hover {
    background-color: #fff;
    border-color: #7a6dfd;
    color: #9f48be;
}

.btn-outline {
    border: 2px solid #9f48be;
    background-color: transparent;
    color: #9f48be;
}

.btn-outline:hover {
    color: #fff;
    background-color: #9f48be;
}

.btn-outline-invert {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}

.btn-outline-invert:hover {
    background-color: #fff;
    color: #9f48be;
}


/*  HEADER
------------------------------------------------------------------------------*/

.header {
    z-index: 5;
    padding: 17px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #c03697;
    -webkit-transition: .2s;
    transition: .2s;
}

.header_other {
    padding: 57px 0;
    background-color: transparent;
}

.header.scrolled {
    padding: 10px 0;
    background-color: #c03697;
}

.header.scrolled .btn {
    border: 2px solid #fff;
    background-color: #0000;
    color: #fff;
}

.header .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header:not(.header_other) + .content {
    padding-top: 112px;
}

.header.mob {
    position: fixed;
    left: 0;
    right: 0;
}

.header.mob .main-nav li .btn {
    border-color: #fff;
    color: #fff;
    background-color: #0000;
}

.header.mob .main-nav li .btn-outline-invert:hover {
    color: #9f48be;
}

.header.scrolled.mob .main-nav li .btn-outline-invert:hover {
    color: #fff;
}

.main-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-nav li {
    padding-left: 35px;
}

.main-nav li a {
    position: relative;
    font-size: 18px;
    color: #fff;
}

.header .main-nav li .btn-outline {
    color: #9f48be;
}

.header .main-nav li .btn-outline:hover {
    color: #fff;
}

.header.scrolled .main-nav li .btn-outline {
    color: #fff;
}

.main-nav li.active a:after {
    content: '';
    display: block;
    height: 3px;
    background-color: #fff;
    width: 100%;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-nav li .btn {
    font-size: 16px;
}

.mob .main-nav.active {
    display: block;
}

.mob-btn {
    display: none;
    position: relative;
    width: 30px;
    height: 24px;
}

.mob-btn .line {
    height: 2px;
    background-color: #ffffff;
    display: block;
    border-radius: 3px;
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
    position: absolute;
    width: 100%;
}

.mob-btn .line1 {
    top: 0;
}

.mob-btn .line2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    /* margin-top: -2px; */
}


/* use margin if blur appears */

.mob-btn .line3 {
    bottom: 0;
}

.mob-btn.close .line {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    top: 50%;
    width: 100%;
}

.mob-btn.close .line3 {
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.mob-btn.close .line2 {
    opacity: 0;
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg)
}

.mob .main-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    background-color: #c03697;
    top: 86px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.mob .main-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mob .main-nav ul li {
    padding: 0 10px;
    margin-bottom: 15px;
}

@media (max-width: 1640px) {
    .header_other {
        padding: 40px 0;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 20px 0;
    }

    .logo {
        width: 230px;
    }

    .main-nav li {
        padding-left: 20px;
    }

    .main-nav li a {
        font-size: 16px;
    }

    .header:not(.header_other) + .content {
        padding-top: 89px;
    }
}

@media (max-width: 768px) {
    .header {
        background-color: #c03697;
    }

    .main-nav {
        display: none;
    }

    .mob-btn {
        display: block;
    }

    .header_fixed .btn {
        border-color: #fff;
        color: #fff;
    }

    .header.scrolled .main-nav {
        top: 66px;
    }
}


/*  CONTENT
------------------------------------------------------------------------------*/

.box-content__categories {
    max-width: 100%;
    padding: 80px 0 100px;
}

.box-content__category {
    max-width: 100%;
    padding: 80px 0 100px;
}

@media (max-width: 768px) {
    .box-content__categories {
        padding: 30px 0 40px;
    }

    .box-content__category {
        padding: 30px 0 40px;
    }
}


/*  SECTION INDEX
------------------------------------------------------------------------------*/

.section-index {
    position: relative;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
}

.section-index:after {
    content: '';
    background: url(../images/main-pic.png) no-repeat;
    display: block;
    width: 474px;
    height: 553px;
    position: absolute;
    top: 220px;
    left: 50%;
    margin-left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

.section-index .col {
    position: relative;
    width: 50%;
    min-height: 980px;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section-index .title {
    padding-bottom: 30px;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
}

.section-index .col p {
    font-size: 22px;
    padding-bottom: 10px;
}

.section-index .col-left {
    padding: 0 280px 0 180px;
    background: -webkit-gradient(linear, left top, left bottom, from(#c03697), to(#5a2aa3));
    background: linear-gradient(to bottom, #c03697 0%, #5a2aa3 100%);
    text-align: right;
}

.section-index .col-right {
    padding: 0 180px 0 280px;
}

.section-index .col-right .title {
    color: #9f48be;
}

.section-index .col-right p {
    color: #788292;
}

.section-index .col .btn {
    font-size: 18px;
    width: 157px;
    border-width: 3px;
    padding: 10px 0;
}

.section-index .col-left .btn {
    margin-left: auto;
}

.section-index p {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-index p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1640px) {
    .section-index .col {
        min-height: 800px;
    }

    .section-index .col-left {
        padding: 0 200px 0 15px;
    }

    .section-index .col-right {
        padding: 0 15px 0 200px;
    }

    .section-index:after {
        top: 190px;
        background-size: cover;
        width: 370px;
        height: 430px;
    }
}

@media (max-width: 992px) {
    .section-index:after {
        top: 200px;
        width: 250px;
        height: 290px;
    }

    .section-index .col-right {
        padding-left: 150px;
    }

    .section-index .col-left {
        padding-right: 150px;
    }

    .section-index .col .title {
        font-size: 30px;
    }

    .section-index .col p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .section-index {
        padding-top: 87px;
    }

    /* .section-index:after {
        display: none;
    } */
    .section-index:before {
        content: '';
        top: 110px;
        width: 200px;
        height: 213px;
        background-image: url(../images/ill/ill-white.svg);
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 2;
        position: absolute;
        background-size: cover;
    }

    .section-index:after {
        content: '';
        top: 110px;
        width: 200px;
        height: 213px;
        background-image: url(../images/ill/ill-blue.svg);
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        position: absolute;
    }

    .section-index.swipe:before {
        z-index: 3;
    }

    .section-index.swipe:after {
        z-index: 4;
    }

    .section-index .col {
        width: 80%;
        padding: 250px 15px 120px;
        min-height: auto;
    }

    .section-index .col .title {
        font-size: 26px;
    }

    .section-index .col p {
        font-size: 16px;
    }

    .section-index .col .btn {
        font-size: 15px;
        width: 127px;
    }
}

.section-index_logined .col {
    padding: 0 15px;
    text-align: left;
}

.section-index_logined .col .title-wrap {
    position: relative;
    min-height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
}

.section-index_logined .col .title-wrap:after {
    content: '';
    display: block;
    width: 454px;
    height: 450px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.section-index_logined .col .title {
    font-size: 110px;
    text-align: center;
    z-index: 2;
}

.section-index_logined .col-left .title-wrap:after {
    background: url(../images/pic-meditation.png) no-repeat;
    width: 348px;
    height: 398px;
}

.section-index_logined .content-index {
    max-width: 680px;
    margin: 0 auto;
    padding: 100px 0 0;
    width: 100%;
}

.section-index_logined .col-left .btn {
    margin-left: 0;
}

.section-index_logined .col-right .title-wrap:after {
    background: url(../images/pic-yoga.png) no-repeat;
    width: 474px;
    height: 425px;
}

.section-index_logined:after {
    display: none;
}

@media (max-width: 1440px) {
    .section-index_logined .col .title {
        font-size: 76px;
    }

    .section-index_logined .col .title-wrap {
        min-height: 400px;
    }

    .section-index_logined .col-left .title-wrap:after {
        width: 300px;
        height: 343px;
        background-size: cover;
        top: 0;
    }

    .section-index_logined .col-right .title-wrap:after {
        background-size: cover;
        width: 400px;
        height: 359px;
        top: 0;
    }
}

@media (max-width: 992px) {
    .section-index_logined .col {
        min-height: 680px;
    }

    .section-index_logined .col .title-wrap {
        min-height: 320px;
    }

    .section-index_logined .col .title {
        font-size: 48px;
    }

    .section-index_logined .col-left .title-wrap:after {
        width: 240px;
        height: 274px;
    }

    .section-index_logined .col-right .title-wrap:after {
        width: 320px;
        height: 287px;
    }
}

@media (max-width: 768px) {
    .section-index_logined:before {
        display: none;
    }

    .section-index_logined .col {
        min-height: 540px;
    }

    .section-index_logined .content-index {
        padding: 20px 0 40px;
        text-align: center;
    }

    .section-index_logined .col .btn {
        margin: 0 auto;
    }

    .section-index_logined .col .title-wrap {
        min-height: 280px;
    }

    .section-index_logined .col-left .title-wrap:after {
        width: 280px;
        height: 241px;
    }

    .section-index_logined .col-right .title-wrap:after {
        width: 280px;
        height: 232px;
    }
}

@media (max-width: 640px) {
    .section-index_logined {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .section-index_logined .col {
        width: 100%;
        min-height: auto;
    }

    .section-index_logined .col-left .title-wrap:after {
        width: 219px;
        height: 251px;
    }

    .section-index_logined .col-right .title-wrap:after {
        width: 270px;
        height: 242px;
    }
}


/* SECTION THANK */

.section-thank {
    padding: 70px 0;
}

.section-thank img {
    margin: 0 auto 20px;
}

.section-thank p {
    font-size: 18px;
    text-align: center;
    color: #788292;
}


/* SECTION CATEGORIES */

.section-categories {
    padding: 70px 0;
}

.section-title {
    font-size: 42px;
    color: #788292;
    text-align: center;
    font-weight: 700;
    padding-bottom: 25px;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
        padding-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .section-categories {
        padding: 50px 0;
    }
}


/* SECTION PROFILE */

.section-profile,
.section-signup,
.section-login,
.section-contact,
.section-unsubscribe,
.section-category-single {
    padding: 70px 0;
}

@media (max-width: 768px) {
    .section-profile,
    .section-signup,
    .section-login,
    .section-contact,
    .section-unsubscribe,
    .section-category-single {
        padding: 50px 0;
    }
}


/* SECTION PAY */

.section-pay {
    padding: 70px 0;
}

.section-pay .wrap {
    max-width: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.section-pay .col-left {
    max-width: 400px;
}

.section-pay .col-right {
    max-width: 240px;
}


/*  FORM
------------------------------------------------------------------------------*/

.form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
}

.form-col-custom {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 280px;
    flex: 1 0 280px;
    max-width: 280px;
}

.flex-jce {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.form-col-4 {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(100% / 3);
    flex: 1 0 calc(100% / 3);
    max-width: calc(100% / 3 - 10px);
    width: 100%;
}

.form-col-6 {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: calc(50% - 15px);
}

.form-col-12 {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    width: 100%;
}

.form-control {
    position: relative;
    border: 1px solid #c7cee3;
    border-radius: 28px;
    background-color: #fff;
    width: 100%;
    height: 53px;
    padding: 0 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #5c6273;
    font-weight: 400;
    outline: none;
}

.form-control:-webkit-autofill {
    animation-name: autofill;
    -webkit-animation-name: autofill;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

@keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}

@-webkit-keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}

.form-control__textarea {
    height: 150px;
    resize: none;
    padding-top: 15px;
    padding-bottom: 15px;
}

.form-label {
    position: absolute;
    left: 28px;
    top: 16px;
    -webkit-transition: .28s;
    transition: .28s;
    font-size: 14px;
    color: #5c6273;
    display: inline-block;
    background-color: #fff;
    padding: 0 4px;
}

.form .form-error {
    display: none;
    font-size: 10px;
    font-weight: 400;
    color: #d67997;
    position: absolute;
    bottom: -16px;
    left: 28px;
}

.form-control__select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
}

.select-box {
    border-radius: 28px;
    background-color: #fff;
}

.select-box:before {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
    color: #c7cee3;
    position: absolute;
    right: 28px;
    bottom: 19px;
}

.select-box:focus:after {
    content: '\f077';
}

.show-pass {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #7592a3;
    cursor: pointer;
}

.show-pass:before {
    content: '\f06e';
    font-family: 'Font Awesome 5 Free';
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #5c6273;
    font-weight: 900;
    cursor: pointer;
}

.show-pass.active:before {
    content: '\f070';
}

.has-error .form-control {
    border-color: #ec1744;
}

.has-error label {
    font-size: 10px;
    top: -7px;
}

.has-error .form-error {
    display: block;
}

.form-control:focus + label {
    font-size: 10px;
    top: -7px;
}

.form-control:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #d67997;
}

.form-control:invalid:not(:focus):not(:placeholder-shown) + label {
    font-size: 10px;
    top: -7px;
}

.form-control:valid + label {
    font-size: 10px;
    top: -7px;
}

.form-control__select + label {
    font-size: 10px;
    top: -7px;
}

.text-required {
    font-size: 14px;
    color: #778292;
}

.box-content__contact .text-required {
    text-align: center;
    margin-bottom: 0;
}

.box-content__profile .text-required {
    margin-bottom: 0;
}

.form-signup__agreement {
    margin: 0 0 25px;
}

.form-checkbox {
    position: relative;
}

.form-checkbox input[type="checkbox"] {
    opacity: 0;
}

.form-checkbox input[type="checkbox"] + label {
    color: #778292;
    padding-left: 10px;
    line-height: 20px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #c7cee3;
    border-radius: 2px;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
}

.form-checkbox input[type="checkbox"]:checked + label:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    color: #9b8be1;
}

.form a {
    color: #9b8be1;
    text-decoration: none;
}

.form a:hover {
    text-decoration: underline;
}

.form-description {
    font-size: 10px;
    color: #778292;
}

@media (max-width: 768px) {
    .form-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0;
    }

    .form-col-4 {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .form-col-6 {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .form-col-12 {
        margin-bottom: 25px;
    }

    .form-row-custom {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .form-col-custom {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(50% - 15px);
        flex: 1 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .box-content__contact .text-required {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .form-control {
        padding-left: 16px;
        padding-right: 16px;
    }

    .form-label {
        left: 16px;
    }
}

@media (max-width: 500px) {
    .form-row-custom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0;
    }

    .form-col-custom {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .form-col-custom:first-child {
        margin-right: 0;
    }
}


/*  CATEGORY
------------------------------------------------------------------------------*/

.cat-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    position: relative;
}

.cat {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(100% / 3 - 40px);
    flex: 1 1 calc(100% / 3 - 40px);
    margin-bottom: 40px;
    border-radius: 10px;
    margin: 0 20px 40px;
}

.cat:hover .main-cat-content:after {
    content: '';
    display: block;
    background-color: #c0369733;
    border: 3px solid #c03697;
    top: 0;
    left: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 10px;
}

.main-cat-content {
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.cat.active .main-cat-content:after {
    content: '';
    display: block;
    background-color: #c0369733;
    border: 3px solid #c03697;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
}

.cat.active .cat-child-container {
    display: block;
}

.main-cat-content:before {
    display: none;
    content: '';
    position: absolute;
    bottom: -47px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 14px 14px 14px;
    border-color: transparent transparent #c03697 transparent;
}

.cat.active .main-cat-content:before {
    display: block;
}

.cat-title {
    display: block;
    width: 100%;
    font-size: 42px;
    font-weight: 700;
    position: absolute;
    text-align: center;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    z-index: 1;
}

.main-cat-content img {
    width: 100%;
    height: 310px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.cat-child-container {
    display: none;
    position: absolute;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    background-color: #c03697;
    border-radius: 10px;
    padding: 25px 35px;
    top: auto;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 40px 20px;
}

.cat-child-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 10px;
}

.cat-child-box ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.cat-child-box li {
    width: 25%;
}

.cat-child-box li a {
    font-size: 22px;
    line-height: 2;
    color: #fff;
    /* white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; */
}

.cat-child-box li a:hover {
    text-decoration: underline;
}

@media (max-width: 1440px) {
    .cat img {
        height: 270px;
    }
}

@media (max-width: 1200px) {
    .cat img {
        height: 220px;
    }

    .cat-title {
        font-size: 26px;
    }

    .cat-child-title {
        font-size: 20px;
    }

    .cat-child-box li a {
        font-size: 18px;
        line-height: 2;
    }
}

@media (max-width: 992px) {
    .cat img {
        height: 180px;
    }

    .cat-child-box li {
        width: calc(100% / 3);
    }
}

@media (max-width: 768px) {
    .cat-container {
        -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;
    }

    .cat {
        margin: 0 auto;
        margin-bottom: 20px;
        width: 100%;
    }

    .cat:before {
        bottom: -27px;
    }

    .cat img {
        height: auto;
    }

    .cat-title {
        /* font-size: 20px; */
    }

    .cat-child-container {
        padding: 15px 20px;
        margin: 40px 0 20px;
    }

    .cat-child-box li {
        width: calc(100% / 2);
    }

    .cat-child-box a {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .cat-child-box li {
        width: auto;
    }

    .cat-child-box li:after {
        content: '|';
        padding: 0 10px;
    }

    .cat-child-box a:last-child:after {
        display: none;
    }
}


/* SECTION CATEGORY */

.section-category {
    padding: 75px 0;
}

.video-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.video {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(100% / 3 - 40px);
    flex: 1 1 calc(100% / 3 - 40px);
    max-width: 480px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 10px;
    margin-right: 40px;
    width: 100%;
}

.video:nth-child(3n) {
    margin-right: 0;
}

.video video {
    width: 100%;
    height: 310px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

.video-title {
    font-size: 20px;
    line-height: 1.25;
    color: #788292;
    padding: 10px 15px;
    text-align: center;
}

@media (max-width: 1200px) {
    .video video {
        height: 240px;
    }

    .video-title {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .video {
        margin-right: 20px;
    }

    .video video {
        height: auto;
    }

    .video-title {
        font-size: 16px;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .section-category {
        padding: 50px 0;
    }

    .video {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% / 2 - 40px);
        flex: 1 1 calc(100% / 2 - 40px);
    }

    .video:nth-child(2n) {
        margin-right: 0;
    }

    .video:nth-child(3) {
        margin-right: 20px;
    }
}

@media (max-width: 600px) {
    .video {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100%);
        flex: 1 1 calc(100%);
        margin-right: 0;
        max-width: 100%;
    }

    .video:nth-child(2n),
    .video:nth-child(3) {
        margin-right: 0;
    }
}


/* SINGLE CATEGORY */

.section-category-single {
}

.section-category-single .section-title {
    color: #c03697;
}

.section-category-single .subtitle {
    color: #788292;
    font-size: 22px;
    text-align: center;
}

.days-slider {
    max-width: 1160px;
    padding: 50px 100px 0;
}

.days-slider:after {
    content: '';
    border: 86px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-width: 0 86px;
}

audio {
    display: block;
    margin: 0 auto;
}

.days-slider .swiper-slide {
    height: auto;
    position: relative;
}

.days-slider .swiper-slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff9;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.days-slider .swiper-slide.active-slide:after {
    display: none;
}

.days-slider .swiper-slide img {
    margin: 0 auto;
}

.days-slider .swiper-slide h3 {
    display: none;
    font-size: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.days-slider .swiper-slide.active-slide h3 {
    display: block;
}

.days-slider .swiper-slide .hidden-content {
    display: none;
}

.section-category-single .more-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #788292;
    cursor: pointer;
    padding: 45px 0 20px;
}

.section-category-single .more-text span {
    text-transform: lowercase;
}

.section-category-single .more-text:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #788292;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    margin-left: 10px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.section-category-single .more-text.active:after {
    -webkit-transform: rotateZ(225deg);
    transform: rotateZ(225deg);
    margin-top: 10px;
}

.more-text + .more-text-content {
    display: none;
    color: #788292;
    font-size: 22px;
}

.more-text + .more-text-content p {
    padding-bottom: 10px;
}

.more-text.active + .more-text-content {
    display: block;
}

.swiper-button {
    width: 50px;
    height: 50px;
    border: 2px solid #c03697;
    border-radius: 50%;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url(../images/arrow.svg);
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url(../images/arrow-right.svg);
}

.swiper-pagination {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    margin-top: 0;
    background-size: 10px 10px;
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    outline: none;
}

.swiper-pagination-bullet {
    border: 2px solid #fff;
    background-color: #0000;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
}

.invert + .swiper-pagination .swiper-pagination-bullet {
    border-color: #9f48be;
}

.invert + .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #9f48be;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
}

@media (max-width: 768px) {
    .days-slider {
        padding: 25px 0 0;
    }

    .section-category-single .subtitle {
        font-size: 18px;
    }

    .section-category-single .more-text {
        font-size: 24px;
        padding: 25px 0 15px;
    }

    .days-slider .swiper-slide h3 {
        font-size: 30px;
    }

    .more-text + .more-text-content {
        font-size: 16px;
    }

    .swiper-pagination {
        display: block;
    }

    .swiper-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .days-slider:after {
        display: none;
    }

    .swiper-button {
        border-color: #fff;
        background-color: #fff9;
    }
}


/* custom style for video player */

.plyr--video,
.plyr__video-wrapper {
    background: #0000;
}

.plyr--video .plyr__controls {
    border-radius: 0 0 10px 10px;
    padding: 35px 10px 10px;
}

.plyr [data-plyr=captions],
.plyr__control[data-plyr="pip"],
.plyr__menu {
    display: none;
}

.plyr__control--overlaid {
    background: #9f48becc;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
    background: #9f48bee6;
    color: #fff;
}


/* custom styles for audio player */

.plyr--full-ui *,
.plyr--full-ui ::after,
.plyr--full-ui ::before,
.plyr--full-ui input[type=range] {
    color: #fff;
}

.plyr--audio .plyr__controls {
    background-color: #474747;
    padding: 4px;
    padding-right: 15px;
    max-width: 443px;
    margin: 0 auto;
}

.plyr--audio .plyr__progress__buffer {
    background-color: #151515;
}


/*  FOOTER
------------------------------------------------------------------------------*/

.footer {
    position: relative;
    padding: 45px 0;
    background-color: #4b4357;
    font-size: 17px;
    font-weight: 300;
    color: #b0b0b0;
    margin-top: auto;
}

.footer .wrap {
    max-width: 1320px;
}

.footer-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
}

.footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.footer-menu li {
    position: relative;
    margin: 0 28px;
}

.footer-menu li:after {
    content: '';
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    top: 50%;
    right: -30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #b0b0b0;
    border-radius: 50%;
}

.footer-menu li:last-child:after {
    display: none;
}

.footer a {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.footer a:hover {
    text-decoration: underline;
}

.copy {
    text-align: center;
}

@media (max-width: 1160px) {
    .footer-row:nth-child(2) {
        -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;
        text-align: center;
    }

    .footer-row:nth-child(2) p {
        padding-bottom: 5px;
    }
}

@media (max-width: 860px) {
    .footer {
        padding: 25px 0;
        font-size: 14px;
    }

    .footer-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-menu li {
        margin: 0;
        padding-bottom: 10px;
    }

    .footer-menu li:after {
        display: none;
    }
}


/*  MODAL
------------------------------------------------------------------------------*/

.modal,
.modal-backdrop {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.modal {
    position: fixed;
    display: none;
    overflow: hidden;
    z-index: 1072;
    padding: 0 !important;
    text-align: center;
    white-space: nowrap;
}

.modal:before {
    content: '';
    height: 100%;
    margin-right: -4px;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.fade.show {
    opacity: 1;
}

.modal-backdrop {
    position: fixed;
    background-color: #000;
    z-index: 1071;
}

.modal-backdrop.show {
    opacity: .7;
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-box-shadow: 0 6px 24px rgba(23, 24, 25, .31);
    box-shadow: 0 6px 24px rgba(23, 24, 25, .31);
    border-radius: 0;
}

.modal-dialog,
.modal:before {
    display: inline-block;
    vertical-align: middle;
}

.modal-dialog {
    position: relative;
    max-width: 660px;
    margin: 100px auto;
    pointer-events: none;
    text-align: left;
    white-space: normal;
}

.modal-text .modal-dialog {
    max-width: 765px;
    width: 100%;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #5c6273;
    text-shadow: 0 1px 0 #fff;
    z-index: 1072;
    width: 28px;
    height: 28px;
    background-size: contain;
    overflow: hidden;
}

.modal button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal .close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.modal-text .modal-body {
    padding: 22px 30px 30px;
}

.modal-text .title {
    font-size: 24px;
    color: #5c6273;
    text-align: left;
    padding: 0 15px 20px 0;
}

.modal-text p {
    color: #5c6273;
}

.modal-text .wrapper-text {
    overflow: hidden;
    height: 410px;
    border: 1px solid #c7cee3;
}

.modal-text .wrapper-text .text {
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    height: 410px;
}

.modal-text .wrapper-text iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 800px) {
    .modal-text .modal-dialog {
        width: 95%;
        margin: 0 auto;
    }
}


/* MODAL */

.modal-thank .modal-dialog {
    max-width: 460px;
}

.modal-thank .modal-content {
    /* border-radius: 50px; */
    text-align: center;
}

.modal-thank button.close {
    color: #c7cee3
}

.modal button.close svg {
    display: block;
    width: 28px;
    height: 28px;
}

.modal-thank img {
    margin: 0 auto 20px;
    max-width: 100px;
}

.modal-thank .title {
    text-align: center;
    font-size: 30px;
    padding-bottom: 20px;
}


/* MODAL EVENT */

.modal-event .modal-dialog {
    max-width: 400px;
}

.modal-event .modal-content {
    /* border-radius: 50px; */
    text-align: center;
}

.modal-event .close {
    color: #c7cee3
}

.modal-event .modal-body {
    padding: 60px 20px;
}

.modal-event img {
    margin: 0 auto 30px;
    max-width: 80px;
}

.modal-event .title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding: 0;
}

/*Fix*/
.form-control:disabled + label {
    font-size: 10px;
    top: -7px;
}

.terms-article {
    color: #5c6273;
}

.section-terms {
    padding: 4%;
}

.section-terms .wrap {
    max-width: 1030px;
}

.section-terms .section-title {
    color: #9f48be;
}

.header.header_other .link {
    color: #9f48be;
}

.header.scrolled .link {
    color: #fff;
}

.video {
    height: 323px;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #9f48be;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #9f48be;
    border-color: #9f48be;
}

.footer .footer__cards {
    height: 50px;
    margin: 0 auto 10px;
}

@media (min-width: 1010px) {
    .max-image {display: block;}
    .middle-image {display: none;}
    .min-image {display: none;}
}
@media (min-width: 630px) and (max-width: 1010px) {
    .max-image {display: none;}
    .middle-image {display: block;}
    .min-image {display: none;}
}
@media (max-width: 630px) {
    .max-image {display: none;}
    .middle-image {display: none;}
    .min-image {display: block;}
}

