/*=========================================
#generall
==========================================*/
@font-face {
    font-family: 'baloo';
    src: url("../fonts/baloo.woff2") format("woff2"), url("../fonts/baloo.woff") format("woff");
}
body {
    font-family: "baloo" !important;
    font-size: 16px;
  	background: #000;
}
.br-5 {
    border-radius: 5px !important;
}
.br-10 {
    border-radius: 10px !important;
}
.br-15 {
    border-radius: 15px !important;
}
.br-20 {
    border-radius: 20px !important;
}
.br-25 {
    border-radius: 25px !important;
}
.br-50 {
    border-radius: 50% !important;
}

a {
     /*color: green !important; */
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
        sans-serif;
}
img {
    border-radius: 5px !important;
}

.img-gen{
    width: 100%;
    height: 20em;
}

.no_not{
    padding: 2em;
    text-align: center;
    font-size: 1.4em;
}

@media(max-width: 768px){
    .img-gen{
        height: 12em;
        width: 100%;
    }
    body {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
            sans-serif;
        color: #cdcdcd;
        background-color: #343a40 !important;
    }
}

/*--------------------------------------------------------------
# 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 #f29000;
    border-top-color: #e2eefd;
    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);
    }
}

/*--------------------------------------------------------------
# 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: 4px;
    background: #f29000;
    color: #fff;
    transition: all 0.4s;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: transparent;
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
    top: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
}

#header.header-scrolled {
    top: 0;
    padding: 0px;
    background-color: #000;
}

#header .logo img {
    height: 80px;
    width: 70px;
    padding: 0.3em;
}

@media (max-width: 992px) {
    #header {
        padding: 0px;
        top: 0;
    }
    #header .logo img {
        height: 80px;
        width: 50px;
        padding: 0.3em;
    }
}

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

.appointment-btn:hover {
    background: #3ac162;
    color: #fff;
}

@media (max-width: 768px) {
    .appointment-btn {
        /*margin: 0 48px 0 0;*/
        /*padding: 6px 18px;*/
    }
    #header .logo img {
        max-height: 50px;
    }
    #header {
        background: transparent;
        transition: all 0.5s;
        z-index: 997;
        padding: 8px 0;
        top: 0px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }
    #header.header-scrolled {
        top: 0;
        padding: 8px;
    }
}

/*--------------------------------------------------------------
# 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 28px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #cdcdcd;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 600;
    padding: 0 3px;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
        sans-serif;
}

.nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f29000;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
}

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

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 26px;
    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;
}

.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: #062b5b;
}

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

.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";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 20px;
    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;
}

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

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

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

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

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #f29000;
    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(9, 9, 9, 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;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
    border-radius: 5px !important;
}

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

.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;
}

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

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 1.5em;
    font-weight: 500;
    /* text-transform: uppercase; */
    color: #cdcdcd;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

/*=========================================
#banner
==========================================*/
@media (min-width: 768px) {
    .banner-bg-con {
        height: 100vh;
        background-image: url("../../media/images/offline.jpg");
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: 100% 100vh;
    }
    .banner-con { 
        height: 85vh;
        background-color: transparent;
    }
    .banner-hd {
        font-weight: bold;
        text-align: center;
        font-size: 2em;
        /* margin-top: 2em; */
        color: #eee;
    }
    .banner-quote {
        text-align: center;
        color: #f29000;
        font-size: 1.4em;
        font-weight: bold;
    }
}
@media (max-width: 768px) {
    .banner-bg-con {
        height: 100vh;
        background-image: url("../../media/images/offline.jpg");
        background-repeat: no-repeat;
        background-size: 50em 100vh;
        background-position: bottom right;
    }
    .banner-con {
        height: 70vh;
        background-color: transparent;
    }
    .banner-hd {
        font-weight: bold;
        text-align: center;
        font-size: 1.8em;
        margin-top: 2em;
        color: #eee;
    }
    .banner-quote {
        text-align: center;
        color: #f29000;
        font-size: 1.1em;
    }
}

