/*
Theme Name: Fenix Alma 2025
Author: Fenix Alma Solutions Inc.
Author URI: https://fenixalma.com
Description: Custom theme for Fenix Alma Solutions Inc.
Version: 1.0
*/

/* -------------------------------------------------------------------------- */
/*  CSS Reset
/* -------------------------------------------------------------------------- */


html,
body {
    border: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
    border: none;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-align: inherit;
}

blockquote::before,
blockquote::after {
    content: "";
}


/* -------------------------------------------------------------------------- */
/*  Variables
/* -------------------------------------------------------------------------- */


:root {
    --orange: #ff8c00;
    --pink: #ff005a;
    --indigo: #6432ff;
    --indigo-light: rgba(100, 50, 255, .05);
    --black: #0c081c;
    --white: #fff;
    --gray-100: #fbfaff;
    --gray-200: #f7f6fe;
    --gray-300: #f0edfa;
    --gray-400: #d9d6eb;
    --gray-500: #b6b2d1;
    --gray-600: #9893b8;
    --gray-700: #766f94;
    --gray-800: #5b557a;
    --gray-900: #2e274d;
    --sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --figtree: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --lexend: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}


/* -------------------------------------------------------------------------- */
/*  Document Setup
/* -------------------------------------------------------------------------- */


*,
::after,
::before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
    background-color: rgba(100, 50, 255, .99);
    color: var(--gray-100);
}

::selection {
    background-color: rgba(100, 50, 255, .99);
    color: var(--gray-100);
}

:focus {
    outline: 1px solid var(--indigo);
    outline-offset: 2px;
    z-index: 1;
    position: relative;
}

::-moz-focus-inner {
    border: 0;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: none;
}

html {
    font-size: 16px;
    line-height: 1.7;
    font-family: sans-serif;
    scroll-behavior: smooth;

    @media (max-width: 600px) {
        & #wpadminbar {
            position: fixed !important;
        }
    }
}

body {
    background-color: var(--gray-100);
    color: var(--gray-900);
    display: flex;
    flex-direction: column;
    font-family: var(--sans-serif);
    font-size: 1rem;
    min-height: 100vh;

    &.home {
        & #main-content {
            & + #vidanovavle-section {
                display: none;
            }
        }
    }

    &.admin-bar {
        min-height: calc(100vh - 32px);
    }

    /* @media (max-width: 1200px) {
        &.menu-open {
            overflow: hidden;
        }
    } */

    @media (max-width: 782px) {
        &.admin-bar {
            min-height: calc(100vh - 46px);
        }
    }
}

main {
    position: relative;

    &:focus {
        outline: none;
    }

    & > * {
        position: relative;
        z-index: 1;
    }
}

section {
    padding: 0 60px 150px 60px;

    @media (max-width: 782px) {
        & {
            padding: 0 50px 100px 50px;
        }
    }

    @media (max-width: 600px) {
        & {
            padding: 0 30px 60px 30px;
        }
    }

    &:last-child {
        padding: 0 60px 100px 60px;

        @media (max-width: 782px) {
            & {
                padding: 0 50px 100px 50px;
            }
        }

        @media (max-width: 600px) {
            & {
                padding: 0 30px 60px 30px;
            }
        }
    }

    &:focus {
        outline: none;
    }
}

.inner-container {
    max-width: 1400px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--black);
    font-family: var(--lexend);
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-top: 1.25em;
    margin-bottom: .5em;

    &:first-child {
        margin-top: 0;
    }

    &:last-child {
        margin-bottom: 0;
    }
}

h1,
.h1 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: .75em;

    &:last-child {
        margin-bottom: 0;
    }

    @media (max-width: 1300px) {
        & {
            font-size: 2.25rem;
        }
    }

    @media (max-width: 782px) {
        & {
            font-size: 2.125rem;
        }
    }

    @media (max-width: 600px) {
        & {
            font-size: 1.625rem;
        }
    }
}

h2,
.h2 {
    font-size: 2rem;

    @media (max-width: 1300px) {
        & {
            font-size: 1.9375rem;
        }
    }

    @media (max-width: 782px) {
        & {
            font-size: 1.75rem;
        }
    }

    @media (max-width: 600px) {
        & {
            font-size: 1.375rem;
        }
    }
}

h3,
.h3 {
    font-size: 1.75rem;

    @media (max-width: 1300px) {
        & {
            font-size: 1.625rem;
        }
    }

    @media (max-width: 782px) {
        & {
            font-size: 1.375rem;
        }
    }

    @media (max-width: 600px) {
        & {
            font-size: 1.25rem;
        }
    }
}

h4,
.h4 {
    font-size: 1.5rem;

    @media (max-width: 1300px) {
        & {
            font-size: 1.375rem;
        }
    }

    @media (max-width: 782px) {
        & {
            font-size: 1.25rem;
        }
    }

    @media (max-width: 600px) {
        & {
            font-size: 1.125rem;
        }
    }
}

h5,
.h5 {
    font-size: 1.375rem;

    @media (max-width: 1300px) {
        & {
            font-size: 1.25rem;
        }
    }

    @media (max-width: 782px) {
        & {
            font-size: 1.125rem;
        }
    }

    @media (max-width: 600px) {
        & {
            font-size: 1rem;
        }
    }
}

h6,
.h6 {
    font-size: 1.25rem;

    @media (max-width: 1300px) {
        & {
            font-size: 1.125rem;
        }
    }

    @media (max-width: 782px) {
        & {
            font-size: 1rem;
        }
    }

    @media (max-width: 600px) {
        & {
            font-size: 1rem;
        }
    }
}

