/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;600;800&display=swap");
/* CUSTOM FONTS */
@font-face {
    font-family: "Mont";
    src: url("../fonts/Mont-Regular.eot");
    src: local("☺"), url("../fonts/Mont-Regular.woff") format("woff"), url("../fonts/Mont-Regular.ttf") format("truetype"), url("../fonts/Mont-Regular.svg") format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Mont";
    src: url("../fonts/Mont-Bold.eot");
    src: local("☺"), url("../fonts/Mont-Bold.woff") format("woff"), url("../fonts/Mont-Bold.ttf") format("truetype"), url("../fonts/Mont-Bold.svg") format("svg");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Mont";
    src: url("../fonts/Mont-Heavy.eot");
    src: local("☺"), url("../fonts/Mont-Heavy.woff") format("woff"), url("../fonts/Mont-Heavy.ttf") format("truetype"), url("../fonts/Mont-Heavy.svg") format("svg");
    font-weight: 800;
    font-style: normal;
}

* {
    outline: none !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Mont";
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

/* LINKS */

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}

a {
    color: #111111;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

    a:hover {
        color: #111111;
        text-decoration: underline;
    }

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


/* FORM ELEMENTS */
input[type="text"] {
    width: 420px;
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid #cecece;
    color: #757575;
}

input[type="email"] {
    width: 420px;
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid #cecece;
}

input[type="search"] {
    width: 420px;
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid #cecece;
}

input[type="password"] {
    width: 420px;
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid #cecece;
}

input[type="number"] {
    width: 420px;
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid #cecece;
}

input[type="date"] {
    width: 420px;
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid #cecece;
}

input[type="radio"] {
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 4px;
    transform: translateY(3px);
    appearance: none;
    background: #ededed;
    border-radius: 50%;
}

    input[type="radio"]:checked {
        border: 6px solid #111111;
    }

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 4px;
    transform: translateY(3px);
    appearance: none;
    background: #ededed;
}

    input[type="checkbox"]:checked {
        border: 5px solid #ededed;
        background: #3be2e2;
    }

textarea {
    width: 520px;
    max-width: 100%;
    height: 140px;
    padding: 30px;
    border: 1px solid #cecece;
    color: #757575;
}

select {
    width: 420px;
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid #cecece;
    color: #757575;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 30px) 34px, calc(100% - 25px) 34px, calc(100% - 3.5em) 15px;
    background-size: 5px 5px, 5px 5px, 1px 40px;
    background-repeat: no-repeat;
}

input[type="submit"] {
    height: 70px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #3be2e2;
    border: none;
    padding: 0 50px;
    cursor: pointer;
}

button[type="submit"] {
    height: 70px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #3be2e2;
    border: none;
    padding: 0 50px;
    cursor: pointer;
}

    button[type="submit"] i {
        display: inline-block;
        margin-right: 8px;
        font-size: 18px;
        transform: translateY(2px);
    }

/* CUSTOM CONTAINER */
@media (min-width: 1170px) {
    .container {
        max-width: 1100px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1260px;
    }
}

/* NAVBAR */
.navbar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px 60px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    color: #fff;
}

    .navbar .logo {
        margin-right: auto;
    }

        .navbar .logo a {
            display: inline-block;
        }

            .navbar .logo a img {
                height: 54px;
            }

    .navbar .user-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-left: auto;
    }

        .navbar .user-menu .navbar-account {
            margin-left: 30px;
            display: flex;
            align-items: center;
        }

            .navbar .user-menu .navbar-account a {
                line-height: 40px;
                display: inline-block;
                font-weight: 600;
                color: #fff;
            }

            .navbar .user-menu .navbar-account i {
                width: 40px;
                height: 40px;
                line-height: 38px;
                float: right;
                border: 2px solid #fff;
                text-align: center;
                border-radius: 50%;
                font-size: 22px;
                margin-left: 10px;
            }

    .navbar .site-menu {
        display: inline-block;
        margin: 0 auto;
    }

        .navbar .site-menu ul {
            display: flex;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
        }

            .navbar .site-menu ul li {
                display: inline-block;
                margin: 0 20px;
                padding: 0;
                list-style: none;
            }

                .navbar .site-menu ul li a {
                    color: #fff;
                    font-weight: 600;
                }

                    .navbar .site-menu ul li a:hover {
                        text-decoration: none;
                        color: #3be2e2;
                    }

    .navbar .hamburger-menu {
        margin-left: auto;
        display: none;
    }

