#loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 2000;
}

#loader.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#loader.show {
    -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .circular {
    -webkit-animation: loader-rotate 2s linear infinite;
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

#loader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loader-dash 1.5s ease-in-out infinite;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}




@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
body{
    font-family: 'Roboto', sans-serif;
}


/* Loader style end */
.index_logo {
    height: 80px
}

@media (max-width:576px) {
    .index_logo {
        height: 60px
    }
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

::selection {
    background: #000;
    color: #fff;
}

.quote-form .form-control:focus {
    outline: 0;
}

.top-container {
    background-color: white;
    text-align: center;
    z-index: 999
}

.header {
    padding: 4px 6px;
    background: #0f40a3;
    color: #f1f1f1;
    z-index: 999;
    color: #fff !important;
    box-shadow: 0px 1px 10px #999;
}

.content {
    padding: 16px
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

.sticky+.content {
    padding-top: 102px
}

#navbarSupportedContent ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center
}

#navbarSupportedContent ul li {
    display: inline-block
}

.site-navbar {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
    z-index: 999;
    width: 100%
}

.site-navbar .container-fluid {
    padding-left: 7rem;
    padding-right: 7rem
}

.site-navbar .site-navigation .site-menu {
    margin-bottom: 0
}

.site-navbar .site-navigation .site-menu .active>a {
    color: #000;
    display: inline-block;
    padding: 5px 20px
}

.site-navbar .site-navigation .site-menu a {
    text-decoration: none !important;
    display: inline-block
}

.site-navbar .site-navigation .site-menu>li {
    display: inline-block
}

.site-navbar .site-navigation .site-menu>li>a {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .05rem;
    font-weight: 900;
    padding: 20px 20px;
    color: #fff;
    display: inline-block;
    text-decoration: none !important
}

.site-navbar .site-navigation .site-menu>li>a:hover {
    color: #39d68d
}

.sticky-wrapper {
    position: absolute;
    z-index: 100;
    width: 100%;
    background: #fff
}

@media (max-width:992px) {
    .sticky-wrapper {
        display: none
    }
}

.sticky-wrapper .site-navbar {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    background: #003398
}

.sticky-wrapper .site-navbar .site-logo a {
    color: #000
}

.sticky-wrapper .site-navbar .site-menu>li {
    display: inline-block
}

.sticky-wrapper .site-navbar .site-menu>li>a.active {
    color: #000;
    position: relative
}

.sticky-wrapper .site-navbar .site-menu>li>a.active:after {
    height: 2px;
    background: #fff;
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px
}

.sticky-wrapper .site-navbar .site-menu>li.active>a {
    color: #39d68d
}

.sticky-wrapper.is-sticky .site-navbar {
    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, .2);
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, .2)
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
    color: #000
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li {
    display: inline-block
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a {
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none !important
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a:hover {
    color: #39d68d
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a.active:after {
    background: #003398
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li.active>a {
    color: #39d68d
}

.quote-form-wrap {
    background: #09162a;
    padding: 5rem
}

.quote-form .form-control {
    border: none;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    border-radius: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background: 0 0;
    color: #fff
}

.quote-form .form-control::-webkit-input-placeholder {
    color: #fff
}

.quote-form .form-control::-moz-placeholder {
    color: #fff
}

.quote-form .form-control:-ms-input-placeholder {
    color: #fff
}

.quote-form .form-control:-moz-placeholder {
    color: #fff
}

.quote-form .btn-primary:hover {
    background: #39d68d;
    border-color: #39d68d;
    color: #fff
}

.person {
    position: relative
}

.person img {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease
}

.person:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.person .social {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2
}

.person .social a {
    display: block;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    background: #fff;
    position: relative
}

.person .social a>span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.person .social a:hover {
    background: #000;
    color: #fff
}

.section-subtitle {
    font-weight: 300;
    color: #39d68d;
    text-transform: uppercase;
    font-size: 1.3rem
}


.four_b_first {
    background-color: #1eaaf1;
}

.four_b_second {
    background-color: #39d68d;
}

.four_b_third {
    background-color: #1eaaf1
}

.ftco-services {
    padding: 0 0 5em 0
}

.ftco-services .services {
    display: block;
    width: 100%;
    position: relative;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease
}

.ftco-services .services .icon {
    line-height: 1.3;
    position: relative;
    width: 120px;
    height: 120px;
    background: #fff;
    margin: 0 auto;
    margin-top: -60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%
}

.ftco-services .services .icon span {
    font-size: 50px;
    color: #1eaaf1
}

.ftco-services .services .media-body {
    color: #f0f3f3;
}

@media (max-width:767.98px) {
    .ftco-services .services .media-body {
        padding-bottom: 3.5em !important
    }
}

.ftco-services .services .media-body h3 {
    font-weight: 500;
    font-size: 22px;
    color: #fff;
}

.courses {
    background-color: #f3f5f6
}

.services-wrap {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 3px;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    background: #fff;
    -webkit-box-shadow: 0 15px 46px -16px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0 15px 46px -16px rgba(0, 0, 0, .11);
    box-shadow: 0 15px 46px -16px rgba(0, 0, 0, .11)
}

.services-wrap .img {
    width: 100%;
    height: 220px
}

.services-wrap .text {
    width: 100%;
    text-align: center;
    padding: 20px 5px;
    position: relative
}

.services-wrap .text h2 {
    font-weight: 500;
    font-size: 22px
}

.services-wrap .text .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    margin: -65px auto 20px auto;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-shadow: 0 11px 32px -12px rgba(0, 0, 0, .28);
    -moz-box-shadow: 0 11px 32px -12px rgba(0, 0, 0, .28);
    box-shadow: 0 11px 32px -12px rgba(0, 0, 0, .28)
}

.services-wrap .text .icon span {
    color: #39d68d;
    font-size: 50px;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease
}

.services-wrap:hover {
    -webkit-box-shadow: 0 15px 46px -16px rgba(0, 0, 0, .18);
    -moz-box-shadow: 0 15px 46px -16px rgba(0, 0, 0, .18);
    box-shadow: 0 15px 46px -16px rgba(0, 0, 0, .18)
}

.services-wrap:hover .text .icon {
    background: #39d68d
}

.services-wrap:hover .text .icon span {
    color: #fff
}

.wrap-about {
    position: relative
}

.wrap-about h2 {
    font-weight: 500
}

.wrap-about .img {
    width: 100%
}

.text_primary {
    color: #003398;
}

.text_secondary {
    color: #39d68d;
}

.bg_primary {
    background-color: #0f40a3;
    color: #fff !important;
}

.bg_secondary {
    background-color: #39d68d;
    color: #fff !important;
}

.ftco-footer {
    font-size: 16px;
    background: #030918;
    padding: 5em 0 0 0;
    z-index: 0;
    position: relative;
    z-index: 0;
}

@media (max-width:991.98px) {
    .ftco-footer .ftco-footer-widget {
        margin-bottom: 40px;
    }
}

.ftco-footer .ftco-footer-widget ul {
    margin: 0;
    padding: 0
}

.ftco-footer .ftco-footer-widget ul li {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .5);
}

.ftco-footer {
    color: rgba(255, 255, 255, .5);
}

.ftco-footer .ftco-footer-widget ul li a span {
    color: rgba(255, 255, 255, .7);
    font-size: 14px
}

.ftco-footer .ftco-footer-widget ul li a:hover {
    color: #39d68d
}

.ftco-footer p {
    color: rgba(255, 255, 255, .5)
}

.footer_courses ul li a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 4px
}

.footer_courses ul li a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    background: #39d68d;
    transition: width .3s ease 0s, left .3s ease 0s;
    width: 0
}

