@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600);

:root {
    --bg-color: #1a191f;
    --bg-dim-color: #1a191fb2;
    --primary-color: #f6870c;
    --secondary-color: #fd6716;
    --text-color: #fff;
    --text-dim-color: #ffffffb2;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body,
html {
    height: 100%;
}

body {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    background-color: #fff;
    color: #aaa;
    -webkit-font-smoothing: antialiased;
}

button {
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
    transition-property: color, background-color, border-color, opacity;
}

button:focus {
    outline: 0;
}

a {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    transition-property: color, background-color, border-color, opacity;
}

a:active,
a:focus,
a:hover {
    outline: 0;
    text-decoration: none;
}

input,
select,
textarea {
    padding: 0;
    margin: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
}

select::-ms-expand {
    display: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

::-moz-selection {
    background: var(--bg-color);
    color: var(--primary-color);
    text-shadow: none;
}

::selection {
    background: var(--bg-color);
    color: var(--primary-color);
    text-shadow: none;
}

::-webkit-input-placeholder {
    color: var(--text-dim-color);
    opacity: 1;
}

::-moz-placeholder {
    color: var(--text-dim-color);
    opacity: 1;
}

:-moz-placeholder {
    color: var(--text-dim-color);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--text-dim-color);
    opacity: 1;
}

@media (min-width: 1310px) {
    .container {
        max-width: 1310px;
    }
}

.owl-carousel .owl-item img {
    width: auto;
    max-width: 100%;
    min-width: 100%;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.fade {
    -webkit-transition: opacity 0.25s linear;
    -moz-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        -moz-transition: none;
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.b-description_readmore_button {
    cursor: pointer;
    display: block;
    height: 24px;
    width: 100%;
    position: relative;
}

.b-description_readmore_button:before {
    content: "\f1c8";
    font-family: Ionicons;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    color: var(--text-dim-color);
    font-size: 22px;
    line-height: 24px;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.b-description_readmore_button.b-description_readmore_button_active:before,
.b-description_readmore_button:hover:before {
    color: var(--primary-color);
}

.body:before {
    content: "";
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background-color: rgba(26, 25, 31, 0.75);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.body--active:before {
    z-index: 99;
    opacity: 1;
    pointer-events: auto;
}

.header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 101;
}

.header__logo {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
    width: 100px;
}

.header__logo img {
    width: 90px;
    max-width: 500px !important;
    display: block;
    height: 90px;
}

/* LOGO VUE TABLETTE */

@media screen and (min-width: 600px) {
    .header__logo img {
        width: 70px;
        height: 70px;
    }
}

/* LOGO VUE MOBILE */

@media screen and (max-width: 599px) {
    .header__logo img {
        width: 50px;
        height: 50px;
    }
}

.header__nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: fixed;
    text-align: center;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    width: 300px;
    padding: 100px 6px 5px 10px;
    -webkit-transform: translate3d(300px, 0, 0);
    -moz-transform: translate3d(300px, 0, 0);
    transform: translate3d(300px, 0, 0);
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

.header__nav--active {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.header__nav-link {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-dim-color);
    letter-spacing: 0.4px;
}

.header__nav-link:hover {
    background: linear-gradient(
        90deg,
        #eeb500,
        #ff6a00
    ); /* Dégradé horizontal */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header__nav-link--more {
    font-size: 22px;
}
/* HEADER__NAV-LINK VUE MOBILE */

@media screen and (max-width: 599px) {
    .header__nav-item .header__nav-link {
        color: var(--text-dim-color);
    }
}
.header__nav-link--active {
    color: var(--primary-color);
}

.header__nav-item {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.header__nav-item:last-child {
    margin-top: 40px;
    margin-bottom: 0;
}

.header__nav-item.show .header__nav-link {
    color: var(--primary-color);
}

.header__dropdown {
    position: relative;
    display: block;
    width: 100%;
}

.header__dropdown-menu {
    position: absolute;
    background-color: var(--bg-color);
    padding: 15px 20px;
    display: block;
    width: 100%;
    min-width: 200px;
    text-align: left;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    margin-top: 0;
    top: 100%;
}

.header__dropdown-menu li {
    padding: 0;
}

.header__dropdown-menu a {
    font-size: 16px;
    color: var(--text-dim-color);
    line-height: 40px;
    display: block;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.header__dropdown-menu a:hover {
    color: #fd6716;
}

.header__dropdown-menu.show {
    z-index: 1000;
    pointer-events: auto;
    opacity: 1;
    margin-top: 10px;
}

.header__content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
    position: relative;
}

.header__auth {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 42px;
}

#dtailpayd {
    transition: all 0.3s ease-in;
    background: #ffd80e;
    border: none;
    font-weight: 500;
    padding: 8px;
    color: #000;
}

#dtailpayd:hover {
    transition: all 0.3s ease-in;
    transform: scale(1.05);
}

.header__sign-in {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    margin-left: 20px;
    border: 1px solid var(--primary-color);
}

.header__sign-in span {
    display: none;
    color: white;
}

.header__sign-in i {
    color: var(--text-dim-color);
    font-size: 24px;
}

.header__btn {
    display: block;
    position: absolute;
    right: -5%;
    top: -25%;
    margin-top: -22px;
    width: 22px;
    height: 40px;
    z-index: 100;
}

.header__btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 22px;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    top: 13px;
    background-color: var(--text-dim-color);
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.header__btn span:nth-child(2) {
    top: 21px;
}

.header__btn span:nth-child(3) {
    top: 29px;
}

.header__btn:hover span {
    background-color: var(--primary-color);
}

.header__btn--active span {
    background-color: var(--primary-color);
}

.header__btn--active span:first-child {
    top: 21px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header__btn--active span:nth-child(2) {
    opacity: 0;
}

.header__btn--active span:nth-child(3) {
    top: 21px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header__lang {
    position: relative;
    margin-left: 20px;
}

.header__lang .header__dropdown-menu {
    min-width: 122px;
    margin-top: -10px;
}

.header__lang .header__dropdown-menu.show {
    margin-top: 0;
}

.header__lang .header__nav-link {
    line-height: 70px;
    display: block;
}

.header__lang.show .header__nav-link {
    color: var(--primary-color);
}

.header__search-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    color: #000;
    font-weight: 500;
    font-size: 22px;
    margin: 0 auto;
}

.header__search-btn i {
    margin-top: 2px;
}

.header__search-btn:hover {
    color: #fd6716;
}

.header__search {
    position: absolute;
    background-color: var(--bg-color);
    top: 0;
    right: -15px;
    left: -15px;
    bottom: 0;
    z-index: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

.header__search--active {
    opacity: 1;
    pointer-events: auto;
}

.header__search-input {
    width: 240px;
    height: 40px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: rgba(210, 201, 255, 0.04);
    border: 1px solid transparent;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.4px;
    padding: 0 50px 0 20px;
}

.header__search-input {
    border-radius: 40px;
}

.header__search-button {
    position: absolute;
    height: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
    top: 50%;
    margin-top: -20px;
    left: 219px;
}

.header__search-button i {
    margin-top: 2px;
}

.header__search-button:hover {
    color: var(--primary-color);
}

.header__search-close {
    position: absolute;
    height: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    top: 50%;
    margin-top: -20px;
    right: 15px;
}

.header__search-close:hover {
    color: var(--primary-color);
}

@media (min-width: 576px) {
    .header__logo {
        width: 110px;
    }

    .header__lang,
    .header__sign-in {
        margin-left: 30px;
    }

    .header__auth {
        margin-right: 52px;
    }

    .header__lang .header__dropdown-menu {
        min-width: 140px;
    }

    .header__search-btn {
        display: none;
    }

    .header__search-close {
        display: none;
    }

    .header__search {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        padding: 0;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        background-color: transparent;
    }

    .header__search-input {
        width: 200px;
    }

    .header__search-button {
        left: auto;
        right: 20px;
    }
}

@media (min-width: 768px) {
    .header__content {
        height: 80px;
    }

    .header__logo {
        height: 80px;
    }

    .header__auth {
        margin-right: 52px;
    }

    .header__sign-in {
        height: 40px;
        width: 120px;
        margin-left: 30px;
    }

    .header__sign-in i {
        display: none;
    }

    .header__sign-in span {
        display: block;
        font-size: 12px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        -webkit-transition: color 0.4s;
        -moz-transition: color 0.4s;
        transition: color 0.4s;
    }

    .header__sign-in:hover span {
        color: #fff;
    }

    .header__nav {
        top: 0;
        width: 260px;
        -webkit-transform: translate3d(260px, 0, 0);
        -moz-transform: translate3d(260px, 0, 0);
        transform: translate3d(260px, 0, 0);
    }

    .header__nav--active {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .header__lang .header__nav-link {
        line-height: 80px;
    }

    .header__search input {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .header__sign-in {
        margin-left: 45px;
    }

    .header__auth {
        margin-right: 0;
    }

    .header__btn {
        display: none;
    }

    .header__nav {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        padding: 0;
        background-color: transparent;
        width: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        margin-left: 80px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .header__nav-item {
        margin: 0 30px 0 0;
        width: auto;
    }

    .header__nav-item:last-child {
        margin: 0;
    }

    .header__nav-link {
        line-height: 80px;
        display: block;
    }

    .header__nav-link--active {
        color: var(--primary-color);
        cursor: default;
        position: relative;
    }

    .header__nav-link--active:hover {
        color: var(--primary-color);
    }

    .header__content {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .header__auth {
        margin-left: auto;
    }

    .header__dropdown-menu {
        margin-top: -10px;
    }

    .header__dropdown-menu.show {
        margin-top: 0;
    }

    .header__lang {
        margin-left: 45px;
    }
}

@media (min-width: 1310px) {
    .header__nav-item {
        margin: 0 20px 0 0;
    }

    .header__nav-item:last-child {
        margin: 0;
    }
}

.home {
    margin-top: 70px;
    position: relative;
    display: block;
    background-color: var(--bg-color);
    padding: 40px 0;
    height: 800px;
    overflow: hidden;
}

.subscriptHome {
    margin-top: 70px;
    position: relative;
    display: block;
    height: 800px;
    overflow: hidden;
}

.subscriptHome h1 {
    margin-top: 250px;
    position: relative;
    color: #fff;
    text-align: center;
}

.subscriptHome div .img-fluid {
    width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    object-fit: cover;
}
.subscriptHome::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.home .container {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
}

.home__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.home__cover {
    opacity: 0.05;
}

.home__title {
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.4px;
    margin: 0;
    padding-right: 70px;
}

.home__title b {
    font-weight: 600;
}

.home__carousel .card {
    margin-top: 25px;
    margin-bottom: 0;
}

.home__nav {
    font-size: 36px;
    color: var(--text-color);
    opacity: 0.6;
    position: absolute;
    top: 50%;
    height: 24px;
    margin-top: -12px;
    right: 15px;
    display: block;
    z-index: 2;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.home__nav i {
    line-height: 24px;
    height: 24px;
    display: block;
}

.home__nav i:before {
    line-height: 24px;
}

.home__nav--prev {
    right: 55px;
}

.home__nav:hover {
    opacity: 1;
}

/* preloader */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.spinner {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filmstrip {
    width: 30px;
    height: 50px;
    margin: 0 5px;
    background-color: #eeb500;
    /* Yellow color */
    animation: spin 1s infinite ease-in-out;
}

.filmstrip:nth-child(1) {
    animation-delay: -0.3s;
}

.filmstrip:nth-child(2) {
    animation-delay: -0.15s;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    border: 5px solid #ff6a00;
    /* Yellow color */
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

#preloader p {
    margin-top: 20px;
    font-size: 18px;
    color: #fff;
}

.tomber {
    display: inline-block;
    margin: 0 0.3rem;
    animation: flip 5s infinite;
}

/* Appliquer les animations aux classes */
.animated-bounce {
    display: inline-block;
    margin: 0 0.5rem;
    animation: tada 5s infinite;
    will-change: animation;
}

/* .animated-pulse {
    display: inline-block;
    margin: 0 0.3rem;
    animation: pulse 10s infinite;
} */
.animated-bounce:hover,
.animated-pulse:hover,
.tomber:hover {
    animation: none;
    transition: all 5s ease-out;
}

.home--bg:before {
    content: "";
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: url("../img/home/home__bg.jpg") no-repeat center/cover;
    opacity: 0.05;
}

#alertNonconected {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 999;
    display: none;
    width: fit-content;
}
#alertmessage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 999;
    font-size: 20px;
    padding: 5px;
    /*color: #fff !important;*/
    /* background: linear-gradient(106.68deg, #eeb500 0%, #ff5a19 100%) !important;*/
    display: block;
}

.alert-icon {
    width: 20px !important;
    /* Ajustez la largeur selon vos besoins */
    height: 20px !important;
    /* Ajustez la hauteur selon vos besoins */
}

.alert a {
    color: red;
    /* Couleur du lien */
    text-decoration: underline;
    /* Soulignement du lien */
}

#showPlandetails {
    position: fixed;
    top: 30px;
    z-index: 9999;
    display: none;
}

::-webkit-scrollbar {
    width: 14px;
    /* Largeur de la scrollbar */
}

::-webkit-scrollbar-track {
    background: #ddd;
}

::-webkit-scrollbar-thumb {
    background-color: #ffd80e;
    /* Couleur du thumb (curseur de la scrollbar) */
    border-radius: 10px;
    /* Arrondir les coins du thumb */
    border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Couleur du thumb lorsqu'on survole avec la souris */
}

/* cursor */
#typed-output {
    font-family: "Courier New", Courier, monospace;
    font-size: 18px;
    color: #fff;
    /* Text color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-bottom: 2px solid #ffd700;
    display: inline-block;
}

.typed-cursor {
    font-size: 36px;
    /* Match text size */
    color: #ffd700;
    /* Yellow color */
    animation: blink 0.7s infinite;
    /* Blinking animation */
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }

    50.01%,
    100% {
        opacity: 0;
    }
}

@media (min-width: 576px) {
    .home__title {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .home {
        margin-top: 80px;
        padding: 60px 0;
    }

    .home__title {
        font-size: 32px;
    }

    .home__carousel .card {
        margin-top: 30px;
    }
}

@media (min-width: 1200px) {
    .home {
        padding: 70px 0;
    }

    .home__title {
        font-size: 36px;
    }

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

.content {
    padding: 0 0 20px;
}

.content__head {
    background-color: var(--bg-color);
    margin-bottom: 30px;
    position: relative;
    border-bottom: 1px solid rgba(210, 201, 255, 0.1);
}

.content__title {
    color: var(--text-color);
    font-weight: 300;
    font-size: 28px;
    line-height: 100%;
    margin: 20px 0 5px;
}

.content__tabs {
    display: none;
}

.content__mobile-tabs {
    position: relative;
}

.content__mobile-tabs--profile {
    margin-bottom: -20px;
}

/* Videos en arriÃ¨re plan */
.card__video {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__cover {
    position: relative;
    overflow: hidden;
}

.card__cover:hover .card__image {
    display: none;
}

.card__cover:hover .card__video {
    display: block;
}

#album-rotator,
.carousel-container {
    overflow: hidden;
    position: relative;
    margin: auto;
    margin-bottom: 50px;
}

#album-rotator-holder,
#album-rotator-holder1,
#album-rotator-holder2,
.carousel-holder,
.carousel2-holder,
.carousel3-holder,
.carousel4-holder,
.carousel5-holder,
.carousel6-holder,
.carousel7-holder,
.carousel8-holder,
.carousel9-holder,
.carousel10-holder,
.carousel11-holder,
.carousel12-holder,
.carousel13-holder,
.carousel14-holder,
.carousel15-holder,
.carousel16-holder,
.carousel17-holder {
    display: flex;
    transition: transform 0.5s ease-out;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 2;
    background-color: #ffd80e;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sugggestitlte {
    font-size: 2.5rem;
    color: #ff5a19;
    margin: 0;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

@media (max-width: 768px) {
    #album-rotator {
        width: 90%;
        padding: 20px;
    }

    .arrow {
        font-size: 1.5rem;
        padding: 0.3rem;
    }

    .card {
        width: 100px;
        height: 250px;
        margin-right: 0.5rem;
    }

    h1 {
        font-size: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    #album-rotator {
        width: 100%;
        padding: 10px;
    }

    .arrow {
        font-size: 1.2rem;
        padding: 0.2rem;
    }

    .card {
        width: 100px;
        height: 250px;
        margin-right: 0.3rem;
    }

    h1 {
        font-size: 1.5rem;
        padding-top: 1rem;
    }
}

.content__mobile-tabs-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    height: 50px;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.content__mobile-tabs-btn input {
    display: block;
    position: relative;
    width: auto;
    background-color: transparent;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-dim-color);
    cursor: pointer;
    height: 50px;
    margin-right: 12px;
    letter-spacing: 0.4px;
}

.content__mobile-tabs-btn span {
    position: relative;
    width: 16px;
    height: 16px;
    display: block;
}

.content__mobile-tabs-btn span:after,
.content__mobile-tabs-btn span:before {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 2px;
    background-color: var(--text-dim-color);
    left: 0;
    top: 50%;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    margin-top: -5px;
}

.content__mobile-tabs-btn span:after {
    margin-top: 2px;
    width: 10px;
}

.content__mobile-tabs-btn[aria-expanded="true"] {
    opacity: 1;
}

.content__mobile-tabs-btn[aria-expanded="true"] span:before {
    background-color: var(--primary-color);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -1px;
}

.content__mobile-tabs-btn[aria-expanded="true"] span:after {
    background-color: var(--primary-color);
    margin-top: -1px;
    width: 16px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.content__mobile-tabs-menu {
    position: absolute;
    background-color: var(--bg-color);
    padding: 15px 20px;
    display: block;
    min-width: 200px;
    pointer-events: none;
    opacity: 0;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    margin-top: 0;
    top: 100%;
    left: 0;
    z-index: 100;
    margin-top: -10px;
}

.content__mobile-tabs-menu a {
    display: block;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text-dim-color);
    line-height: 40px;
    display: block;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.content__mobile-tabs-menu a:hover {
    color: var(--primary-color);
}

.content__mobile-tabs-menu a.active {
    display: none;
}

.content__mobile-tabs-menu.show {
    pointer-events: auto;
    opacity: 1;
    margin-top: 0;
}

@media (min-width: 576px) {
    .content__title {
        font-size: 30px;
        margin: 25px 0 10px;
    }

    .content__tabs {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden;
    }

    .content__tabs li {
        margin-right: 40px;
    }

    .content__tabs li:last-child {
        margin-right: 0;
    }

    .content__tabs a {
        display: block;
        line-height: 50px;
        color: var(--text-dim-color);
        position: relative;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 0.4px;
    }

    .content__tabs a:hover {
        color: var(--primary-color);
    }

    .content__tabs a:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        display: block;
        background-color: var(--primary-color);
        -webkit-transition: 0.4s ease;
        -moz-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transform: translateY(2px);
        -moz-transform: translateY(2px);
        transform: translateY(2px);
        opacity: 0;
    }

    .content__tabs a.active {
        color: var(--primary-color);
    }

    .content__tabs a.active:before {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    .content__tabs--profile {
        display: none;
    }

    .content__mobile-tabs {
        display: none;
    }

    .content__mobile-tabs--profile {
        display: block;
    }
}

@media (min-width: 768px) {
    .content {
        padding: 0 0 30px;
    }

    .content__title {
        font-size: 32px;
        margin: 35px 0 15px;
    }

    .content__head {
        margin-bottom: 40px;
    }

    .content__tabs--profile {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .content__tabs--profile a {
        line-height: 80px;
    }

    .content__mobile-tabs--profile {
        display: none;
    }
}

@media (min-width: 1200px) {
    .content {
        padding: 0 0 40px;
    }

    .content__title {
        font-size: 36px;
    }

    .content__tabs li {
        margin-right: 45px;
    }

    .content__tabs li:last-child {
        margin-right: 0;
    }
}

.section {
    padding: 40px 0;
    position: relative;
    background: transparent;
}

.section__title-wrap {
    position: relative;
    margin-bottom: 25px;
}

.section__title {
    color: var(--text-color);
    font-weight: 300;
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 25px;
}

.section__title b {
    font-weight: 600;
}

.section__title--carousel {
    padding-right: 200px;
    margin-bottom: 0;
}

.section__title--no-margin {
    margin-bottom: 15px;
}

.section__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

.section__text:last-child {
    margin-bottom: 0;
}

.section__text b {
    font-weight: 600;
    color: var(--text-color);
}

.section__text a {
    color: var(--primary-color);
}

.section__text a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.section__text--last-with-margin:last-child {
    margin-bottom: 30px;
}

.section__list ol {
    padding-left: 0;
    list-style: none;
    counter-reset: li;
    margin-bottom: 0;
}

.section__list ol ol {
    padding-left: 15px;
    margin-top: 10px;
}

.section__list ol ol ol {
    margin-top: 10px;
    margin-bottom: 10px;
}

.section__list ol ol ol li {
    margin-top: 5px;
}

.section__list ol h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    letter-spacing: 0.4px;
    margin-bottom: 0;
    margin-top: 20px;
}

.section__list ol li {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    letter-spacing: 0.4px;
}

.section__list ol li b {
    font-weight: 600;
    color: var(--text-color);
}

.section__list ol li a {
    color: var(--primary-color);
}

.section__list ol li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.section__list ol li:last-child {
    margin-bottom: 0;
}

.section__list ol li:before {
    counter-increment: li;
    content: counters(li, ".") ". ";
}

.section__nav-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -15px;
}

.section__view {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 70px;
    height: 30px;
    color: #000;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: rgba(210, 201, 255, 0.04);
    font-size: 14px;
    letter-spacing: 0.4px;
    margin-right: 20px;
    margin-top: 35px;
    background: #ffd80e;
}

.section__view:hover {
    color: #fff;
    background: #ebc509;
}

.section__nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: var(--text-dim-color);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: rgba(210, 201, 255, 0.04);
    font-size: 16px;
}

.section__nav--prev {
    margin-right: 20px;
}

.section__nav:hover {
    color: var(--primary-color);
}

.section__carousel .card {
    margin-bottom: 0;
}

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

.section--first {
    margin-top: 70px;
}

.section--first .section__title {
    margin-bottom: 0;
}

.section--details {
    margin-top: 70px;
}

.section--border {
    border-top: 1px solid rgba(210, 201, 255, 0.1);
}

.section--faq {
    padding: 40px 0 0;
}

.section--grid {
    padding: 40px 0 25px;
}

@media (min-width: 576px) {
    .section__title {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section__title-wrap {
        margin-bottom: 35px;
    }

    .section__title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .section__title--carousel {
        margin-bottom: 0;
    }

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

    .section__wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .section--details,
    .section--first {
        margin-top: 80px;
    }

    .section--faq {
        padding: 60px 0 0;
    }

    .section--grid {
        padding: 60px 0 45px;
    }
}

@media (min-width: 992px) {
    .section__text--last-with-margin:last-child {
        margin-bottom: 30px;
    }

    .section--grid {
        padding: 60px 0 40px;
    }
}

@media (min-width: 1200px) {
    .section__title {
        font-size: 36px;
    }
}

.breadcrumb {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}

.breadcrumb__item {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dim-color);
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    position: relative;
    margin-right: 40px;
    letter-spacing: 0.4px;
}

.breadcrumb__item:before {
    content: "\f119";
    position: absolute;
    font-family: Ionicons;
    color: rgba(255, 255, 255, 0.6);
    left: 100%;
    top: 0;
    font-size: 22px;
    line-height: 26px;
    margin-left: 14px;
}

.breadcrumb__item:hover {
    color: var(--text-color);
}

.breadcrumb__item--active {
    cursor: default;
    margin-right: 0;
}

.breadcrumb__item--active:before {
    display: none;
}

.breadcrumb__item--active:hover {
    color: var(--text-dim-color);
}

.breadcrumb a {
    color: var(--text-dim-color);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .breadcrumb {
        margin-top: 0;
    }
}

.card {
    margin-bottom: 30px;
    border: none;
}

.card__cover {
    position: relative;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    width: 190px;
    height: 220px;
    overflow: hidden;
    border-radius: 5px;
    padding: 0 !important;
    will-change: transform;
    transition: all 0.3s ease-in-out;
}

.card__cover:hover {
    transform: scale(1.02);
}

.card__cover img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 5px;
}

.card__cover:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 25, 31, 0.8);
    z-index: 2;
    opacity: 0;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.card__cover:hover:before {
    opacity: 1;
}

.card__cover:hover .card__play {
    opacity: 1;
}

.card__play {
    position: absolute;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    z-index: 3;
    font-size: 30px;
    color: #fd6060;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    opacity: 0;
}

.card__play i {
    position: relative;
    z-index: 2;
    margin: 2px 0 0 3px;
}

.card__play:before {
    content: "";
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--text-color);
    z-index: 1;
}

.card__play:hover {
    background-color: rgba(253, 96, 96, 0.1);
    color: #fd6060;
}

.card__content {
    position: relative;
    display: block;
    margin-top: 10px;
    width: 170px !important;
}

.card__title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.card__title a {
    color: #fff !important;
}

.card__title a:hover {
    color: var(--text-color);
}

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

.card__category a {
    font-size: 14px;
    position: relative;
    color: var(--primary-color);
    margin-right: 10px;
    opacity: 0.7;
}

.card__category a:after {
    content: ",";
    position: absolute;
    display: block;
    left: 100%;
    top: 0;
    color: var(--primary-color);
}

.card__category a:last-child {
    margin-right: 0;
}

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

.card__category a:hover {
    opacity: 1;
}

.card__rate {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #fff;
    position: absolute;
    z-index: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    height: 36px;
    top: 15px;
    left: 15px;
    background-color: var(--bg-dim-color);
    border: 1px solid transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.card__rate--green {
    border-color: #48ee3b;
}

.card__rate--red {
    border-color: #fd6060;
}

.card__meta {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.card__meta span {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 7px;
    letter-spacing: 0.4px;
}

.card__meta li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    letter-spacing: 0.4px;
}

.card__meta li:last-child {
    margin-bottom: 0;
}

.card__meta a {
    font-size: 16px;
    position: relative;
    color: var(--primary-color);
    margin-right: 7px;
    opacity: 0.7;
    letter-spacing: 0.4px;
}

.card__meta a:after {
    content: ",";
    position: absolute;
    display: block;
    left: 100%;
    top: 0;
    color: var(--primary-color);
}

.card__meta a:last-child {
    margin-right: 0;
}

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

.card__meta a:hover {
    opacity: 1;
}

.card__description {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.4px;
}

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

.card--details .card__cover img {
    max-width: 270px;
}

.card--details .card__cover:hover:before {
    opacity: 0;
}

.card--details .card__content {
    margin-top: 20px;
}

@media (min-width: 576px) {
    .card__meta {
        margin-top: -6px;
    }

    .card--big .card__title {
        font-size: 20px;
    }

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

    .card--details .card__content {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .card--big .card__rate {
        top: 20px;
        left: 20px;
    }
}

@media (min-width: 992px) {
    .card--details {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .card--big .card__play {
        width: 68px;
        height: 68px;
        margin: -34px 0 0 -34px;
        font-size: 34px;
    }

    .card--big .card__play:before {
        width: 56px;
        height: 56px;
        margin: -28px 0 0 -28px;
    }

    .card--big .card__play i {
        margin: 2px 0 0 5px;
    }
}

.catalog {
    padding: 0 0 20px;
}

@media (min-width: 768px) {
    .catalog {
        padding: 0 0 40px;
    }
}

.filter {
    background-color: #fff;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(210, 201, 255, 0.1);
}

.filter__item {
    position: relative;
    margin-bottom: 20px;
}

.filter__item-label {
    font-size: 12px;
    line-height: 100%;
    display: block;
    color: var(--text-dim-color);
    font-weight: 300;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.filter__item-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    height: 30px;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.filter__item-btn input {
    display: block;
    position: relative;
    width: auto;
    background-color: transparent;
    border: none;
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
    height: 30px;
    margin-right: 12px;
    letter-spacing: 0.4px;
}

.filter__item-btn span {
    position: relative;
    width: 16px;
    height: 16px;
    display: block;
    margin-top: 3px;
}

.filter__item-btn span:after,
.filter__item-btn span:before {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 2px;
    background-color: var(--text-dim-color);
    left: 0;
    top: 50%;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    margin-top: -5px;
}

.filter__item-btn span:after {
    margin-top: 2px;
    width: 10px;
}

.filter__item-btn[aria-expanded="true"] span:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -2px;
    background-color: var(--primary-color);
}

.filter__item-btn[aria-expanded="true"] span:after {
    margin-top: -2px;
    width: 16px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: var(--primary-color);
}

.filter__item-btn:hover span:after,
.filter__item-btn:hover span:before {
    background-color: var(--primary-color);
}

.filter__item-menu {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    margin-top: 0;
    min-width: 200px;
    padding: 15px 20px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    display: block;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    max-height: 190px;
}

.filter__item-menu li {
    display: block;
    line-height: 40px;
    font-size: 14px;
    color: var(--text-dim-color);
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    letter-spacing: 0.4px;
}

.filter__item-menu li:hover {
    color: var(--primary-color);
}

.filter__item-menu.show {
    pointer-events: auto;
    opacity: 1;
    margin-top: 10px;
}

.filter__content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 30px 0;
}

.filter__btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: 120px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: transparent;
    font-size: 14px;
    color: var(--text-dim-color);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid var(--primary-color);
}

.filter__btn:hover {
    color: var(--text-color);
}

.filter__range {
    font-size: 16px;
    color: var(--text-color);
    margin-right: 12px;
    letter-spacing: 0.4px;
    height: 30px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.filter__range div {
    position: relative;
}

.filter__range div:first-child {
    margin-right: 17px;
}

.filter__range div:first-child:after {
    content: "â€“";
    position: absolute;
    display: block;
    left: 100%;
    top: 0;
    color: var(--text-color);
    font-size: 16px;
    margin-left: 4px;
}

@media (min-width: 768px) {
    .filter {
        margin-bottom: 40px;
    }

    .filter__content {
        padding: 40px 0;
    }
}

@media (min-width: 992px) {
    .filter__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0;
        height: 80px;
    }

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

    .filter__item {
        margin-bottom: 0;
        margin-right: 60px;
    }

    .filter__item-label {
        margin-top: 6px;
    }

    .filter__item-menu {
        margin-top: 5px;
    }

    .filter__item-menu.show {
        margin-top: 15px;
    }
}

.noUi-target {
    background: var(--bg-color);
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.noUi-horizontal {
    height: 4px;
    margin: 10px 0;
}

.noUi-connects {
    background-color: rgba(210, 201, 255, 0.04);
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
}

.noUi-connect {
    background-color: var(--primary-color);
}

.noUi-handle {
    border: none;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.noUi-handle:focus {
    outline: 0;
}

.noUi-handle.noUi-handle-lower {
    background-color: var(--primary-color);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.noUi-handle.noUi-handle-upper {
    background-color: var(--primary-color);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.noUi-horizontal .noUi-handle {
    width: 16px;
    height: 16px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
    right: -8px;
}

.paginator {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px auto 30px;
    height: 36px;
    width: 340px;
    max-width: 100%;
}

.paginator__item {
    margin-right: 15px;
}

.paginator__item a {
    font-size: 16px;
    height: 36px;
    width: 36px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-dim-color);
    text-align: center;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: rgba(210, 201, 255, 0.04);
    border: 1px solid transparent;
}

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

.paginator__item:hover a {
    color: var(--primary-color);
}

.paginator__item--next,
.paginator__item--prev {
    display: block;
    position: relative;
}

.paginator__item--next a,
.paginator__item--prev a {
    font-size: 16px;
}

.paginator__item--active a {
    color: var(--text-color);
    cursor: default;
    border-color: var(--primary-color);
}

.paginator__item--active a:hover {
    color: var(--text-color);
}

@media (min-width: 768px) {
    .paginator {
        margin: 30px auto 20px;
        height: 40px;
    }

    .paginator__item {
        margin-right: 20px;
    }

    .paginator__item a {
        width: 40px;
        height: 40px;
    }

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

.profile {
    background-color: var(--bg-color);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(210, 201, 255, 0.1);
}

.profile__content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px 0;
}

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

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

.profile__meta h3 {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}

.profile__meta span {
    color: var(--text-dim-color);
    font-size: 14px;
    letter-spacing: 0.4px;
}

.profile__avatar {
    display: block;
    position: relative;
    width: 50px;
    cursor: pointer;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-right: 15px;
}

.profile__avatar img {
    width: 100%;
}

.profile__logout {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: 40px;
    position: absolute;
    right: 15px;
    top: 25px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: transparent;
    font-size: 14px;
    color: var(--text-dim-color);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid var(--primary-color);
}

.profile__logout:hover {
    color: var(--text-color);
}

.profile__logout span {
    display: none;
}

.profile__logout i {
    color: var(--text-dim-color);
    font-size: 24px;
}

.profile__form {
    background-color: #fff;
    border: 1px solid rgba(210, 201, 255, 0.1);
    padding: 20px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

.profile__title {
    color: #000;
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.6px;
}

.profile__group {
    position: relative;
    margin-bottom: 20px;
}

.profile__label {
    letter-spacing: 0.4px;
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}

.profile__input {
    width: 100%;
    background-color: #ddd;
    border: 1px solid transparent;
    height: 46px;
    position: relative;
    font-size: 16px;
    line-height: 0.4px;
    width: 100%;
    color: #000 !important;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 0 20px;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.3);
}

.profile__btn:hover,
.profile__btn:focus {
    border-color: #ffd80e !important;
}

.profile__btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 46px;
    width: 100%;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: transparent;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid #ffd80e;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .profile {
        margin-bottom: 40px;
    }

    .profile__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0;
        height: 80px;
    }

    .profile__user {
        width: 210px;
        margin-bottom: 0;
        margin-right: 40px;
    }

    .profile__logout {
        margin-top: 0;
        width: 120px;
        position: relative;
        top: auto;
        right: auto;
    }

    .profile__logout i {
        display: none;
    }

    .profile__logout span {
        display: block;
    }

    .profile__form {
        padding: 30px;
        margin-bottom: 40px;
    }

    .profile__btn {
        width: 140px;
    }
}

@media (min-width: 992px) {
    .profile__form {
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .profile__user {
        width: 240px;
    }

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

.price {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--bg-color);
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    margin: 15px 0;
    position: relative;
    border-radius: 5px;
}

#ContainerDwn {
    height: 700px;
    overflow: scroll;
    width: 100%;
}

#ContainerDwn::-webkit-scrollbar {
    display: none;
}

.AbonnementActive {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffd80e;
    border: 1px solid #fff;
    border-radius: 120px;
    padding: 10px;
}

.price--premium:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    display: block;
    background-color: #fd6060;
    -webkit-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}

.price--premium .price__item:before {
    background-color: #fd6060;
}

.price--premium .price__item--first span:last-child {
    color: #fd6060;
}

.price--premium .price__btn {
    border-color: #fd6060;
}

.price--profile {
    margin: 0 0 30px;
}

.price__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(210, 201, 255, 0.1);
    position: relative;
    padding-left: 15px;
    letter-spacing: 0.4px;
}

.price__item:before {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--text-dim-color);
    left: 0;
    top: 50%;
    margin-top: 4px;
}

.price__item--first {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-top: 0;
    padding-top: 0;
    border: none;
    color: var(--text-color);
    padding-left: 0;
}

.price__item--first:before {
    display: none;
}

.price__item--first span:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

.price__item:nth-child(2) {
    border: none;
}

.price__btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 46px;
    width: 100%;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: transparent;
    font-size: 14px;
    color: var(--text-dim-color);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid var(--primary-color);
    margin-top: 20px;
}

.price__btn:hover {
    color: #fff;
}

@media (min-width: 576px) {
    .price__btn {
        margin-top: 25px;
    }
}

@media (min-width: 992px) {
    .price {
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .price {
        padding: 30px;
    }

    .price--profile {
        margin: 0 0 20px;
    }
}

.plan-features li {
    position: relative;
    font-size: 16px;
    color: #000;
    padding-left: 40px;
    line-height: 26px;
    margin-bottom: 15px;
    letter-spacing: 0.4px;
}

.plan-features li:before {
    content: "\f3ff";
    font-family: Ionicons;
    position: absolute;
    top: 0;
    left: 15px;
    color: var(--primary-color);
    font-size: 28px;
    line-height: 26px;
}

@media (min-width: 768px) {
    .plan-features {
        margin-bottom: 30px;
    }
}

.faq {
    display: block;
    margin-bottom: 40px;
}

.faq__title {
    color: var(--text-color);
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 0.4px;
}

.faq__text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.4px;
}

.faq__text b {
    color: var(--text-color);
    font-weight: 600;
}

.faq__text:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .faq {
        margin-bottom: 50px;
    }
}

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

@media (min-width: 1200px) {
    .faq {
        margin-bottom: 60px;
        padding: 0 40px 0 0;
    }
}

.feature {
    display: block;
    position: relative;
    margin: 15px 0;
    padding-left: 65px;
}

.feature__icon {
    display: block;
    position: absolute;
    top: -8px;
    left: 0;
    font-size: 42px;
}

.feature__icon:before {
    color: var(--primary-color);
}

.feature__title {
    color: var(--text-color);
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

.feature__text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    letter-spacing: 0.4px;
}

@media (min-width: 992px) {
    .feature {
        padding-right: 15px;
        margin: 20px 0;
    }
}

.how {
    display: block;
    margin: 15px 0;
}

.how__number {
    font-size: 46px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    color: var(--primary-color);
}

.how__title {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

.how__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    letter-spacing: 0.4px;
}

.how__text b {
    font-weight: 600;
}

@media (min-width: 992px) {
    .how {
        margin: 20px 0;
    }
}

.partner {
    display: block;
    margin: 15px 0;
}

.partner__img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    opacity: 0.7;
}