/* CUSTOM CLASSES */
.overflow {
    overflow: hidden;
}

.no-gutters {
    padding: 0;
}

.tos-table > table {
    display: block;
    width: 100%;
}

    .tos-table > table > tbody > tr > td:nth-child(1) {
        width: 50px;
        max-width: 50px;
        vertical-align: baseline;
    }

    .tos-table > table > tbody > tr > td:nth-child(2) {
        text-align: justify;
        padding-bottom: 0.35rem;
    }

/* ALERTS */

.alert {
    padding: 0 30px;
    color: #fff;
    height: 70px;
    line-height: 70px;
    border-radius: 0;
}

.alert-success {
    background-color: #198754;
}

.alert-info {
    background-color: #1f75ff;
}

.alert-warning {
    background-color: #ffa333;
}

.alert-danger {
    background-color: #ff1a34;
}

/* ACCORDION */
.accordion {
    width: 100%;
    float: left;
    background: #fff;
    padding: 0;
}

    .accordion .card {
        background: none;
        border-radius: 0;
        margin-top: -1px;
        border: 1px solid #eaebee;
    }

        .accordion .card .card-header {
            background: none;
            padding: 0;
            border-bottom: none;
        }

            .accordion .card .card-header button {
                width: 100%;
                float: left;
                font-weight: 600;
                padding: 20px 25px;
                color: #111111;
                font-size: 17px;
                text-align: left;
                background: none;
                border: none;
                cursor: pointer;
            }

                .accordion .card .card-header button:before {
                    content: "+";
                    width: 30px;
                    height: 30px;
                    line-height: 30px;
                    float: right;
                    text-align: center;
                    background: #eee;
                    border-radius: 50%;
                    color: #111111;
                    font-weight: 400;
                }

                .accordion .card .card-header button:hover {
                    color: #3be2e2;
                    text-decoration: none;
                }

        .accordion .card .card-body {
            width: 100%;
            border-top: 1px solid #eee;
            line-height: 26px;
        }

        .accordion .card .expanded {
            color: #3be2e2 !important;
        }

            .accordion .card .expanded:before {
                content: "-" !important;
                color: #111111 !important;
            }


/* TOS BUTTON */
.btn-tos {
    border-color: #3be2e2;
    border-radius: 0px;
    color: #3be2e2;
}

    .btn-tos:hover {
        background: #3be2e2;
        color: #fff;
        border-color: #3be2e2;
        text-decoration: none;
    }

/* TOS CONTAINER */
.tos-container a {
    text-decoration: underline;
}

/* HAMBURGER */
.hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    outline: none;
}

    .hamburger .line {
        fill: none;
        stroke: #fff;
        stroke-width: 3;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger .line1 {
        stroke-dasharray: 60 207;
        stroke-width: 3;
    }

    .hamburger .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 3;
    }

    .hamburger .line3 {
        stroke-dasharray: 60 207;
        stroke-width: 3;
    }

    .hamburger.opened {
        margin: 0;
    }

        .hamburger.opened .line1 {
            stroke-dasharray: 90 207;
            stroke-dashoffset: -134;
            stroke-width: 3;
        }

        .hamburger.opened .line2 {
            stroke-dasharray: 1 60;
            stroke-dashoffset: -30;
            stroke-width: 3;
        }

        .hamburger.opened .line3 {
            stroke-dasharray: 90 207;
            stroke-dashoffset: -134;
            stroke-width: 3;
        }