p,
ul,
ol {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

ul,
ol {
    padding-left: 20px;

    & li {
        line-height: 1.6;

        &:not(:last-child) {
            margin-bottom: .5rem;
        }
    }
}

p,
ul,
ol,
li {
    line-height: 1.6;
    font-size: 1rem;

    &:last-child {
        margin-bottom: 0;
    }
}

a {
    border-radius: 3px;
    color: var(--indigo);
    text-decoration: none;
    padding: 0 2px;

    &:hover,
    &:focus {
        color: var(--black);
    }

    &[href^="http"] {
      word-break: break-word;
      overflow-wrap: anywhere;
    }
}

button {
    cursor: pointer;

    &:disabled {
        cursor: not-allowed;
    }
}

blockquote {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid rgba(100, 50, 255, .1);
}

strong {
    font-size: .9375em;
}

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

.wp-block-columns {
    justify-content: center;
}

.wp-block-image {
    margin: 30px 0;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-lg {
    margin-bottom: 40px !important;
}

.mb-xl {
    margin-bottom: 60px !important;
}

.mt-lg {
    margin-top: 40px !important;
}

.mt-xl {
    margin-top: 60px !important;
}

.wp-block-separator {
    margin: 40px 0;
    border-top: 1px solid var(--gray-300) !important;

    @media (max-width: 600px) {
        & {
            margin: 30px 0;
        }
    }
}


/*  Button  */

.btn {
    align-items: center;
    border-radius: 5px;
    display: inline-flex;
    font-family: var(--figtree);
    padding: 6px 12px;
    line-height: 1.5;
    font-size: .9375rem;
    font-weight: 600;
    gap: .375em;
    background-color: var(--indigo-light);
    color: var(--indigo);

    &:hover,
    &:focus {
        background-color: var(--black);
        color: var(--white);
    }

    &:disabled {
        opacity: .375;
        background-color: var(--gray-300);
        color: var(--gray-700);
    }

    & i {
        font-size: .8em;
    }
}

.btn-primary {
    background-color: var(--indigo);
    color: var(--white);
}


/*  Skip button  */

.skip-button {
    position: fixed;
    z-index: 100;
    top: 40px;
    left: -500px;
    transition: left .25s;

    &:focus {
        left: 40px;
        transition: left .25s;
    }
}

body.admin-bar .skip-button {
    top: 72px;

    @media (max-width: 782px) {
        & {
            top: 86px;
        }
    }
}


/*  Screen Reader Only  */

.sr-only,
.slick-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}


/*  Card  */

.card-wrapper {
    background: rgba(255, 255, 255, .35);
    background: linear-gradient(0deg,rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .5) 100%);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 13px;
    box-shadow: 0 10px 15px 0 rgba(12, 8, 28, .05);
    backdrop-filter: blur(8px);
    padding: 7px;
}

.card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 20px 40px 0 rgba(12, 8, 28, .05);
    display: block;

    & .image-wrapper {
        & img {
            width: 100%;
            height: auto;
        }
    }
}


/*  Tooltip  */

.custom-tooltip {
    background: rgba(12, 8, 28, 0.9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    display: none;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1.3;

    &::after {
        content: '';
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid rgba(12, 8, 28, 0.9);
        left: calc(50% - 6px);
        bottom: -6px;
    }
}


/* -------------------------------------------------------------------------- */
/*  Header
/* -------------------------------------------------------------------------- */


#header {
    position: absolute;
    top: 38px;
    left: 0;
    width: 100vw;
    z-index: 10;
    padding: 0 60px;

    @media (max-width: 782px) {
        top: 30px;
    }

    @media (max-width: 600px) {
        & {
            padding: 0 30px;
        }
    }

    & #header-logo {
        display: inline-block;
        padding: 0;

        & img {
            @media (max-width: 600px) {
                & {
                    height: 50px;
                }
            }

            @media (max-width: 400px) {
                & {
                    height: 40px;
                }
            }
        }
    }

    & #main-menu-wrapper {
        background: rgba(255, 255, 255, .35);
        background: linear-gradient(0deg,rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .5) 100%);
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: 13px;
        box-shadow: 0 10px 15px 0 rgba(12, 8, 28, .05);
        backdrop-filter: blur(8px);
        padding: 7px;
        position: fixed;
        top: 40px;
        right: 40px;

        & #main-menu-inner {
            align-items: center;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 20px 40px 0 rgba(12, 8, 28, .05);
            padding: 10px;
            display: flex;
            justify-content: space-between;

            & .btn {
                border-radius: 5px;
                height: 32px;
                max-height: 32px;
                padding: 0 12px;
                font-family: var(--figtree);
                font-size: .9375rem;
                margin-left: 10px;
            }

            & #menu-toggle {
                display: none;
                color: var(--gray-800);
                border-radius: 5px;
                align-items: center;
                height: 32px;
                max-height: 32px;
                padding: 0 12px;
                font-family: var(--figtree);
                font-size: .9375rem;
                font-weight: 500;
                gap: 7px;
                background-color: transparent;

                @media (max-width: 1350px) {
                    & {
                        display: flex;
                    }

                    &:hover,
                    &:focus {
                        color: var(--black);
                        background-color: var(--gray-200);
                    }
                }

                & {
                    .fa-bars {
                        width: 14px;
                        text-align: center;
                    }
                }
            }
        }

        @media (max-width: 782px) {
            & {
                top: initial;
                bottom: 30px;
                left: 30px;
                right: 30px;
            }
        }
    }
}