.partner:hover .partner__img {
    opacity: 1;
}

@media (min-width: 992px) {
    .partner {
        margin: 20px 0;
    }
}

.contacts__list {
    margin-bottom: 20px;
}

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

.contacts__list li:last-child {
    margin-bottom: 0;
}

.contacts__list a {
    font-size: 16px;
    color: var(--text-dim-color);
    letter-spacing: 0.4px;
}

.contacts__list a:hover {
    color: var(--primary-color);
}

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

.contacts__social li {
    margin-right: 20px;
}

.contacts__social li:last-child {
    margin-left: 0;
}

.contacts__social li.facebook a {
    color: #3b5999;
}

.contacts__social li.twitter a {
    color: #1da1f2;
}

.contacts__social li.vk a {
    color: #45668e;
}

.contacts__social a {
    font-size: 22px;
    color: var(--text-dim-color);
}

.contacts__social a:hover {
    color: var(--primary-color);
}

.form {
    background-color: #fff;
    border: 1px solid rgba(210, 201, 255, 0.1);
    padding: 20px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    box-shadow: 0 0px 20px 6px rgba(0, 0, 0, 0.1) !important;
}

.card__title a:hover {
    color: #3d3ddb !important;
}

.card__category {
    color: #ff6a00 !important;
}

.form__input {
    margin-bottom: 20px;
    width: 100%;
    background-color: #ddd;
    border: 1px solid transparent;
    height: 46px;
    position: relative;
    font-size: 16px;
    line-height: 15px;
    color: #000;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 0 20px;
}