/* MOBILE MENU */
.mobile-menu {
    width: 80vw;
    max-width: 500px;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    position: fixed;
    left: -100%;
    top: 0;
    background: #111111;
    z-index: 7;
    padding: 30px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

    .mobile-menu .inner {
        width: 100%;
        display: block;
    }

    .mobile-menu .site-menu {
        width: 100%;
        display: inline-block;
        margin: 0;
        margin-top: 30px;
    }

        .mobile-menu .site-menu ul {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
        }

            .mobile-menu .site-menu ul li {
                width: 100%;
                display: inline-block;
                margin: 0;
                padding: 0;
                list-style: none;
            }

                .mobile-menu .site-menu ul li a {
                    color: #fff;
                    font-weight: 600;
                    font-size: 5vw;
                }

                    .mobile-menu .site-menu ul li a:hover {
                        text-decoration: none;
                        color: #3be2e2;
                    }

    .mobile-menu .mobile-account {
        width: 100%;
        height: 70px;
        line-height: 70px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        background: #3be2e2;
        padding: 0 15px;
    }

    .mobile-menu .button-account {
        width: 100%;
        height: 70px;
        line-height: 70px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        background: #3be2e2;
        padding: 0 15px;
        font-weight: 600;
        color: #fff;
    }

    .mobile-menu i {
        width: 40px;
        height: 40px;
        line-height: 38px;
        float: left;
        border: 2px solid #fff;
        text-align: center;
        border-radius: 50%;
        font-size: 22px;
        margin-right: 10px;
    }


/* SLIDER */
.slider {
    width: 100%;
    /* height: 100vh; */
    height: 790px;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    left: 0;
    top: 0;
    background: #111111;
}

    .slider .main-slider {
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        overflow: hidden;
    }

        .slider .main-slider::before {
            left: 0;
            position: absolute;
            bottom: 0px;
            width: 0;
            z-index: 1;
            height: 0;
            content: "";
            border-top: 65px solid transparent;
            border-left: 50vw solid #fff;
        }

        .slider .main-slider::after {
            right: 0;
            position: absolute;
            bottom: 0px;
            width: 0;
            z-index: 1;
            height: 0;
            content: "";
            border-top: 65px solid transparent;
            border-right: 50vw solid #fff;
        }

        .slider .main-slider .swiper-slide {
            overflow: hidden;
            color: #fff;
        }

            .slider .main-slider .swiper-slide video {
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translateX(-50%) translateY(-50%);
                transform: translateX(-50%) translateY(-50%);
                min-width: 100%;
                min-height: 100%;
                width: auto;
                height: auto;
                /* z-index: -1000; */
                overflow: hidden;
            }

            .slider .main-slider .swiper-slide .slide-inner {
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0;
                top: 0;
                background-size: cover !important;
                background-position: center;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .slider .main-slider .swiper-slide .slide-inner:after {
                    content: "";
                    width: 100%;
                    height: 100%;
                    background: url("../gfx/bg-noise.gif");
                    background-size: 200px auto;
                    position: absolute;
                    left: 0;
                    top: 0;
                    opacity: 0.1;
                }

            .slider .main-slider .swiper-slide .container {
                position: relative;
                z-index: 1;
                padding-top: 100px;
            }

                .slider .main-slider .swiper-slide .container .name {
                    width: 100%;
                    display: block;
                    margin-bottom: 10px;
                    font-size: 80px;
                    font-weight: 600;
                }

                    .slider .main-slider .swiper-slide .container .name strong {
                        -webkit-text-stroke: 1px #fff;
                        text-stroke: 1px #fff;
                        -webkit-text-fill-color: transparent;
                        color: transparent;
                        font-size: 90px;
                    }

                .slider .main-slider .swiper-slide .container .description {
                    width: 100%;
                    display: block;
                    font-size: 17px;
                    margin-bottom: 40px;
                }

                .slider .main-slider .swiper-slide .container .join-btn {
                    height: 66px;
                    line-height: 64px;
                    display: inline-block;
                    float: left;
                    background: #3be2e2;
                    color: #fff;
                    font-weight: 800;
                    padding: 0 50px;
                    margin-right: 30px;
                    border: 2px solid transparent;
                }

/* MAIN */
main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    position: relative;
    z-index: 6;
}

/* PAGE HEADER */
.page-header {
    width: 100%;
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: url("../gfx/bg-noise.gif") center repeat;
    background-size: cover !important;
    position: fixed;
    left: 0;
    top: 0;
}

    .page-header:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        opacity: 0.7;
        background: black;
        background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, black 100%);
        background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, black 100%);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, black 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    }

    .page-header.single {
        height: 100vh;
    }

        .page-header.single .container {
            padding-top: 0;
        }

        .page-header.single:after {
            opacity: 1;
        }

    .page-header .container {
        position: relative;
        z-index: 1;
        color: #fff;
        padding-top: 80px;
    }

    .page-header h1 {
        width: 100%;
        display: block;
        font-weight: 800;
        font-size: 56px;
    }

        .page-header h1:after {
            content: "";
            width: 10px;
            height: 10px;
            display: inline-block;
            background: #3be2e2;
            border-radius: 50%;
            margin-left: 10px;
        }

    .page-header .author {
        display: inline-block;
    }

        .page-header .author span {
            color: rgba(255, 255, 255, 0.7);
        }

            .page-header .author span b {
                color: #fff;
            }

        .page-header .author img {
            height: 40px;
            display: inline-block;
            border-radius: 40px;
            margin-right: 8px;
        }

    .page-header .post-date {
        /*        display: inline-block;*/
        /*        margin-left: 10px;*/
    }