.footer_courses ul li a:hover:after {
    width: 100%;
    left: 0
}

.ftco-footer .ftco-heading-2 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 2px
}

.ftco-footer .logo a {
    color: #39d68d
}

.ftco-footer .logo a span.flaticon {
    font-size: 24px;
    line-height: 1
}

.ftco-footer .bg-primary {
    background: #030918 !important;
    position: relative;
    z-index: 0;
    overflow: hidden
}

.ftco-footer .bg-primary p {
    color: rgba(255, 255, 255, .7)
}

.ftco-footer .bg-primary p a {
    color: #fff;
    text-decoration: underline
}

.ftco-footer-social li {
    list-style: none;
    margin: 0 10px 0 0;
    display: inline-block
}

.ftco-footer-social li a {
    height: 40px;
    width: 40px;
    display: block;
    background: rgba(255, 255, 255, .08);
    position: relative;
    border-radius: 50%
}

@media (max-width:480px) {
    .ftco-footer-social li a {
        height: 33px;
        width: 33px
    }
}

.ftco-footer-social li a span {
    position: absolute;
    font-size: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff !important
}

.ftco-footer-social li a:hover {
    background: #39d68d
}

.flat_icon_hover {
    color: black;
}

.flat_icon_hover:hover {
    color: #39d68d
}

