

/**
 * jQuery Flexdatalist basic stylesheet.
 *
 * Version:
 * 2.2.1
 *
 * Github:
 * https://github.com/sergiodlopes/jquery-flexdatalist/
 *
 */
.flexdatalist-results {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #444;
    border-top: none;
    background: #fff;
    z-index: 100000;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    color: #333;
    list-style: none;
    margin: 0;
    padding: 0;
}
.flexdatalist-results li {
    border-bottom: 1px solid #ccc;
    padding: 8px 15px;
    font-size: 14px;
    line-height: 20px;
}
.flexdatalist-results li span.highlight {
    font-weight: 700;
    text-decoration: underline;
}
.flexdatalist-results li.active {
    background: #2B82C9;
    color: #fff;
    cursor: pointer;
}
.flexdatalist-results li.no-results {
    font-style: italic;
    color: #888;
}

/**
 * Grouped items
 */
.flexdatalist-results li.group {
    background: #F3F3F4;
    color: #666;
    padding: 8px 8px;
}
.flexdatalist-results li .group-name {
    font-weight: 700;
}
.flexdatalist-results li .group-item-count {
    font-size: 85%;
    color: #777;
    display: inline-block;
    padding-left: 10px;
}

/**
 * Multiple items
 */
.flexdatalist-multiple:before {
    content: '';
    display: block;
    clear: both;
}
.flexdatalist-multiple {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    cursor: text;
}
.flexdatalist-multiple.disabled {
    background-color: #eee;
    cursor: default;
}
.flexdatalist-multiple:after {
    content: '';
    display: block;
    clear: both;
}
.flexdatalist-multiple li {
    display: inline-block;
    position: relative;
    margin: 5px;
    float: left;
}
.flexdatalist-multiple li.input-container,
.flexdatalist-multiple li.input-container input {
    border: none;
    width: 40px;
    height: auto;
    padding: 0 0 0 4px;
    line-height: 24px;
}
.flexdatalist-multiple li.value {
    display: inline-block;
    padding: 2px 25px 2px 7px;
    background: #eee;
    border-radius: 3px;
    color: #777;
    line-height: 20px;
}
.flexdatalist-multiple li.toggle {
    cursor: pointer;
    transition: opacity ease-in-out 300ms;
}
.flexdatalist-multiple li.toggle.disabled {
    text-decoration: line-through;
    opacity: 0.80;
}

.flexdatalist-multiple li.value span.fdl-remove {
    font-weight: 700;
    padding: 2px 5px;
    font-size: 20px;
    line-height: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.70;
}
.flexdatalist-multiple li.value span.fdl-remove:hover {
    opacity: 1;
}






/**
 * Owl Carousel v2.2.1
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }






/* -----------------------------------
     custom CSS
-------------------------------------*/
@charset "utf-8";