/* NEWS BOX */

/* NEWS BOX */
.news-box {
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 100px;
}

    .news-box:last-child {
        margin-bottom: 0;
    }

    .news-box:hover .content h3 a {
        background-size: 100% 100%;
    }

    .news-box figure {
        width: 100%;
        display: block;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        background: #3be2e2;
    }

        .news-box figure:after {
            content: "\ea39";
            font-family: "LineIcons";
            color: #fff;
            position: absolute;
            left: 30px;
            top: 30px;
            font-size: 20px;
        }

        .news-box figure img {
            width: 100%;
            max-width: inherit;
        }

    .news-box .content {
        width: 100%;
        display: block;
    }

        .news-box .content.overlap {
            position: absolute;
            left: 0;
            bottom: 0;
            padding: 30px;
            color: #fff;
            background: black;
            background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.0018382353) 0%, black 100%);
            background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.0018382353) 0%, black 100%);
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.0018382353) 0%, black 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
        }

            .news-box .content.overlap .author {
                margin-bottom: 0;
            }

        .news-box .content small {
            display: block;
            font-size: 12px;
            opacity: 1;
            margin-bottom: 10px;
        }

        .news-box .content h3 {
            width: 100%;
            display: block;
            margin-bottom: 20px;
            font-size: 38px;
            line-height: 1.2;
            font-weight: 800;
        }

            .news-box .content h3 a {
                display: block;
                color: #fff;
                -webkit-transition: all 0.35s ease-in-out;
                -moz-transition: all 0.35s ease-in-out;
                -ms-transition: all 0.35s ease-in-out;
                -o-transition: all 0.35s ease-in-out;
                transition: all 0.35s ease-in-out;
            }

                .news-box .content h3 a:hover {
                    text-decoration: underline;
                }

        .news-box .content .author {
            width: 100%;
            display: block;
            margin-bottom: 30px;
            font-size: 13px;
        }

            .news-box .content .author img {
                height: 60px;
                display: inline-block;
                border-radius: 50%;
                margin-right: 15px;
            }

            .news-box .content .author b {
                font-weight: 600;
            }

        .news-box .content .image {
            width: 100%;
        }

        .news-box .content .half-left-image {
            width: 50%;
            float: left;
            margin-right: 20px;
            margin-bottom: 10px;
        }

        .news-box .content .half-right-image {
            width: 50%;
            float: right;
            margin-left: 20px;
            margin-bottom: 10px;
        }

        .news-box .content h6 {
            font-size: 24px;
            line-height: 1.7;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .news-box .content strong {
            font-weight: 600;
        }

        .news-box .content figure {
            margin: 30px 0;
        }

        .news-box .content video {
            width: 100%;
            margin: 20px 0;
        }

        .news-box .content blockquote {
            width: 100%;
            display: block;
            padding: 40px;
            background: #3be2e2;
            color: #fff;
            font-size: 24px;
            font-family: "Times New Roman";
            text-align: center;
        }

        .news-box .content ul {
            padding-left: 20px;
        }

            .news-box .content ul li {
                margin: 4px 0;
            }

/* SECTION */
.content-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    position: relative;
    background-size: cover !important;
    background-position: center;
    overflow-x: hidden;
}