& #menu-wrapper {
    & #main-menu {
        align-items: center;
        display: flex;
        gap: 5px;
        margin: 0;
        padding: 0;

        @media (max-width: 1350px) {
            & {
                padding: 10px;
                max-height: calc(100vh - 160px);
                flex-direction: column;
                min-width: 244px;
                align-items: flex-start;
                overflow: auto;
            }
        }

        @media (max-width: 782px) {
            & {
                width: 100%;
            }
        }

        & li {
            list-style: none;
            margin: 0;
            position: relative;
            white-space: nowrap;

            @media (max-width: 1350px) {
                & {
                    width: 100%;
                }

                &#menu-item-1207 {
                    &::before {
                        display: flex;
                        align-items: center;
                        content: 'Archives';
                        cursor: default;
                        font-size: .75rem;
                        text-transform: uppercase;
                        font-family: var(--lexend);
                        letter-spacing: 5%;
                        font-weight: 600;
                        color: var(--black);
                        height: 32px;
                        max-height: 32px;
                        padding: 0 12px;
                    }
                }
            }

            & a {
                color: var(--gray-800);
                border-radius: 5px;
                align-items: center;
                display: flex;
                height: 32px;
                max-height: 32px;
                padding: 0 12px;
                font-family: var(--figtree);
                font-size: .9375rem;
                font-weight: 500;
                gap: 7px;

                @media (max-width: 1350px) {
                    & {
                        width: 100%;
                    }

                    &:hover,
                    &:focus {
                        background-color: rgba(100, 50, 255, .025) !important;
                    }
                }

                &:hover,
                &:focus {
                    color: var(--black);
                    background-color: var(--gray-200);
                }
            }

            &.current-menu-item,
            &.current-menu-parent {
                & > a {
                    color: var(--black);
                    background-color: var(--gray-200);
                    font-weight: 700;

                    @media (max-width: 1350px) {
                        & {
                            background-color: rgba(100, 50, 255, .025) !important;
                        }
                    }
                }
            }

            &.current-menu-parent {
                & > a {
                    @media (max-width: 1350px) {
                        background-color: transparent !important;
                    }
                }
            }

            &.menu-item-has-children {
                @media (max-width: 1350px) {
                    & {
                        width: 100%;

                        &:not(:last-child) {
                            margin-bottom: 10px;
                        }

                        &:last-child {
                            margin-top: 10px;
                        }
                    }
                }

                & > a {
                    &::after {
                        color: var(--gray-600);
                        content: '\f078';
                        font-family: "Font Awesome 6 Pro";
                        font-style: normal;
                        font-variant: normal;
                        font-weight: 600;
                        font-size: 10px;
                    }

                    @media (max-width: 1350px) {
                        & {
                            cursor: default;
                            font-size: .75rem;
                            text-transform: uppercase;
                            font-family: var(--lexend);
                            letter-spacing: 5%;
                            font-weight: 600;
                            color: var(--black);

                            &:hover,
                            &:focus {
                                background-color: transparent;
                            }

                            &::after {
                                display: none;
                            }
                        }
                    }
                }

                &:focus,
                &:focus-within {
                    & .sub-menu {
                        display: block;
                    }
                }
            }

            & .sub-menu {
                display: none;
                background-color: rgba(255, 255, 255, .95);
                border: 1px solid var(--white);
                position: absolute;
                border-radius: 8px;
                box-shadow: 0 2px 15px 0 rgba(12, 8, 28, .05);
                backdrop-filter: blur(8px);
                top: 40px;
                padding: 10px;

                @media (max-width: 1350px) {
                    & {
                        background-color: transparent;
                        border: none;
                        backdrop-filter: none;
                        box-shadow: none;
                        border-radius: 0;
                        display: flex;
                        flex-direction: column;
                        position: relative;
                        top: 0;
                        padding: 0;
                    }
                }
            }
        }
    }

    @media (max-width: 1350px) {
        & {
            display: flex;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            background-color: rgba(255, 255, 255, .95);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 2px 15px 0 rgba(12, 8, 28, .05);
            border-radius: 8px;
            border: 1px solid var(--white);
            position: fixed;
            right: 47px;
            top: 120px;
        }
    }

    @media (max-width: 782px) {
        & {
            max-height: 40vh;
            top: initial;
            bottom: 110px;
            width: calc(100% - 60px);
            right: initial;
            left: 30px
        }
    }
}

body {
    &.admin-bar {
        & #header {
            top: 70px;

            & #main-menu-wrapper {
                top: 72px;

                @media (max-width: 782px) {
                    & {
                        top: initial;
                    }
                }
            }
        }

        & #menu-wrapper {
            @media (max-width: 1350px) {
                & {
                    max-height: calc(100vh - 192px);
                    top: 150px;
                }
            }

            @media (max-width: 782px) {
                & {
                    max-height: 40vh;
                    top: initial;
                }
            }
        }
    }

    &.menu-open {
        & #header {
            & #main-menu-wrapper {
                & #main-menu-inner {
                    & #menu-toggle {
                        @media (max-width: 1350px) {
                            & .fa-bars {
                                &::before {
                                    content: '\f00d';
                                }
                            }
                        }
                    }
                }
            }
        }

        & #menu-wrapper {
            @media (max-width: 1350px) {
                & {
                    opacity: 1;
                    visibility: visible;
                    pointer-events: auto;
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Page Header
/* -------------------------------------------------------------------------- */


#page-header {
    background-image: url(images/Page_Header_Background.png);
    background-repeat: no-repeat;
    background-size: 100% 120%;
    padding-top: 170px;
    padding-bottom: 120px;
    position: relative;

    &::before {
        content: '';
        display: block;
        width: 160px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        background-image: url(images/Page_Header_Stripes.png);
        background-repeat: no-repeat;
        background-size: 100%;
    }

    &::after {
        content: '';
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 70px;
        background-image: url(images/Page_Header_Swoop.png);
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: 100% 100%;
    }

    @media (max-width: 1100px) {
        &::before {
            width: 140px;
        }
    }

    @media (max-width: 782px) {
        &::before {
            width: 110px;
        }
    }

    @media (max-width: 600px) {
        &::before {
            width: 80px;
        }
    }

    & .inner-container {
        display: flex;
        align-items: center;

        & #page-title {
            width: 46%;
            padding-right: 60px;

            &.centered {
                text-align: center;
                width: 100%;
                padding: 0;
            }

            & .page-tag {
                text-transform: uppercase;
                color: var(--indigo);
                font-family: var(--lexend);
                font-weight: 600;
                letter-spacing: 5%;
                margin-bottom: 10px;
                display: block;

                @media (max-width: 600px) {
                    & {
                        font-size: .8125rem;
                    }
                }
            }

            & .btn {
                @media (min-width: 601px) {
                    padding: 10px 20px;
                    font-size: 1.125rem;
                    box-shadow: 0 5px 40px 0 rgba(100, 50, 255, .25);
                }

                @media (max-width: 600px) {
                    & {
                        margin-top: 5px;
                    }
                }
            }
        }

        & #page-image {
            width: 54%;

            &.frosted {
                background: rgba(255, 255, 255, .35);
                background: linear-gradient(0deg,rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .5) 100%);
                border: 1px solid rgba(255, 255, 255, .4);
                border-radius: 13px;
                box-shadow: 0 10px 15px 0 rgba(12, 8, 28, .05);
                backdrop-filter: blur(8px);
                padding: 7px;

                & img {
                    display: block;
                    border-radius: 8px;
                    box-shadow: 0 20px 40px 0 rgba(12, 8, 28, .05);
                }
            }

            & img {
                display: block;
                width: 100%;
            }
        }

        @media (max-width: 1100px) {
            & {
                flex-direction: column;

                & #page-title {
                    width: 100%;
                    padding-right: 0;
                    padding-bottom: 60px;
                }

                & #page-image {
                    width: 100%;
                }
            }
        }

        @media (max-width: 600px) {
            & {
                & #page-title {
                    padding-bottom: 40px;
                }
            }
        }
    }

    @media (max-width: 1000px) {
        &::after {
            background-size: 150% 100%;
        }
    }

    @media (max-width: 782px) {
        & {
            padding-top: 150px;
            padding-bottom: 100px;
        }
    }

    @media (max-width: 600px) {
        & {
            padding-top: 110px;
            padding-bottom: 80px;
        }
    }
}