body, html {
    font-size: 16px;
    color: #505050;
    font-family: 'Roboto Condensed', sans-serif;
    vertical-align: baseline;
    line-height: 26px;
    font-weight: 400;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 26px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #212121;
    margin: 0 0 26px;
    font-weight: 700;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

a {
    color: #212121;
    transition: all .3s ease 0s;
    text-decoration: none !important;
    outline: 0 !important;
}

    a:active, a:hover {
        text-decoration: none;
        outline: 0 none;
        color: red;
    }

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.clear {
    clear: both;
}

::-moz-selection {
    background: red;
    text-shadow: none;
    color: #fff;
}

::selection {
    background: red;
    text-shadow: none;
    color: #fff;
}

.sec-spacer {
    padding: 100px 0;
}

.sec-spacer-2 {
    padding: 90px 0;
}

.sec-spacer-3 {
    padding: 10px 0 20px 0px;
}

.bg-fixed {
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.img-border {
    border: 3px solid red;
}

.courses-intro-img {
    width: 200px;
    height: 200px;
    margin-top: -100px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

.bg-testimonial {
    background-image: url(../image/img/bg-testimonial.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.bg-footer {
    background-image: url(../image/img/bg-footer.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.bg-red {
    background-color: red;
}

.bg-black {
    background: #090909;
}

.bg-gray {
    background-color: #e0e0e0;
}

.btn-red {
    text-transform: uppercase;
    color: #fff;
    background-color: red;
    margin-top: 15px;
    border: none;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-weight: 600;
    padding: 0 26px;
    cursor: pointer;
    transition: .4s;
    -webkit-transition: .4s;
    -ms-transition: .4s;
    border-radius: 0;
}

    .btn-red:hover {
        background: #212121;
        color:#fff;
    }

.btn-red-sm {
    text-transform: uppercase;
    color: #fff;
    background-color: red;
    margin-top: 5px;
    border: none;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    padding: 0 15px;
    cursor: pointer;
    transition: .4s;
    -webkit-transition: .4s;
    -ms-transition: .4s;
    border-radius: 0;
}

    .btn-red-sm:hover {
        background: #212121;
        color:#fff;
    }

.drak-color .owl-nav .owl-next, .drak-color .owl-nav .owl-prev, .drak-color .sec-title h3 {
    color: #fff;
}

.sec-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

    .sec-title h1 {
        font-size: 30px;
        line-height: 24px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .sec-title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
        width: 100px;
        background: red;
    }

.sec-title-2 h1 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sec-title-2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100px;
    background: #fff;
}

.sec-title-2.text-center:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.sec-title.text-center:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.sec-title.text-right:after {
    left: auto;
    right: 0;
}

.sec-title.text-right .view-more {
    right: auto;
    left: 0;
}

.sec-title p {
    margin-bottom: 0;
    font-size: 16px;
}

.sec-title .view-more {
    position: absolute;
    right: 0;
}

    .sec-title .view-more a {
        font-weight: 600;
        font-size: 15px;
    }

.sec-title.white-text h1 {
    color: #fff;
}

.sec-title.white-text p {
    color: rgba(255, 255, 255, .6);
}

.sec-title-2 {
    position: relative;
}

    .sec-title-2 h1 {
        position: relative;
        font-size: 30px;
        line-height: 24px;
        margin-bottom: 25px;
        padding-bottom: 26px;
        text-transform: uppercase;
    }

        .sec-title-2 h1:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 100px;
            background: red;
        }

    .sec-title-2 .view-more {
        position: absolute;
        right: 0;
        bottom: 0;
    }

        .sec-title-2 .view-more a {
            font-weight: 700;
            font-size: 14px;
        }

    .sec-title-2.text-center h1:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .sec-title-2.text-right h1:after {
        left: auto;
        right: 0;
    }

    .sec-title-2.text-right .view-more {
        right: auto;
        left: 0;
    }

    .sec-title-2 p {
        margin-bottom: 0;
        font-size: 16px;
    }

.right_menu_togle .search-wrap button {
    color: red;
}

.padding-0 {
    padding: 0 !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pb-170 {
    padding-bottom: 170px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-31 {
    margin-top: 31px !important;
}

.sparator-15 {
    height: 15px;
    clear: both;
}

.ml-15 {
    margin-left: 15px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-65 {
    margin-top: 65px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-85 {
    margin-top: 85px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-95 {
    margin-top: 95px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.margin-remove {
    margin: 0 !important;
}

.w-100p {
    width: 100%
}

.p2 {
    padding-left: 2px;
    padding-right: 2px;
}

.display-table {
    display: table;
    height: 100%;
    width: 100%
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.white-color {
    color: #fff !important;
}

.owl-controls .owl-nav > div {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: red;
    color: #fff;
    transform: translateY(-50%);
    font-size: 30px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

    .owl-controls .owl-nav > div:hover {
        background-color: #090909;
        color: red;
    }

.owl-controls .owl-nav .owl-prev {
    left: -60px;
}

.owl-controls .owl-nav .owl-next {
    right: -60px;
}

.co-carousel .owl-controls .owl-nav > div {
    opacity: 1;
}

.co-navigation-2 {
    padding-bottom: 80px;
}

    .co-navigation-2 .owl-controls .owl-nav {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

        .co-navigation-2 .owl-controls .owl-nav > div {
            position: initial;
            display: inline-block;
            transform: none;
            opacity: 1 !important;
        }

        .co-navigation-2 .owl-controls .owl-nav .owl-next {
            margin-left: 12px;
        }

    .co-navigation-2 .owl-stage-outer {
        padding-bottom: 0 !important;
    }

.co-menu {
    float: left;
    clear: both;
    width: 100%;
    font-size: 0;
    position: relative;
}

    .co-menu a, .co-menu div, .co-menu i, .co-menu li, .co-menu p, .co-menu ul {
        border: 0;
        margin: 0;
        padding: 0;
    }

    .co-menu li {
        display: block;
        vertical-align: top;
        position: relative;
    }

    .co-menu a {
        display: block;
        padding: 16px;
    }

    .co-menu .row {
        float: left;
        width: 100%;
        position: relative;
    }

    .co-menu ul ul {
        position: absolute;
        top: 100%;
        width: 100%;
        display: none;
        background-color: #fff;
    }

        .co-menu ul .co-mega-menu ul.visible ul.sub-menu, .co-menu ul ul.visible {
            display: block;
            z-index: 17;
        }

    .co-menu li:hover > ul.mega-menu > li > ul {
        position: relative;
    }

    .co-menu ul ul li {
        border-bottom: 1px solid #222;
    }

        .co-menu ul ul li.mega-menu-container, .co-menu ul ul li:last-child {
            border-bottom: 0;
        }

        .co-menu ul ul li:last-child {
            border-bottom: none;
        }

    .co-menu .sub-menu, .mega-menu {
        -webkit-box-shadow: 0 4px 13px -3px #232323;
        -moz-box-shadow: 0 4px 13px -3px #232323;
        -ms-box-shadow: 0 4px 13px -3px #232323;
        -o-box-shadow: 0 4px 13px -3px #232323;
        box-shadow: 0 4px 13px -3px #232323;
    }

.mega-co h2 {
    position: absolute;
    bottom: 30px;
    margin: 0 !important;
    padding: 5px 28px;
    left: 25px;
    background: rgba(0, 0, 0, .8);
    color: #fff;
}

.mega-co ul li a {
    position: relative;
}

#inner .co-menu li a {
    color: #000;
}

#inner .co-menu li li a {
    color: #fff;
}

.co-menu a {
    color: #212121;
    -webkit-tap-highlight-color: transparent;
}

.multi ul ul {
    background: 0 0 !important;
}

.multi ul li a {
    font-weight: 400 !important;
    font-size: 13px !important;
}

.nav-menu > li > a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    height: 55px;
    line-height: 55px;
}

.co-menu a {
    padding: 0 20px;
}

.home1 .co-menu ul.nav-menu > li > a, .home3 .co-menu ul.nav-menu > li > a, .inner-page .co-menu ul.nav-menu > li > a {
    padding: 0;
}

.home1 .co-menu ul.nav-menu > li, .home3 .co-menu ul.nav-menu > li, .inner-page .co-menu ul.nav-menu > li {
    margin-right: 32px;
}

    .home1 .co-menu ul.nav-menu > li:last-child {
        margin-right: 0;
    }

.inner-page .co-menu ul {
    margin-right: 13px;
}

.home4 .co-menu a, .home5 .co-menu a {
    padding: 35px 14px 35px;
}

.co-menu li i {
    margin-right: 10px;
    font-size: 16px;
    transform: translate3d(0, 0, 0);
}

.nav-menu .co-mega-menu > a span:after, .nav-menu > .menu-item-has-children > a span:after {
    content: "\f107";
    font-family: FontAwesome;
    float: right;
    margin: 2px 0 0 5px;
}

.mega-menu h1, .mega-menu h2, .mega-menu h3 {
    margin-bottom: 24px;
}

.nav-menu li .mega-menu li a {
    padding: 0;
    width: auto;
    display: inline-block;
}

.co-menu ul, .home1 .co-menu ul {
    text-align: center;
}

.co-menu li {
    font-size: 14px;
}

.co-menu .sub-menu li a {
    padding: 5px 10px;
    font-size: 11px;
}

.co-menu ul ul a {
    font-size: 14px;
    text-align: left;
}

.mega-menu p {
    margin: 12px 0;
}

.mega-menu li p a {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

.nav-menu {
    position: relative;
}

    .nav-menu .co-mega-menu {
        position: relative;
    }

    .nav-menu .mega-menu {
        left: 0;
        width: 100%;
        position: absolute;
    }

        .nav-menu .mega-menu .mega-menu-container {
            float: left;
            width: 100%;
            position: relative;
            padding: 0 6px;
        }

        .nav-menu .mega-menu .sub-menu {
            display: block;
            position: relative;
            width: auto;
            padding: 0;
            min-height: initial;
            box-shadow: none;
        }

            .nav-menu .mega-menu .sub-menu a {
                padding: 5px;
            }

            .nav-menu .mega-menu .sub-menu a, .nav-menu .mega-menu .sub-menu li {
                width: 100%
            }

        .nav-menu .mega-menu li div.mega-menu-img a {
            float: left;
            width: 100%;
            min-height: 230px;
            padding: 12px;
        }

            .nav-menu .mega-menu li div.mega-menu-img a:hover img {
                -webkit-transform: scale(1.1);
                -moz-transform: scale(1.1);
                -o-transform: scale(1.1);
                -ms-transform: scale(1.1);
                transform: scale(1.1);
            }

.multi .sub-menu li img {
    width: 50px;
    transition: all .5s ease 0s;
    border-radius: 100%
}

.multi .sub-menu li:hover img {
    transform: rotate(100deg);
}

.multi .sub-menu li {
    margin-bottom: 15px;
}

.multi .sub-menu li {
    padding-bottom: 15px;
}

.multi .col-3 .sub-menu li a {
    display: inline;
}

.nav-menu .mega-menu-img h2 {
    font-size: 16px;
    margin: 12px 0 0 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu .mega-menu > li .mega-menu-img-meta {
    padding: 0;
    width: auto;
    position: relative;
    height: auto;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
}

#map {
    height: 500px;
}

.nav-menu ul {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.mega-menu-img-meta img {
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out;
    -ms-transition: -ms-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}

.co-menu .line {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    text-align: left;
    color: #fff;
    padding-left: 15px;
}

.co-menu img {
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}

@media screen and (min-width:500px) {
    .co-menu h1 {
        font-size: 3.8rem;
        line-height: 1.2em;
    }

    .co-menu h2 {
        font-size: 2rem;
        line-height: 1.2em;
    }

    .co-menu h3 {
        font-size: 3.3rem;
    }

    .co-menu h4 {
        font-size: 2.8rem;
    }
}

@media screen and (min-width:992px) {
    .co-menu {
        height: auto !important;
    }

        .co-menu h1 {
            font-size: 3.2rem;
            line-height: 1.2em;
        }

        .co-menu h2 {
            font-size: 2.5rem;
            line-height: 1.2em;
        }

        .co-menu h3 {
            font-size: 2rem;
        }

        .co-menu h4 {
            font-size: 1rem;
        }

        .co-menu .row [class*=col-] {
            display: block;
            width: 100%;
            min-height: 5px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            -ms-box-sizing: border-box;
            box-sizing: border-box;
            float: left;
            margin-left: 2.5%
        }

            .co-menu .row [class*=col-]:ficot-child {
                margin-left: 0 !important;
            }

        .co-menu .row .col-12 {
            width: 100%
        }

        .co-menu .row .col-11 {
            width: 91.45833333333334%
        }

        .co-menu .row .col-10 {
            width: 82.91666666666667%
        }

        .co-menu .row .col-9 {
            width: 74.375%
        }

        .co-menu .row .col-8 {
            width: 65.83333333333334%
        }

        .co-menu .row .col-7 {
            width: 57.29166666666667%
        }

        .co-menu .row .col-6 {
            width: 48.75%
        }

        .co-menu .row .col-5 {
            width: 40.208333333333336%
        }

        .co-menu .row .col-4 {
            width: 31.666666666666668%
        }

        .co-menu .row .col-3 {
            width: 23.125%
        }

        .co-menu .row .col-2 {
            width: 14.583333333333334%
        }

        .co-menu .row .col-1 {
            width: 6.041666666666667%
        }

        .co-menu li {
            display: inline-block;
        }

    .nav-menu .co-mega-menu {
        position: static;
    }

    .co-menu ul ul.visible {
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu .co-mega-menu > span, .nav-menu .menu-item-has-children > span {
        display: none;
    }

    .co-menu-toggle {
        display: none;
    }

    .nav-menu div.sub-menu-close {
        display: none;
    }

    .co-menu li:active > ul, .co-menu li:focus > ul, .co-menu li:hover ul.mega-menu .sub-menu, .co-menu li:hover > ul, .co-menu li:hover > ul.mega-menu > li > ul {
        display: block;
        z-index: 17;
    }

    .co-menu ul ul li > ul {
        left: 100%
    }

    .co-menu ul ul ul {
        top: 0;
    }

    .co-menu ul ul {
        width: auto;
    }

        .co-menu ul ul a {
            width: 250px;
        }

    .nav-menu .mega-menu li div.mega-menu-img a {
        width: 25%
    }

    .nav-menu .mega-menu li div.mega-menu-innner .single-magemenu {
        width: 25%;
        float: left;
        padding: 0 12px;
    }
}

@media screen and (min-width:0\0) {
    .co-menu img {
        width: 100%
    }

    .nav-menu .co-mega-menu a, .nav-menu .menu-item-has-children a {
        padding-right: 24px;
    }

        .nav-menu .co-mega-menu a:after, .nav-menu .menu-item-has-children a:after {
            position: static;
            float: right;
            margin: 0 -16px 0 0;
        }
}

@media only screen and (max-width:991px) {
    .co-menu .row [class*=col-] {
        float: left !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .nav-menu > li > a {
        border-bottom: 1px solid #131313;
        color: #212121 !important;
        text-align: left;
    }

    .nav-menu > li:last-child > a {
        border-bottom: none;
    }

    .nav-menu span.co-menu-parent i {
        margin: 0;
    }

    .nav-menu .co-mega-menu > span.co-menu-parent, .nav-menu > .menu-item-has-children > span.co-menu-parent {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        padding: 19px;
        cucoor: pointer;
        line-height: 15px;
        background: #181818;
        border-left: 1px solid #131313;
        -webkit-tap-highlight-color: transparent;
    }

        .nav-menu .co-mega-menu > span.co-menu-parent:hover, .nav-menu > .menu-item-has-children > span.co-menu-parent:hover {
            color: #fff;
        }

    .nav-menu > .menu-item-has-children .sub-menu .menu-item-has-children span.co-menu-parent {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        padding: 10px 20px;
        cucoor: pointer;
        line-height: 10px;
        background-color: #e0e0e0;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu div.sub-menu-close {
        float: left;
        width: 100%;
        padding: 16px;
        cucoor: pointer;
        background: #e0e0e0;
        color: #000;
        font-size: 14px;
        text-align: center;
    }

        .nav-menu div.sub-menu-close i {
            font-size: 16px;
            margin-right: 5px;
        }

    .co-menu .sub-menu {
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
        -moz-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
        -ms-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
        -o-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
        box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    }

    .co-menu-close {
        height: 0;
        overflow: hidden !important;
    }

    .co-menu-toggle {
        padding: 14.5px;
        display: block;
        background: #fff;
        position: relative;
        cucoor: pointer;
        color: #eee;
        font-size: 15px;
        text-transform: uppercase;
        -webkit-tap-highlight-color: transparent;
    }

        .co-menu-toggle i {
            margin-right: 10px;
        }
}

@media only screen and (min-width:992px) {
    .home5 .co-menu > ul > li > a {
        padding: 0;
        height: 80px;
        line-height: 80px;
        padding-right: 20px;
    }

    .home5 .sticky4 .co-menu > ul > li:first-child a {
        padding-left: 0;
    }

    .home5 #co-header .middle-header-home5 .sticky4 .header-bottom-area .navbar ul li:first-child {
        margin-left: 0;
    }
}

@media screen and (min-width:992px) {
    .co-menu ul ul {
        opacity: 0;
        display: block;
        visibility: hidden;
        transform: translateY(10px);
    }

    .co-menu li:active > ul, .co-menu li:focus > ul, .co-menu li:hover ul.mega-menu .sub-menu, .co-menu li:hover > ul, .co-menu li:hover > ul.mega-menu > li > ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.co-toolbar {
    padding: 4px 0 5px;
    background-color: red;
    border-bottom: 1px solid #efefef;
    border-top: 2px solid red;
}

    .co-toolbar .co-toolbar-left .welcome-message {
        font-size: 15px;
    }

        .co-toolbar .co-toolbar-left .welcome-message i {
            color: #fff;
            margin-right: 8px;
        }

        .co-toolbar .co-toolbar-left .welcome-message span {
            color: #fff;
        }

    .co-toolbar .co-toolbar-right {
        text-align: right;
    }

        .co-toolbar .co-toolbar-right .toolbar-share-icon {
            display: inline-block;
            color: #fff;
        }

            .co-toolbar .co-toolbar-right .toolbar-share-icon ul li {
                display: inline-block;
            }

                .co-toolbar .co-toolbar-right .toolbar-share-icon ul li + li {
                    margin-left: 8px;
                }

                .co-toolbar .co-toolbar-right .toolbar-share-icon ul li a {
                    font-size: 14px;
                    color: #fff;
                }

                    .co-toolbar .co-toolbar-right .toolbar-share-icon ul li a:active, .co-toolbar .co-toolbar-right .toolbar-share-icon ul li a:focus, .co-toolbar .co-toolbar-right .toolbar-share-icon ul li a:hover {
                        color: #090909;
                    }

        .co-toolbar .co-toolbar-right .apply-btn {
            font-weight: 500;
            font-size: 14px;
        }

.co-header .co-header-top {
    padding: 20px 0 20px;
}

    .co-header .co-header-top .header-contact {
        float: right;
    }

        .co-header .co-header-top .header-contact .widget-text {
            position: relative;
            padding-left: 55px;
        }

            .co-header .co-header-top .header-contact .widget-text i {
                position: absolute;
                border-radius: 2px;
                text-align: center;
                left: 0;
                line-height: 40px;
                color: #101010;
                font-size: 35px;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                font-weight: 700;
            }

            .co-header .co-header-top .header-contact .widget-text .info-text a {
                color: #fff;
                font-weight: 400;
                font-size: 16px;
            }

            .co-header .co-header-top .header-contact .widget-text .info-text span {
                display: block;
                font-weight: 700;
                color: #101010;
                line-height: 18px;
            }

.co-header .co-menu-toggle {
    color: #212121 !important;
}

    .co-header .co-menu-toggle:hover {
        color: red !important;
    }

.co-header .menu-area .co-menu li a:hover, .co-header .menu-area .co-menu li.active > a, .co-header .menu-area .co-menu li.current-menu-item > a, .co-header .menu-area .co-menu li.current_page_item > a {
    color: red !important;
}

@-moz-document url-prefix() {
    .home2 .right-bar-icon .nav-expander {
        position: relative;
        top: -1px;
    }
}

.nav-menu > li > a {
    font-weight: 500;
    font-size: 14px;
    margin-top: 2px;
}

.home1 .co-menu li a i {
    margin-right: 0;
    color: #0062cc;
    transition: 0.3s;
    -webkit-transition: .3s;
    -ms-transition: .3s;
}

    .home1 .co-menu li a i:hover {
        margin-right: 0;
        color: red;
        transition: .3s;
        -webkit-transition: .3s;
        -ms-transition: .3s;
    }

.home1 .co-menu li i {
    margin-right: 0;
    color: #fff;
    transition: .3s;
    -webkit-transition: .3s;
    -ms-transition: .3s;
}

    .home1 .co-menu li i:hover {
        color: #212121;
    }

.home1 .menu-area .co-menu > ul > li > a {
    color: #0062cc;
}

    .home1 .menu-area .co-menu li.current_page_item > a, .home1 .menu-area .co-menu > ul > li > a:hover {
        color: #ff0000 !important;
    }

.home1 .menu-area {
    background: #ffffff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
}

.home1 .searce-box {
    position: absolute;
    top: 0;
    right: 23%;
    top: 16px;
}

    .home1 .searce-box a.co-search i {
        color: #fff;
    }

        .home1 .searce-box a.co-search i:hover {
            color: #090909;
        }

.home1 .co-header .co-header-top .col-md-4:ficot-child .header-contact {
    float: left;
}

.inner-page .searce-box {
    position: absolute;
    top: 0;
    right: 16px;
    top: 15px;
}

.co-search i {
    color: #fff;
}

    .co-search i:hover {
        color: #090909;
    }

.inner-page .searce-box a.co-search i {
    color: red;
}

, .home1 .right-bar-icon {
    position: absolute;
    right: 15px;
}

    , .home1 .right-bar-icon a {
        display: inline-block;
        height: 55px;
        width: 45px;
        line-height: 55px;
        text-align: center;
        color: #fff;
    }

        , .home1 .right-bar-icon a:hover {
            color: #fff;
        }

    , .home1 .right-bar-icon .co-search {
        position: static;
        color: #fff;
        background-color: red;
        margin-right: -4px;
    }

        , .home1 .right-bar-icon .co-search:hover {
            background: #212121;
        }

    , .home1 .right-bar-icon .nav-expander {
        background: #212121;
    }

        , .home1 .right-bar-icon .nav-expander:hover {
            background: red;
        }

.home1 .co-courses .cource-item {
    border: none;
    background: #fff;
}

, .home1 .search-modal .modal-content, .inner-page .search-modal .modal-content {
    background: 0 0;
    position: initial;
    border: 0;
}

, .home1 .search-modal .search-block input, .inner-page .search-modal .search-block input {
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
    background: 0 0;
    border-width: 0 0 1px 0;
    border-radius: 0;
    border-color: rgba(255, 255, 255, .4);
    box-shadow: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

, .home1 .search-modal .close, .inner-page .search-modal .close {
    color: #fff;
    margin-top: 20px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, .4);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    opacity: 1;
    outline: 0;
    transition: all .3s ease 0s;
}

    , .home1 .search-modal .close:hover, .inner-page .search-modal .close:hover {
        background-color: red;
    }

.home1 .modal-backdrop, .inner-page .modal-backdrop {
    opacity: .8;
}

.menu-sticky.sticky {
    background: #fff;
    position: fixed !important;
    top: 0;
    z-index: 999;
    margin: 0 auto !important;
    padding: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-name: sticky-animation;
    animation-name: sticky-animation;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .menu-sticky.sticky .main-menu {
        position: static;
    }

#nav-close {
    transition: all .3s ease 0s;
}

    #nav-close:hover {
        background-color: red;
        border-color: red;
        color: #fff;
    }

@-webkit-keyframes sticky-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes sticky-animation {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#carousel .owl-controls .owl-nav > div {
    position: absolute;
    top: 95%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: none;
    color: #fff;
    transform: translateY(-50%);
    font-size: 30px;
    border-radius: 0;
    opacity: 0;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background-color: red;
}

    #carousel .owl-controls .owl-nav > div:hover {
        background-color: #000;
        color: red;
    }

#carousel .owl-controls .owl-nav .owl-prev {
    left: 91%
}

#carousel .owl-controls .owl-nav .owl-next {
    right: 1%
}

#carousel .co-carousel .owl-controls .owl-nav > div {
    opacity: 1;
}

#carousel .owl-controls .owl-dots {
    position: absolute;
    right: 7%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

    #carousel .owl-controls .owl-dots .owl-dot {
        height: 6px;
        width: 22px;
        background-color: #090909;
        display: inline-block;
        transition: all .3s ease 0s;
    }

        #carousel .owl-controls .owl-dots .owl-dot + .owl-dot {
            margin-left: 8px;
        }

        #carousel .owl-controls .owl-dots .owl-dot.active {
            background-color: red;
        }

        #carousel .owl-controls .owl-dots .owl-dot:ficot-child {
            border-radius: 3px 0 0 3px;
        }

        #carousel .owl-controls .owl-dots .owl-dot:last-child {
            border-radius: 0 3px 3px 0;
        }

#carousel .owl-controls {
    padding: 34px;
}

.partner-item a {
    color: #505050;
}

    .partner-item a:hover {
        color: red;
    }

.program {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

    .program .details {
        background: rgba(255, 0, 0, .76);
        position: absolute;
        left: 0;
        bottom: -45px;
        right: 0;
        text-align: center;
        padding-top: 1px;
        transition: all .3s cubic-bezier(.645, .045, .355, 1);
    }

        .program .details h3 {
            color: #fff;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .program .details p {
            color: #fff;
            font-size: 15px;
            margin-bottom: 10px;
            font-style: italic;
        }

        .program .details .view-details {
            height: 30px;
        }

    .program .details {
        color: #fff;
    }

    .program:hover .details {
        bottom: 0;
    }

.details h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.details .view-details {
    margin-bottom: 15px;
}

.details .view-details {
    color: #fff;
    text-align: center;
    padding-top: 9px;
}

#courses-intro .card {
    --borderWidth: 3px;
    position: relative;
    border-radius: 0;
}

    #courses-intro .card:after {
        content: '';
        position: absolute;
        top: calc(1 * var(--borderWidth));
        left: calc(-1 * var(--borderWidth));
        height: calc(100% + var(--borderWidth) * 2);
        width: calc(100% + var(--borderWidth) * 2);
        background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
        border-radius: calc(0 * var(--borderWidth));
        z-index: -1;
        animation: animatedgradient 3s ease alternate infinite;
        background-size: 300% 300%
    }

@keyframes animatedgradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.co-testimonial .owl-stage-outer {
    padding-top: 60px;
}

.co-testimonial .testimonial-item {
    padding: 35px;
    background: 0 0;
}

    .co-testimonial .testimonial-item .testi-img {
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px;
        background: #eaeaea;
        border-radius: 50%
    }

        .co-testimonial .testimonial-item .testi-img img {
            width: 100px;
            height: 100px;
            border-radius: 50%
        }

    .co-testimonial .testimonial-item .testi-desc {
        padding: 42px 0;
        position: relative;
    }

        .co-testimonial .testimonial-item .testi-desc .testi-name {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .co-testimonial .testimonial-item .testi-desc p {
            font-size: 16px;
            line-height: 26px;
            margin-bottom: 0;
        }

.co-testimonial .owl-controls .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

    .co-testimonial .owl-controls .owl-dots .owl-dot {
        height: 6px;
        width: 22px;
        background-color: #090909;
        display: inline-block;
        transition: all .3s ease 0s;
    }

        .co-testimonial .owl-controls .owl-dots .owl-dot + .owl-dot {
            margin-left: 8px;
        }

        .co-testimonial .owl-controls .owl-dots .owl-dot.active {
            background-color: red;
        }

        .co-testimonial .owl-controls .owl-dots .owl-dot:ficot-child {
            border-radius: 3px 0 0 3px;
        }

        .co-testimonial .owl-controls .owl-dots .owl-dot:last-child {
            border-radius: 0 3px 3px 0;
        }

.grtyoutube-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
}

.grtyoutube-popup-content {
    margin-top: 150px;
    width: 95%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.grtyoutube-popup-close {
    position: absolute;
    top: -30px;
    right: 0;
    color: #fff;
    font-size: 25px;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.grtyoutube-iframe {
    width: 100%;
    height: 480px;
}

@media (max-width:767px) {
    .grtyoutube-iframe {
        width: 100%;
        height: 350px;
    }
}

.grtyoutube-dark-theme {
    background: rgba(0, 0, 0, .85);
}

    .grtyoutube-dark-theme .grtyoutube-popup-content {
        -webkit-box-shadow: 0 0 8px 0 rgba(255, 255, 255, .4);
        -moz-box-shadow: 0 0 8px 0 rgba(255, 255, 255, .4);
        box-shadow: 0 0 8px 0 rgba(255, 255, 255, .4);
    }

    .grtyoutube-dark-theme .grtyoutube-popup-close {
        background: url(../image/img/icon-close-white.png) no-repeat;
    }

.grtyoutube-light-theme {
    background: rgba(255, 255, 255, .85);
}

    .grtyoutube-light-theme .grtyoutube-popup-content {
        -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .4);
        -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .4);
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, .4);
    }

    .grtyoutube-light-theme .grtyoutube-popup-close {
        background: url(../image/img/icon-close-black.png) no-repeat;
    }

#video {
    background: url(../image/img/video-thumb.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 100%
}

    #video .play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(red 50%, rgba(255, 0, 0, .15) 52%);
        border-radius: 50%;
        display: block;
        margin: 153px auto 0;
        position: relative;
        overflow: hidden;
    }

        #video .play-btn::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translateX(-40%) translateY(-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 .4s cubic-bezier(.55, .055, .675, .19);
        }

        #video .play-btn:before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
            -webkit-animation: pulsate1 2s;
            animation: pulsate1 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: 2px solid rgba(255, 255, 255, .5);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        #video .play-btn:hover::after {
            border-left: 15px solid #090909;
            -webkit-transform: scale(20);
            transform: scale(20);
        }

        #video .play-btn:hover::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translateX(-40%) translateY(-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;
        }