.section-title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

    .section-title.light {
        color: #fff;
    }

    .section-title h6 {
        width: 100%;
        display: block;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 2px;
        opacity: 0.6;
    }

    .section-title h2 {
        width: 100%;
        display: block;
        margin: 0;
        font-size: 46px;
        font-weight: 600;
    }

    .section-title p {
        width: 100%;
        display: block;
        margin-top: 10px;
        margin-bottom: 0;
        font-size: 17px;
    }

.content-section.spike-cyan {
    padding-bottom: 165px;
}

    .content-section.spike-cyan::before {
        left: 0;
        position: absolute;
        bottom: 0px;
        width: 0;
        z-index: 1;
        height: 0;
        content: "";
        border-top: 65px solid transparent;
        border-left: 50vw solid #3be2e2;
    }

    .content-section.spike-cyan::after {
        right: 0;
        position: absolute;
        bottom: 0px;
        width: 0;
        z-index: 1;
        height: 0;
        content: "";
        border-top: 65px solid transparent;
        border-right: 50vw solid #3be2e2;
    }

.content-section.spike-white {
    padding-bottom: 165px;
}

    .content-section.spike-white::before {
        left: 0;
        position: absolute;
        bottom: 0px;
        width: 0;
        z-index: 1;
        height: 0;
        content: "";
        border-top: 65px solid transparent;
        border-left: 50vw solid #fff;
    }

    .content-section.spike-white::after {
        right: 0;
        position: absolute;
        bottom: 0px;
        width: 0;
        z-index: 1;
        height: 0;
        content: "";
        border-top: 65px solid transparent;
        border-right: 50vw solid #fff;
    }

/* MEMBER BOX */
.member-box {
    width: calc(100% - 30px);
    display: flex;
    flex-wrap: wrap;
    margin: 15px;
    padding: 50px;
    border: 1px solid #cdcdcd;
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

    .member-box:before {
        content: "";
        width: calc(100% - 120px);
        height: 0;
        background: #3be2e2;
        -webkit-transition: all 0.35s ease-in-out;
        -moz-transition: all 0.35s ease-in-out;
        -ms-transition: all 0.35s ease-in-out;
        -o-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
        position: absolute;
        left: 60px;
        top: -1px;
        overflow: hidden;
    }

    .member-box:hover {
        border-color: transparent;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }

        .member-box:hover ul {
            height: 50px;
            bottom: -50px;
        }

        .member-box:hover:before {
            height: 10px;
        }

    .member-box figure {
        width: 100%;
        display: block;
        margin-bottom: 25px;
        position: relative;
    }

        .member-box figure .image {
            width: 100%;
            display: inline-block;
            border-radius: 50%;
        }

        .member-box figure figcaption {
            position: absolute;
            right: 30px;
            bottom: 0;
        }

            .member-box figure figcaption img {
                height: 50px;
                border: 3px solid #fff;
                border-radius: 50%;
                display: inline-block;
            }

    .member-box h5 {
        width: 100%;
        display: block;
        margin-bottom: 10px;
        font-size: 23px;
    }

    .member-box small {
        width: 100%;
        display: block;
        opacity: 0.5;
        font-size: 15px;
    }

    .member-box ul {
        width: calc(100% - 120px);
        height: 0;
        line-height: 50px;
        position: absolute;
        left: 60px;
        bottom: 0;
        -webkit-transition: all 0.35s ease-in-out;
        -moz-transition: all 0.35s ease-in-out;
        -ms-transition: all 0.35s ease-in-out;
        -o-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        padding: 0;
        background: #3be2e2;
    }

        .member-box ul li {
            display: inline-block;
            margin: 0 10px;
            padding: 0;
            list-style: none;
        }

            .member-box ul li a {
                display: inline-block;
                color: #fff;
            }

/* ICON BOX */
.col-md-4:last-child .icon-box:after {
    display: none;
}

.icon-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
}

    .icon-box:after {
        content: "";
        width: 1px;
        height: 100%;
        background: #cdcdcd;
        position: absolute;
        top: 0;
        right: -15px;
    }

    .icon-box figure {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }

        .icon-box figure img {
            height: 60px;
        }

    .icon-box h5 {
        width: 100%;
        display: block;
        font-weight: 600;
    }

    .icon-box p {
        width: 100%;
        display: block;
        padding: 0 15%;
        margin-bottom: 0;
    }