.logo_footer {
    max-width: 120px
}

ul {
    list-style-type: none
}




.categories-area.categories-area2 {
    background-image: unset
}

.categories-area .single-cat {
    border: 1px solid #e1ebf7;
    border-radius: 6px;
    padding: 61px 22px;
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    -ms-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    position: relative;
    z-index: 1
}

.categories-area .cat_first::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    background: #1eaaf1;
    transition: .6s;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 6px
}

.categories-area .cat_second::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    background: #39d68d;
    transition: .6s;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 6px
}

.categories-area .cat_third::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    background: #5d50c6;
    transition: .6s;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 6px
}

.categories-area .single-cat .cat-icon span {
    color: white;
    font-size: 50px;
    margin-bottom: 30px;
    display: block;
    margin-bottom: 50px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
}


.categories-area .cat_second:hover .cat-icon span {
    color: #1f2038;
}

.categories-area .cat_first:hover .cat-icon span {
    color: #1f2038;
}

.categories-area .cat_third:hover .cat-icon span {
    color: #1f2038;
}

.first_span span {
    background: #1eaaf1;
}

.second_span span {
    background-color: #39d68d
}

.third_span span {
    background-color: #5d50c6
}

.categories-area .single-cat .cat-cap h5>a {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 21px;
    display: block;
    -webkit-transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -ms-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .categories-area .single-cat .cat-cap h5>a {
        font-size: 21px
    }
}

@media (max-width:575px) {
    .categories-area .single-cat .cat-cap h5>a {
        font-size: 21px
    }
}

.categories-area .single-cat .cat-cap p {
    margin-bottom: 36px;
    color: #57667e;
    font-size: 16px;
    -webkit-transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -ms-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
    margin: 0
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .categories-area .single-cat .cat-cap p {
        font-size: 15px
    }
}

.categories-area .single-cat .cat-cap a {
    color: #1c165c;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -ms-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s
}

.categories-area .single-cat:hover {
    border: 1px solid transparent
}

.categories-area .single-cat:hover::before {
    height: 100%
}

.categories-area .single-cat:hover .cat-icon span {
    background: #fff
}

.categories-area .single-cat:hover .cat-cap h5 {
    color: #fff
}

.categories-area .single-cat:hover .cat-cap p {
    color: #fff
}

.categories-area .single-cat:hover .cat-cap a {
    color: #fff
}

.home-banner-area {
    position: relative
}

@media (max-width:991px) {
    .home-banner-area {
        padding: 72px 0 0
    }
}

.home-banner-area .container-fluid {
    padding-left: 28%;
    position: relative
}

@media (max-width:992px) {
    .home-banner-area .container-fluid {
        max-width: 960px;
        padding-left: 15px
    }
}

@media (max-width:768px) {
    .home-banner-area .container-fluid {
        max-width: 720px
    }
}

@media (max-width:576px) {
    .home-banner-area .container-fluid {
        max-width: 540px;
        padding-left: 15px
    }
}

.home-banner-area .container-fluid:before {
    content: "";
    position: absolute;
    left: 0;
    width: 73%;
    height: 100%;
    background: #13113a;
    box-shadow: 0 10px 30px rgba(153, 153, 153, .3)
}

@media (max-width:991px) {
    .home-banner-area .container-fluid:before {
        width: 100%
    }
}

.home-banner-area .owl-carousel .owl-nav {
    position: absolute;
    right: 22%;
    bottom: 8%
}

@media (max-width:1300px) {
    .home-banner-area .owl-carousel .owl-nav {
        display: none
    }
}

@media (max-width:1665px) {
    .home-banner-area .owl-carousel .owl-nav {
        right: 18%
    }
}