@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(.6, .6);
        transform: scale(.6, .6);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(.6, .6);
        transform: scale(.6, .6);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes pulsate2 {
    0% {
        -webkit-transform: scale(.1, .1);
        transform: scale(.1, .1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

#tvneb .card-title {
    margin-bottom: .75rem;
    margin-top: -40px;
    background-color: red;
    width: 30%;
    padding: 8px;
    color: #fff;
}

@media only screen and (max-width:1300px) {
    .owl-controls .owl-nav .owl-prev {
        left: -20px;
    }

    .owl-controls .owl-nav .owl-next {
        right: -20px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .home1 .co-menu ul.nav-menu > li {
        margin-right: 35px;
    }
}

@media only screen and (max-width:1199px) {
    #co-slider .slide-content .slider-title {
        font-size: 40px;
    }

    #co-slider .slide-content .sl-get-started-btn, #co-slider .slide-content .sl-readmore-btn {
        min-width: 150px;
        padding: 8px 25px;
    }

    #co-slider .owl-dots {
        top: 40%
    }

    .co-header .co-header-top .header-contact .widget-text .info-text a, .co-header .co-header-top .header-contact .widget-text .info-text span {
        font-size: 16px;
    }
}

@media only screen and (max-width:991px) {
    .sec-spacer {
        padding: 80px 0;
    }

    .sec-spacer-2 {
        padding: 40px 0;
    }

    .pt-100 {
        padding-top: 80px !important;
    }

    .pt-70 {
        padding-top: 50px !important;
    }

    .pb-100 {
        padding-bottom: 80px !important;
    }

    .mt-70 {
        margin-top: 40px !important;
    }

    .pb-70 {
        padding-bottom: 50px !important;
    }

    .mt-80 {
        margin-top: 60px !important;
    }

    .sec-title.mb-30 {
        margin-bottom: 15px !important;
    }

    .mobile-mb-50 {
        margin-bottom: 50px;
    }

    .mobile-mb-20 {
        margin-bottom: 20px;
    }

    .mobile-mb-30 {
        margin-bottom: 30px;
    }

    .home1 .co-menu ul.nav-menu > li {
        margin-right: 0;
    }

    .co-team-single .team-icons {
        text-align: left;
        padding-left: 0;
    }

    .co-testimonial-5 .testimonial-item {
        max-width: 600px;
        padding: 45px 20px;
    }

    .co-header .co-header-top .header-contact, .home3 .co-header .menu-area .toggle-btn, .nav-expander, .owl-controls .owl-nav .owl-next, .owl-controls .owl-nav .owl-prev {
        display: none !important;
    }

    .co-header .logo-area, .co-why-choose .choose-img {
        text-align: center;
    }

    .co-check-out .product-price table, .co-header .logo-area {
        width: 100%
    }

    .home1 .right-bar-icon {
        top: 0;
        right: 20px;
    }

    .sec-title-2 h1 {
        font-size: 30px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .menu-sticky.sticky {
        position: relative !important;
        -webkit-animation-duration: 0s;
        animation-duration: 0s;
        top: 0;
    }

    .co-menu-toggle {
        padding-left: 0;
        padding-right: 0;
    }

    .home1 .searce-box {
        right: 15px;
    }
}

@media only screen and (min-width:991px) {
    .modal-dialog {
        max-width: 1200px;
    }
}

@media only screen and (max-width:767px) {
    .mobile-mb-50, .sec-title-2 {
        font-size: 14px;
    }

    .co-partner.pb-170 {
        padding-bottom: 50px !important;
    }

    .co-toolbar .co-toolbar-right {
        margin-top: 6px;
    }

    .co-toolbar .co-toolbar-left .welcome-message, .co-toolbar .co-toolbar-right {
        text-align: center;
    }

    .sec-title-2 .view-more {
        position: static;
    }
}

@media only screen and (max-width:540px) {
    .sec-title h1, .sec-title-2 h1 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    h1 {
        font-size: 25px;
    }

    .co-testimonial .testimonial-item {
        padding: 25px;
    }

        .co-testimonial .testimonial-item .testi-desc .testi-name {
            margin-bottom: 10px;
        }

        .co-testimonial .testimonial-item .testi-desc:after, .co-testimonial .testimonial-item .testi-desc:before {
            font-size: 26px;
        }

    .co-testimonial-2 .testimonial-item .testi-desc .testi-name {
        font-size: 12px;
    }

    .logo-area img {
        max-width: 80%
    }
}

@media only screen and (max-width:480px) {
    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }
}

