/**
* Template Name: Mentor - v2.2.1
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --color: #5991ff;
    --transition-time: 0.5s;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #444444;
}

a {
    color: #000000;
}

a:hover {
    color: #444444;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #000000;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #727373;
    color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #000000;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

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

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#header .logo a {
    color: #000000;
}

#header .logo img {
    max-height: 100px;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

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

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: white;
    transition: 0.3s;
    font-size: 19px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #1c5ddc;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #37423b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #1c5ddc;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

.navbar {
    opacity: 2;
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/opacity/see-through */
    border: none;
    color: white;
    z-index: 9;
    transition: background-color 1s ease 0s;
}

/* Solid class attached on scroll past first section */

.navbar.solid {
    background-color: white;
    transition: background-color 1s ease 0s;
    box-shadow: 0 0 4px grey;
}

.navbar.solid .nav-menu a {
    color: #37423b;
}

.logo-image {
    content: url("../img/jxb-white.png");
}

.navbar.solid .logo-image {
    content: url("../img/jxb-black.png");
}

@media (max-width: 768px) {
    .navbar {
        opacity: 2;
        background-color: white;
        /* Fallback color */
        background-color: white;
        /* Black w/opacity/see-through */
        border: none;
        color: black;
        z-index: 100;
        transition: background-color 1s ease 0s;
    }

    /* Solid class attached on scroll past first section */

    .navbar.solid {
        background-color: white;
        transition: background-color 1s ease 0s;
        box-shadow: 0 0 4px grey;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff !important;
    }

    .mobile-nav-toggle i {
        color: #37423b !important;
    }

    .navbar.solid .nav-menu a {
        color: #37423b;
    }

    .logo-image {
        content: url("../img/jxb-black.png");
    }

    .navbar.solid .logo-image {
        content: url("../img/jxb-black.png");
    }
}

@media (max-width: 768px) {
    #header img {
        width: 50%;
    }
}

/* Get Startet Button */

.get-started-btn {
    margin-left: 22px;
    background: #000000;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.get-started-btn:hover {
    background: #727373;
    color: #fff;
}

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
}

/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    top: 17px;
    right: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    margin: 26px 0;
}

.mobile-nav-toggle i {
    color: white;
}

.solids i {
    color: #37423b;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #37423b;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #000000;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(32, 38, 34, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

.mobile-nav-active .mobile-nav-toggle {
    margin: 0;
}

@media (max-width: 768px) {
    #banner-carousel {
        margin-top: 100px;
    }

    #banner-jsx {
        margin-top: 100px;
    }

    .banner-yt {
        margin-top: 100px;
    }
}

#banner-carousel {
    width: 100%;
    height: 110vh;
    padding: 0 0;
}

#banner-carousel .carousel-inner {
    width: 100%;
    height: 110vh;
    padding: 0 0;
}

#banner-carousel .carousel-item {
    width: 100%;
    height: 110vh;
    padding: 0 0;
}

#banner-carousel h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#banner-carousel h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#banner-carousel .carousel-caption {
    top: 55%;
    transform: translateY(-45%);
    bottom: initial;
}

@media (max-width: 992px) {
    #banner-carousel .carousel-caption {
        top: 50%;
        transform: translateY(-50%);
        bottom: initial;
    }

    #banner-carousel {
        width: 100%;
        height: 36vh;
        padding: 0 0;
    }

    #banner-carousel .carousel-inner {
        width: 100%;
        height: 36vh;
        padding: 0 0;
    }

    #banner-carousel .carousel-item {
        width: 100%;
        height: 36vh;
        padding: 0 0;
    }

    .card-deck .card {
        -ms-flex: 1 0 0%;
        flex: 1 0 30%;
        margin-right: 15px;
        margin-bottom: 10px;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .card-deck .card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-right: 15px;
        margin-bottom: 10px;
        margin-left: 15px;
    }

    #banner-carousel .carousel-caption {
        top: 50%;
        transform: translateY(-50%);
        bottom: initial;
    }

    #banner-carousel {
        width: 100%;
        height: 30vh;
        padding: 0 0;
    }

    #banner-carousel .carousel-inner {
        width: 100%;
        height: 30vh;
        padding: 0 0;
    }

    #banner-carousel .carousel-item {
        width: 100%;
        height: 30vh;
        padding: 0 0;
    }

    #banner-carousel h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #banner-carousel h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/JXB01879.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    padding-top: 72px;
}

@media (max-width: 992px) {
    #hero .container {
        padding-top: 62px;
    }
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#hero h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

#hero .btn-get-started:hover {
    background: #000000;
    border: 2px solid #000000;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f7f6;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #000000;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #37423b;
}

.breadcrumbs {
    margin-top: 73px;
    text-align: center;
    background: #000000;
    padding: 30px 0;
    color: #fff;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 63px;
    }
}

.breadcrumbs h2 {
    font-size: 32px;
    font-weight: 500;
}

.breadcrumbs p {
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #000000;
}

.about .content .learn-more-btn {
    background: #000000;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px 9px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.about .content .learn-more-btn:hover {
    background: #727373;
    color: #fff;
}

.about .more-btn {
    display: inline-block;
    background: #000000;
    padding: 6px 30px 8px 30px;
    color: #ffffff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.about .more-btn i {
    font-size: 14px;
}

.about .more-btn:hover {
    color: #000000;
    background: #808080;
}

@media (max-width: 768px) {
    .about .content .more-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }

    .section-title h2::after {
        content: "";
        width: 0;
        height: 1px;
        display: inline-block;
        background: none;
        margin: 4px 10px;
    }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    padding: 30px 0;
}

.counts .counters span {
    font-size: 48px;
    display: block;
    color: #000000;
    font-weight: 700;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #37423b;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .content {
    padding: 30px;
    background: #000000;
    border-radius: 4px;
    color: #fff;
}

.why-us .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.why-us .content p {
    margin-bottom: 30px;
}

.why-us .content .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
    font-size: 14px;
}

.why-us .content .more-btn:hover {
    color: #000000;
    background: #fff;
}

.why-us .icon-boxes .icon-box {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    width: 100%;
    border: 1px solid #eef0ef;
}

.why-us .icon-boxes .icon-box i {
    font-size: 32px;
    padding: 18px;
    color: #000000;
    margin-bottom: 30px;
    background: #ecf9f0;
    border-radius: 50px;
}

.why-us .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features {
    padding-top: 0px;
}

.features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid #eef0ef;
}

.features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
}

.features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}

.features .icon-box h3 a {
    color: #37423b;
    transition: 0.3s;
}

.features .icon-box:hover {
    border-color: #000000;
}

.features .icon-box:hover h3 a {
    color: #000000;
}

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/

.courses .course-item {
    border-radius: 5px;
    border: 4px solid #eef0ef;
    box-shadow: 0px 0px 10px 0px #c5c5c5;
    width: 100%;
}

