:root {
    --primary: #e2981d;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.my-6 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 35px;
    bottom: 100px;
    z-index: 99;
}

.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

figcaption {
    position: absolute;
    bottom: 0;
    color: #f3f3f3;
    padding: 7px 15px;
    margin: 2px 0;
    width: auto;
    background-color: #151719;
}

.img-brdr {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-brdr img {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    object-fit: cover;
}

.img-brdr::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 2rem;
    bottom: 2rem;
    border: 1px solid var(--primary);
}

.media-29191 {
    border: 1px solid #dfdfdf;
    padding: 40px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    position: relative;
    top: 0;
}

.media-29191 h3 {
    font-size: 20px;
    font-weight: 700;
}

.media-29191 .media-29191-icon img {
    width: 50px;
    margin-bottom: 30px;
}

[class^="icon-"],
[class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-parking img {
    position: absolute;
    opacity: 0.02;
    z-index: -1;
    inset: 0;
    padding: 50px;
}

.navbar-toggler {
    border: 0px solid #000 !important;
}

.navbar-toggler:focus {
    border: 0px solid #000 !important;
    outline: none;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

h2.logo {
    font-size: 22px;
    color: #0C2B4B;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


h2 span {
    font-size: 16px;
    color: var(--primary);
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.bg-dark {
    background-color: #151719 !important;
}

.bg-light {
    background-color: #f3f3f3 !important;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 60px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 17px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 90dvh;
}

.brdr {
    border: 3px dashed #dbd9d9;
    border-top: 0px solid #dbd9d9;
}

.bg-img {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .5)), url(../img/about-1.jpg) center center no-repeat;
}

.whatsapp {
    position: fixed;
    z-index: 150;
    bottom: 33px;
    right: 15px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    a.navbar-brand.border-end {
        border-right: 0 !important;
    }

    h2.logo span {
        display: none;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(58, 58, 58, 0.9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer p {
    font-weight: 500;
    font-size: 13px;
}

.footer h4 {
    font-weight: 500;
    font-size: 22px;
}

.footer h4::after {
    content: "";
    display: block;
    width: 65px;
    background-color: #e2981d !important;
    position: absolute;
    padding-top: 3px;
    margin-top: 3px;
}

.copyright {
    background: #000;
}

.copyright a {
    color: #868686;
}

.copyright a:hover {
    color: var(--light);
}

.small {
    font-size: 16px;
}