#scrollUp {
    text-align: center;
    bottom: 10px;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 10px;
    z-index: 999;
}

    #scrollUp i {
        background-color: red;
        height: 40px;
        font-size: 24px;
        width: 42px;
        color: #fff;
        line-height: 36px;
        transition: all .3s ease 0s;
        margin-left: 2px;
    }

        #scrollUp i:hover {
            background-color: #212121;
            color: rgba(255, 255, 255, .7);
        }

.co-header-top {
    background: #fe0002;
}

.text-red {
    color: red;
}

.text-black {
    color: #212121;
}

.f-18 {
    font-size: 18px;
}

.h-100 {
    height: 100%
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    max-height: 550px;
}

.co-accordion-style1 .card {
    border: 0;
}

    .co-accordion-style1 .card .card-header {
        padding: 0;
        border: 0;
        background: 0 0;
    }

        .co-accordion-style1 .card .card-header .acdn-title {
            background-color: #eaeaea;
            position: relative;
            margin-bottom: 10px;
            padding: 12px 15px;
            cursor: pointer;
            letter-spacing: .2px;
            -webkit-transition: .2s background-color ease-in-out;
            transition: .2s background-color ease-in-out;
        }

            .co-accordion-style1 .card .card-header .acdn-title:after {
                position: absolute;
                font-family: FontAwesome;
                content: "\f0da";
                right: 15px;
                transition: all .3s ease 0s;
            }

            .co-accordion-style1 .card .card-header .acdn-title:not(.collapsed) {
                background-color: red;
                color: #fff;
            }

                .co-accordion-style1 .card .card-header .acdn-title:not(.collapsed):after {
                    transform: rotate(90deg);
                    color: #fff;
                }

            .co-accordion-style1 .card .card-header .acdn-title:hover {
                background-color: red;
                color: #fff;
            }

    .co-accordion-style1 .card .card-body {
        padding: 5px 15px 18px;
    }