/* FEATURES */
.side-image.full-left {
    width: 50vw;
    float: right;
}

.side-image {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

    .side-image img {
        width: 100%;
    }

.side-content.right {
    padding-left: 75px;
}

.side-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

    .side-content h2 {
        width: 100%;
        display: block;
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .side-content .icon-list {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .side-content .icon-list li {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 40px;
            padding: 0;
            list-style: none;
        }

            .side-content .icon-list li figure {
                width: 100px;
                display: inline-block;
                margin: 0;
            }

                .side-content .icon-list li figure img {
                    height: 60px;
                }

            .side-content .icon-list li .content {
                width: calc(100% - 100px);
                display: inline-block;
            }

/* TESTIMONIALS CAROUSEL */
.carousel-testimonials {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

    .carousel-testimonials .swiper-button-prev {
        width: 50px;
        height: 50px;
        background: none;
        background: rgba(0, 0, 0, 0.7);
    }

        .carousel-testimonials .swiper-button-prev:before {
            content: "";
            width: 18px;
            height: 18px;
            position: absolute;
            left: 20px;
            top: 16px;
            border-left: 3px solid #3be2e2;
            border-bottom: 3px solid #3be2e2;
            transform: rotate(45deg);
        }

    .carousel-testimonials .swiper-button-next {
        width: 50px;
        height: 50px;
        background: none;
        background: rgba(0, 0, 0, 0.7);
    }

        .carousel-testimonials .swiper-button-next:before {
            content: "";
            width: 18px;
            height: 18px;
            position: absolute;
            right: 20px;
            top: 16px;
            border-left: 3px solid #3be2e2;
            border-bottom: 3px solid #3be2e2;
            transform: rotate(-135deg);
        }

.testimonial-thumb {
    width: 200px;
    height: 200px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

    .testimonial-thumb .testimonial-image {
        width: 100%;
        display: flex;
        margin-bottom: 0;
        position: relative;
        align-items: center;
    }

        .testimonial-thumb .testimonial-image img {
            width: 100%;
            -webkit-transition: all 0.35s ease-in-out;
            -moz-transition: all 0.35s ease-in-out;
            -ms-transition: all 0.35s ease-in-out;
            -o-transition: all 0.35s ease-in-out;
            transition: all 0.35s ease-in-out;
            opacity: 0.5;
            filter: grayscale(100%);
        }

        .testimonial-thumb .testimonial-image:hover img {
            opacity: 1;
            filter: grayscale(0%);
        }

/* FOOTER */
.footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
    background: #111111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .footer .widget-title {
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .footer .footer-menu {
        width: 100%;
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

        .footer .footer-menu li {
            width: 100%;
            display: inline-block;
            margin: 6px 0;
            padding: 0;
            list-style: none;
        }

            .footer .footer-menu li:before {
                content: "";
                width: 4px;
                height: 4px;
                background: #fff;
                display: inline-block;
                border-radius: 50%;
                margin-right: 14px;
                transform: translateY(-2px);
                opacity: 0.5;
            }

            .footer .footer-menu li a {
                width: calc(100% - 20px);
                display: inline-block;
                color: #fff;
            }

    .footer .bottom-bar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 40px 0;
        background: #000;
        margin-top: 50px;
        font-size: 13px;
    }

        .footer .bottom-bar .container {
            display: flex;
            flex-wrap: wrap;
        }

            .footer .bottom-bar .container span {
                margin-left: 0;
            }

                .footer .bottom-bar .container span:nth-child(2) {
                    margin-left: auto;
                }


/* CONTACT BOX */
.contact-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    margin: 15px 0;
    border: 1px solid #cdcdcd;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    position: relative;
    text-align: center;
}

    .contact-box:before {
        content: "";
        width: calc(100% - 100px);
        height: 6px;
        background: #3be2e2;
        -webkit-transition: all .35s ease-in-out;
        -moz-transition: all .35s ease-in-out;
        -ms-transition: all .35s ease-in-out;
        -o-transition: all .35s ease-in-out;
        transition: all .35s ease-in-out;
        position: absolute;
        left: 50px;
        bottom: -6px;
        overflow: hidden;
    }

    .contact-box:hover {
        border-color: transparent;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }

    .contact-box figure {
        width: 100%;
        display: block;
        margin-bottom: 25px;
    }

        .contact-box figure img {
            height: 45px;
        }

    .contact-box h5 {
        width: 100%;
        display: block;
        font-size: 20px;
        font-weight: 600;
    }

    .contact-box p {
        width: 100%;
        display: block;
        font-size: 16px;
        margin-bottom: 0;
    }


/* CONTACT FORM */
.contact-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

    .contact-form .form-group {
        width: 100%;
        display: block;
        margin-bottom: 15px;
    }

        .contact-form .form-group:nth-child(1) {
            width: 50%;
            padding-right: 5px;
        }

        .contact-form .form-group:nth-child(2) {
            width: 50%;
            padding-left: 5px;
        }

        .contact-form .form-group:last {
            margin-bottom: 0;
        }

    .contact-form input[type="text"] {
        width: 100%;
        max-width: 100%;
    }

    .contact-form select {
        width: 100%;
    }

    .contact-form textarea {
        width: 100%;
    }

    .contact-form input[type="submit"] {
        width: 100%;
    }



/* RESPONSIVE MEDIUM  */
@media only screen and (max-width: 1199px), only screen and (max-device-width: 1199px) {
    .slider .main-slider .swiper-slide .container {
        padding-top: 50px;
    }
}
/* RESPONSIVE TABLET  */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
    .join-btn {
        width: 100%;
        text-align: center;
        /* max-width: 100%; */
    }

    .slider .main-slider .swiper-slide .container .description {
        display: none;
    }
}

/* RESPONSIVE MOBILE */
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
    main {
        margin-top: 0 !important;
    }

    .mobile-menu.active {
        left: 0;
    }

    .search-box {
        display: none;
    }

    .navbar {
        padding: 30px 15px;
        position: absolute;
    }

        .navbar .site-menu {
            display: none;
        }

        .navbar .user-menu {
            display: none;
        }

        .navbar .hamburger-menu {
            display: inline-block;
        }

    .slider {
        position: static;
    }

    .page-header {
        position: static;
    }

    .slider .main-slider .swiper-slide .slide-inner {
        background-position: right center !important;
    }

    .slider .main-slider .swiper-slide .container .name {
        font-size: 50px;
    }

        .slider .main-slider .swiper-slide .container .name strong {
            font-size: 50px;
        }
    /* 
    .slider .main-slider .swiper-slide .container .description {
        display: none;
    } */

    .slider .main-slider .swiper-slide .container .features li:first-child {
        width: 100%;
        margin-bottom: 10px;
    }

    .slider .main-slider .swiper-slide .container .features li:last-child {
        width: 100%;
        margin-top: 10px;
    }

    .slider .main-slider .swiper-slide .container .play-btn {
        padding: 0 25px;
    }
}

/* BLOG POST */
.blog-post {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
    position: relative;
}

    .blog-post.has-post-thumbnail .post-content {
        padding: 30px;
        position: absolute;
        left: 0;
        bottom: 0;
        color: #fff;
        background: black;
        background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.0018382353) 0%, black 100%);
        background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.0018382353) 0%, black 100%);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.0018382353) 0%, black 100%);
    }

        .blog-post.has-post-thumbnail .post-content .post-title a {
            color: #fff;
        }

        .blog-post.has-post-thumbnail .post-content .author span {
            color: rgba(255, 255, 255, 0.7);
        }

            .blog-post.has-post-thumbnail .post-content .author span b {
                color: #fff;
            }

    .blog-post.single-post {
        width: 100%;
        margin-bottom: 25px;
    }

        .blog-post.single-post .simplefavorite-button {
            display: none;
        }

        .blog-post.single-post .post-content {
            width: 100%;
        }

            .blog-post.single-post .post-content .author {
                margin-bottom: 30px;
            }

            .blog-post.single-post .post-content .post-date {
                margin-bottom: 20px;
            }

            .blog-post.single-post .post-content .post-title {
                margin-bottom: 40px;
            }

    .blog-post .post-image {
        width: 100%;
        display: block;
    }

        .blog-post .post-image img {
            width: 100%;
        }

    .blog-post .post-content {
        width: 100%;
        display: block;
        padding-top: 0;
        position: relative;
        z-index: 1;
    }

        .blog-post .post-content .post-inner {
            width: 100%;
        }

        .blog-post .post-content .post-tags {
            width: 100%;
            display: block;
            margin: 20px 0;
            padding: 0;
        }

            .blog-post .post-content .post-tags li {
                display: inline-block;
                margin: 3px 0;
                margin-right: 10px;
                padding: 0;
                list-style: none;
            }

                .blog-post .post-content .post-tags li a {
                    height: 25px;
                    display: inline-block;
                    background: var(--color-main);
                    color: #fff;
                    padding: 5px 16px;
                    font-size: 11px;
                    font-weight: 600;
                    border-radius: 22px;
                }

                    .blog-post .post-content .post-tags li a:hover {
                        background: var(--color-dark);
                        text-decoration: none;
                        color: #fff;
                    }

        .blog-post .post-content .post-date {
            display: inline-block;
            margin-top: 0;
            margin-bottom: 10px;
            margin-left: 0;
        }

        .blog-post .post-content .post-title {
            width: 100%;
            display: inline-block;
            font-size: 3vw;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            -ms-word-wrap: break-word;
            word-wrap: break-word;
        }

            .blog-post .post-content .post-title a {
                color: var(--color-dark);
            }

        .blog-post .post-content .author {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

            .blog-post .post-content .author img {
                height: 60px;
                display: inline-block;
                border-radius: 60px;
                margin-right: 15px;
            }

            .blog-post .post-content .author span {
                display: inline-block;
                color: rgba(0, 0, 0, 0.7);
                font-size: 15px;
            }

                .blog-post .post-content .author span b {
                    font-weight: 600;
                    color: var(--color-dark);
                }

.blog-post-big-link:hover .blog-post .post-content .post-title {
    text-decoration: underline;
}

/* PRELOADER SPINNER */
/* Optional background element, used for in-page transitions */
.preloader-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: white
}

.preloader-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 92px;
    transform-style: preserve-3d;
}

    .preloader-container .preloader {
        width: 64px;
        height: 64px;
        animation: youspinmerightround 3s infinite linear;
    }

@keyframes youspinmerightround {
    from {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    to {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