select optgroup {
    background: black !important;
}

select optgroup option {
    background-color: #000;
}

#videoInput::before {
    content: "";
    pointer-events: none;
    font-family: Ionicons;
    position: absolute;
    right: 20px;
    top: 0;
    line-height: 46px;
    font-size: 18px;
}

.form__input:focus {
    border-color: var(--primary-color);
}

option {
    background: #fff !important;
}

.form__textarea {
    border: 1px solid transparent;
    height: 150px;
    position: relative;
    color: #000 !important;
    font-size: 16px;
    letter-spacing: 0.4px;
    width: 100%;
    padding: 15px 20px;
    resize: none;
    background-color: #ddd;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.form__textarea::placeholder,
#commentText::placeholder {
    color: #000 !important;
}

/* CSS pour changer la couleur de la barre de progression */
progress[value]::-webkit-progress-bar {
    background-color: #f3f3f3;
    border-radius: 4px;
}

progress[value]::-webkit-progress-value {
    background-color: yellow;
    border-radius: 4px;
}

progress[value]::-moz-progress-bar {
    background-color: yellow;
    border-radius: 4px;
}

/* Video style */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Ratio 16:9 */
    overflow: hidden;
    height: fit-content !important;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* image style */
.image-container {
    max-width: 600px;
    /* Taille maximale de la vidÃ©o */
    margin: 0 auto;
    /* Centrer la vidÃ©o horizontalement */
    text-align: center;
    /* Centrer le contenu (texte et image) */
}