.card-fs {
    background-color: #e0e0e0;
    border: 1px solid rgba(0, 0, 0, .125);
    min-height: 200px;
    padding: 10px;
    margin-top: 20px;
}

    .card-fs i {
        margin-top: 15px;
    }

.key-members-img {
    width: 250px;
    height: 250px;
}

.blog-img {
    width: 340px;
}

.bd-callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #fff;
    border-left-color: red;
    border-top-color: red;
    border-left-width: 1px;
    border-left-width: .25rem;
    border-radius: .25rem;
}

.modal-bg {
    background: url(../image/img/modal-bg.svg);
    background-size: cover;
}

#easa {
    height: 0;
    width: 55px;
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 1000;
}

    #easa a {
        display: block;
        background: rgba(255, 255, 255, .7);
        height: 55px;
        padding-top: 4px;
        width: 55px;
        text-align: center;
        text-decoration: none;
        border-radius: 6px 0 0 6px;
        border: 2px solid #212121;
        border-right: none;
    }

        #easa a:hover {
            background: #fff;
        }

.easaModal_bg {
    background: url(../image/img/announcementModal_bg.svg);
    background-size: cover;
}

#announcement {
    height: 0;
    width: 55px;
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 1000;
}

    #announcement a {
        display: block;
        background: rgba(255, 255, 255, .7);
        height: 55px;
        padding-top: 10px;
        width: 55px;
        text-align: center;
        text-decoration: none;
        border-radius: 6px 0 0 6px;
        border: 2px solid #212121;
        border-right: none;
    }

        #announcement a:hover {
            background: #fff;
        }