.courses .course-content {
    padding: 15px;
}

.courses .course-content h3 {
    font-weight: 700;
    font-size: 20px;
}

.courses .course-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.courses .course-content h3 a:hover {
    color: #000000;
}

.courses .course-content p {
    font-size: 14px;
    color: #777777;
}

.courses .course-content h4 {
    font-size: 14px;
    background: #000000;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

.courses .course-content .price {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: #37423b;
}

.courses .trainer {
    padding-top: 15px;
    border-top: 1px solid #eef0ef;
}

.courses .trainer .trainer-profile img {
    max-width: 50px;
    border-radius: 50px;
}

.courses .trainer .trainer-profile span {
    padding-left: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #5a6c60;
}

.courses .trainer .trainer-rank {
    font-size: 18px;
    color: #657a6d;
}

/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/

.trainers .member {
    text-align: center;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #eef0ef;
}

.trainers .member img {
    margin: -1px -1px 30px -1px;
}

.trainers .member .member-content {
    padding: 0 20px 30px 20px;
}

.trainers .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.trainers .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.trainers .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #aaaaaa;
}

.trainers .member .social {
    margin-top: 15px;
}

.trainers .member .social a {
    color: #7e9486;
    transition: 0.3s;
}

.trainers .member .social a:hover {
    color: #000000;
}

.trainers .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/

.course-details h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.course-details h1 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
}

.course-details h6 {
    font-size: 17px;
    margin: 0 0 15px 0;
    font-weight: 350;
    position: relative;
    padding-bottom: 10px;
}

.course-details h6:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
}

.course-details h6:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #000000;
    bottom: 0;
    left: 0;
}

.course-details h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
}

.course-details h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    height: 1px;
    background: #000000;
    bottom: 0;
    left: 0;
}

.course-details .accordion-item h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 0px;
    bottom: 0;
    left: 0;
}

.course-details .accordion-item h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    height: 0px;
    bottom: 0;
    left: 0;
}

.course-details .course-info {
    background: #f6f7f6;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.course-details .course-info h5 {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.course-details .course-info p {
    margin: 0;
    font-weight: 600;
}

.course-details .course-info a {
    color: #657a6d;
}

.course-details {
    margin-top: 73px;
}

@media (max-width: 992px) {
    .course-details {
        margin-top: 63px;
    }

    .switch-info-up {
        display: block;
        padding-top: 1.5rem;
    }

    .switch-info-down {
        display: none;
    }
}

@media (min-width: 1024px) {
    .switch-info-up {
        display: none;
    }

    .switch-info-down {
        display: block;
    }
}

/*--------------------------------------------------------------
# Cource Details Tabs
--------------------------------------------------------------*/

.cource-details-tabs {
    overflow: hidden;
    padding-top: 0;
}

.cource-details-tabs .nav-tabs {
    border: 0;
}

.cource-details-tabs .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #37423b;
    border-radius: 0;
    border-right: 2px solid #e2e7e4;
    font-weight: 600;
    font-size: 15px;
}

.cource-details-tabs .nav-link:hover {
    color: #000000;
}

.cource-details-tabs .nav-link.active {
    color: #000000;
    border-color: #000000;
}

.cource-details-tabs .tab-pane.active {
    -webkit-animation: fadeIn 0.5s ease-out;
    animation: fadeIn 0.5s ease-out;
}

.cource-details-tabs .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #37423b;
}

.cource-details-tabs .details p {
    color: #777777;
}

.cource-details-tabs .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cource-details-tabs .nav-link {
        border: 0;
        padding: 15px;
    }

    .cource-details-tabs .nav-link.active {
        color: #fff;
        background: #000000;
    }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/

.events .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.events .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
}

.events .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.events .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    transition: 0.3s;
}

.events .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.events .card-title a {
    color: #37423b;
    transition: 0.3s;
}

.events .card-text {
    color: #5e5e5e;
}

.events .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
}

.events .read-more a:hover {
    color: #000000;
}

.events .card:hover img {
    transform: scale(1.1);
}

.events .card:hover .card-body {
    border-color: #000000;
}

.events .card:hover .card-body .card-title a {
    color: #000000;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border: 1px solid #eef0ef;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: #000000;
    font-weight: 600;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: #000000;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #000000;
    display: inline-block;
    padding: 8px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: #727373;
}

.pricing .featured h3 {
    color: #fff;
    background: #000000;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #000000;
    color: #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
    padding-top: 5px;
}

@media (max-width: 992px) {
    .info {
        margin-bottom: 220px;
        justify-content: center;
    }
}

.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #000000;
    float: left;
    width: 44px;
    height: 44px;
    background: #ecf9f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37423b;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #657a6d;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email i {
    background: #1c5ddc;
}

.contact .info .address i {
    background: #feb52b;
}

.contact .info .phone i {
    background: #fc351c;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #000000;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
    border-color: #000000;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form select {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #000000;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #727373;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

#footer {
    color: #37423b;
    font-size: 14px;
    background: #eef0ef;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #f9faf9;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #777777;
}

#footer .footer-top .copyright {
    font-size: 14px;
    line-height: 24px;
    padding: 2px 0 2px 0;
    margin-bottom: 30px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #777777;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #000000;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #000000;
}

#footer .footer-newsletter {
    margin-bottom: 60px;
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #e0e5e2;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #000000;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #727373;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}

#footer .credits a {
    color: #727373;
    transition: 0.3s;
}

#footer .credits a:hover {
    color: #000000;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #000000;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #727373;
    color: #fff;
    text-decoration: none;
}

/* ===========================
           Calendar
============================== */

.responsiveCal {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.responsiveCal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*  Carrousel Dark Overlay */

.drk:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    opacity: 0.6;
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
}

/* Logo Partner */