.image-container h3 {
    margin-bottom: 10px;
    /* Marge infÃ©rieure pour sÃ©parer le titre de la vidÃ©o de l'image */
}

.image-container img {
    max-width: 100%;
    /* Image s'adapte Ã  la largeur du conteneur */
    height: auto;
    /* Image conserve son ratio hauteur/largeur */
    border-radius: 5px;
    /* Ajouter des coins arrondis Ã  l'image */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Ajouter une ombre lÃ©gÃ¨re Ã  l'image */
}

.section--bg {
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.section--bg .selecimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}
.form__textarea:focus {
    border-color: var(--primary-color);
}

.form__btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 46px;
    width: 140px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #ff6a00;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid var(--primary-color);
    margin-top: 20px;
}

.form__btn:hover {
    color: #fff;
}

.form__slider {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

.form__slider:before {
    content: "Rate:";
    position: absolute;
    bottom: 100%;
    left: 0;
    display: block;
    color: var(--text-dim-color);
    font-size: 16px;
    height: 20px;
    line-height: 20px;
    letter-spacing: 0.4px;
}

.form__slider-rating {
    width: 160px;
    margin-right: 20px;
}

.form__slider-rating .noUi-connects {
    background-color: rgba(210, 201, 255, 0.04);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: none;
}

.form__slider-rating .noUi-handle.noUi-handle-lower {
    background-color: var(--primary-color);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.form__slider-value {
    font-size: 16px;
    color: var(--text-color);
    letter-spacing: 0.4px;
}

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

@media (min-width: 768px) {
    .form--contacts {
        margin-bottom: 0;
    }
}

.comments {
    margin-bottom: 50px;
}

.comments__autor {
    display: block;
    position: relative;
    padding-left: 55px;
    margin-bottom: 15px;
}

.comments__avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.comments__name {
    display: block;
    font-size: 16px;
    color: var(--text-color);
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.comments__time {
    display: block;
    font-size: 12px;
    color: #000;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.comments__text {
    display: block;
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 26px;
    padding: 10px;
    position: relative;
    letter-spacing: 0.4px;
    border-top: 1px solid rgba(210, 201, 255, 0.1);
    border-left: 1px solid rgba(210, 201, 255, 0.1);
    border-right: 1px solid rgba(210, 201, 255, 0.1);
    -webkit-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}

.comments__text span {
    display: block;
    background-color: rgba(210, 201, 255, 0.04);
    margin-bottom: 20px;
    padding: 20px;
    position: relative;
    min-height: 80px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    color: var(--text-color);
}

.comments__text span:before {
    content: "\f1f5";
    position: absolute;
    display: block;
    font-family: Ionicons;
    color: rgba(255, 216, 14, 0.1);
    font-size: 60px;
    top: 10px;
    left: 15px;
    line-height: 100%;
    z-index: 1;
    pointer-events: none;
}

.comments__item {
    margin-bottom: 30px;
    display: block;
    background: #ddd;
    padding: 10px;
    font-weight: 600;
    border-radius: 8px;
}

.comments__item--answer,
.comments__item--quote {
    margin-left: 25px;
}

.comments__actions {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    -webkit-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
}

.comments__actions button {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 20px;
    height: 22px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.comments__actions button i {
    margin-right: 5px;
}

.comments__actions button:hover {
    color: var(--primary-color);
}

.comments__actions button:last-child {
    margin-right: 0;
    color: #000;
    font-weight: 600;
}

.comments__rate {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -15px;
}

.comments__rate button {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-right: 25px;
    position: relative;
    height: 30px;
    letter-spacing: 0.4px;
}

.comments__rate button i {
    font-size: 18px;
    opacity: 0.6;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.comments__rate button:last-child {
    margin-right: 0;
}

.comments__rate button:last-child i {
    margin-left: 6px;
    color: #ffd80e;
}

.comments__rate button:first-child i {
    margin-right: 6px;
    color: #ffd80e;
}

.comments__rate button:first-child:before {
    content: "";
    position: absolute;
    display: block;
    left: 100%;
    margin-left: 12px;
    width: 1px;
    height: 15px;
    background-color: rgba(210, 201, 255, 0.1);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.comments__rate button:hover {
    color: var(--text-color);
}

.comments__rate button:hover i {
    opacity: 1;
}

@media (min-width: 768px) {
    .comments {
        margin-bottom: 60px;
    }

    .comments__item--answer,
    .comments__item--quote {
        margin-left: 50px;
    }
}

@media (min-width: 992px) {
    .comments {
        margin-bottom: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1200px) {
    .comments {
        margin-bottom: 20px;
    }

    .comments__item--answer,
    .comments__item--quote {
        margin-left: 68px;
    }
}

.reviews {
    margin-bottom: 50px;
}

.reviews__autor {
    display: block;
    position: relative;
    padding-left: 55px;
    margin-bottom: 15px;
    padding-right: 60px;
}

.reviews__avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.reviews__name {
    display: block;
    font-size: 16px;
    color: var(--text-color);
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
}

.reviews__time {
    display: block;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.reviews__text {
    display: block;
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.4px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.reviews__item {
    margin-bottom: 30px;
    display: block;
    background: #ddd;
    font-weight: 600;
}

.ion-ios-trash {
    font-size: 18px;
}

.reviews__rating {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--text-color);
    position: absolute;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    right: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background-color: var(--bg-dim-color);
    border: 1px solid transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-top: 2px;
}

.reviews__rating--green {
    border-color: #48ee3b;
}

.reviews__rating--red {
    border-color: #fd6060;
}

@media (min-width: 576px) {
    .reviews__name {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .reviews {
        margin-bottom: 60px;
    }
}

@media (min-width: 992px) {
    .reviews {
        margin-bottom: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1200px) {
    .reviews {
        margin-bottom: 20px;
    }
}

.gallery {
    margin-bottom: 20px;
}

.gallery figure {
    margin: 0 0 30px;
}

.gallery figure a {
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.gallery figure img {
    width: 100%;
}

.gallery figcaption {
    display: none;
}

@media (min-width: 768px) {
    .gallery {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .gallery {
        padding-right: 30px;
    }
}

.footer {
    background-color: #000;
    border-top: 1px solid rgba(210, 201, 255, 0.1);
}

.footer__content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px 0;
    position: relative;
}

.footer__logo {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
}

.footer__logo img {
    width: 100%;
    max-width: 110px;
    display: block;
}

/* FOOTEr VUE MOBILE */

@media screen and (max-width: 599px) {
    .footer-content .logo img {
        position: relative;
        left: -80%;
        width: 25%;
        max-width: 40px;
    }

    .footer-content .social-icons {
        position: relative;
        left: -45%;
        margin-bottom: 20px;
    }

    .useless {
        display: none;
    }

    .links-section {
        margin-left: -20px;
        width: 100%;
    }
}

.footer__nav {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: start;
    -moz-box-direction: start;
    -ms-flex-direction: start;
    flex-direction: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

#bodyProfil {
    position: relative;
}

@media screen and (min-width: 991px) {
    .ProfilUserFooter {
        position: fixed !important;
        bottom: 0;
        width: 100%;
    }
}

.menu-vertical {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #000000;
    /* Noir */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    z-index: 1000;
    /* Assure que le menu reste au-dessus du contenu */
}

.usercontaentTab {
    position: relative;
    height: 92%;
    z-index: 999;
    overflow: hidden;
    padding: 0;
}

.profiluserForm {
    position: absolute;
    width: 98%;
    height: 85% !important;
    padding: 5px;
}

.menu-vertical ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
}

#modalsucess {
    width: 350px;
    background: #fff;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
    padding: 15px 0;
    height: 60px;
    color: green;
    position: fixed;
    top: 5%;
    right: 2%;
    z-index: 9999;
    box-shadow: 0 5px 10px 5px rgb(0, 0, 0, 0.1);
    display: none;
}

#modalfail {
    width: 350px;
    background: red;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
    padding: 15px 0;
    height: 60px;
    color: #fff;
    position: fixed;
    top: 5%;
    right: 2%;
    z-index: 9999;
    box-shadow: 0 5px 10px 5px rgb(0, 0, 0, 0.1);
    display: none;
}

/*  */

.menu-vertical li {
    padding: 15px;
    color: #ffffff;
    /* Blanc */
}

.menu-vertical li a {
    color: #ffffff;
    width: fit-content;
    font-size: 20px;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.menu-vertical li a:hover,
.menu-vertical li a:focus,
.menu-vertical li a:active {
    color: #ffd80e;
    /* Jaune */
}

.menu-vertical .profile__meta {
    text-align: center;
    margin-bottom: 20px;
}

.menu-vertical .profile__meta h3 {
    margin-bottom: 5px;
    color: #ffffff;
    /* Blanc */
}

.menu-vertical .profile__meta span {
    display: block;
    color: #ffff00;
    /* Jaune */
    font-size: 16px;
}

.homeUsers li a {
    width: fit-content;
}

.tab-content {
    /* margin-left: 250px;*/
    /* Ajustement pour le menu vertical */
    padding: 20px;
    width: calc(100% - 250px);
    /* Taille restante */
}

@media screen and (max-width: 768px) {
    .menu-vertical {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: column;
        padding: 10px 0;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .menu-vertical li {
        padding: 10px;
        text-align: center;
        white-space: nowrap;
    }

    .menu-vertical .profile__meta {
        margin-bottom: 10px;
        text-align: left;
        padding: 10px;
    }

    .tab-content {
        margin-left: 0;
        padding: 10px;
        width: 100%;
    }

    .header__nav {
        background-color: #fff !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    .header__sign-in {
        width: fit-content;
        padding: 10px;
    }
    .header__sign-in i {
        display: none;
    }
    .header__sign-in span {
        display: block;
        color: white;
    }
    .header__search {
        box-sizing: border-box;
        background: black !important;
        border-radius: 40px;
        /* display: none; */
        width: 280px;
        margin: 0 auto;
        overflow: hidden;
        display: block !important;
        opacity: 1;
    }
    .header__search--active {
        opacity: 1;
        pointer-events: auto;
    }
    .header__search-input {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .header__search input:focus .header__search {
        border: 2px solid var(--secondary-color) !important;
    }
    .header__search-close {
        display: none;
    }
    .header__search-button {
        left: 240px !important  ;
    }
    .faq-section .container {
        flex-wrap: wrap;
    }
    .tendances h2 {
        margin: auto;
    }
    .home__nav--prev {
        right: 90px;
    }
    .home__nav--next {
        right: 45px;
    }
    .faq-question {
        width: 370px !important;
    }
    .faq-answer {
        width: 370px !important;
    }
}

.ContDash h1,
.ProfileUsers h1,
.AbonnementUsers h1,
.AbonnementUsers h1,
.PartenariatUsers h1,
.TelechargementUsers h1,
.ParametreUsers h1 {
    color: #000;
}

.ContDash,
.ProfileUsers,
.AbonnementUsers,
.AbonnementUsers,
.PartenariatUsers,
.TelechargementUsers,
.ParametreUsers {
    margin-bottom: 40px !important;
}

.DashUser .card {
    border: none;
}

.dashCard .card-body {
    height: 150px !important;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.footer__nav a {
    font-size: 14px;
    letter-spacing: 0.4px;
    color: var(--text-dim-color);
    margin-right: 15px;
}

.footer__nav a:last-child {
    margin-right: 0;
}

.footer__nav a:hover {
    color: var(--primary-color);
}

.footer__copyright {
    display: inline-block;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    margin-top: 20px;
    font-size: 12px;
    line-height: 14px;
    color: rgba(255, 255, 255, 0.3);
}

.footer__copyright a {
    color: rgba(255, 255, 255, 0.3);
}

.footer__copyright a:hover {
    color: var(--primary-color);
}

.footer__back {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #ffd80e;
    position: fixed;
    right: 40px;
    bottom: 40px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    font-size: 26px;
    line-height: 30px;
    transition: opacity 0.5s ease-in-out;
    z-index: 999;
    cursor: pointer;
}

.footer {
    position: relative;
}

.btntop {
    display: none !important;
}

.toppopularvideo,
.toseaching {
    background: rgb(0, 0, 0, 0.1);
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
}

.toseaching .section__title {
    color: #000;
}

.footer__back:hover {
    color: #fff;
    background: #ffd80e;
}

@media (min-width: 576px) {
    .footer__logo {
        width: 110px;
    }
}

@media (min-width: 768px) {
    .footer__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0;
        height: 80px;
    }

    .footer__nav {
        -ms-flex-order: 3;
        -webkit-order: 3;
        order: 3;
        margin-top: 0;
        margin-left: auto;
        margin-right: 80px;
    }

    .footer__nav a {
        margin-right: 25px;
    }

    .footer__nav a:last-child {
        margin-right: 0;
    }

    .footer__copyright {
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        margin-top: 0;
        margin-left: 20px;
    }

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

@media (min-width: 1200px) {
    .footer__copyright {
        margin-left: 40px;
    }

    .footer__nav a {
        margin-right: 40px;
    }

    .footer__nav a:last-child {
        margin-right: 0;
    }
}

@media (min-width: 1310px) {
    .footer__nav {
        margin-right: 85px;
    }

    .footer__nav a {
        margin-right: 45px;
    }

    .footer__nav a:last-child {
        margin-right: 0;
    }
}

.sign {
    display: block;
    position: relative;
}

.sign__content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 40px 0;
}

.sign__form {
    background-color: black;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.sign__logo {
    display: block;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 2em;
}

.sign__logo:hover {
    color: var(--primary-color);
}

.sign__logo a {
    max-width: 30%;
    width: auto;
}

.sign__logo img {
    width: 150px;
    height: 130px;
    margin-bottom: 20px;
}

.sign__logo {
    width: fit-content;
}
.sign__input {
    background-color: transparent;
    border: 1px solid #ffffffb2;
    height: 46px;
    position: relative;
    font-size: 16px;
    line-height: 0.4px;
    width: 100%;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 0 20px;
}

.sign__input:focus {
    border-color: var(--primary-color);
}

.sign__group {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.sign__group--checkbox {
    width: 100%;
    text-align: left;
}

.sign__group--checkbox input:checked,
.sign__group--checkbox input:not(:checked) {
    position: absolute;
    left: -9999px;
}

.sign__group--checkbox input:checked + label,
.sign__group--checkbox input:not(:checked) + label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    line-height: 20px;
    letter-spacing: 0.4px;
    margin: 0;
}

.sign__group--checkbox input:checked + label a,
.sign__group--checkbox input:not(:checked) + label a {
    color: rgba(255, 216, 14, 0.7);
}

.sign__group--checkbox input:checked + label a:hover,
.sign__group--checkbox input:not(:checked) + label a:hover {
    color: var(--primary-color);
}

.sign__group--checkbox input:checked + label:before,
.sign__group--checkbox input:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: rgba(210, 201, 255, 0.04);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #000;
}

.sign__group--checkbox input:checked + label:after,
.sign__group--checkbox input:not(:checked) + label:after {
    font-family: Ionicons;
    content: "\f3ff";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    font-size: 22px;
    line-height: 20px;
    text-align: center;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    color: var(--primary-color);
}

.sign__group--checkbox input:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
}

.sign__group--checkbox input:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.sign__group--checkbox label::-moz-selection {
    background: 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.sign__group--checkbox label::selection {
    background: 0 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Lecteur */

#lecteur {
    position: relative;
    object-fit: cover;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.vjs-button > .vjs-icon-placeholder:before,
.video-js .vjs-modal-dialog,
.vjs-modal-dialog .vjs-modal-dialog-content,
#video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
}

.iconicon:hover {
    background: #fff;
}

.sign__btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 46px;
    width: 100%;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dim-color);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid var(--primary-color);
    margin-bottom: 15px;
    margin-top: 15px;
    transition: background-color 0.3s;
    background-color: linear-gradient(to bottom, #fd6716, #f6870c) !important;
}

.sign__btn:hover {
    color: var(--text-color);
    background-color: linear-gradient(to bottom, #f6870c, #fd6716);
}

.sign__text {
    margin-top: 15px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.4px;
    font-weight: 600;
}

.sign__text a {
    position: relative;
    color: rgba(255, 216, 14, 0.7);
}

.sign__text a:hover {
    color: var(--primary-color);
}

@media (min-width: 576px) {
    .sign__form {
        padding-left: 60px;
        padding-right: 60px;
        padding-bottom: 40px;
    }
}

.page-404 {
    display: block;
    position: relative;
}

.page-404__wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 40px 0;
}

.page-404__content {
    background-color: var(--bg-color);
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 0;
    position: relative;
    width: 100%;
    max-width: 400px;
}

.page-404__title {
    position: relative;
    color: var(--primary-color);
    line-height: 100%;
    font-size: 120px;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

.page-404__text {
    text-align: center;
    display: block;
    width: 100%;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

.page-404__btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 46px;
    width: 140px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: transparent;
    font-size: 14px;
    color: var(--text-dim-color);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid var(--primary-color);
    margin-top: 20px;
}

.page-404__btn:hover {
    color: var(--text-color);
}

@media (min-width: 576px) {
    .page-404__content {
        padding: 50px 0;
    }
}

.plyr {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
}

.plyr__menu__container .plyr__control {
    -webkit-transition: 0s ease;
    -moz-transition: 0s ease;
    transition: 0s ease;
}

.plyr__control.plyr__control--overlaid {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
    background: 0 0;
    background-color: var(--bg-color);
}

.plyr--video .plyr__control--overlaid {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 30px;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    color: #fd6060;
}

.plyr--video .plyr__control--overlaid:before {
    content: "ï’ˆ";
    font-family: Ionicons;
    position: absolute;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--text-color);
    z-index: 1;
    font-size: 30px;
    color: #fd6060;
    padding: 1px 0 0 3px;
}

.plyr--video .plyr__control--overlaid svg {
    display: none;
}

.plyr--video .plyr__control--overlaid.plyr__tab-focus,
.plyr--video .plyr__control--overlaid:hover {
    background-color: rgba(253, 96, 96, 0.1);
    color: #fd6060;
}

.plyr--video .plyr__progress__buffer {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.plyr__progress__buffer {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.plyr--full-ui input[type="range"] {
    color: var(--primary-color);
    -webkit-border-radius: 0;
    border-radius: 0;
}

.plyr__tab-focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.plyr__tooltip {
    font-weight: 400;
}

.plyr__control.plyr__tab-focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.plyr__menu__container
    .plyr__control[role="menuitemradio"][aria-checked="true"]::before {
    background: 0 0;
    background-color: var(--primary-color);
}

.plyr__control {
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.plyr--video .plyr__control svg {
    filter: none;
}

.pswp__bg {
    background-color: rgba(26, 25, 31, 0.75);
}

.pswp__ui--fit .pswp__caption,
.pswp__ui--fit .pswp__top-bar {
    background-color: transparent;
}

.pswp__caption__center {
    font-size: 16px;
    color: var(--text-color);
    padding: 15px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.pswp__counter {
    font-size: 16px;
    color: var(--text-color);
    padding: 0 15px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.pswp__button {
    opacity: 0.7;
}

.pswp__button:before {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

.pswp__button:hover {
    opacity: 1;
}

.pswp__button:hover:before {
    color: var(--primary-color);
}

.pswp__button--close {
    background: 0 0;
}

.pswp__button--close:before {
    content: "\f2c0";
    font-family: Ionicons;
    position: absolute;
    display: block;
    font-size: 28px;
    color: var(--text-color);
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.pswp__button--fs {
    background: 0 0;
}

.pswp__button--fs:before {
    content: "\f2e7";
    font-family: Ionicons;
    position: absolute;
    display: block;
    font-size: 24px;
    color: var(--text-color);
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.pswp--fs .pswp__button--fs:before {
    content: "\f2d8";
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    font-family: Ionicons;
    position: absolute;
    display: block;
    font-size: 24px;
    color: var(--text-color);
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: 0 0;
    background-color: var(--bg-color);
}

.pswp__button--arrow--left:before {
    content: "\f27d";
}

.pswp__button--arrow--right:before {
    content: "\f287";
}

.mCS-custom-bar {
    opacity: 1;
}

.mCS-custom-bar.mCSB_outside + .mCSB_scrollTools {
    right: 2px;
    top: 15px;
    bottom: 15px;
    right: 10px;
    overflow: hidden;
    background-color: rgba(210, 201, 255, 0.04);
    overflow: hidden;
}

.mCS-custom-bar.mCSB_scrollTools {
    width: 2px;
}

.mCS-custom-bar.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    background-color: transparent;
}

.mCS-custom-bar.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: var(--primary-color);
    width: 2px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.mCS-custom-bar.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: var(--primary-color);
}

.mCS-custom-bar.mCSB_scrollTools
    .mCSB_dragger.mCSB_dragger_onDrag
    .mCSB_dragger_bar,
.mCS-custom-bar.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: var(--primary-color);
}

.select2 {
    width: 100% !important;
    height: 46px;
    margin-bottom: 20px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__clear,
.select2-search--dropdown {
    display: none;
}

.select2-container--default .select2-selection--single {
    border: none;
    height: 46px;
    color: var(--text-color);
    padding: 0 40px 0 20px;
    letter-spacing: 0.4px;
    background-color: #ddd;
    width: 100%;
    font-size: 16px;
    -webkit-border-radius: 6;
    border-radius: 6;
    outline: 0 !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 46px;
    top: 0;
    right: 0;
    width: 40px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: var(--primary-color) transparent transparent transparent;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent var(--primary-color) transparent;
}

.select2-container--default .select2-selection--multiple {
    border: none;
    height: 46px;
    color: var(--text-color);
    padding: 0 40px 0 20px;
    letter-spacing: 0.4px;
    background-color: rgba(210, 201, 255, 0.04);
    width: 100%;
    font-size: 16px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.select2-container--default.select2-container--focus
    .select2-selection--multiple {
    border: none;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__rendered {
    padding: 0;
}

.select2-container .select2-search--inline .select2-search__field {
    font-size: 16px;
    letter-spacing: 0.4px;
    height: 46px;
    margin: 0;
    color: var(--text-color);
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: rgba(210, 201, 255, 0.04);
    border: none;
    -webkit-border-radius: 6;
    border-radius: 6;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 30px;
    margin-top: 8px;
    color: var(--text-color);
    padding: 0 10px;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice__remove {
    color: var(--primary-color);
    margin-right: 6px;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice__remove:hover {
    color: var(--primary-color);
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 46px;
}

.select2-dropdown {
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 15px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    background-color: #ddd;
    color: #000;
}

.select2-results__option {
    padding: 0;
    line-height: 40px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    line-height: 40px;
    display: block;
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: transparent;
    color: var(--primary-color);
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: transparent;
    color: #000;
    cursor: default;
}

.home div .img-fluid {
    width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
}

#imgdynamique {
    filter: brightness(0.5) !important;
    width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
}

.home div .offset-md-1 {
    position: relative;
    margin-top: 20px !important;
}

.home div .container {
    margin-top: 220px !important;
}

.home div .col {
    height: 20px !important;
}

.home div .h3 {
    font-size: 20px;
    font: bold;
    color: white;
}

.home div .row {
    /* width: 600px; */
    margin-left: 25px !important;
    font-family: Agency FB !important;
}

.home div .look {
    color: black;
    background-color: white;
    width: 200px !important;
    border: 2px solid white;
    border-radius: 30px;
    padding: 10px 10px 10px 10px;
    gap: 12px !important;
    font-family: Abel;
    font-size: 15px;
}

.home div .info {
    color: white;
    background-color: transparent;
    width: 161px !important;
    border: 2px solid white;
    border-radius: 30px;
    padding: 10px 10px 10px 10px;
    gap: 12px;
    font-family: Abel;
    font-size: 15px;
}

.home div .para {
    font-family: Abel;
    font-size: 16px;
    text-align: center;
    line-height: 20, 39px;
    color: white;
}
.title {
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 20px;
}

/* animation subcription page */
.Typewriter__cursor {
    font-size: 1em;
    color: #fd6716;
    /* Changer la couleur du curseur ici */
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* new desing for home */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1.5), rgba(0, 0, 0, 0.2));
    /* Dégradé de haut en bas */
    z-index: 1;
    /* S'assurer que l'overlay soit au-dessus de l'image */
}

.btnsubscrib,
.btnlearn {
    font-size: 15px;
    font-family: "Inter" sans-serif;
    font-weight: 400;
    margin-top: 50px;
    padding: 10px;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
}

.btnsubscrib:hover,
.btnlearn:hover {
    color: #fff;
}

.btnlearn {
    background: transparent;
    border: 2px solid #f6870c;
}

.btnsubscrib {
    background: linear-gradient(106.68deg, #eeb500 0%, #ff5a19 100%);
    /* Utilise 50deg pour l'angle du dégradé */
    transition: background 0.3s ease;
    /* Animation lors du changement d'état */
}

/* BUTTON SUBSCRIBE VUE MOBILE */

@media screen and (max-width: 599px) {
    .btnsubscrib {
        display: inline-block;
        font-size: 15px;
        font-family: "Inter" sans-serif;
        font-weight: 400;
        margin-top: 50px;
        padding: 10px;
        color: #fff;
        border-radius: 100px;
        cursor: pointer;
    }
}

.btnsubscrib:hover {
    background: linear-gradient(106.68deg, #ff5a19 100%, #eeb500 0%);
}

.Descriptiones {
    font-size: 20px;
    font-family: "Inter" sans-serif;
    font-weight: 400;
    margin-top: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    font-family: "Inter" sans-serif;
    word-wrap: break-word;
}

/* Vue tablette */
@media screen and (min-width: 600px) {
    .hero-content h1 {
        font-size: 48px;
        line-height: 56px;
    }
}

/* Vue mobile */
@media screen and (max-width: 599px) {
    .hero-content h1 {
        font-size: 32px;
        line-height: 40px;
    }
}

.buttons {
    margin-top: 35px;
    /* Espace entre le texte et les boutons */
}

.btn-secondary,
.btn-primary {
    margin: 0 20px;
    /* Espace entre les boutons */
}

.header__sign-in {
    background: linear-gradient(106.68deg, #eeb500 0%, #ff5a19 100%);
    color: #fff !important;
    font-family: "Inter" sans-serif;
    font-size: 20px;
    border: none;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.header__sign-in:hover {
    color: #fff;
}

/* fag section */
.faq-section {
    font-family: "Inter", sans-serif;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

h2:not(.newsletter h2, .plan h2, .titre-section, .tendances h2) {
    color: #fd6716;
    margin-bottom: 3px;
}

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

.faq-question {
    background: #fff;
    border: none;
    color: #000;
    text-align: left;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
    width: 500px;
}

.faq-section h1 {
    font-size: 30px;
}

.faq-answer {
    display: none;
    background-color: #fff;
    color: #000;
    padding: 10px;
    margin: 0 auto !important;
    border-radius: 5px;
    position: relative;
    width: 500px;
}

.fag-party {
    background: #141414;
    padding: 30px 0;
}

.bgadded {
    background: linear-gradient(50deg, #ffa844, #fd6716);
}

/* Tarifs abonnments */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
}

.forfaits .title p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 48px;
    font-weight: 700;
    font-family: "Inter" sans-serif;
    line-height: 52.8px;
    color: #fff;
}

.forfaits {
    background: #1d1d1d;
}

h1:not(.questionnement, .hero-content h1) {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 20px;
    z-index: 99;
}

.pricing-plans {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 160px;
}
.pricing-subscrb {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.plan {
    background: #212426;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350.55px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan:nth-child(2),
.plan:nth-child(3) {
    padding-bottom: 100px;
}

.plan:nth-child(2) {
    transform: translateY(-90px);
}

.plan:nth-child(2):hover {
    transform: translateY(-95px);
}

.plan:hover:not(.plan:nth-child(2)) {
    transform: translateY(-10px);
}

.plan h2 {
    font-size: 1.8em;
    color: #fff;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 15vh;
    text-align: center;
    padding: 0 30px;
}

.basiquename {
    background: linear-gradient(132.65deg, #ff5a19 20%, #eeb500 80%);
    border-radius: 0 5% 100% 0;
}

.standardname {
    background: linear-gradient(132.65deg, #eeb500 30%, #ff5a19 70%);
    border-radius: 0 0 100% 100%;
}

.premiumname {
    background: linear-gradient(132.65deg, #ff5a19 20%, #eeb500 80%);
    border-radius: 0 0 5% 100%;
}

.price {
    font-size: 2em;
    font-weight: bold;
    color: #eeb500;
    background: transparent;
    box-shadow: none;
    position: relative;
    top: 90px;
    bottom: 20px;
}

.features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    margin-top: 80px;
}

.features li {
    margin: 10px 0;
    font-size: 1.1em;
    color: #fff;
    text-align: center;
}

.features li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/icon/Symbol.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    position: relative;
    top: 5px;
}

.plan .no-feature::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/icon/Symbolnot.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.barreli {
    border: none;
    height: 2px;
    background-color: #54595f;
    width: 260px;
}

.cta {
    font-size: 1.2em;
    padding: 10px 20px;
    background: linear-gradient(99.26deg, #eeb500 0%, #ff5a19 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    width: 282.19px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #f58e42;
    color: #fff;
}

@media (max-width: 768px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }
    h1:not(.questionnement, .hero-content h1) {
        font-size: 2.5em;
        color: #fff;
        margin-bottom: 20px;
        position: relative;
        z-index: 99;
        top: -60px;
        left: -10px;
        font-size: 23px;
        width: 250px;
    }
}

/* Tendances section */
.carousel-container {
    position: relative;
    width: 100% !important;
    max-width: 1200px;
    overflow: hidden;
    background-color: transparent;
    margin-top: 50px;
}
.carousel::-webkit-scrollbar {
    display: none;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    padding: 35px;
    width: 99% !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Pour iOS */
    gap: 1px;
}

.carousel-item {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 30px;
    /* border-radius: 30px;*/
    border-color: #000;
    overflow: hidden;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    /* border-radius: 30px;*/
    filter: brightness(0.5) !important;
}
.carousel-item:hover .overlay {
    display: block;
    transition: all 0.8s ease-in-out;
}
.carousel-item:hover img {
    filter: brightness(0.8) !important;
}
.carousel-item:hover a i {
    color: #ff5a19 !important;
    border-color: #ff5a19 !important;
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    display: none;
    transition: all 0.8s ease-in-out;
}

.carousel-item h3 {
    margin: 10px 0;
}

.carousel-item p {
    font-size: 14px;
    color: #bbb;
}

.tendances h2 {
    background: linear-gradient(99.26deg, #eeb500 0%, #ff5a19 100%);
    width: 300px;
    padding: 15px;
    border-radius: 30px;
    color: #fff;
    text-align: center;
}
@media (min-width: 1024px) {
    .tendances h2 {
        margin-left: 55px;
    }
}
@media (width: 768px) {
    #infosvideocontent {
        display: flex !important;
        flex-flow: row;
        align-items: start !important;
        justify-content: space-evenly;
        gap: 150px !important;
    }
    .header__nav-link {
        color: #000 !important;
    }
    .header__search {
        height: 40px !important;
        width: auto;
        overflow: hidden;
    }
    .header__search-button {
        left: 200px !important;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .carousel-container {
        width: 100%;
        margin-top: 0 !important;
    }
    .carousel {
        padding: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        overflow-x: auto;
        gap: 10px;
        height: 100%;
    }

    .carousel-item {
        flex: 0 0 auto;
        width: 180px !important;
        height: 180px !important;
        max-width: 250px;
        /* border-radius: 20px;*/
        scroll-snap-type: x mandatory;
    }

    .carousel-item img {
        /*  border-radius: 20px;*/
        filter: brightness(0.5) !important;
    }

    .overlay {
        padding: 10px;
    }

    .carousel-item h3 {
        font-size: 16px;
    }

    .carousel-item p {
        font-size: 12px;
    }

    .tendances h2 {
        width: 60%;
        padding: 10px;
        border-radius: 20px;
        font-size: 18px;
        margin: 0 auto 20px;
    }

    .carousel-button {
        width: 30px;
        height: 80px !important;
        font-size: 16px;
        padding: 10px;
    }

    .carousel-button.left {
        left: 5px;
    }

    .carousel-button.right {
        right: 5px;
    }

    .tendances i {
        left: 40% !important;
        top: 40% !important;
        /* transform: translate(-50%, -50%);*/
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
        padding: 8px !important;
        border-radius: 20px !important;
    }
    .carousel-item:hover a i {
        color: #ff5a19 !important;
        border-color: #ff5a19 !important;
        transform: scale(1.04) !important;
        transition: all 0.3s ease-in-out !important;
    }

    /* pade de visualisation mobile*/
    .section__title {
        top: -20px !important;
        width: 150px !important;
        font-size: 15px !important;
        padding: 0 !important;
        font-weight: 700 !important;
    }
    h2:not(.newsletter h2, .plan h2, .titre-section, .tendances h2) {
        width: 100% !important;
    }
    #infosvideocontent {
        display: flex !important;
        flex-flow: row;
        align-items: center;
        justify-content: space-evenly;
        gap: 35px;
    }
    #lecteur {
        position: relative;
        object-fit: cover;
        width: 100% !important;
        padding: 0 !important;
    }
    .bottom-controls {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between !important;
        align-items: center !important;
        margin: 0 auto !important;
        flex-wrap: wrap !important;
        padding: 5px 5px !important;
    }
    .section--bg .selecimg {
        filter: brightness(0.1) !important;
    }
    .controls-container {
        padding: 30px 0 54px 0 !important;
        gap: 10px !important;
    }
    .md_watch {
        display: none !important;
    }
    .md_header_footer {
        margin-top: 0 !important;
    }
}
.tendances i {
    color: #fff;
    position: absolute;
    left: 40%;
    top: 40%;
    width: 50px;
    height: 50px;
    font-size: 25px;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 30px;
    text-align: center;
    z-index: 3;
}
/* Videos en arriÃ¨re plan */
.carousel-item .video_playback {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-item:hover .video_playback {
    display: block;
}
.carousel-button {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background-color: #1d1d1d;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 50px;
    height: 180px;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
}

.carousel-button.left {
    left: 0;
}

.carousel-button.right {
    right: 0;
}

.carousel-button:hover {
    background-color: #fd6716;
}

/* new style for footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: "Inter", sans-serif;
}

.footer a {
    color: #fff;
}

.footer a:hover:not(.social-icons a) {
    color: #fd6716;
}

.footer ul li,
.footer .footfoot {
    font-weight: 150;
}

.footer .d-flex p a {
    color: #fff;
}

.footer .d-flex p a:hover {
    color: #fd6716;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 25px;
}

.newsletter {
    text-align: center;
    margin-bottom: 40px;
}

.newsletter h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    width: 300px;
    color: #fff;
    border-color: #fd6716;
    border: 1px solid #fd6716;
    border-radius: 20px;
    background: transparent;
}

.newsletter-form input[type="email"]::-webkit-input-placeholder {
    color: #fff;
}

.newsletter-form button {
    background-color: none;
    color: yellow;
    border-color: #fd6716;
    border: 1px solid #fd6716;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 20px;
}

.newsletter-form button:hover {
    background-color: #fd6716;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
}

.brand-section {
    text-align: center;
}

.logo img {
    width: 120px;
    margin-bottom: 10px;
}

.social-icons a {
    color: #fff;
    margin: 0 5px;
    font-size: 15px;
    text-decoration: none;
    padding: 8px;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    background: #54595f;
}

.social-icons a:hover {
    background-color: #fd6716;
}

.links-section {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.links-section div {
    margin-right: 40px;
}

.links-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.links-section ul {
    list-style: none;
    padding: 0;
}

.links-section li {
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.footer-bottom p {
    margin: 5px 0;
}
.seachpage {
    background-size: cover;
    position: relative;
}
.seachpage::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    z-index: 1;
}
.breadcrumb li {
    text-align: center;
    position: absolute;
    top: 250px;
    left: 30%;
    font-size: 100px;
    color: #fd6716;
}
.paginator-wrap {
    color: #fff !important;
}
.moviespages {
    background-size: cover;
    position: relative;
    object-fit: cover;
}
.moviespages::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
    z-index: 1;
}
.titltemovies {
    position: absolute;
    bottom: 50px;
    z-index: 999;
}
.toseaching {
    background: #fff;
}
& .section__nav {
    background: #000;
    color: #fd6716;
}

/* videos */
.video-js .vjs-tech {
    object-fit: cover;
}
/* playser style*/
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

#video {
    width: 100%;
    height: auto;
}

.controls-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0;
    display: block;
}
.progress-container {
    width: 99%;
    height: 10px;
    background: #444;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 5px;
}

#progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

#progress-filled {
    height: 100%;
    width: 0%;
    background: #ff6a00;
    border-radius: 5px;
    transition: width 0.1s linear;
}

.bottom-controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 10px 5px;
}

#timer {
    color: white;
    font-size: 14px;
}

button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
}

button:focus {
    outline: none;
}

/* button playser */
.video-controls {
    text-align: center;
    margin-top: 10px;
}

.video-controls button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #ff5722;
    color: white;
    cursor: pointer;
}

.video-controls button:hover {
    background-color: #e64a19;
}

/*video controls */
.video-controls {
    text-align: center;
    margin-top: 10px;
}

.video-controls button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #4caf50;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.video-controls button:hover {
    background-color: #388e3c;
}

/* Style de la barre de volume */
#volume-control {
    width: 110px;
    height: 7px;
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease;
}
/* Style du curseur */
#volume-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6a00;
    cursor: pointer;
    margin-top: -1px;
}
/* Compatibilité avec Firefox */
#volume-control::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6a00;
    cursor: pointer;
    margin-top: -1px;
}

/* Couleur orange sur la partie remplie */
#volume-control::-webkit-slider-runnable-track {
    background: linear-gradient(
        to right,
        #ff6a00 var(--volume-percentage, 50%),
        #e0e0e0 var(--volume-percentage, 50%)
    );
    height: 7px;
    border-radius: 5px;
}

#volume-control::-moz-range-progress {
    background: #ff6a00;
}

#volume-control::-moz-range-track {
    background: #e0e0e0;
}