.announcementModal_bg {
    background: url(../image/img/announcementModal_bg.svg);
    background-size: cover;
}

.card-sh {
    box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
    overflow: hidden;
    position: relative;
    top: 0;
    transition: all .25s;
}

    .card-sh:nth-child(2) {
        margin: 0 50px;
    }

    .card-sh:hover {
        top: -15px;
        box-shadow: 0 12px 16px rgba(0, 0, 0, .2);
    }

.dropbtn {
    background-color: red;
    color: #fff;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

    .dropbtn:focus, .dropbtn:hover {
        background-color: #212121;
    }

#myInput {
    border-box: box-sizing;
    background-image: url(searchicon.png);
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%
}

    #myInput:focus {
        outline: 3px solid #ddd;
    }

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    background-color: #f6f6f6;
    width: 100%;
    overflow: auto;
    z-index: 1;
}

    .dropdown-content a {
        color: #000;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            color: red !important;
        }

.dropdown a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

.css-serial {
    counter-reset: serial-number;
}

    .css-serial td:first-child:before {
        counter-increment: serial-number;
        content: counter(serial-number);
    }

.footer-title {
    border-bottom: 2px solid #ed0606;
    padding-bottom: 8px;
}

.footer-social {
    text-align: center;
}

    .footer-social ul li {
        display: inline-block;
    }

    .footer-social ul li {
        font-size: 30px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        transition: all .3s ease 0s;
        background-color: #090909;
    }

        .footer-social ul li a {
            color: #fff;
        }

            .footer-social ul li a:hover {
                color: red;
                transition: all .3s ease 0s;
            }