.logo-list {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.logo-list img {
    display: inline-block;
    max-width: 85%;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    -webkit-filter: grayscale(100);
    -moz-filter: grayscale(100);
    filter: grayscale(100);
}

.logo-list img:hover {
    filter: none;
    transform: scale(1.2);
    -webkit-filter: none;
    -moz-filter: none;
}

/*--------------------------------------------------------------
# Hero Section ALL
--------------------------------------------------------------*/

.hero-ac {
    width: 100%;
    height: 100vh;
    background: url("../img/Header achievements.jpeg") top center;
    background-size: cover;
    position: relative;
}

.hero-news {
    width: 100%;
    height: 100vh;
    background: url("../img/news.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-cmr {
    width: 100%;
    height: 100vh;
    background: url("../img/komersial.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-priv {
    width: 100%;
    height: 100vh;
    background: url("../img/privacy&policy.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-ab {
    width: 100%;
    height: 100vh;
    background: url("../img/About us header.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-trn {
    width: 100%;
    height: 100vh;
    background: url("../img/pelatihan.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-psp {
    width: 100%;
    height: 100vh;
    background: url("../img/gcg-banner.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-career {
    width: 100%;
    height: 100vh;
    background: url("../img/foto Career.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-ex {
    width: 100%;
    height: 100vh;
    background: url("../img/slider2.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-hotel {
    width: 100%;
    height: 100vh;
    background: url("../img/JXStay.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-bod {
    width: 100%;
    height: 100vh;
    background: url("../img/Header direksi.jpeg") top center;
    background-size: cover;
    position: relative;
}

.hero-com {
    width: 100%;
    height: 100vh;
    background: url("../img/whatson.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-so {
    width: 100%;
    height: 100vh;
    background: url("../img/Organizational structure header.jpg") top center;
    background-size: cover;
    position: relative;
}

.hero-jsx {
    width: 100%;
    height: 100vh;
    background: url("../img/jsx/Banner 2.png") top center;
    background-size: cover;
    position: relative;
}

.hero-so:before,
.hero-bod:before,
.hero-hotel:before,
.hero-ex:before,
.hero-psp:before,
.hero-career:before,
.hero-ab:before,
.hero-com:before,
.hero-cmr:before,
.hero-priv:before,
.hero-news:before,
.hero-ac:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero-trn:before {
    content: "";
    background: rgba(0, 0, 0, 0.664);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero-jsx:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero-jsx .container,
.hero-so .container,
.hero-bod .container,
.hero-hotel .container,
.hero-ex .container,
.hero-psp .container,
.hero-career .container,
.hero-ab .container,
.hero-trn .container,
.hero-com .container,
.hero-cmr .container,
.hero-priv .container,
.hero-news .container,
.hero-ac .container {
    padding-top: 72px;
}

@media (max-width: 992px) {

    .hero-jsx .container,
    .hero-so .container,
    .hero-bod .container,
    .hero-hotel .container,
    .hero-ex .container,
    .hero-psp .container,
    .hero-career .container,
    .hero-ab .container,
    .hero-trn .container,
    .hero-com .container,
    .hero-cmr .container,
    .hero-priv .container,
    .hero-news .container,
    .hero-ac .container {
        padding-top: 62px;
    }
}

.hero-jsx h1,
.hero-so h1,
.hero-bod h1,
.hero-hotel h1,
.hero-ex h1,
.hero-psp h1,
.hero-career h1,
.hero-ab h1,
.hero-trn h1,
.hero-com h1,
.hero-cmr h1,
.hero-priv h1,
.hero-news h1,
.hero-ac h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hero-jsx h2,
.hero-so h2,
.hero-bod h2,
.hero-hotel h2,
.hero-ex h2,
.hero-psp h2,
.hero-career h2,
.hero-com h2,
.hero-ab h2,
.hero-trn h2,
.hero-cmr h2,
.hero-priv h2,
.hero-news h2,
.hero-ac h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.hero-jsx .btn-get-started,
.hero-so .btn-get-started,
.hero-bod .btn-get-started,
.hero-hotel .btn-get-started,
.hero-ex .btn-get-started,
.hero-psp .btn-get-started,
.hero-career .btn-get-started,
.hero-com .btn-get-started,
.hero-news .btn-get-started,
.hero-cmr .btn-get-started,
.hero-priv .btn-get-started,
.hero-ac .btn-get-started,
.hero-trn .btn-get-started,
.hero-ab .btn-get-started {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
}

.hero-jsx .btn-get-started:hover,
.hero-so .btn-get-started:hover,
.hero-bod .btn-get-started:hover,
.hero-hotel .btn-get-started:hover,
.hero-ex .btn-get-started:hover,
.hero-ac .btn-get-started:hover,
.hero-news .btn-get-started:hover,
.hero-cmr .btn-get-started:hover,
.hero-priv .btn-get-started:hover,
.hero-com .btn-get-started:hover,
.hero-psp .btn-get-started:hover,
.hero-career .btn-get-started:hover,
.hero-trn .btn-get-started:hover,
.hero-ab .btn-get-started:hover {
    background: #000000;
    border: 2px solid #000000;
}

@media (min-width: 1024px) {

    .hero-jsx,
    .hero-so,
    .hero-bod,
    .hero-hotel,
    .hero-ex,
    .hero-com,
    .hero-ac,
    .hero-news,
    .hero-cmr,
    .hero-psp,
    .hero-career,
    .hero-trn,
    .hero-ab {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {

    .hero-jsx,
    .hero-so,
    .hero-bod,
    .hero-hotel,
    .hero-ex,
    .hero-ac,
    .hero-news,
    .hero-cmr,
    .hero-priv,
    .hero-psp,
    .hero-career,
    .hero-trn,
    .hero-ab {
        height: 100vh;
    }

    .hero-jsx h1,
    .hero-so h1,
    .hero-bod h1,
    .hero-hotel h1,
    .hero-ex h1,
    .hero-ac h1,
    .hero-news h1,
    .hero-cmr h1,
    .hero-priv h1,
    .hero-psp h1,
    .hero-career h1,
    .hero-trn h1,
    .hero-ab h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-jsx h2,
    .hero-so h2,
    .hero-bod h2,
    .hero-hotel h2,
    .hero-psp h2,
    .hero-career h2,
    .hero-ac h2,
    .hero-news h2,
    .hero-cmr h2,
    .hero-priv h2,
    .hero-ex h1,
    .hero-trn h1,
    .hero-ab h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*==================
 GALLERY SECTION
====================*/

#mu-gallery {
    display: inline;
    float: left;
    padding: 100px 0;
    width: 100%;
}

.mu-gallery-area {
    display: inline;
    float: left;
    width: 100%;
}

.mu-gallery-content {
    display: inline;
    float: left;
    width: 100%;
}

.mu-gallery-body {
    display: inline;
    float: left;
    width: 100%;
    margin-top: 50px;
}

.mu-single-gallery {
    display: inline;
    float: left;
    margin-bottom: 30px;
    width: 33.33%;
}

.mu-single-gallery:last-child {
    margin-bottom: 0px;
}

.mu-single-gallery .mu-single-gallery-item {
    display: inline;
    float: left;
    width: 100%;
    position: relative;
}

.mu-single-gallery .mu-single-gallery-item:hover .mu-single-gallery-info {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.mu-single-gallery .mu-single-gallery-item .mu-single-gallery-img {
    display: inline;
    float: left;
    overflow: hidden;
    width: 100%;
}

.mu-single-gallery .mu-single-gallery-item .mu-single-gallery-img img {
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.mu-single-gallery .mu-single-gallery-item .mu-single-gallery-info {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding-top: 28%;
    opacity: 0;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

/* Testimonials Section
--------------------------------*/

#testimonials {
    background: #f6f6f6;
    padding: 80px 0;
}

#testimonials .profile {
    text-align: center;
    width: 100%;
    margin-bottom: 2em;
}

#testimonials .profile .pic {
    border-radius: 50%;
    border: 6px solid #1c5ddc;
    margin-bottom: 15px;
    overflow: hidden;
    height: 260px;
    width: 260px;
    margin-left: auto;
    margin-right: auto;
}

#testimonials .profile .pic img {
    max-width: 100%;
}

#testimonials .profile h4 {
    font-weight: 700;
    color: #1c5ddc;
    margin-bottom: 5px;
}

#testimonials .profile span {
    color: #333333;
}

#testimonials .quote {
    position: relative;
    background: #fff;
    padding: 60px;
    margin-top: 40px;
    font-size: 16px;
    font-style: italic;
    border-radius: 5px;
}

#testimonials .quote b {
    display: inline-block;
    font-size: 22px;
    left: -9px;
    position: relative;
    top: -8px;
}

#testimonials .quote small {
    display: inline-block;
    right: -9px;
    position: relative;
    top: 4px;
}

#testimonials .more-btn {
    display: inline-block;
    background: #1c5ddc;
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

#testimonials .more-btn i {
    font-size: 14px;
}

#testimonials .more-btn:hover {
    color: #000000;
    background: #fff;
}

@media (max-width: 768px) {
    #testimonials .profile .pic {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1024px) {
    #testimonials .profile .pic {
        margin-left: auto;
        margin-right: auto;
    }
}

.card-horizontal {
    display: flex;
    flex: 1 1 auto;
}

/* Event List Style Calendar*/

.event-list {
    list-style: none;
    font-family: "Lato", sans-serif;
    margin: 0px;
    padding: 0px;
}

.event-list>li {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 5px rgb(51, 51, 51);
    box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.7);
    padding: 0px;
    margin: 0px 0px 20px;
}

.event-list>li>time {
    display: inline-block;
    width: 100%;
    color: rgb(255, 255, 255);
    background-color: rgb(197, 44, 102);
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
}

.event-list>li:nth-child(even)>time {
    background-color: rgb(165, 82, 167);
}

.event-list>li>time>span {
    display: none;
}

.event-list>li>time>.day {
    display: block;
    font-size: 56pt;
    font-weight: 100;
    line-height: 1;
}

.event-list>li time>.month {
    display: block;
    font-size: 24pt;
    font-weight: 900;
    line-height: 1;
}

.event-list>li>img {
    width: 100%;
}

.event-list>li>.info {
    padding-top: 5px;
    text-align: center;
}

.event-list>li>.info>.title {
    font-size: 17pt;
    font-weight: 700;
    margin: 0px;
}

.event-list>li>.info>.desc {
    font-size: 13pt;
    font-weight: 300;
    margin: 0px;
}

.event-list>li>.info>ul,
.event-list>li>.social>ul {
    display: table;
    list-style: none;
    margin: 10px 0px 0px;
    padding: 0px;
    width: 100%;
    text-align: center;
}

.event-list>li>.social>ul {
    margin: 0px;
}

.event-list>li>.info>ul>li,
.event-list>li>.social>ul>li {
    display: table-cell;
    cursor: pointer;
    color: rgb(30, 30, 30);
    font-size: 11pt;
    font-weight: 300;
    padding: 3px 0px;
}

.event-list>li>.info>ul>li>a {
    display: block;
    width: 100%;
    color: rgb(30, 30, 30);
    text-decoration: none;
}

.event-list>li>.social>ul>li {
    padding: 0px;
}

.event-list>li>.social>ul>li>a {
    padding: 3px 0px;
}

.event-list>li>.info>ul>li:hover,
.event-list>li>.social>ul>li:hover {
    color: rgb(30, 30, 30);
    background-color: rgb(200, 200, 200);
}

.facebook a,
.twitter a,
.google-plus a {
    display: block;
    width: 100%;
    color: rgb(75, 110, 168) !important;
}

.twitter a {
    color: rgb(79, 213, 248) !important;
}

.google-plus a {
    color: rgb(221, 75, 57) !important;
}

.facebook:hover a {
    color: rgb(255, 255, 255) !important;
    background-color: rgb(75, 110, 168) !important;
}

.twitter:hover a {
    color: rgb(255, 255, 255) !important;
    background-color: rgb(79, 213, 248) !important;
}

.google-plus:hover a {
    color: rgb(255, 255, 255) !important;
    background-color: rgb(221, 75, 57) !important;
}

@media (min-width: 768px) {
    .event-list>li {
        position: relative;
        display: block;
        width: 100%;
        height: 120px;
        padding: 0px;
    }

    .event-list>li>time,
    .event-list>li>img {
        display: inline-block;
    }

    .event-list>li>time,
    .event-list>li>img {
        width: 120px;
        float: left;
    }

    .event-list>li>.info {
        background-color: rgb(245, 245, 245);
        overflow: hidden;
    }

    .event-list>li>time,
    .event-list>li>img {
        width: 120px;
        height: 120px;
        padding: 0px;
        margin: 0px;
    }

    .event-list>li>.info {
        position: relative;
        height: 120px;
        text-align: left;
        padding-right: 40px;
    }

    .event-list>li>.info>.title,
    .event-list>li>.info>.desc {
        padding: 0px 10px;
    }

    .event-list>li>.info>ul {
        position: absolute;
        left: 0px;
        bottom: 0px;
    }

    .event-list>li>.social {
        position: absolute;
        top: 0px;
        right: 0px;
        display: block;
        width: 40px;
    }

    .event-list>li>.social>ul {
        border-left: 1px solid rgb(230, 230, 230);
    }

    .event-list>li>.social>ul>li {
        display: block;
        padding: 0px;
    }

    .event-list>li>.social>ul>li>a {
        display: block;
        width: 40px;
        padding: 10px 0px 9px;
    }
}

/* Card Achivement*/

/*Card Box*/

.card-box {
    border: 1px solid #ddd;
    padding: 20px 20px 20px 20px;
    box-shadow: 0px 0px 10px 0px #c5c5c5;
    margin-bottom: 30px;
    float: left;
    border-radius: 10px;
    height: 400px;
    width: 32 0px;
}

.card-box .card-thumbnail {
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    transition: 1s;
}

.card-box .card-thumbnail img {
    height: 200px;
    width: 100%;
}

/* .card-box .card-thumbnail:hover {
    transform: scale(1.2);
} */

.trainer {
    position: absolute;
    bottom: 50px;
}

.bottom-case {
    position: absolute;
    bottom: 10px;
}

.card {
    box-shadow: 0px 0px 10px 0px #c5c5c5;
}

.ck-editor__editable {
    min-height: 500px;
}

.carousel-item {
    height: 400px;
}

.carousel-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.carousel-item .overlay {
    width: 100%;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.493);
    overflow: hidden;
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;
}

/*Slider Card*/

.cards-wrapper {
    display: flex;
    justify-content: center;
}

.card .card-thumbnail {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    /* transition: 1s; */
}

/* .card .card-thumbnail:hover {
    transform: scale(1.2);
} */

.card h5 {
    font-size: 18px;
    text-decoration: none;
}

.card {
    border: 1px solid #ddd;
    padding: 20px 20px 20px 20px;
    box-shadow: 0px 0px 10px 0px #c5c5c5;
    margin-bottom: 30px;
    float: left;
    border-radius: 10px;
    height: 490px;
    width: 32 0px;
}

.carousel-inner {
    padding: 1em;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: #e1e1e1;
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

/*Experience For News*/
body {
    margin-top: 0px;
}

.home-blog {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 992px) {
    .home-blog {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.home-blog .section-title {
    padding-bottom: 15px;
}

.home-blog .media {
    margin-top: 50px;
}

@media (min-width: 768px) {
    .home-blog .media {
        margin-top: 30px;
    }
}

.bg-sand {
    background-color: white;
}

.media.blog-media {
    box-shadow: 0px 0px 10px 0px #c5c5c5;
    margin-top: 30px;
    position: relative;
    display: block;
}

@media (min-width: 992px) {
    .media.blog-media {
        display: table;
    }
}

.media.blog-media .circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    position: absolute;
    padding: 0;
    top: 20px;
    left: 20px;
    text-align: center;
    box-shadow: none;
    transform: translateX(0);
    color: #fff;
    transition: background-color 0.3s ease;
}

.media.blog-media .circle .day {
    color: #fff;
    transition: color 0.25s ease;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    margin-top: 12px;
}

.media.blog-media .circle .month {
    text-transform: uppercase;
    font-size: 14px;
}

.media.blog-media>a {
    position: relative;
    display: block;
}

@media (min-width: 992px) {
    .media.blog-media>a {
        display: table-cell;
        vertical-align: top;
        min-width: 200px;
    }
}

@media (min-width: 1200px) {
    .media.blog-media>a {
        min-width: 230px;
    }
}

.media.blog-media>a:before {
    position: absolute;
    content: "";
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.3s ease, opacity 0.3s;
    /*background: rgba(12, 40, 198, 0.7);*/
}

.media.blog-media>a img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.media.blog-media:hover>a:before {
    opacity: 1;
    transform: scale(1);
}

.media.blog-media:hover .circle {
    background-color: rgba(255, 255, 255, 0.9);
}

.media.blog-media:hover .circle .day,
.media.blog-media:hover .circle .month {
    color: #222;
}

.media.blog-media:hover .media-body h5 {
    color: #1c5ddc;
}

.media.blog-media:hover .media-body a.post-link {
    color: #1c5ddc;
    text-decoration: underline;
}

.media.blog-media .media-body {
    border: 1px solid #efeff3;
    padding: 30px 30px 10px;
    font-size: 14px;
    background: #fff;
    border-top: none;
    height: 100%;
    width: 100%;
}

@media (min-width: 992px) {
    .media.blog-media .media-body {
        padding: 15px 20px 10px;
        border-top: 1px solid #efeff3;
        border-left: none;
        display: table-cell;
        vertical-align: top;
    }
}

@media (min-width: 1200px) {
    .media.blog-media .media-body {
        padding: 30px 20px 10px;
    }
}

.media.blog-media .media-body h5 {
    transition: color 0.3s ease;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .media.blog-media .media-body h5 {
        font-size: 15px;
    }
}

@media (min-width: 1200px) {
    .media.blog-media .media-body h5 {
        margin-bottom: 15px;
        font-size: 18px;
    }
}

.media.blog-media .media-body a.post-link {
    display: block;
    color: #222;
    font-size: 11px;
    padding: 23px 0;
    text-transform: uppercase;
    font-weight: 400;
}

@media (min-width: 992px) {
    .media.blog-media .media-body a.post-link {
        padding: 7px 0;
    }
}

@media (min-width: 1200px) {
    .media.blog-media .media-body a.post-link {
        padding: 23px 0;
    }
}

.media.blog-media .media-body ul {
    position: relative;
    padding: 10px 0 0;
}

.media.blog-media .media-body ul li {
    display: inline-block;
    width: 49%;
    position: relative;
}

.media.blog-media .media-body ul li:before {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    width: 1px;
    height: 14px;
    background: #eeeef2;
}

.media.blog-media .media-body ul li:first-child:before {
    visibility: hidden;
}

.media.blog-media .media-body ul:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eeeef2;
}

.home-blog .more-btn {
    display: inline-block;
    background: transparent;
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.home-blog .more-btn i {
    font-size: 14px;
}

.home-blog .more-btn:hover {
    color: #ffff;
    background: #1c5ddc;
}

#popular-courses .more-btn {
    display: inline-block;
    background: transparent;
    padding: 6px 30px 8px 30px;
    color: #1c5ddc;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

#popular-courses .more-btn i {
    font-size: 14px;
}

#popular-courses .more-btn:hover {
    color: #ffff;
    background: #1c5ddc;
}

.more-btn-feed {
    display: inline-block;
    background: transparent;
    padding: 6px 30px 8px 30px;
    color: white;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.more-btn-feed i {
    font-size: 14px;
}

.more-btn-feed:hover {
    color: white;
    background: #fc351c;
}

.more-btn-feed-post {
    width: 100%;
    display: inline-block;
    background: rgba(255, 72, 72, 0.541);
    padding: 6px 30px 8px 30px;
    color: white;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.more-btn-feed-post i {
    font-size: 14px;
}

.more-btn-feed-post:hover {
    color: white;
    background: #fc351c;
}

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 1px;
    background-color: #d4d4d4;
    left: 50%;
    margin-left: 0px;
}

@media screen and (max-width: 480px) {
    .timeline:before {
        margin-left: -64px;
    }
}

.timeline>li {
    margin-bottom: 20px;
    position: relative;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline-panel {
    background-color: white;
    box-shadow: 4px 3px 8px 1px #969696;
    -webkit-box-shadow: 4px 3px 8px 1px #969696;
}

.timeline>li>.timeline-panel {
    width: 40%;
    float: left;
    border: 1px solid #d4d4d4;
    padding: 30px;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

.timeline>li>.timeline-panel:before {
    position: absolute;
    top: 80px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #ccc;
    border-right: 0 solid #ccc;
    border-bottom: 15px solid transparent;
    content: " ";
}

.timeline>li>.timeline-panel:after {
    position: absolute;
    top: 81px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    content: " ";
}

@media screen and (max-width: 480px) {
    .timeline>li>.timeline-panel {
        width: 75% !important;
    }

    .timeline>li>.timeline-panel:before {
        top: 30px;
    }

    .timeline>li>.timeline-panel:after {
        top: 31px;
    }
}

.timeline>li>.timeline-badge {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    width: 160px;
    height: 160px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -80px;
    background-color: #999999;
    z-index: 100;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

@media screen and (max-width: 480px) {
    .timeline>li>.timeline-badge {
        width: 60px;
        height: 60px;
        margin-left: -20px !important;
    }
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

.timeline-title {
    margin-top: 0;
}

.date {
    display: block;
    margin-bottom: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-body>p,
.timeline-body>ul {
    margin-bottom: 0;
}

.timeline-body>p+p {
    margin-top: 5px;
}

@media (max-width: 992px) {
    ul.timeline:before {
        left: 90px;
    }

    ul.timeline>li>.timeline-panel {
        width: calc(100% - 200px);
        width: -moz-calc(100% - 200px);
        width: -webkit-calc(100% - 200px);
    }

    ul.timeline>li>.timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }

    ul.timeline>li>.timeline-panel {
        float: right;
    }

    ul.timeline>li>.timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    ul.timeline>li>.timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }
}

.icon-box {
    background-color: white;
    box-shadow: 4px 3px 8px 1px #969696;
    -webkit-box-shadow: 4px 3px 8px 1px #969696;
    border-radius: 10px;
}

/* Visi Misi */
.section-gap {
    padding: 120px 0;
}

.service-area .header-text {
    text-align: center;
}

.service-area .header-text h1 {
    margin-bottom: 20px;
}

.single-service {
    background-color: #f6f6f6;
    padding: 30px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-service:hover {
    box-shadow: -14.142px 14.142px 20px 0px rgba(157, 157, 157, 0.5);
    cursor: pointer;
}

#single-service-1:hover {
    background-color: #1c5ddc;
}

#single-service-2:hover {
    background-color: #feb52b;
}

#single-service-3:hover {
    background-color: #fc351c;
}

#single-service-3,
#single-service-4 {
    border-radius: 10px;
}

#single-service-3:hover {
    background-color: #014f42;
}

#single-service-4:hover {
    background-color: #ff4900;
}

.single-service:hover h4,
.single-service:hover p,
.single-service:hover ul,
.single-service:hover ol,
.single-service:hover li,
.single-service:hover strong,
.single-service:hover .lnr {
    color: #fff;
}

.single-service p {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-service h4 {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-top: 20px;
    margin-bottom: 20px;
}

.single-service h4 .lnr {
    margin-right: 15px;
    margin: 0px 10px;
    font-weight: 600;
}

/*--------------------*/
/* FEATURE SECTION */
/*--------------------*/

#mu-feature {
    background-color: #fff;
    display: inline;
    float: left;
    width: 100%;
}

.mu-feature-area {
    display: inline;
    float: left;
    padding: 100px 0;
    width: 100%;
}

.mu-title-area {
    display: inline;
    float: left;
    text-align: center;
    padding: 0 120px;
    width: 100%;
}

.mu-title {
    color: #1c1b1b;
    margin-bottom: 15px;
    padding: 0;
    z-index: 10;
    text-transform: capitalize;
}

.mu-title-dot {
    border-radius: 50%;
    height: 8px;
    width: 8px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}

.mu-title-dot::before {
    content: "";
    position: absolute;
    left: 15px;
    height: 3px;
    width: 50px;
    top: 2px;
}

.mu-title-dot::after {
    content: "";
    position: absolute;
    right: 15px;
    height: 3px;
    width: 50px;
    top: 2px;
}

.mu-feature-content {
    background-color: #fff;
    display: inline;
    float: left;
    margin-top: 30px;
    width: 100%;
}

.mu-feature-content-left {
    display: inline;
    float: left;
    width: 100%;
}

.mu-feature-content-right {
    display: inline;
    float: left;
    margin-top: 30px;
    width: 100%;
}

.mu-feature-content-right .media .media-body p {
    font-size: 17px;
}

.mu-feature-content-right .media-left {
    padding-right: 25px;
}

.mu-feature-btn {
    color: #fff;
    font-size: 18px;
}

.mu-feature-btn:hover {
    color: #fff;
}

.mu-feature-content-right .media-heading {
    font-size: 22px;
    font-weight: 500;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mu-feature-content-right .media {
    margin-top: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mu-feature-content-right .media p {
    font-size: 14px;
    margin-bottom: 0;
}

.mu-profile-img {
    max-width: 100%;
}

/* Core Values*/

.large-gutters {
    margin-right: -45px;
    margin-left: -45px;
}

.large-gutters>[class*="col-"] {
    padding-right: 45px;
    padding-left: 45px;
}

.accordion .btn-block {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}

.accordion .btn-block .icon {
    position: absolute;
    right: 30px;
    height: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
}

.accordion .btn-block .icon:before {
    font-family: "Ionicons";
    position: absolute;
}

.accordion .btn-block[aria-expanded="true"] {
    color: #000;
}

.accordion .btn-block[aria-expanded="true"] .icon:before {
    content: "\f2f4";
}

.accordion .btn-block[aria-expanded="false"] {
    color: #000;
}

.accordion .btn-block[aria-expanded="false"] .icon:before {
    content: "\f2c7";
}

/* Logo */
.info-area .info-thumb {
    overflow: visible;
    display: inline-block;
}

@media (max-width: 800px) {
    .info-area .info-content {
        text-align: center;
        padding: 80px 30px 80px 0;
    }
}

.info-area .info-content {
    box-shadow: 0px 0px 50px 0px rgba(157, 157, 157, 0.3);
    position: relative;
    background: #fff;
    padding: 60px 40px 60px 60px;
}

@media (max-width: 575.98px) {
    .info-area .info-content {
        margin-top: 30px;
    }
}

.info-area .info-content:after {
    content: "";
    box-shadow: -35.355px 35.355px 50px 0px rgba(157, 157, 157, 0.3);
    position: relative;
    right: 100%;
    top: 0;
    z-index: 2;
    background: #fff;
    width: 70px;
    height: 100%;
}

@media (max-width: 991.98px) {
    .info-area .info-content:after {
        width: 50px;
    }
}

@media (max-width: 575.98px) {
    .info-area .info-content:after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .info-area .info-content {
        padding: 30px 30px 30px 0;
    }
}

@media (max-width: 575.98px) {
    .info-area .info-content {
        padding: 30px;
    }
}

.info-area .info-content h1 {
    line-height: 1.15em;
    margin-bottom: 30px;
}

.info-area .info-content .meta {
    color: #222;
    font-weight: 400;
    font-size: 14px;
    margin-top: 20px;
}

.info-area .info-left {
    z-index: 2;
}

@media (max-width: 800px) {
    .info-area .info-left {
        margin-top: 0px;
        margin-bottom: 40px;
    }
}

.jsx-line {
    background: linear-gradient(to right,
            #ff7176 25%,
            #ffc32a 25%,
            #ffc32a 50%,
            #5991ff 50%,
            #5991ff 75%,
            #3fc88b 75%);
    position: relative;
    text-align: center;
    content: "";
    height: 7px;
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
}

.tep-line {
    background: linear-gradient(to right,
            #014f42 25%,
            #145348 25%,
            #1d554c 50%,
            #f57441 50%,
            #f76025 75%,
            #ff4900 75%);
    position: relative;
    text-align: center;
    content: "";
    height: 7px;
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
}

.jsx-image-line {
    max-width: 100%;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.jsx-title h2 {
    font-weight: bold;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.card-container {
    padding: 100px 0px;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.profile-card-2 {
    max-width: 1000px;
    background-color: #fff;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    background-position: center;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
    border-radius: 10px;
    height: 25em;
}

.profile-card-2 img {
    transition: all linear 0.25s;
    z-index: 100;
}

.profile-card-2 .profile-name {
    position: absolute;
    left: 30px;
    bottom: 70px;
    font-size: 30px;
    color: #fff;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-icons {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-username {
    position: absolute;
    bottom: 50px;
    left: 30px;
    color: #fff;
    font-size: 13px;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-icons .fa {
    margin: 5px;
}

.profile-card-2 img:hover {
    filter: grayscale(100%);
}

.profile-card-2:hover .profile-name {
    bottom: 80px;
}

.profile-card-2:hover .profile-username {
    bottom: 60px;
}

.profile-card-2:hover .profile-icons {
    right: 40px;
}

#map {
    height: 700px;
    z-index: 1;
}

#basemaps-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 400;
    background: white;
    padding: 10px;
}

#basemaps {
    margin-bottom: 5px;
}

/* JSX ARTICLE*/

.container-jsx {

    margin-block: 2rem;
}

.container-jsx img {
    max-width: 100%;
    height: 150px;
    display: block;
    object-fit: cover;
}

.card-jsx {
    display: flex;
    width: 0px;
    height: 275px;
    flex-direction: column;
    width: clamp(20rem, calc(20rem + 2vw), 22rem);
    overflow: hidden;
    box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    background: #ece9e6;
    background: linear-gradient(to right, #ffffff, #ece9e6);
}

.card-exp {
    display: flex;
    width: 0px;
    height: 310px;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    background: #ece9e6;
    background: linear-gradient(to right, #ffffff, #ece9e6);
}

@media only screen and (min-width: 768px) and (max-width: 982px) {}

@media screen and (min-width: 250px) {}

.card__body {
    padding: 1rem 1rem 0rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tag {
    align-self: flex-start;
    padding: 0.25em 0.75em;
    border-radius: 1em;
    font-size: 0.75rem;
}

.tag+.tag {
    margin-left: 0.5em;
}

.tag-width {
    background: linear-gradient(to bottom, #1c1b1b, #2d2d2d);
    position: relative;
    content: "";
    width: 100%;
    padding: 0.25em 0.75em;
    font-size: 0.75rem;
    color: white;
}

.tag-black {
    background: #000;
    background: linear-gradient(to bottom, #1c1b1b, #2d2d2d);
    color: #fafafa;
}

.tag-brown {
    background: #d1913c;
    background: linear-gradient(to bottom, #ffd194, #d1913c);
    color: #fafafa;
}

.tag-red {
    background: #cb2d3e;
    background: linear-gradient(to bottom, #ef473a, #cb2d3e);
    color: #fafafa;
}

.card__body h4 {
    font-size: 1.25rem;
    text-transform: capitalize;
}

.card__footer {
    display: flex;
    padding: 0.25rem 1rem 1.5rem 1rem;
    margin-top: 0.35rem;
}

.user {
    display: flex;
    gap: 0.5rem;
}

.user__image {
    border-radius: 50%;
}

.user__info>small {
    color: #666;
}

.text-below-marker {
    padding-top: 5px;
    position: absolute;
    min-width: 100px;
    left: -25px !important;
    text-align: center;
    min-height: 1.2em;
}

.text-below-marker-hover {
    font-weight: bold !important;
    padding-top: 5px;
    position: absolute;
    min-width: 100px;
    left: -25px !important;
    text-align: center;
    min-height: 1.2em;
}

.cards-wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5rem;
    padding: 1.5rem;
    margin: 0 auto;
    width: max-content;
}

.card-wa {
    font-family: "Heebo";
    --bg-filter-opacity: 0.5;
    background-image: linear-gradient(rgba(0, 0, 0, var(--bg-filter-opacity)),
            rgba(0, 0, 0, var(--bg-filter-opacity))),
        var(--bg-img);
    height: 20em;
    width: 14em;
    font-size: 1.5em;
    color: white;
    border-radius: 1em;
    padding: 1em;
    /*margin: 2em;*/
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 3em -1em black;
    transition: all, var(--transition-time);
    position: relative;
    overflow: hidden;
    border: 10px solid #ccc;
    text-decoration: none;
}

.card-wa:hover {
    transform: rotate(0);
}

.card-wa h1 {
    margin: 0;
    font-size: 1.5em;
    line-height: 1.1em;
}

.card-wa p {
    font-size: 0.75em;
    font-family: "Open Sans";
    margin-top: 0.5em;
    line-height: 2em;
}

.card-wa .tags {
    display: flex;
}

.card-wa .tags .tag {
    font-size: 0.75em;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.3rem;
    padding: 0 0.5em;
    margin-right: 0.5em;
    line-height: 1.5em;
    transition: all, var(--transition-time);
}

.card-wa:hover .tags .tag {
    background: var(--color);
    color: white;
}

.card-wa .date {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.75em;
    padding: 1em;
    line-height: 1em;
    opacity: 0.8;
}

.card-wa:before,
.card-wa:after {
    content: "";
    transform: scale(0);
    transform-origin: top left;
    border-radius: 50%;
    position: absolute;
    left: -50%;
    top: -50%;
    z-index: -5;
    transition: all, var(--transition-time);
    transition-timing-function: ease-in-out;
}

.card-wa:before {
    background: #ddd;
    width: 250%;
    height: 350%;
}

.card-wa:after {
    background: white;
    width: 200%;
    height: 200%;
}

.card-wa:hover {
    color: var(--color);
}

.card-wa:hover:before,
.card-wa:hover:after {
    transform: scale(1);
}

.card-grid-space .num {
    font-size: 3em;
    margin-bottom: 1.2rem;
    margin-left: 1rem;
}

.info {
    font-size: 1.2em;
    display: flex;
    padding: 1em 3em;
    height: 3em;
}

.info img {
    height: 5em;
    margin-right: 0.5em;
}

@import "tailwindcss/base";

.info h1 {
    font-size: 1em;
    font-weight: normal;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1285px) {
    .cards-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 900px) {
    .info {
        justify-content: center;
    }

    .card-grid-space .num {
        margin-left: 0;
        text-align: center;
    }
}

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

    .cards-wrapper {
        padding: 4rem 2rem;
        margin: 0 auto;
    }

    .card-wa {
        max-width: calc(100vw - 4rem);
    }
}

@media screen and (max-width: 450px) {
    .info {
        display: block;
        text-align: center;
    }

    .info h1 {
        margin: 0;
    }
}

.card-button-w {
    padding-top: 0;
    padding-bottom: 64px;
}

.card-button-w .more-btn {
    display: inline-block;
    background: #000000;
    padding: 6px 30px 8px 30px;
    color: #ffffff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.card-button-w .more-btn i {
    font-size: 14px;
}

.card-button-w .more-btn:hover {
    color: #000000;
    background: #808080;
}

@media (max-width: 768px) {
    .card-button-w .content .more-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
}

.card-button-wh {
    padding-top: 0;
    padding-bottom: 0;
}

.card-button-wh .more-btn {
    display: inline-block;
    background: #5991ff;
    padding: 6px 30px 8px 30px;
    color: #ffffff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.card-button-wh .more-btn i {
    font-size: 14px;
}

.card-button-wh .more-btn:hover {
    color: #5991ff;
    background: #fff;
}

@media (max-width: 768px) {
    .card-button-wh .content .more-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
}

.form-border {
    width: 100%;
}

.form-border-tep {
    width: 100%;
}

.form-border-second {
    border: 1px solid #707070;
    border-radius: 10px;
    margin-top: 1.5rem;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
    padding: 1rem;
    width: 100%;
}

.form-border-second h4 {
    color: rgb(83, 83, 83);
    font-weight: bold;
}

.form-border-second-tep {
    border: 1px solid #707070;
    border-radius: 10px;
    margin-top: 1.5rem;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
    padding: 1rem;
    width: 100%;
}

.form-border-second-tep h4 {
    color: rgb(83, 83, 83);
    font-weight: bold;
}

.form-border input[type="text"] {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border input[type="text"]:focus {
    outline: none;
    border-bottom: 2px solid #5991ff;
}

.form-border input[type="text"]::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border textarea {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border textarea:focus {
    outline: none;
    border-bottom: 2px solid #5991ff;
}

.form-border textarea::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border select {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border select:focus {
    outline: none;
    border-bottom: 2px solid #5991ff;
}

.form-border-tep input[type="text"] {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-tep input[type="text"]:focus {
    outline: none;
    border-bottom: 2px solid #5991ff;
}

.form-border-tep input[type="text"]::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border-tep textarea {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-tep textarea:focus {
    outline: none;
    border-bottom: 2px solid #5991ff;
}

.form-border-tep textarea::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border-tep select {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-tep select:focus {
    outline: none;
    border-bottom: 2px solid #014f42;
}

.form-border-second-tep input[type="text"] {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-second-tep input[type="text"]:focus {
    outline: none;
    border-bottom: 2px solid #014f42;
}

.form-border-second-tep input[type="text"]::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border-second-tep input[type="time"] {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-second-tep input[type="time"]:focus {
    outline: none;
    border-bottom: 2px solid #014f42;
}

.form-border-second-tep input[type="time"]::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border-second-tep input[type="date"] {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-second-tep input[type="date"]:focus {
    outline: none;
    border-bottom: 2px solid #014f42;
}

.form-border-second-tep input[type="date"]::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border-second-tep select {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-second-tep select:focus {
    outline: none;
    border-bottom: 2px solid #014f42;
}

.form-border-second-tep h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
}

.form-border-second-tep h3:after {
    content: "";
    position: absolute;
    display: block;
    height: 5px;
    background: #014f42;
    position: relative;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
}

.form-border-second input[type="text"] {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-second input[type="text"]:focus {
    outline: none;
    border-bottom: 2px solid #5991ff;
}

.form-border-second input[type="text"]::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border-second input[type="time"] {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-second input[type="time"]:focus {
    outline: none;
    border-bottom: 2px solid #5991ff;
}

.form-border-second input[type="time"]::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border-second input[type="date"] {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-second input[type="date"]:focus {
    outline: none;
    border-bottom: 2px solid #5991ff;
}

.form-border-second input[type="date"]::placeholder {
    color: rgba(40, 40, 40, 0.63);
}

.form-border-second select {
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    background-color: rgb(236, 236, 236);
    color: #000;
}

.form-border-second select:focus {
    outline: none;
    border-bottom: 2px solid #5991ff;
}

.form-border-second h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
}

.form-border-second h3:after {
    content: "";
    position: absolute;
    display: block;
    height: 5px;
    background: #5991ff;
    position: relative;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
}

.form-border h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
}

.form-border h3:after {
    content: "";
    position: absolute;
    display: block;
    height: 5px;
    background: #5991ff;
    position: relative;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
}

.form-border-tep h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
}

.form-border-tep h3:after {
    content: "";
    position: absolute;
    display: block;
    height: 5px;
    background: #014f42;
    position: relative;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
}

.button_lang {
    cursor: pointer;
    display: inline-block;
    padding: 0.25em 0em;
    border-radius: 10px;
    width: 5em;
    transition: 0.25s ease;
    border: 0;
}

.button_lang:hover {
    background: #789ff4;
    transition: 0.25s ease;
}

.current_lang {
    background: #789ff4;
}

.translation {
    text-align: center;
    margin: 0.5em;
}

.lang {
    display: none;
}

#main.indo .indo {
    display: block;
}

#main.en .en {
    display: block;
}

#main.es .es {
    display: block;
}

#main.de .de {
    display: block;
}

#banner-jsx {
    max-width: 100%;
    width: 100%;
}

.banner-yt {
    max-width: 100%;
    width: 100%;
    height: 100vh;
}

.marquee {
    background-color: #5991ff;
    width: 100%;
    height: 40px;
    overflow: hidden;
    list-style: none;
}

.marquee-content {
    display: flex;
    list-style: none;
    animation: scrolling 10s linear infinite;
}

@media (max-width: 992px) {
    .marquee {
        height: 25px;
    }
}

@media (max-width: 768px) {
    .marquee {
        height: 15px;
    }
}

.marquee-item {
    width: 100%;
    flex-shrink: 0;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-1000px);
    }
}

@media (max-width: 768px) {
    .marquee {
        height: 20px;
    }
}

.text-para p {
    font-size: 20px;
}

.text-para li {
    font-size: 20px;
}

@media (max-width: 768px) {
    .smallHead {
        font-size: 2rem;
    }
}

.modal-few {
    z-index: 10500;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.margin-exp {
    margin: auto;
    padding: 0;
}

.text-black {
    color: #000000 !important;
}

.card-box p {
    color: #000000 !important;
}


.card-box p:hover {
    color: #000000 !important;
}

.card-box-hotel {
    background-color: #ffff;
    height: 500px;
    transition: 1s;
}

.card-box-hotel:hover {
    transform: scale(1.1);
}