.home-banner-area .owl-carousel .owl-nav img {
    -webkit-filter: brightness(0);
    -moz-filter: brightness(0);
    -ms-filter: brightness(0);
    -o-filter: brightness(0);
    filter: brightness(0);
    opacity: .5
}

.home-banner-area .owl-carousel .owl-nav img:hover {
    opacity: 1
}

.home-banner-area .text-wrapper {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 700px;
    padding: 40px 0
}

@media (max-width:1300px) {
    .home-banner-area .text-wrapper {
        margin-left: 0
    }
}

@media (max-width:991px) {
    .home-banner-area .text-wrapper {
        padding: 40px 20px
    }
}

.home-banner-area .text-wrapper h1 {
    color: #fff;
    font-size: 36px
}

@media (max-width:1199px) {
    .home-banner-area .text-wrapper h1 {
        font-size: 30px
    }
}

@media (max-width:991px) {
    .home-banner-area .text-wrapper h1 br {
        display: none
    }
}

.home-banner-area .social-icons {
    position: absolute;
    top: 56%;
    left: 17%;
    margin-top: -20px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

@media (max-width:1680px) {
    .home-banner-area .social-icons {
        left: 180px
    }
}

@media (max-width:1250px) {
    .home-banner-area .social-icons {
        left: 90px
    }
}

@media (max-width:1199px) {
    .home-banner-area .social-icons {
        display: none
    }
}

@media (max-width:767px) {
    .home-banner-area .social-icons {
        display: none
    }
}

.home-banner-area .social-icons ul {
    position: relative
}

.home-banner-area .social-icons ul:after,
.home-banner-area .social-icons ul:before {
    content: "";
    position: absolute;
    top: 15px;
    width: 80px;
    height: 1px;
    background: #828bb2
}

@media (max-width:767px) {

    .home-banner-area .social-icons ul:after,
    .home-banner-area .social-icons ul:before {
        width: 0
    }
}

.home-banner-area .social-icons ul:before {
    right: -90px
}

.home-banner-area .social-icons ul:after {
    left: -90px
}

.home-banner-area .social-icons ul li {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline;
    margin-right: 7px
}

@media (max-width:767px) {
    .home-banner-area .social-icons ul li {
        font-size: 12px;
        margin: 0 1px
    }
}

.home-banner-area .social-icons ul li a i {
    color: #fff;
    background: #424161;
    display: inline-block;
    padding: 9px;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 12px;
    font-size: 14px;
    border-radius: 50%;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.home-banner-area .social-icons ul li a i:hover {
    color: #13113a;
    background: #fff
}

.home-banner-area .social-icons ul .diffrent {
    color: #fff
}

.site-section {
    padding: 2.5em 0
}

@media (min-width:768px) {
    .site-section {
        padding: 5em 0
    }
}

.site-section.site-section-sm {
    padding: 4em 0
}

.site-section {
    padding: 70px 0
}

@media (max-width:991.98px) {
    .site-section {
        padding: 30px 0
    }
}

.testimonial-2 {
    border-radius: 7px;
    background: #fff;
    padding: 30px;
    border-bottom: 4px solid #0779e4;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .1)
}

.testimonial-2 blockquote {
    font-size: 18 px
}

.testimonial-2 .v-card img {
    width: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    border-radius: 50%
}

.testimonial-2 .author-name {
    line-height: 1.3
}

.testimonial-2 .author-name>span:nth-of-type(2) {
    color: #ccc
}

@media (max-width:992px) {
    .site-navbar {
        position: fixed
    }
}

.course-warp {
    max-width: 1559px;
    padding: 0 15px;
    margin: 0 auto -30px
}

.course-filter {
    list-style: none;
    text-align: center;
    padding-top: 50px;
    margin-bottom: 60px
}

.course-filter li {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #474747;
    padding: 12px 10px 5px;
    margin: 0 10px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.course-filter li.mixitup-control-active {
    color: #39d68d;
    border-bottom: 4px solid #39d68d
}

.categories-section .container {
    margin-bottom: -34px
}

.categorie-item {
    margin-bottom: 34px;
    background: #39d68d;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

.categorie-item .ci-thumb {
    background-size: cover;
    height: 148px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.fit-image {
    width: 100%;
    object-fit: cover;
    height: 300px
}

.categorie-item .ci-text {
    padding: 40px 35px
}

.categorie-item .ci-text h5 {
    margin-bottom: 5px
}

.categorie-item .ci-text span {
    font-size: 18px;
    font-weight: 600;
    color: #39d68d
}

.categorie-item:hover {
    background: #1f8568;
}

.categorie-item:hover .ci-text h5,
.categorie-item:hover .ci-text p,
.categorie-item:hover .ci-text span {
    color: #fff;
}

.course_a {
    color: #fff;
}

.course_a:hover {
    color: #000
}

.form-control option {
    color: #003398
}

.caption-text {
    color: #474747
}

.icon_top_bar {
    font-size: 32px
}

@media (max-width:992px) {
    .icon_top_bar {
        font-size: 24px;
    }

    .color_blue_drop {
        background: #0f40a3 !important;
        border: none !important;

    }

    .color_blue_drop a {
        color: rgba(255, 255, 255, .5);

    }
}


@media (min-width: 992px) {
    .navbar-nav li {
        padding-right: 20px !important;
    }

}



.nav-item a {
    font-size: 22px;
}






.register {
    width: 100%;
}

.register_section {
    width: 100%;
    background: #2a2b2c;
    padding-top: 156px;
    padding-bottom: 161px;
}

.register_content {
    width: 522px;
    z-index: 2;
}

.register_title {
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.63;

}

.register_title:last-child {
    margin-bottom: 0;
}

.register_title span {
    color: #1a1a1a;
}

.register_text {
    color: #fff;
    font-weight: 500;
    margin-top: 32px;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 0;
}

.register_button {
    background: #1a1a1a;
    margin-top: 65px;
}

.register_button a {
    color: #fff;
}

.search_section {
    width: 100%;
    height: 100%;
    background: #ececec;
}

.search_content {
    width: 522px;
    z-index: 2;
}

.search_background_one {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    opacity: .50;
}

.search_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: .4;

}

.search_title {
    color: #1a1a1a;
}

.search_form {
    margin-top: 57px;
}

.input_field {
    width: 100%;
    height: 42px;
    background: #fff;
    box-sizing: border-box;
    border: solid 2px #fff;
    padding-left: 25px;
    margin-bottom: 24px
}

input:last-of-type {
    margin-bottom: 0
}


.search_submit_button {
    width: 100%;
    height: 48px;
    background: #39d68d;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 28px;
    border: none;
   
}

.search_submit_button:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.search_submit_button:focus {
    outline: solid 2px #fff;
}

.button_1 {
    width: 202px;
    height: 48px;
}

@media only screen and (max-width: 1280px) {

    .register_content,
    .search_content {
        width: 442px;
    }
}

@media only screen and (max-width: 1280px) {

    .register_content,
    .search_content {
        width: 442px;
    }
}

.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.button a {
    font-size: 14px;
    line-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

@media only screen and (max-width: 991px) {

    .register_content,
    .search_content {
        width: 75%;
    }
}


@media only screen and (max-width: 991px) {
    .search_section {
        padding-top: 156px;
        padding-bottom: 161px;
    }
}


.section-title {
    margin-top: 75px;
    margin-bottom: 50px;

}



/* ABOUT US */

.site-wrap:before {
    display: none;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    background: rgba(0, 0, 0, .6);
    content: "";
    position: absolute;
    z-index: 2000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden
}

.site-section {
    padding: 2.5em 0
}

@media (min-width:768px) {
    .site-section {
        padding: 5em 0
    }
}

.site-section-heading {
    padding-bottom: 20px;
    margin-bottom: 0;
    position: relative;
    font-size: 2.5rem
}

@media (min-width:768px) {
    .site-section-heading {
        font-size: 3rem
    }
}

.wrap-icon {
    position: relative
}

.wrap-icon .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 22px;
}



.services-1-wrap .service-1 {
    padding: 20px 30px;
    border: 1px solid #efefef;
    border-right: none;
    position: relative;
}

@media (max-width:1199.98px) {
    .services-1-wrap .service-1 {
        border: 1px solid #efefef;
        margin-bottom: 30px;
    }
}

.services-1-wrap .service-1 .number {
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: 400;
    font-family: Oswald, sans-serif;
    color: #dcdcdc;
}

.services-1-wrap .service-1 .service-1-icon {
    position: relative;
    margin-left: 20px
}

.services-1-wrap .service-1 .service-1-icon:before {
    position: absolute;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -1;
    left: -20px;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-right: 40px solid #39d68d;
}

.services-1-wrap .service-1 .service-1-icon>span {
    color: #000;
    font-size: 4rem
}

.services-1-wrap .service-1 .service-1-content .service-heading {
    font-size: 1.5rem;
    color: #000;
    font-weight: 400
}

.services-1-wrap .service-1 .service-1-content p {
    font-size: 15px
}

.services-1-wrap [class^=col-]:last-child .service-1 {
    border-right: 1px solid #efefef
}



.section-title strong {
    font-weight: 700
}

.section-subtitle {
    font-weight: 300;
    color: #39d68d;
    text-transform: uppercase;
    font-size: 1.3rem
}


/* BAck Top */

#back-top {
    background: #39d68d;
    height: 50px;
    width: 50px;
    right: 31px;
    bottom: 31px;
    position: fixed;
    color: #fff !important;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 48px;
    border: 2px solid transparent;
    box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
    z-index: 999;

}


@media (max-width: 575px) {


    #back-top {
        right: 20px;
    }
}

#back-top a i {
    display: block;
    line-height: 50px;
    color: white !important;
}


.center_my {
    margin: auto;
    width: 60%;
    border: 3px solid #73AD21;
    padding: 10px;
}


.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.644) !important;
}