footer a h5 {
    color: #212121;
}

    footer a h5:hover {
        color: red;
    }

/*Chat Button*/
#lhc_status_container {
    box-sizing: content-box;
    padding: 5px 0px 0px 5px;
    font-family: arial;
    font-size: 12px;
    transition: 1s;
    position: fixed;
    bottom: 60px !important;
    right: 15px;
    z-index: 2147483647;
    margin-right: 44px !important;
}

    #lhc_status_container .status-icon {
        border: 2px solid #e3e3e3;
        -webkit-border-radius: 47px;
        border-radius: 47px;
        -webkit-box-shadow: 0px 0px 17px rgba(50, 50, 50, 0.5);
        -moz-box-shadow: 0px 0px 17px rgba(50, 50, 50, 0.5);
        box-shadow: 0px 0px 17px rgba(50, 50, 50, 0.5);
        text-decoration: none;
        height: 30px !important;
        width: 30px !important;
        font-weight: bold;
        color: #000000;
        display: block;
        padding: 10px;
        position: fixed;
        bottom: 50px !important;
        background: #0c8fc4 url('//www.luclivechat.org/design/defaulttheme/images/getstatus/online.svg') no-repeat center center;
    }

#lhc_container.lhc-min .status-icon {
    border: 2px solid #e3e3e3;
    -webkit-border-radius: 47px;
    border-radius: 47px;
    -webkit-box-shadow: 0px 0px 17px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 0px 0px 17px rgba(50, 50, 50, 0.5);
    box-shadow: 0px 0px 17px rgba(50, 50, 50, 0.5);
    text-decoration: none;
    height: 30px !important;
    width: 30px !important;
    position: fixed;
    bottom: 50px !important;
}

#lhc_container.lhc-min {
    bottom: 12px !important;
    right: 15px !important;
    left: auto !important;
    top: auto !important;
    background: none;
    box-shadow: none;
    overflow: visible;
    margin-right: 44px !important;
}