/*=========================================
#basic info
==========================================*/
@media (min-width: 768px) {
    .basic_info-con {
        height: 15vh;
    }
    .basic-info {
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 2.5px;
        color: aliceblue;
    }
    .basic-info i {
        font-size: 3em;
        padding: 0.5em;
        color: #f29000;
    }
    .basic-info h1 {
        font-size: 1.4em;
        padding: 0.2em 1em 0 1em;
        margin: 0;
        font-weight: bold;
    }
    .basic-info p {
        font-size: 1em;
        padding: 0 1em 0 1em;
        margin: 0;
    }
}
@media (max-width: 768px) {
    .basic_info-con {
        height: 20vh;
    }
    .basic-info {
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 2.5px;
        color: aliceblue;
    }
    .basic-info i {
        font-size: 1.5em;
        padding: 0.5em 0em;
        color: #f29000;
    }
    .basic-info h1 {
        font-size: 1em;
        padding: 0.2em 0.1em 0 0.1em;
        margin: 0;
        font-weight: bold;
    }
    .basic-info p {
        font-size: 0.8em;
        padding: 0 0.5em 0 0.5em;
        margin: 0;
    }
    .to-content-con {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
    }
    .to-content-hide {
        opacity: 0;
        transition: all 0.5s;
    }
    .to-content-show {
        opacity: 1;
        transition: all 0.5s;
    }
}

/*==========================================
#about us
===========================================*/
@media (min-width: 768px) {
    .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: #5fcf80;
    }

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

    .learn-more-btn:hover {
        background: #3ac162;
        color: #fff;
    }
    .learn-more-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
    .about-img {
        height: 20em;
    }
}

@media (max-width: 768px) {
    .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: #5fcf80;
    }

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

    .learn-more-btn:hover {
        background: #3ac162;
        color: #fff;
    }
    .learn-more-btn {
        padding: 6px 18px;
    }
}

/*=========================================
# Team
============================================*/
.team {
    padding: 60px 0;
}

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    /* background: #fff; */
    box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .member-img img {
        height: 10em;
        object-fit: cover;
    }
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: #cdcdcd;
    margin: 0 3px;
    padding-top: 7px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    background: #f29000;
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    background: #3ac162;
}

.team .member .social i {
    font-size: 18px;
}

.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #f29000;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #eee;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #cdcdcd;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/* --------------------------------------------------------
#breadcrumbs
---------------------------------------------------------*/
.breadcrumbs {
    margin-top: 80px;
    padding: 30px 0;
    color: #eee;
}

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

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

.breadcrumbs p {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: bold;
}

/*--------------------------------------------------------------
# About-page
--------------------------------------------------------------*/
.page-about .icon-boxes h4 {
    font-size: 18px;
    color: #4b7dab;
    margin-bottom: 15px;
}

.page-about .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c4964;
    margin-bottom: 15px;
}

.page-about .icon-box {
    margin-top: 40px;
}

.page-about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #3ac162;
    border-radius: 50px;
    transition: 0.5s;
}

.page-about .icon-box .icon i {
    color: #3ac162;
    font-size: 32px;
}

.page-about .icon-box:hover .icon i {
    color: #3ac162;
}

.page-about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.page-about .icon-box .title a {
    color: #eee;
    transition: 0.3s;
}

.page-about .icon-box .title a:hover {
    color: #3ac162;
    cursor: default;
}

.page-about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