.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link {
    color: #fff !important;
}



.font_my_bold {
    font-weight: bold;
}

@media (max-width: 992px) {
    .color_blue_drop a {
        color: rgba(255, 255, 255, 0.644) !important;

    }

}

@media only screen and (max-width: 1210px) and (min-width: 992px) {


    .nav-item a {
        font-size: 20px;
    }
}

/* Gallery Starts here */




.bg-img {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important
}

@-webkit-keyframes load7 {

    0%,
    100%,
    80% {
        box-shadow: 0 2.5em 0 -1.3em
    }

    40% {
        box-shadow: 0 2.5em 0 0
    }
}

@keyframes load7 {

    0%,
    100%,
    80% {
        box-shadow: 0 2.5em 0 -1.3em
    }

    40% {
        box-shadow: 0 2.5em 0 0
    }
}

.single-instagram-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s
}

.single-instagram-item img {
    width: 100%;
    -webkit-transition-duration: 1.5s;
    -o-transition-duration: 1.5s;
    transition-duration: 1.5s
}

.single-instagram-item .instagram-hover-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background-color: rgba(252, 96, 96, .9); */
    opacity: 0;
    visibility: hidden;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s
}

.single-instagram-item .instagram-hover-content a {
    text-align: center
}

.single-instagram-item .instagram-hover-content a i {
    color: #fff;
    font-size: 32px;
    display: block;
    margin-bottom: 15px
}

.single-instagram-item .instagram-hover-content a span {
    font-size: 14px;
    margin-bottom: 0;
    color: #fff
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .single-instagram-item .instagram-hover-content a span {
        font-size: 12px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .single-instagram-item .instagram-hover-content a span {
        font-size: 12px
    }
}

@media only screen and (max-width:767px) {
    .single-instagram-item .instagram-hover-content a span {
        font-size: 12px
    }
}

.single-instagram-item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.single-instagram-item:hover .instagram-hover-content {
    opacity: 1;
    visibility: visible
}

@-webkit-keyframes video-icon {
    0% {
        width: 0;
        height: 0;
        opacity: 1
    }

    50% {
        width: 100%;
        height: 100%;
        opacity: 1
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes video-icon {
    0% {
        width: 0;
        height: 0;
        opacity: 1
    }

    50% {
        width: 100%;
        height: 100%;
        opacity: 1
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

.follow-area {
    overflow: hidden;
}

@media (max-width:402px) {
    .phone_sm {
        font-size: 14px;

    }
}


@media (max-width:346px) {
    .phone_sm {
        font-size: 12px;

    }
}

/* span */
.span_red
{
    color:red;
}