body {
    &.home {
        & #page-header {
            &::after {
                background-image: url(images/Page_Header_Swoop_White.png);
            }
        }
    }

    &.admin-bar {
        & #page-header {
            padding-top: 192px;

            @media (max-width: 782px) {
                & {
                    padding-top: 146px;
                }
            }

            @media (max-width: 600px) {
                & {
                    padding-top: 126px;
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Institutions
/* -------------------------------------------------------------------------- */


#institutions {
    background-color: var(--white);
    padding: 10px 0 50px 0;
    text-align: center;

    @media (max-width: 782px) {
        & {
            padding: 30px 0;
        }
    }

    @media (max-width: 600px) {
        & {
            padding: 5px 0 20px 0;
        }
    }

    & p {
        color: var(--black);
        font-family: var(--lexend);
        margin-bottom: 30px;

        @media (max-width: 600px) {
            & {
                margin-bottom: 25px;
            }
        }
    }

    & {
        .slick-autoplay-toggle-button {
            display: none;
        }
    }

    & .institution {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        & .logo-wapper {
            position: relative;
            width: 130px;
            height: 90px;

            & img {
                object-fit: contain;
                width: 100%;
                height: 100%;
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Why choose VidaNovaVLE™
/* -------------------------------------------------------------------------- */


#why-choose {
    padding-top: 120px;

    @media (max-width: 782px) {
        & {
            padding-top: 80px;
        }
    }

    @media (max-width: 600px) {
        & {
            padding-top: 60px;
        }
    }

    & h2 {
        text-align: center;
        margin-bottom: 1.125em;
    }

    & #benefits {
        max-width: 620px;
        margin: 0 auto;
        padding: 0;

        & li {
            display: flex;
            list-style: none;

            &:not(:last-child) {
                margin-bottom: 40px;

                @media (max-width: 600px) {
                    & {
                        margin-bottom: 20px;
                    }
                }
            }

            & .icon {
                width: 60px;
                height: 60px;
                border-radius: 10px;
                background-color: var(--indigo-light);
                color: var(--indigo);
                font-size: 24px;
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 20px;

                @media (max-width: 600px) {
                    & {
                        width: 40px;
                        height: 40px;
                        font-size: 16px;
                    }
                }
            }

            & p {
                align-self: center;
                font-family: var(--figtree);
                font-size: 1.25rem;
                line-height: 1.4;

                @media (max-width: 600px) {
                    & {
                        font-size: 1rem;
                    }
                }

                & strong {
                    font-size: 1em;
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Why choose VidaNovaVLE™
/* -------------------------------------------------------------------------- */


#features {
    padding-left: 0;
    padding-right: 0;

    & .feature-wrapper {
        display: flex;
        align-items: center;

        @media (max-width: 900px) {
            & {
                flex-direction: column;
            }
        }

        &:not(:last-child) {
            margin-bottom: 80px;

            @media (max-width: 600px) {
                & {
                    margin-bottom: 60px;
                }
            }
        }

        & .feature-image {
            display: flex;
            width: 40%;
            overflow: hidden;
            justify-content: flex-end;

            @media (max-width: 900px) {
                & {
                    width: 100%;
                    justify-content: center;
                    padding: 0 40px 20px 40px;
                    height: max-content;
                }
            }

            @media (max-width: 600px) {
                & {
                    padding: 0 30px 20px 30px;
                }
            }

            & img {
                height: 500px;

                @media (max-width: 900px) {
                    & {
                        object-fit: contain;
                        height: 100%;
                        width: 100%;
                    }
                }

                @media (max-width: 600px) {
                    & {
                        max-height: 350px;
                    }
                }
            }
        }

        & .feature-description {
            display: flex;
            justify-content: flex-start;
            width: 60%;

            @media (max-width: 900px) {
                & {
                    width: 100%;
                    justify-content: center;
                }
            }

            & .feature-description-inner {
                display: flex;
                flex-direction: column;
                max-width: 780px;
                width: 100%;
                padding: 0 60px;

                @media (max-width: 600px) {
                    & {
                        padding: 0 40px;
                    }
                }

                & .btn {
                    align-self: flex-start;
                    margin-top: 20px;
                }
            }
        }

        &:nth-child(even) {
            flex-direction: row-reverse;

            @media (max-width: 900px) {
                & {
                    flex-direction: column;
                }
            }

            & .feature-image {
                justify-content: flex-start;

                @media (max-width: 900px) {
                    & {
                        justify-content: center;
                    }
                }
            }

            & .feature-description {
                justify-content: flex-end;

                @media (max-width: 900px) {
                    & {
                        justify-content: center;
                    }
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Latest case study
/* -------------------------------------------------------------------------- */


#latest-case-study {
    & h2 {
        text-align: center;
        margin-bottom: 1em;
    }
}

#case-studies {
    & .inner-container {
        display: flex;
        justify-content: center;
        gap: 40px;

        & .card-wrapper {
            width: 100%;
            max-width: 1280px;
            margin: 0;

            @media (max-width: 900px) {
                & {
                    width: 400px;
                }
            }

            @media (max-width: 600px) {
                & {
                    width: 100%;
                }
            }

            & .card {
                color: var(--gray-900);
                padding: 0;
                height: 100%;
                display: flex;
                flex-direction: row;

                @media (max-width: 900px) {
                    & {
                        flex-direction: column;
                    }
                }

                & .image-wrapper {
                    background-color: var(--gray-200);
                    border-radius: 8px 0 0 8px;
                    overflow: hidden;
                    width: 50%;
                    flex-shrink: 0;

                    @media (max-width: 900px) {
                        & {
                            border-radius: 8px 8px 0 0;
                            width: 100%;
                        }
                    }

                    & img {
                        display: block;
                        margin: 0;
                        width: 100%;
                    }
                }

                & .info-wrapper {
                    padding: 20px;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    border-left: 1px solid var(--gray-200);

                    @media (max-width: 900px) {
                        & {
                            border-top: 1px solid var(--gray-200);
                            border-left: none;
                        }
                    }

                    & p {
                        font-size: .875rem;
                        margin-bottom: 1.5rem;
                    }

                    & .btn {
                        margin-top: auto;
                        align-self: flex-start;
                    }
                }

                &:hover,
                &:focus {
                    & .info-wrapper {
                        & .h6 {
                            color: var(--indigo) !important;
                        }
                    }
                }
            }
        }
    }
}

body {
    &.post-type-archive-case-study {
        & #case-studies {
            margin-top: 80px;

            @media (max-width: 782px) {
                & {
                    margin-top: 60px;
                }
            }

            @media (max-width: 600px) {
                & {
                    margin-top: 30px;
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Latest announcements
/* -------------------------------------------------------------------------- */


#latest-announcement {
    & h2 {
        text-align: center;
        margin-bottom: 1em;
    }

    & .announcements {
        & .inner-container {
            & .card-wrapper {
                @media (max-width: 1300px) {
                    &:nth-child(3) {
                        display: none;
                    }
                }

                @media (max-width: 900px) {
                    &:nth-child(2) {
                        display: none;
                    }
                }

                @media (max-width: 600px) {
                    & {
                        width: 100%;
                        max-width: none;
                        margin: 0;
                    }
                }
            }
        }
    }
}

.announcements {
    & .inner-container {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;

        @media (max-width: 600px) {
            gap: 30px;
        }

        & .card-wrapper {
            width: 400px;

            & .card {
                color: var(--gray-900);
                padding: 0;
                height: 100%;
                display: flex;
                flex-direction: column;

                & .image-wrapper {
                    background-color: var(--gray-200);
                    border-radius: 8px 8px 0 0;
                    overflow: hidden;
                    width: 100%;
                    flex-shrink: 0;

                    & img {
                        display: block;
                        margin: 0;
                        width: 100%;
                    }
                }

                & .info-wrapper {
                    padding: 20px;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    border-top: 1px solid var(--gray-200);

                    & p {
                        font-size: .875rem;
                        margin-bottom: 1.5rem;
                    }

                    & .btn {
                        margin-top: auto;
                        align-self: flex-start;
                    }
                }

                &:hover,
                &:focus {
                    & .info-wrapper {
                        & .h6 {
                            color: var(--indigo) !important;
                        }
                    }
                }
            }
        }
    }
}

body {
    &.blog {
        .announcements {
            margin-top: 80px;

            @media (max-width: 782px) {
                & {
                    margin-top: 60px;
                }
            }

            @media (max-width: 600px) {
                & {
                    margin-top: 30px;
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Sliders
/* -------------------------------------------------------------------------- */


#testimonials {
    padding: 0 0 40px 0;

    @media (max-width: 782px) {
        & {
            padding: 0 0 20px 0;
        }
    }

    @media (max-width: 600px) {
        & {
            padding: 0;
        }
    }

    h2 {
        text-align: center;
        margin-bottom: 1em;
    }
}

.testimonial {
    width: 400px;
    margin: 0 20px;

    @media (max-width: 600px) {
        width: calc(100vw - 60px);
    }

    & .card {
        padding: 80px 30px 30px 30px;
        position: relative;

        & .image-wrapper {
            box-shadow: 0 10px 20px 0 rgba(12, 8, 28, .12);
            border-radius: 999px;
            position: absolute;
            top: -60px;
            width: 120px;
            height: 120px;
            overflow: hidden;

            & img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        & .rating {
            margin-bottom: 20px;

            & i {
                font-size: .875rem;
                text-shadow: 0 4px 10px rgba(255, 140, 0, .5);
                color: var(--orange);
            }
        }

        & p {
            font-size: .875rem;
            margin-bottom: 1rem;
        }

        & .author {
            & p {
                &.name {
                    font-family: var(--lexend);
                    font-weight: 600;
                    font-size: .9375rem;
                    margin-bottom: 0;
                }

                &.role {
                    color: var(--gray-700);
                    font-size: .8125rem;
                    line-height: 1.3;
                    margin-bottom: 0;
                }
            }
        }
    }
}

#team-members,
#board-members {
    padding: 60px 0 40px 0;

    @media (max-width: 782px) {
        & {
            padding: 40px 0 20px 0;
        }
    }

    @media (max-width: 600px) {
        & {
            padding: 30px 0 0 0;
        }
    }
}

.team-member,
.board-member {
    width: 400px;
    margin: 0 20px;

    @media (max-width: 600px) {
        width: calc(100vw - 60px);
    }

    & .card {
        padding: 80px 30px 30px 30px;
        position: relative;

        & .image-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px 0 rgba(12, 8, 28, .12);
            border-radius: 999px;
            position: absolute;
            top: -60px;
            width: 120px;
            height: 120px;
            overflow: hidden;
            background-color: var(--white);

            & img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            & .far {
                color: var(--indigo);
                font-size: 1.75rem;

                &::after {
                    background-color: var(--indigo-light);
                    content: '';
                    display: block;
                    position: absolute;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                }
            }
        }

        & .author {
            & p {
                &.name {
                    font-family: var(--lexend);
                    font-weight: 600;
                    font-size: 1.25rem;
                    margin-bottom: 5px;
                    margin-top: 0;
                    line-height: 1.2;
                }

                &.role {
                    color: var(--gray-700);
                    font-size: .8125rem;
                    line-height: 1.3;
                    margin-bottom: 0;
                    margin-top: 0;
                }
            }
        }

        & p {
            font-size: .875rem;
            margin-top: 1rem;
        }

        & .btn {
            margin-top: 20px;
        }
    }
}

#card-slider-wrapper {
    display: flex;
    flex-direction: column-reverse;

    &:focus {
        outline: none;
    }

    & #card-slider {
        &:focus {
            outline: none;
        }

        & .slick-track {
            padding-top: 60px;
            padding-bottom: 60px;

            & .slick-slide {
                opacity: .25;
                transition: opacity .2s;

                &.slick-current {
                    opacity: 1;
                }

                &.slick-current-adjacent {
                    opacity: .5;
                }
            }
        }
    }

    & #card-slider-controls {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;

        & #card-slider-dots {
            & .slick-dots {
                display: flex;
                flex-wrap: wrap;
                margin: 0;
                padding: 0;
                gap: 3px;

                & li {
                    list-style: none;

                    & button {
                        width: 36px;
                        height: 36px;
                        padding: 0;
                        margin: 0;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background-color: transparent;
                        border-radius: 5px;

                        & .slick-dot-icon {
                            width: 30px;
                            height: 4px;
                            border-radius: 999px;
                            background-color: var(--indigo-light);
                        }
                    }

                    &.slick-active {
                        & button {
                            & .slick-dot-icon {
                                background-color: var(--indigo);
                            }
                        }
                    }
                }
            }
        }

        & #card-slider-prev,
        & #card-slider-next {
            & button {
                width: 36px;
                height: 36px;
                padding: 0;
                margin: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 5px;
                background-color: var(--indigo-light);
                color: var(--indigo);

                &:hover,
                &:focus {
                    background-color: var(--black);
                    color: var(--white);
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Post content
/* -------------------------------------------------------------------------- */


#post-content {
    max-width: 920px;
    margin: 0 auto;
    padding-top: 80px;

    @media (max-width: 782px) {
        & {
            padding-top: 60px;
        }
    }

    @media (max-width: 600px) {
        & {
            padding-top: 40px;
        }
    }

    & p,
    & li {
        @media (min-width: 601px) {
            & {
                font-size: 1.05rem;
            }
        }
    }
}

#post-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#more-posts {
    & h2 {
        margin-bottom: 1em;
    }
}

body {
    &.single {
        #post-content {
            padding-top: 0;
        }
    }

    &.single-service {
        #post-content {
            padding-top: 60px;

            @media (max-width: 782px) {
                & {
                    padding-top: 40px;
                }
            }

            @media (max-width: 600px) {
                & {
                    padding-top: 30px;
                }
            }

            & #post-nav {
                margin-top: 60px;

                @media (max-width: 600px) {
                    & {
                        margin-top: 50px;
                    }
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Add to any
/* -------------------------------------------------------------------------- */


.addtoany_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 0 !important;

    &:first-child {
        margin-top: 10px !important;
    }

    & .addtoany_header {
        color: var(--black);
        font-family: var(--lexend);
    }

    & .addtoany-wrapper {
        background: rgba(255, 255, 255, .35);
        background: linear-gradient(0deg,rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .5) 100%);
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: 13px;
        box-shadow: 0 10px 15px 0 rgba(12, 8, 28, .05);
        backdrop-filter: blur(8px);
        padding: 7px;

        & .addtoany_list {
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 20px 40px 0 rgba(12, 8, 28, .05);
            display: flex;
            padding: 10px;
            gap: 10px;

            & a {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 2px;

                & svg {
                    & path {
                        fill: var(--gray-800);
                    }
                }
            }

            & span {
                display: block;
                background-color: var(--gray-300);
                width: 1px;

                &:last-child {
                    display: none;
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Archive pagination
/* -------------------------------------------------------------------------- */


#archive-pagination {
    display: flex;
    justify-content: center;
    margin-top: 80px;

    @media (max-width: 600px) {
        & {
            margin-top: 60px;
        }
    }

    & ul {
        display: flex;
        margin: 0;
        padding: 0;
        gap: 10px;

        & .page-numbers {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        & li {
            margin: 0;
            padding: 0;
            list-style: none;

            &.prev,
            &.next {
                & a,
                & span {
                    font-size: .875em;
                    padding-left: 0;
                    padding-right: 0;
                    width: 32px;
                }
            }

            & a {
                align-items: center;
                display: flex;
                background: rgba(100, 50, 255, .05);
                border-radius: 5px;
                color: var(--indigo);
                justify-content: center;
                padding: 6px 12px;
                font-family: var(--figtree);
                font-weight: 600;
                height: 38px;

                &:hover,
                &:focus {
                    background-color: var(--black);
                    color: var(--white);
                }
            }

            & span {
                align-items: center;
                display: flex;
                opacity: .375;
                background-color: var(--gray-300);
                border-radius: 5px;
                color: var(--gray-700);
                justify-content: center;
                padding: 6px 12px;
                font-family: var(--figtree);
                font-weight: 600;
                height: 38px;
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Form
/* -------------------------------------------------------------------------- */


form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;

    & .control-group {
        display: flex;
        flex-direction: column;
        gap: 5px;

        & label {
            padding-left: 20px;
            font-family: var(--figtree);
            font-weight: 500;
            color: var(--gray-800);
            font-size: .875rem;
        }

        & input,
        & textarea {
            padding: 13px 20px;
            border: 1px solid var(--gray-300);
            background: var(--white);
            background: linear-gradient(0deg,rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, .75) 100%);
            border-radius: 10px;
            box-shadow: 0 10px 20px 0 rgba(12, 8, 28, .02);
            font-size: 1rem;
            font-family: var(--figtree);
            font-weight: 500;
            color: var(--black);
        }

        & textarea {
            resize: none;
            min-height: 104px;
        }
    }

    & input[type="submit"] {
        align-self: center;
        align-items: center;
        border-radius: 5px;
        display: inline-flex;
        font-family: var(--figtree);
        padding: 6px 12px;
        line-height: 1.5;
        font-size: .9375rem;
        font-weight: 600;
        gap: .375em;
        background-color: var(--indigo-light);
        color: var(--indigo);
        border: none;
        cursor: pointer;
        margin-top: 10px;

        &:hover,
        &:focus {
            background-color: var(--black);
            color: var(--white);
        }

        &:disabled {
            opacity: .375;
            background-color: var(--gray-300);
            color: var(--gray-700);
            cursor: default;
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Footer
/* -------------------------------------------------------------------------- */


#footer {
    background-color: var(--gray-200);
    padding: 50px 60px 20px 60px;
    margin-top: auto;

    @media (max-width: 782px) {
        & {
            padding: 50px 60px 115px 60px;
        }
    }

    @media (max-width: 600px) {
        & {
            padding: 30px 30px 115px 30px;
        }
    }

    & .inner-container {
        & #footer-content {
            display: flex;
            justify-content: space-between;
            gap: 50px;
            padding-bottom: 50px;

            @media (max-width: 960px) {
                & {
                    flex-direction: column;
                }
            }

            @media (max-width: 600px) {
                & {
                    gap: 40px;
                    padding-bottom: 30px;
                }
            }

            & #footer-logo {
                display: inline-block;
                padding: 0;

                & img {
                    display: block;

                    @media (max-width: 600px) {
                        & {
                            height: 40px;
                        }
                    }
                }
            }

            & #copyright {
                margin: 20px 0 25px 0;

                & p {
                    font-size: .875rem;
                }
            }

            & #footer-actions {
                display: flex;
                gap: 8px;

                @media (max-width: 600px) {
                    & {
                        flex-direction: column;
                        gap: 13px;

                        & .btn {
                            align-self: flex-start;
                        }
                    }
                }
            }

            & #footer-menu {
                display: flex;
                padding: 0;
                margin: 0;
                gap: 30px;

                @media (max-width: 1200px) and (min-width: 961px) {
                    & {
                        flex-wrap: wrap;
                        width: 430px;
                    }
                }

                @media (max-width: 782px) {
                    flex-direction: column;
                    gap: 10px;
                }

                & > li {
                    padding: 0;
                    list-style: none;

                    @media (max-width: 1200px) and (min-width: 961px) {
                        & {
                            width: 200px;
                        }
                    }

                    &:first-child {
                        & > ul {
                            column-count: 2;
                            column-gap: 30px;
                            column-width: auto;

                            @media (max-width: 1400px) {
                                column-count: 1;
                            }
                        }
                    }

                    & > a {
                        cursor: default;
                        font-size: .75rem;
                        text-transform: uppercase;
                        font-family: var(--lexend);
                        letter-spacing: 5%;
                        font-weight: 600;
                        color: var(--black);
                        margin-bottom: 3px;
                        display: inline-block;
                    }

                    & > ul {
                        padding: 0;
                        margin: 0;

                        & > li {
                            padding: 0;
                            list-style: none;
                            margin: 0 0 2px 0;

                            & > a {
                                color: var(--gray-700);
                                font-size: .875rem;

                                &:hover,
                                &:focus {
                                    color: var(--indigo);
                                }
                            }
                        }
                    }
                }
            }
        }

        & #footer-bottom {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid var(--gray-300);
            padding-top: 20px;

            & #footer-bottom-menu {
                display: flex;
                margin: 0;
                padding: 0;
                gap: 25px;

                & li {
                    list-style: none;
                    font-size: .875rem;
                    padding: 0;
                    margin: 0;

                    & a {
                        color: var(--gray-800);

                        &:hover,
                        &:focus {
                            color: var(--indigo);
                        }
                    }
                }
            }

            & #social-links {
                & li {
                    list-style: none;

                    & a {
                        color: var(--gray-700);

                        &:hover,
                        &:focus {
                            color: var(--indigo);
                        }
                    }
                }
            }
        }
    }
}


/* -------------------------------------------------------------------------- */
/*  Video
/* -------------------------------------------------------------------------- */


.video-js-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 1200px;
    margin: 0 auto;
}

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

.video-js-wrapper .video-js * {
    box-shadow: none !important;
}

.video-js-wrapper .video-js .vjs-big-play-button {
    background: linear-gradient(0deg,rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .5) 100%);
    border: 1px solid rgba(255, 255, 255, .4);
    box-shadow: 0 10px 15px 0 rgba(12, 8, 28, .05);
    backdrop-filter: blur(6px);
    width: 80px;
    height: 80px;
    border-radius: 999px;
    font-size: 36px;
    transition: .25s;
    margin: 0;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
}

.video-js-wrapper .video-js:hover .vjs-big-play-button,
.video-js-wrapper .video-js:focus .vjs-big-play-button {
    background: linear-gradient(0deg,rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .5) 100%);
    border: 1px solid rgba(255, 255, 255, .4) !important;
    box-shadow: 0 10px 15px 0 rgba(12, 8, 28, .05);
    transition: .25s;
}

.video-js-wrapper .video-js .vjs-big-play-button:hover,
.video-js-wrapper .video-js .vjs-big-play-button:focus {
    background: linear-gradient(0deg,rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .5) 100%);
    border: 1px solid rgba(255, 255, 255, .4) !important;
    box-shadow: 0 10px 15px 0 rgba(12, 8, 28, .05);
    transition: .25s;
    transform: scale(1.1);
}

.video-js-wrapper .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
    content: '\f04b';
    color: var(--white);
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    top: 11px;
    left: 3px;
}

.video-js-wrapper .video-js .vjs-control-bar {
    background-color: transparent;
    left: 40px;
    bottom: 40px;
    right: 40px;
    width: auto;
    height: auto;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control {
    background: linear-gradient(0deg,rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .5) 100%) !important;
    border: 1px solid rgba(255, 255, 255, .4) !important;
    box-shadow: 0 10px 15px 0 rgba(12, 8, 28, .05) !important;
    backdrop-filter: blur(6px) !important;
    border-radius: 10px;
    width: auto !important;
    height: 60px !important;
    align-items: center;
    justify-content: center;
    padding: 0 25px !important;
    margin-right: 20px;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control .vjs-control {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0;
    padding: 0 !important;
    margin-right: 0;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel .vjs-control.vjs-volume-control {
    margin-left: 20px;
    display: none;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel:hover .vjs-control.vjs-volume-control,
.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel:focus .vjs-control.vjs-volume-control,
.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel .vjs-control.vjs-volume-control:focus {
    display: flex;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel .vjs-slider {
    background-color: var(--gray-900);
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel .vjs-slider .vjs-volume-level {
    background-color: var(--gray-800);
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel .vjs-slider .vjs-volume-level::before {
    color: var(--gray-400);
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control:last-child {
    margin-right: 0;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-progress-control {
    background-color: transparent;
    padding: 0 !important;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-progress-control .vjs-progress-holder {
    height: 10px;
    background: linear-gradient(0deg,rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .5) 100%);
    border: 1px solid rgba(255, 255, 255, .4);
    box-shadow: 0 10px 15px 0 rgba(12, 8, 28, .05);
    backdrop-filter: blur(4px);
    border-radius: 999px;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-progress-control .vjs-progress-holder .vjs-load-progress,
.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-progress-control .vjs-progress-holder .vjs-load-progress div {
    background-color: var(--gray-800);
    border-radius: 999px;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-progress-control .vjs-progress-holder .vjs-play-progress {
    background-color: var(--gray-800);
    border-radius: 999px;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-progress-control .vjs-progress-holder .vjs-play-progress::before {
    color: var(--gray-400);
    font-size: 30px;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-remaining-time {
    /* display: flex; */
    display: none !important;
    min-width: 100px;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-remaining-time span {
    color: var(--gray-400);
    font-family: 'GilroySemiBold', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control .vjs-icon-placeholder {
    display: flex;
    justify-content: center;
    width: 24px;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control .vjs-icon-placeholder::before {
    color: var(--gray-400);
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: relative;
    text-shadow: none !important;
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-paused .vjs-icon-placeholder::before {
    content: '\f04b';
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-playing .vjs-icon-placeholder::before {
    content: '\f04c';
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-vol-0 .vjs-icon-placeholder::before {
    content: '\f2e2';
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-vol-1 .vjs-icon-placeholder::before {
    content: '\f026';
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-vol-2 .vjs-icon-placeholder::before {
    content: '\f027';
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-vol-3 .vjs-icon-placeholder::before {
    content: '\f028';
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-fullscreen-control .vjs-icon-placeholder::before {
    content: '\f065';
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-fullscreen-control[title*="Exit"] .vjs-icon-placeholder::before {
    content: '\f066';
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-picture-in-picture-control .vjs-icon-placeholder::before {
    content: '\e2c9';
}

.video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-picture-in-picture-control[title*="Exit"] .vjs-icon-placeholder::before {
    content: '\e2c8';
}

@media (max-width: 1200px) {
    .video-js-wrapper .video-js .vjs-control-bar {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-control {
        border-radius: 10px;
        height: 40px !important;
        padding: 0 15px !important;
        margin-right: 10px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel .vjs-control.vjs-volume-control {
        margin-left: 10px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-remaining-time {
        min-width: 80px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-remaining-time span {
        font-size: 14px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-control .vjs-icon-placeholder {
        width: 20px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-control .vjs-icon-placeholder::before {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .video-js-wrapper {
        border-radius: 15px;
    }

    .video-js-wrapper .video-js .vjs-big-play-button {
        width: 60px;
        height: 60px;
        font-size: 26px;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel .vjs-control.vjs-volume-control,
    .video-js-wrapper .video-js .vjs-control-bar .vjs-remaining-time {
        display: none !important;
    }

    .video-js-wrapper .video-js .vjs-control-bar {
        left: 10px;
        bottom: 10px;
        right: 10px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-control {
        border-radius: 8px;
        height: 30px !important;
        padding: 0 10px !important;
        margin-right: 5px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-control.vjs-volume-panel .vjs-control.vjs-volume-control {
        margin-left: 5px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-remaining-time {
        min-width: 70px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-remaining-time span {
        font-size: 13px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-control .vjs-icon-placeholder {
        width: 19px;
    }

    .video-js-wrapper .video-js .vjs-control-bar .vjs-control .vjs-icon-placeholder::before {
        font-size: 15px;
    }
}