/*=========================================
# info box
============================================*/
@media (min-width: 768px) {
    .coz-cat-con:hover span {
        color: #f29000 !important;
    }
    .coz-cat-con-br {
        border-right: 1px solid #eee !important;
    }
    .info-box {
        /* box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2); */
        border-radius: 0.25rem;
        background: #ffffff;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 1rem;
        min-height: 80px;
        padding: 0.5rem;
        position: relative;
        border: 1px solid #f29000;
    }

    .info-box .info-box-icon {
        border-radius: 0.25rem;
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        font-size: 1.875rem;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        width: 70px;
    }

    .info-box .info-box-icon > img {
        max-width: 100%;
    }

    .info-box .info-box-content {
        -ms-flex: 1;
        flex: 1;
        padding: 5px 10px;
    }

    .info-box .info-box-number {
        display: block;
        font-weight: 700;
    }

    .info-box .progress-description,
    .info-box .info-box-text {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .pac-con {
        background-image: url("../../media/images/offline.jpg");
        background-size: 100%;
        border: 1px solid #f29000;
    }
    .pac-con .pac-bg {
        padding: 2em 1em;
        background: rgba(0, 0, 0, 0.9);
    }
}
@media (max-width: 768px) {
    .coz-cat-con:hover span {
        color: #f29000 !important;
    }
    .info-box {
        /* box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2); */
        border-radius: 0.25rem;
        background: #ffffff;
        display: -ms-flexbox;
        /* display: flex; */
        margin-bottom: 1rem;
        position: relative;
        border: 1px solid #f29000;
    }

    .info-box .info-box-icon {
        border-radius: 0.25rem;
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        font-size: 1em;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        width: 40px;
        display: none !important;
    }

    .info-box .info-box-icon > img {
        max-width: 100%;
    }

    .info-box .info-box-content {
        -ms-flex: 1;
        flex: 1;
        padding: 5px 10px;
    }

    .info-box .info-box-number {
        display: block;
        font-weight: 700;
        font-size: 0.6em;
    }

    .info-box .progress-description,
    .info-box .info-box-text {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.8em;
    }
    .pac-con {
        background-image: url("../../media/images/offline.jpg");
        background-size: 100%;
        border: 1px solid #f29000;
    }
    .pac-con .pac-bg {
        padding: 3em 0em;
        background: rgba(0, 0, 0, 0.9);
        font-size: 0.8em;
    }
}

/* =========================================
# model of training
==============================================*/
.model-con {
    border-bottom: 0px solid #f29000;
}

/* ========================================
#news
============================================*/
@media (min-width: 768px) {
    .news-img {
        width: 100%;
        height: 4.5em;
        object-fit: cover;
    }
    .news-con {
        color: gray;
        overflow: hidden;
    }
    .news-con h1 {
        font-size: 1em;
        font-weight: bold;
        margin-bottom: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .news-con p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1em;
        margin: 0;
    }
    .latest-news-img {
        width: 100%;
        height: 18em;
        object-fit: cover;
    }
    .media > .pull-left {
        margin-right: 29px;
    }
    .media .dateEl {
        display: inline-block;
        text-align: center;
        background: #f9f9f9;
        padding: 15px 0 20px 0;
        color: forestgreen;
        font-size: 16px;
        font-weight: 700;
        width: 100px;
        text-transform: uppercase;
    }
    .media .dateEl em {
        display: block;
        color: #f29000;
        font-size: 42px;
        line-height: 1;
        margin-bottom: 5px;
        font-style: normal;
    }
    .media .meta-data {
        margin: 0 0 7px 0;
    }
    .media .longDate, .media .timeEl {
        display: inline-block;
        font-size: 14px;
        line-height: 14px;
        font-family: 'PT Sans Narrow', sans-serif;
        font-weight: 700;
        color: #f29000;
        text-transform: uppercase;
        min-height: 16px;
    }
    .media .longDate {
        padding: 0 10px 0 24px;
        border-right: 1px solid #eb5b4c;
        margin-left: -23px;
    }
    .blogPost--small {
        color: #7c7b7b;
        /* margin: 20px 30px 40px 0; */
    }
    .blogPost--small .media > .pull-left {
        margin-right: 0px;
    }
    .blogPost--small .date, .blogPost--small .dateEl2 {
        display: block;
        text-align: center;
        padding: 5px;
        color: #f29000;
        background: #fff;
        width: 4em;
    }
    .blogPost--small .date span, .blogPost--small .dateEl2 span {
        display: inline-block;
        font-size: 1em;
        line-height: 1;
        letter-spacing: 0em;
        text-indent: -0.1em;
        color: #f29000;
        font-weight: bold;
    }
    .blogPost--small .date small, .blogPost--small .dateEl2 small {
        display: block;
        font-size: 0.7em;
        text-transform: uppercase;
        color: green;
        font-weight: bold;
    }
    .blogPost--small h4 {
        margin: 0;
        font-size: 1em;
        /* text-transform: uppercase; */
    }
}
@media (max-width: 768px) {
    .news-img {
        width: 100%;
        height: 4.5em;
        object-fit: cover;
    }
    .news-con {
        color: gray;
        overflow: hidden;
    }
    .news-con h1 {
        font-size: 1em;
        font-weight: bold;
        margin-bottom: 0;
    }
    .news-con p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1em;
        margin: 0;
    }
    .latest-news-img {
        width: 100%;
        height: 12em;
        object-fit: cover;
    }
    .media > .pull-left {
        margin-right: 29px;
    }
    .media .dateEl {
        display: inline-block;
        text-align: center;
        background: #f9f9f9;
        padding: 15px 0 20px 0;
        color: forestgreen;
        font-size: 16px;
        font-weight: 700;
        width: 100px;
        text-transform: uppercase;
    }
    .media .dateEl em {
        display: block;
        color: #f29000;
        font-size: 42px;
        line-height: 1;
        margin-bottom: 5px;
        font-style: normal;
    }
    .media .meta-data {
        margin: 0 0 7px 0;
    }
    .media .longDate, .media .timeEl {
        display: inline-block;
        font-size: 14px;
        line-height: 14px;
        font-family: 'PT Sans Narrow', sans-serif;
        font-weight: 700;
        color: #f29000;
        text-transform: uppercase;
        min-height: 16px;
    }
    .media .longDate {
        padding: 0 10px 0 24px;
        border-right: 1px solid #eb5b4c;
        margin-left: -23px;
    }
    .blogPost--small {
        color: #7c7b7b;
        /* margin: 20px 30px 40px 0; */
    }
    .blogPost--small .media > .pull-left {
        margin-right: 0px;
    }
    .blogPost--small .date, .blogPost--small .dateEl2 {
        display: block;
        text-align: center;
        padding: 5px;
        color: #f29000;
        background: #fff;
        width: 4em;
    }
    .blogPost--small .date span, .blogPost--small .dateEl2 span {
        display: inline-block;
        font-size: 1em;
        line-height: 1;
        letter-spacing: 0em;
        text-indent: -0.1em;
        color: #f29000;
        font-weight: bold;
    }
    .blogPost--small .date small, .blogPost--small .dateEl2 small {
        display: block;
        font-size: 0.7em;
        text-transform: uppercase;
        color: green;
        font-weight: bold;
    }
    .blogPost--small h4 {
        margin: 0;
        font-size: 1em;
        /* text-transform: uppercase; */
    }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
@media (min-width: 768px) {
    .gallery .gallery-item {
        overflow: hidden;
        /* border-top: 10px solid #fff; */
        /* border-left: 10px solid #fff; */
        /* border-right: 10px solid #fff; */
        height: 13em;
        border-radius: 5px;
    }

    .gallery .gallery-item img {
        transition: all ease-in-out 0.4s;
        height: 15em;
        width: 100%;
        object-fit: cover;
    }

    .gallery .gallery-item:hover img {
        transform: scale(1.1);
        opacity: 0.2;
    }
    .gallery-cap-con {
        margin-top: 20%;
        transition: all ease-in-out 0.5s;
    }
    .gallery .gallery-item:hover .gallery-cap-con {
        margin-top: 25%;
    }

    .gallery-hd {
        text-align: center;
        font-size: 1em;
        font-weight: bold;
        color: #fff;
        opacity: 0;
        transition: 1s ease;
    }
    .gallery-view-btn {
        text-align: center;
        font-size: 1em;
        color: #eee;
        width: 80px;
        border-radius: 5px;
        padding: 0.2em;
        opacity: 0;
        transition: 1s ease;
    }
    .gallery .gallery-item:hover .gallery-hd {
        opacity: 1;
        transition: 1s ease;
    }
    .gallery .gallery-item:hover .gallery-view-btn {
        opacity: 1;
        transition: 1s ease;
    }
}

@media (max-width: 768px) {
    .gallery .gallery-item {
        overflow: hidden;
        /* border-top: 10px solid #fff; */
        /* border-left: 10px solid #fff; */
        /* border-right: 10px solid #fff; */
        border-radius: 5px;
    }

    .gallery .gallery-item img {
        transition: all ease-in-out 0.4s;
        height: 10em;
        width: 100%;
        object-fit: cover;
    }

    .gallery .gallery-item:hover img {
        transform: scale(1.1);
        opacity: 0.6;
    }
    .gallery-cap-con {
        margin-top: 20%;
        transition: all ease-in-out 0.5s;
    }
    .gallery .gallery-item:hover .gallery-cap-con {
        margin-top: 25%;
    }

    .gallery-hd {
        text-align: center;
        font-size: 1em;
        font-weight: bold;
        color: #fff;
        opacity: 0;
        transition: 1s ease;
    }
    .gallery-view-btn {
        text-align: center;
        font-size: 1em;
        color: #eee;
        width: 80px;
        border-radius: 5px;
        padding: 0.2em;
        opacity: 0;
        transition: 1s ease;
    }
    .gallery .gallery-item:hover .gallery-hd {
        opacity: 1;
        transition: 1s ease;
    }
    .gallery .gallery-item:hover .gallery-view-btn {
        opacity: 1;
        transition: 1s ease;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.work-box {
    margin-bottom: 3rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #fff;
}

.work-box:hover img {
    transform: scale(1.3);
}

.work-img {
    display: block;
    overflow: hidden;
}

.work-img img {
    transition: all 1s;
    height: 12em;
    width: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    .work-img img {
        transition: all 1s;
        height: 10em;
    }
}

.work-content {
    padding: 2rem 3% 1rem 4%;
}

.work-content .w-more {
    color: #eee;
    font-size: 0.8rem;
}

.work-content .w-more .w-ctegory {
    color: #f29000;
    font-weight: bold;
}

.work-content .w-like {
    font-size: 2.5rem;
    color: #000;
    float: right;
}

.work-content .w-like a {
    color: #000;
    background-color: #f29000;
}

.work-content .w-like .num-like {
    font-size: 0.7rem;
}

.w-title {
    font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
    height: 25em;
    object-fit: cover;
    border-radius: 5px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #0078ff;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #0078ff;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(78, 78, 78, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*=========================================
# footer
============================================*/
.cu_footer {
    background-color: #efffff;
    padding: 0em 0em 0em 0em;
}
.cu_footer h4 {
    font-size: 1em;
    font-weight: bold;
    color: silver;
}
.cu_footer h3 {
    font-size: 1.4em;
    font-weight: bold;
    color: #24255b;
}
.cu_footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cu_footer a {
    font-size: 15px;
    color: #cdcdcd;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}
.cu_footer a:hover {
    color: #f29000;
}
.cu_footer p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
    color: #cdcdcd;
}
.cu_footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #24255b;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.cu_footer .social-links a:hover {
    background: #21214a;
    color: #fff;
    text-decoration: none;
}
.cu_footer .footer-newsletter {
    font-size: 15px;
}

.cu_footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: silver;
    position: relative;
    padding-bottom: 0px;
}

.cu_footer .footer-newsletter form {
    margin-top: 15px;
    background: #fff;
    padding: 2px 10px;
    position: relative;
    border-radius: 5px;
    text-align: left;
    border: 1px solid #e0e5e2;
}

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

.cu_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: #f29000;
    color: #fff;
    transition: 0.3s;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

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

/* ============================
owl
===============================*/
.owl-dots {
    margin-top: -50px;
    text-align: center;
}

.owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.owl-dot.active {
    background-color: #f29000 !important;
}

.owl-nav {
    margin-top: 5px;
    text-align: center;
}
.owl-prev {
    background-color: #000 !important;
    margin-right: 1em;
}
.owl-next {
    background-color: #000 !important;
    margin-left: 1em;
}

/*--------------------------------------------------------------
# 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 {
    height: 12em;
    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: gray;
    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: #f29000;
}

.events .read-more a {
    color: #f29000 !important;
}

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

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

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


/*--------------------------------------------------------------
# youtube play btn
--------------------------------------------------------------*/
.video-box {
    background-size: cover;
    height: 18em;
}

.play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(rgb(242, 144, 0) 50%, rgba(242, 144, 0, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(242, 144, 0, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
    border-left: 15px solid rgb(242, 144, 0);
    transform: scale(20);
}

.play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}
.youtube-img-bg{
    border-radius: 15px;
    width: 100%;
    height: 18em;
}
.youtube-img-bg-con{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 18em;
}
@media(max-width: 768px){
    .youtube-img-bg{
        border-radius: 15px;
        width: 100%;
        height: 14em;
    }
    .youtube-img-bg-con{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }
    .video-box {
        background-size: cover;
        height: 14em;
    }
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

