
/*======================= 
   typography
======================= */

body {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: #fff;
    font-weight: 400;
    color: #666666;
    padding: 0;
    margin: 0;
}

/* ======================
    normalize css
======================= */

p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    margin: 0;
    margin-bottom: 15px;
}

span {
    font-size: 16px;
    color: #666666;
}

i {
    line-height: 1;
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit;
}


img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

iframe {
    border: none;
}


::-moz-selection {
    background: #232323;
    color: #fff;
}

::selection {
    background: #232323;
    color: #fff;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.px-30 {
    padding: 0 30px;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.c-blue {
    color: #5aaf29;
}

.c-black {
    color: #232323
}

a.c-blue:hover {
    color: #232323
}

.bor-1 {
    border: 1px solid #d7d7d7;
}

.bor-b {
    border-bottom: 1px solid #d7d7d7;
}

/* ======================
    HEADINGS
======================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #232323;
    font-family: 'Inter', sans-serif; 
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

h1 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

h3 {
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
}

h4 {
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

h5 a,
h6 a {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

h5 a:hover,
h6 a:hover {
    color: #5aaf29
}

h6 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.sp-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.sp-70-100 {
    padding-top: 70px;
    padding-bottom: 100px;
}

.sp-100-70 {
    padding-top: 100px;
    padding-bottom: 70px;
}

.mb-30 {
    margin-bottom: 30px;
}

/*=========================== 
   custom scrollbar
============================= */

/* width */

::-webkit-scrollbar {
    width: 10px;
}

/* Track */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px #ccc;
    box-shadow: inset 0 0 5px #ccc;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #5aaf29;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #5aaf29;
}

/*======================= 
   custom button
======================= */

.btn {
    border: 0;
    border-radius: 0;
    font-size: 16px;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn-sm {
    padding: 6px 20px;
    font-size: 14px;
}

/*  btn-one */

.btn-one {
    background-color: #5aaf29;
    color: #fff;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.btn-one:hover {
    color: #5aaf29;
}

.btn-one:before,
.btn-one:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 25px solid #fff;
    border-bottom: 25px solid #fff;
    z-index: -1;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.btn-one:before {
    border-right: 25px solid transparent;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-one:after {
    border-left: 25px solid transparent;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-one:hover:before {
    -webkit-transform: translateX(-10%);
    -ms-transform: translateX(-10%);
    transform: translateX(-10%);
}

.btn-one:hover:after {
    -webkit-transform: translateX(10%);
    -ms-transform: translateX(10%);
    transform: translateX(10%);
}
.btn-sm.btn:before,
.btn-sm.btn:after{
   border-width: 17px;
}


/*==================    
   all title 
==================*/

.all-title {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.sec-title {
    color: #232323;
    position: relative;
    margin-bottom: 10px;
    font-weight: 700;
}

.all-title.white2 .sec-title {
    color: #fff;
}

.all-title .title-sep {
    fill: #5aaf29;
}

.title-sep2 {
    padding-bottom: 15px;
    position: relative
}

.title-sep2::after {
    position: absolute;
    background-color: #5aaf29;
    height: 2px;
    width: 60px;
    content: '';
    bottom: 0;
    left: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.all-title.white .sec-title {
    color: #fff
}

.all-title.white2 .title-sep {
    fill: #fff;
}

.sec-title span {
    color: #232323;
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.all-title p {
    max-width: 800px;
    margin: 42px auto 0;
    color: #666666;
}

.all-title.white p,
.all-title.white2 p {
    color: #fff
}

.title-sep {
    fill: #232323;
    height: 22px;
    width: 83px;
}

/*================== 
    back-to-top
==================*/

#c-scroll {
    display: none;
    position: fixed;
    line-height: 40px;
    text-align: center;
    background-color: #5aaf29;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    -webkit-animation-delay: .95s;
    animation-delay: .95s;
    padding: 8px 13px;
    border-radius: 0;
    color: #fff;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}
#c-scroll:after{
    content: '';
    border: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-bottom-color: #5aaf29;
    top: -11px;
    position: absolute;
    left:13px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    z-index: -1;
}
#c-scroll:hover:after{
    top: -26px;
}

/*====================== 
    Preloader Css
========================*/

.preloader {
    height: 100%;
    width: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 99999;
    text-align: center;
}

.loader-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader-inner .text {
    text-align: center;
    color: #232323;
    font-weight: 300;
    -webkit-animation: fadeAnim 1s linear infinite;
    animation: fadeAnim 1s linear infinite;
    fill: #232323;
    font-weight: 800;
    margin-top: 10px;
    margin-left: 10px;
}

.loader-inner img {
    -webkit-animation: fadeAnim 1s linear infinite;
    animation: fadeAnim 1s linear infinite;
}

@-webkit-keyframes fadeAnim {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeAnim {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*====================== 
    Header Css
========================*/

.logo h1{
    margin-bottom: 0;
    line-height: 1;
}
.navbar-nav .nav-item .mega-heading {
    display: none !important;
}

.menu-search-form {
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    z-index: 999;
}

.menu-search-form.s-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.header-one .menu-search a {
    height: 30px;
    width: 30px;
    background-color: #5aaf29;
    display: block;
    color: #fff;
    padding-top: 3px;
    text-align: center;
    font-size: 15px;
}

.header-three .menu-search a {
    color: #5aaf29
}

.menu-search-form input {
    padding: 10px;
    width: 100%;
    min-width: 250px;
    color: #232323;
    border: 1px solid #5aaf29;
}

.btn-search {
    position: absolute;
    right: 5px;
    height: 95%;
    width: 30px;
    padding: 0;
    background-color: transparent;
    color: #5aaf29;
}

.header-one {
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.logo-one {
    width: 20%;
}

.logo-one .logo {
    width: 100%;
    max-width: 300px;
    margin: 0 auto
}

.logo-one .logo a {
    display: block;
    padding: 29px 10px;
}

.head-top-one {
    background-color: #5aaf29;
    position: relative;
}

.header-one:after {
    background-color: #5aaf29;
    content: "";
    position: absolute;
    bottom: 0;
    height: 62px;
    z-index: -1;
    right: 0;
    width: 900px;
    top: 0
}

.head-top-one:after {
    background-color: #5aaf29;
    content: "";
    position: absolute;
    height: 62px;
    z-index: -1;
    left: -32px;
    width: 66px;
    top: 0;
    -webkit-transform: skew(43deg);
    transform: skew(43deg);
    -moz-transform: skew(43deg);
    -ms-transform: skew(43deg);
    -o-transform: skew(43deg);
}

.head-con {
    padding: 13.5px 0;
}

.head-con li i {
    margin-right: 5px;
}

.head-con li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    display: inline-block;
    color: #fff;
    padding: 5px 0;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3)
}

.head-con li:last-child {
    border-right: 0;
}

.head-socials {
    text-align: right;
}

.head-socials a {
    color: #fff;
    font-size: 20px;
    margin: 21px 0;
    margin-left: 18px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.head-socials a:hover {
    color: #232323;
}

.menu-one {
    position: relative;
}

header {
    position: relative;
    z-index: 999;
}

/* header two */

.header-two {
    padding: 20px 0;
    position: absolute;
    z-index: 9;
    width: 100%;
    left: 0;
}

.header-two.light .navbar-nav .nav-link {
    color: #fff
}

.affix.sticky-menu.light {
    background-color: #232323;
}

/* header three */

.header-three {
    position: absolute;
    width: 100%;
    padding: 14px 0;
}

/*====================== 
    programs
========================*/

/*====================== 
   blog
========================*/

.blog {
    position: relative;
    z-index: 0;
}

.blog-item {
    margin-bottom: 30px;
    background-color: #fff;
    position: relative;
}

.blog-item iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

.blog-1 {
    text-align: center;
}

.post-meta {
    padding: 7px 0;
    position: relative;
    text-align: center;
}

.blog-2 .post-meta {
    background-color: #d7d7d7;
}

.blog-1 .post-meta {
    margin: 0 10px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
    background-color: #fff;
}

.post-meta li {
    display: inline-block;
    font-size: 16px;
    margin: 8px 0;
    padding: 0 20px;
    position: relative;
    line-height: 1;
    text-transform: capitalize;
    font-family: 'Inter', sans-serif;
}
.blog-1 .post-img {
    overflow: hidden;
    margin-bottom: -20px;
    position: relative;
}
.post-img {
    overflow: hidden;
}

.post-img img {
    width: 100%;
    transition: all 0.9s ease;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
}

.post-meta li::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 1px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.5);
}

.post-meta li:last-child::after {
    display: none;
}

.post-meta li i {
    margin-right: 5px;
    color: #232323;
}

.post-meta li a {
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-2 .post-meta li a {
    color: #232323;
}

.post-meta li a:hover {
    color: #5aaf29
}

.blog-2 .post-content {
    border: 1px solid #d7d7d7;
}

.post-content h5 a {
    text-transform: initial;
    line-height: 1.4;
}

.date {
    background-color: #fff;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 8px;
    text-align: center;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    min-width: 60px;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
}

.blog-item:hover .date {
    background-color: #5aaf29;
}

.blog-item:hover .date * {
    color: #fff;
}

.date p {
    font-size: 16px;
    color: #232323;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.date span {
    font-size: 24px;
    color: #232323;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    display: block;
}

/*====================== 
   blog detail
========================*/

.blog-detail .post-meta li:first-child {
    padding-left: 0;
}

.blog-detail .post-meta li i {
    color: #5aaf29;
}

blockquote {
    margin: 30px 0;
    margin-left: 25px;
    border-left: 5px solid #5aaf29;
    padding-left: 25px;
}

blockquote p {
    font-style: italic;
    color: #232323;
}

.share .jssocials-share {
    display: inline-block;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 5px;
    margin: 0 5px;
    text-align: center;
}

.share .jssocials-share a {
    font-size: 19px;
    color: #858585;
    line-height: 1;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.share .jssocials-share:hover a {
    color: #5aaf29;
}

.post-tags {
    padding: 15px 0;
    border: 1px solid #d7d7d7;
    border-left: 0;
    border-right: 0;
    font-family: 'Inter', sans-serif;
}

.post-tags a {
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0 2px;
}

.post-tags a:hover {
    color: #5aaf29;
}

.author-post {
    background-color: #f5f5f5;
    padding: 30px;
}

.aut-img {
    display: table-cell;
    vertical-align: middle;
    width: 160px;
    padding-right: 20px;
}

.aut-img span {
    border: 2px solid #5aaf29;
    display: inline-block;
    padding: 3px;
}

.aut-content {
    display: table-cell;
    vertical-align: middle;
}

/* comments */

.comment-body {
    position: relative;
    margin-bottom: 30px;
    position: relative;
    padding-left: 150px;
}

ol.comment-list {
    position: relative;
    padding: 0;
}

.comment-author .avatar {
    position: absolute;
    left: 0;
    width: 130px;
}

.comment-author .fn {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #232323;
    font-style: normal;
    font-family: 'Inter', sans-serif;
}

.says {
    color: #5aaf29;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.comment-meta a {
    color: #5aaf29;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    margin-top: 2px;
    display: block;
}

.reply {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f5f5f5;
    padding: 2px 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.reply:hover {
    background-color: #5aaf29;
    color: #fff;
}

.form-control {
    margin-bottom: 30px;
    border: 0;
    border: 1px solid #d7d7d7;
    text-transform: capitalize;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    padding-left: 55px;
    background-color: #fff;
    color: #666;
    font-weight: 400;
    position: relative;
    padding: 10px;
    height: auto;
}

/*====================== 
   footer
========================*/

/* footer-one */



.foot-logo {
    margin-bottom: 39px;
}

.foot-top {
    position: relative;
}

.quick-link a,
.news-content a {
    font-family: 'Inter', sans-serif;
}

.footer-one {
    color: #fff;
    background-color: #232323;
}

.footer-one *,
.footer-two * {
    color: #fff;
}

.foot-title {
    margin-bottom: 35px;
}

.foot-title h4 {
    padding-bottom: 15px;
    position: relative;
}

.foot-title h4::after {
    position: absolute;
    background-color: #5aaf29;
    height: 2px;
    width: 60px;
    content: '';
    bottom: 0;
    left: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.address li {
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
}

.address i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 15px;
    color: #5aaf29;
}

.news-content a {
    margin-bottom: 4px;
    display: block;
    font-weight: 400;
}

.news-content p,
.news-content p i {
    font-size: 14px;
    color: #5aaf29;
    margin-bottom: 0;
}

.news-post {
    position: relative;
    margin-bottom: 30px;
}

.news-post:last-child {
    margin-bottom: 0;
}

.news-post .thumb {
    width: 90px;
    display: table-cell;
    vertical-align: top;
    padding-right: 15px;
}

.news-content {
    display: table-cell;
    vertical-align: top;
}

.foot-socials a {
    font-size: 20px;
    margin-top: 10px;
    margin-right: 18px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.foot-socials a:hover {
    color: #5aaf29;
}

.quick-link li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(179, 179, 179, 0.5)
}

.quick-link li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.quick-link li a {
    position: relative;
    padding-left: 30px;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.quick-link li a:after {
    font-size: 17px;
    content: "\f101";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.quick-link li a:hover:after {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
    color: #5aaf29
}

.quick-link li a:hover {
    color: #5aaf29
}

.hours-schedule li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(179, 179, 179, 0.5);
    display: block;
    overflow: hidden;
}

.hours-schedule li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hours-schedule li span {
    float: left;
    text-transform: capitalize;
}

.hours-schedule li span+span {
    float: right;
}


body {
    font-family: 'Montserrat', sans-serif !important;
}

h1,h2,h3,h4,h5,h6,p{
    font-family: 'Montserrat', sans-serif !important;
}

/*---------------------------------------------
    # Hero Section
-----------------------------------------------*/

.menu-two{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-two {
    padding: 20px 0;
    position: relative;
    z-index: 9;
    box-shadow: 0 0 20px -7px rgb(177 177 177 / 60%) !important;
    width: 100%;
    left: 0;
}

.navbar-toggler-icon {
    background-color: #03a9f4 !important;
}

.top-bar{
  padding: 20px 0px;
  background: #1f1f1f;
  border-bottom: 1px solid #eee;
}

@media (min-width: 991px){
    .header-two, 
    .top-bar{
        padding: 15px 75px;
    }
}

.navbar-nav .dropdown-menu .dropdown-item:hover>a {
    color: #03a9f4 !important;
}

.navbar-nav .nav-item:hover .nav-link {
    color: #03a9f4 !important;
}

.dropdown-item > a::before {
    background-color: #03a9f4 !important;
}

#c-scroll {
    background-color: #03a9f4 !important;
}

#c-scroll:after {
    border-bottom-color: #03a9f4 !important;
}

::-webkit-scrollbar-thumb {
    background: #03a9f4 !important;
}

.top-bar .social-icon{
  display: flex;
}

.top-bar .social-icon i{
  margin-right: 7px;
  line-height: 2.425rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 2.525rem;
  height: 2.525rem;
  border: 0.125rem solid transparent;
  padding: 0;
  text-align: center;
  color: #fefefe;
  font-size: 1.2625rem;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  
}

.top-bar .social-icon .fa-facebook{
    background: #3b5998;
}

.top-bar .social-icon .fa-facebook:hover{
  color: #3b5998;
  background: #fefefe;
  border-color: #3b5998;
}

.top-bar .social-icon .fa-twitter{
    background: #55acee;
}

.top-bar .social-icon .fa-twitter:hover{
  color: #55acee;
  background: #fefefe;
  border-color: #55acee;
}

.top-bar .social-icon .fa-instagram{
    background: #405DE6;
}

.top-bar .social-icon .fa-instagram:hover{
  color: #405DE6;
  background: #fefefe;
  border-color: #405DE6;
}

.top-bar .social-icon .fa-linkedin{
    background: #007bb5;
}

.top-bar .social-icon .fa-linkedin:hover{
  color: #007bb5;
  background: #fefefe;
  border-color: #007bb5;
}

.top-bar .social-icon .fa-pinterest{
    background: #3b5998;
}

.top-bar .social-icon .fa-pinterest:hover{
  color: #3b5998;
  background: #fefefe;
  border-color: #3b5998;
}

.top-bar .social-icon .fa-youtube{
    background: #bb0000;
}

.top-bar .social-icon .fa-youtube:hover{
  color: #bb0000;
  background: #fefefe;
  border-color: #bb0000;
}

.top-bar .social-icon i:hover{
  background-color: #fff;
  color: #333;
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}



.top-bar .content{
  display: flex;
  align-items: center;
  margin-right: 45px;
}

.top-bar .content:last-child{
  margin-right: 0;
}

.top-bar .content .icon i{
  color: #03a9f4;
  font-size: 25px;
  margin-right: 15px;
}

.top-bar .content .details p{
  margin-bottom: 0;
  font-size: 14px;
  color: #A5A5A5;
}

.top-bar .content .details p.light{
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.top-bar .content .details p.light:hover{
  color: #777;
}

/*=================================
            Home Area
====================================*/
.hero-sec {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-sec:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1f1f1f;
    opacity: 0.3;
}

.hero-sec .content-sec{
  position: relative;
  width: 100%;
  padding: 100px 20px;
}

.hero-sec .content-sec .section-subtitle{
    color: #233d63;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    margin: 0px 0px 10px 0px;
}

.hero-sec .content-sec .section-title{
    color: #fff;
    text-shadow: 0px 7px 10px rgb(0 0 0 / 10%);
    text-transform: capitalize;
    max-width: 800px;
    font-size: 64px;
    font-weight: 900;
    line-height: 74px;
}

.hero-sec .content-sec .heading__description p {
    color: #fff;
    font-size: 20px;
    max-width: 600px;
    font-weight: 400;
    line-height: 30px;
}

.btn-wraper{
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
  position: relative;
}

.hero-sec .content-sec .readmore-btn{
    padding: 20px 40px 20px 40px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffffff;
    background-color: #03a9f4;
    border-style: solid;
    border-width: 2px;
    border-color: #03a9f4;
    border-radius: 50px;
    transition: all 0.4s linear;
    box-shadow: 0px 15px 25px 0px rgb(0 0 0 / 10%);
}

.hero-sec .content-sec .readmore-btn:hover {
    color: #03a9f4;
    border-color: #fff;
    background-color: #ffffff;
}

.about .btn-wraper{
  margin-top: 15px;
}

.btn-wraper .home-btn:hover{
  background-color: #4d46b5;
  color: #fff;
}

.bg-color{
  background-color: #282e3f;
}



/*=================================
slider Area End
====================================*/

.feature-area {
    position: relative;
    z-index: 2;
  }

.feature-area .feature-box{
  display: block;
  text-align: left;
  background-color: #fff;
  padding: 50px;
  border-bottom: 6px solid #03a9f4;
  transition: all 0.3s;
  box-shadow: rgb(0 0 0 / 20%) 0px 18px 50px -10px;
}

.feature-area .feature-box .icon i {
    color: #03a9f4;
    font-size: 40px;
}

.feature-area .feature-box .title {
    margin-bottom: 5px;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
}

.feature-area .feature-box .title a {
    text-transform: capitalize;
    color: #000;
}

.feature-area .feature-box .description{
    color: #000;
}

.feature-area .img-box{
  margin: 0px 0px 0px -56px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
@media (min-width: 992px){
  section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
  }
}

@media (max-width: 992px){
  section {
    padding: 65px 0;
    overflow: hidden;
    position: relative;
  }
  section.home7-hero-sec {
    padding: 100px 0 0;
  }
}

.section-title-5 {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title-5 h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
}

.section-title-5 .separator {
    position: relative;
    margin: 5px auto 0px;
    width: 120px;
}

.section-title-5 .separator ul {
    padding: 0px;
    margin: 0px;
}

.section-title-5 .separator ul::before {
    content: '';
    width: 60px;
    height: 4px;
    background: #03a9f4;
    left: -18px;
    top: 47%;
    position: absolute;
    border-radius: 50px;
}

.section-title-5 .separator ul li i{
    color: #03a9f4;
    font-size: 24px;
}

.section-title-5 .separator ul::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #03a9f4;
    right: -18px;
    top: 47%;
    border-radius: 50px;
}

.section-title-5 p {
  margin: 25px;
  color: #838383;
  font-weight: 500;
}

.cl-white{
  color: #fff;
}

.cta-5{
  padding: 150px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cta-5:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: 0.6;
}

.cta-5 h3{
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
}

.cta-5 h2{
  color: #fff;
  width: 45%;
  margin: auto;
  font-size: 48px;
  letter-spacing: 1px;
}

/* about css */

.about{
  position: relative;
  background-color: #f0f0f085;
}

.about .about-content{
    text-align: left;
}

.about .about-content .main-title{
  display: block;
  margin: 50px 0 20px 0;
  font-size: 35px;
  text-transform: capitalize;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-5{
  background-color: #fff;
}

.services-5 .service-box {
  padding: 50px 50px 48px 40px;
  background: #fff;
  text-align: center;
  box-shadow: rgb(0 0 0 / 20%) 0px 18px 50px -10px;
  text-align: left;
  margin-bottom: 30px;
  transition: all 0.5s;
}

.services-5 .service-box:hover{
    background-color: #03a9f4;
    border-color: #03a9f4;
    z-index: 2;
}

.services-5 .service-box i {
  line-height: 65px;
  color: #03a9f4;
  font-size: 60px;
}

.services-5 .service-box:hover i,
.services-5 .service-box:hover p,
.services-5 .service-box:hover h4 a{
  color: #fff;
}

.services-5 .service-box h4 {
  margin: 13px 0;
}

.services-5 .service-box h4 a {
  color: #1b1d21;
  font-weight: 700;
  font-size: 21px;
  text-transform: capitalize;
  transition: 0.3s;
}

.services-5 .service-box h4 a:hover {
  color: #fff;
}

.services-5 .service-box p {
  line-height: 24px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #838383;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-5 .portfolio-item {
   margin-bottom: 30px;
}
.portfolio-box{
     background-color: #000;
     overflow: hidden;
     position: relative;
 }
 .portfolio-box:before{
     content: '';
     transform: scaleY(0);
     position: absolute;
     left: 12px;
     top: 12px;
     bottom: 12px;
     right: 12px;
     z-index: 1;
     transition: all 0.5s ease 0s;
 }
 .portfolio-box:hover:before{ 
    transform: scaleY(1); 
 }
 .portfolio-box img{
     width: 100%;
     height: auto;
     transition: all 0.5s ease 0s;
 }
 .portfolio-box:hover img{
     opacity: 0.2;
     transform: scale(1.1);
 }
 .portfolio-box .portfolio-box-content{
     color: #fff;
     text-align: center;
     width: 90%;
     filter: blur(5px);
     opacity: 0;
     transform: translateX(-50%) translateY(50%);
     position: absolute;
     bottom: 60%;
     left: 50%;
     z-index: 2;
     transition: all 0.5s ease 0.2s;
 }
 .portfolio-box:hover .portfolio-box-content{
     filter: blur(0);
     opacity: 1;
 }
 .portfolio-box .title{
     font-size: 25px;
     font-weight: 600;
     letter-spacing: 0.5px;
     text-transform: capitalize;
     margin: 0;
     color: #fff;
     transition: all 0.5s;
 }

  .portfolio-box .title:hover{
    color: #03a9f4;
  }
 
 .portfolio-box .icon{
     padding: 0;
     margin: 0;
     list-style: none;
     opacity: 0;
     transform: translateX(-50%) scale(0);
     position: absolute;
     left: 50%;
     bottom: 35%;
     z-index: 1;
     transition: all 0.3s ease 0.3s;
 }
 .portfolio-box:hover .icon{
     opacity: 1;
     transform: translateX(-50%) scale(1);
 }
 .portfolio-box .icon li{
     margin: 0 3px;
     display: inline-block;
 }
 .portfolio-box .icon li a{
     color: #fff;
     background-color: transparent;
     font-size: 25px;
     display: block;
     transition: all 0.3s ease 0s;
 }

 .portfolio-box .icon li a:hover{
     color: #03a9f4;
 }

 @media only screen and (max-width:990px){
    .portfolio-box{ margin: 0 0 30px; }
 }



.cta-7 {
  padding: 100px 0;
  background-color: #03a9f4;
}

.c-white {
    color: #fff;
}

.cta-7 h3{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: capitalize;
}

.cta-7 h2{
  color: #fff;
  text-transform: capitalize;
  font-size: 48px;
  font-weight: 700; 
}

.cta-7 p{
  letter-spacing: 1px;
  max-width: 800px;
  margin: auto;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
}

.cta-7 .flex-btn{
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-7 .btn{
    padding: 9px 38px;
    color: #272727;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    border: 2px solid #fff;
    border-radius: 50px;
    /*border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;*/
    background-color: #fff;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.mb-0 {
    margin-bottom: 0!important;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    border-radius: 0;
    font-size: 15px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn:hover{
    border: 2px solid #fff;
  background-color: #03a9f4;
  color: #fff;
}

@media screen and (max-width: 768px){
  .cta-7 .btn {
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.our-team-sec .section-bg{
    position: relative;
    width: 100%;
    background: #fff;
}

.our-team-sec .our-team{
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgb(0 0 0 / 10%);
}

.our-team-sec .our-team img{
    width: 100%;
    height: auto;
}

.our-team-sec .our-team .team-content{
    width: 100%;
    height: 100%;
    background: hsl(199deg 98% 48% / 80%);
    padding-top: 10%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: all 0.5s;
}
.our-team-sec .our-team:hover .team-content{ 
    transform: translateY(65%); 
}

.our-team-sec .our-team .title{
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
.our-team-sec .our-team .post{
    display: block;
    font-size: 17px;
    color: #fff;
}
.our-team-sec .our-team .social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.our-team-sec .our-team .social li{
    display: inline-block;
    margin-top: 30px;
}
.our-team-sec .our-team .social li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #4c5462;
    margin-right: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease 5s;
}
.our-team-sec .our-team .social li a:hover{
    background: #000;
    color: #fff;
}

@media only screen and (max-width: 990px){
    .our-team-sec .our-team{
       margin-bottom: 30px; 
    }
}


/*--------------------------------------------------------------
# News & Blog
--------------------------------------------------------------*/

.blog-5 {
  position: relative;
  background: #f6f6f6;
}

.blog-5 .blog-item {
    margin-bottom: 30px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.1);
    transition: all 0.5s;
}

.blog-5 .blog-1 .post-img {
    overflow: hidden;
    margin-bottom: -20px;
    position: relative;
}
.blog-5 .post-img {
    overflow: hidden;
}

.blog-5 .post-img img {
    width: 100%;
    transition: all 0.9s ease;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
}

.blog-5 .blog-item:hover .post-img img {
    transform: scale(1.1);
    
}

.blog-5 .blog-item:hover a.heading{
  color: #03a9f4;
}

.blog-5 .post-content{
  padding: 20px 40px 40px;
}

.blog-5 .post-content h5{
  line-height: 36px;
  padding: 20px 0;
  margin-bottom: 0;
}

.blog-5 .post-content h5 a {
    line-height: 1.4;
    font-size: 22px;
    color: #1f1f1f;
    display: block;
    transition: all 0.3;
}

.blog-5 .post-content h5 .heading:hover{
    color: #03a9f4;
}

.blog-5 .btn-wraper .read-more-btn{
    display: block;
    position: relative;
    width: 150px;
    text-align: center;
    padding: 12px 13px;
    font-size: 12px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    background-color: #03a9f4;
    transition: all 0.5s;
    border: 1px solid #03a9f4;
}

.blog-5 .btn-wraper .read-more-btn:hover{
    color: #fff !important;
    border: 1px solid #03a9f4;
}

@media screen and (max-width: 991px){
    .navbar {
      width: 100%;
      padding: 0;
      position: absolute;
      top: 62px;
      right:10px;
    }
}

/*==============================================
                Start Testimonials
===============================================*/

#testimonials{
  position: relative;
  background-color: #f6f6f6;
  width: 100%;
}

#testimonials .testimonial{
  background: #fff;
  margin: 15px;
  border-bottom: 4px solid #03a9f4;
  transition: all 0.5s;
}

#testimonials .testimonials-content .testimonial-desc {
    padding: 33px 39px;
    font-size: 18px;
    line-height: 36px;
    width: 80%;
    margin: 0 auto;
    justify-content: flex-start;
    letter-spacing: 1px;
    text-align: left;
    border-bottom: 1px solid #d5d5d5;
}

#testimonials .testimonial .client-desc{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin: 0 90px;
    
}

#testimonials .testimonials-content .testimonial-pic{
  position: relative;
  padding: 0 35px;
}

#testimonials .testimonials-content .testimonial-pic:before{
    position: absolute;
    content: '';
    top: 15px;
    left: 0;
    width: 2px;
    height: 50px;
    background: #03a9f4;
}

#testimonials:hover .testimonial-pic:before{
    background: #fff;
}

#testimonials .testimonials-content .testimonial-pic img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

#testimonials .testimonials-content .testimonial-profile{
  margin-left: 0px;
}

#testimonials .testimonials-content .testimonial-profile span {
    display: block;
    color: #1f1f1f;
    margin-bottom: 10px;
    text-transform: capitalize;
}

#testimonials .testimonials-content .testimonial-profile span.name {
    font-weight: 700;
}

#testimonials .testimonials-content .testimonial-profile span.post {
    color: #03a9f4;
    font-weight: 700;
}

.owl-theme .owl-dots .owl-dot {
    outline: none;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #03a9f4;
}

#testimonials .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

#testimonials .testimonial:hover{
    background-color: #03a9f4;
}

#testimonials .testimonial:hover .testimonial-desc,
#testimonials .testimonial:hover .testimonial-profile .name,
#testimonials .testimonial:hover .testimonial-profile .post{
    color: #fff;
}

#testimonials .owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 10px;
    margin: 12px 7px;
    border-radius: 3px;

}

/*==============================================
                End Testimonials
===============================================

/*==============================================
                Start Footer
===============================================*/
.footer{
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.footer:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}

.footer .foot-top .logo img{
  width: 235px;
}

.footer .foot-top h2{
  font-size: 25px;
  text-transform: uppercase;
}

.footer .foot-top .desc{
  color: #888;
}

.footer .foot-top .menu-link,
.footer .foot-top .social-icon{
  margin-top: 50px;
}

.footer .foot-top .menu-link li{
  display: inline-block;
  margin-right: 40px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
}

.footer .foot-top .menu-link li:hover a{
  color: #03a9f4;
  transition: all 0.3s;
}

.footer .foot-top .social-icon li{
  display: inline-block;
  margin-right: 40px;
}

.footer .foot-top .social-icon li i{
  color: #838383;
  font-size: 17px;
  transition: 0.3s;
}

.footer .foot-top .social-icon li i:hover{
  color: #03a9f4;
}

.footer .foot-top .social-icon p{
  margin-top: 10px;
  font-size: 13px;
  color: #888;
}

.footer .foot-top .heading-con{
  position: relative;
  font-size: 19px;
  color: #03a9f4;
  margin: 20px 0 40px 0;
}

@media (min-width: 1025px) {
    .footer .foot-top .heading-con:after{
    position: absolute;
    content: '';
    width: 750px;
    top: 50%;
    right: 100px;
    background-color: #414141;
    height: 3px;
  }
}

@media (max-width: 1025px) {
    .footer .foot-top .heading-con:after{
    position: absolute;
    content: '';
    width: 550px;
    top: 50%;
    right: 100px;
    background-color: #414141;
    height: 3px;
  }
}

@media (max-width: 768px) {
    .footer .foot-top .heading-con:after{
    position: absolute;
    content: '';
    width: 350px;
    top: 50%;
    right:70px;
  }
}

@media (max-width: 768px) {
    .footer .foot-top .heading-con:after{
      width: 186px;
      right: 25px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .footer .foot-top .heading-con:after{
    width: 300px;
    right: 25px;
  }
}
.footer .foot-top .address-list ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .foot-top .address-list i{
  margin-right: 15px;
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  line-height: 35px;
  text-align: center;
  color: #888;
  border-radius: 50%;
  border: 1px solid #888;
  transition: all 0.3s;
}

.footer .foot-top .address-list li{
 display: flex;
 cursor: pointer;
}

.footer .foot-top .address-list li:hover i{
  color: #03a9f4;
  border-color: #03a9f4;
}

.footer .foot-top .address-list p{
  color: #888;
}

@media (max-width: 1299px) {
    .slider-wrap .swiper-button-next,
    .slider-wrap .swiper-button-prev {
        margin-top: 0;
        position: relative;
        top: 0;
        left: auto;
        right: auto;
        display: inline-block;
        margin: 0 10px;
    }
    /*.service-box2 {
        width: calc(100% / 3);
    }*/
}

@media (max-width: 1300px) {
    .programs-slider-one {
        margin-bottom: 50px;
    }
}
@media (max-width: 1199px) {
    .head-top-one:after {
        left: -20%;
        width: 500px;
        -webkit-transform: skew(0);
        transform: skew(0);
        -moz-transform: skew(0);
        -ms-transform: skew(0);
        -o-transform: skew(0);
    }
    .video-one{
        margin-bottom: -159px;
    }
    .extra-pad {
        padding-top: 259px;
    }
    .about-2::after {
        display: none;
    }
    .vid-box2 {
        text-align: center;
    }
    .post-meta li{
        padding: 0 12px;
    }
    .amount {
        width: 100%;
        display: block;
    }
    .price-content {
        display: block;
        padding:30px 25px;
    }
    .error-one h2 {
        font-size: 220px;
    }
    .programs-slider-one {
        height: 413px;
        margin-bottom:50px;
    }
}


@media (min-width: 1400px) {
    .team-slider-two.owl-theme .owl-nav .owl-prev,
    .class-3slider.owl-theme .owl-nav .owl-prev {
        left: -40px;
    }
    .team-slider-two.owl-theme .owl-nav .owl-next,
    .class-3slider.owl-theme .owl-nav .owl-next {
        right: -40px;
    }
}


@media (max-width: 1399px) {
    .logo-one .logo a {
        padding: 32px 10px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .navbar-nav .nav-item .mega-heading {
        color: #5aaf29;
        padding: 10px;
        display: block;
        pointer-events: none;
    }
    .header-one:after {
        display: none;
    }
    .navbar-nav .nav-item a,
    .navbar-nav .dropdown-item a,
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 14px;
    }
    .video-one {
        margin-bottom: -118px;
    }
    .extra-pad {
        padding-top: 218px;
    }
    /*.service-box2 {
        width: calc(100% / 2);
    }*/
    .testi-one-slider{
        margin-top: 0;
    }
    .error-one{
        text-align: center;
    }
    .error-one h2{
        font-size:170px;
    }
    .error-text h2{
        font-size:150px;
    }
    .error-one h3 {
        font-size: 50px;
    }
    .error-one p {
        font-size: 20px;
    }    
    .programs-slider-one {
        height: 458px;
        margin-bottom:40px;
    }
}

@media (min-width: 992px) {
    .testi-one-slider .owl-nav {
        position: absolute;
        top: 50%;
        margin-top: -15px;
        width: 100%;
        left: 0;
    }
    .testi-one-slider.owl-theme .owl-nav .owl-prev {
        left: -65px;
    }
    .testi-one-slider.owl-theme .owl-nav .owl-next  {
        right: -65px;
    }
    .testi-one-slider.owl-theme .owl-nav .owl-prev, 
    .testi-one-slider.owl-theme .owl-nav .owl-next {
        position: absolute;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .video-one {
        margin-bottom: -87px;
    }
    .extra-pad {
        padding-top: 187px;
    }
    .service-box2 {
        width: 100%;
        display: block;
    }
    .error-bottom{
        display:block;
    }
    .programs-slider-one {
        height: 400px;
    }
    
    .home-area .owl-theme .owl-dots {
        bottom: 50px;
    }
}

@media (max-width: 576px) {
    .programs-slider-one .swiper-slide img {
        max-width: 180px;
        width: 100%;
    }
    .team-two .team-det{
        display: block;
        padding-right: 0;
        max-width: 100%;
    }
    .team-two .team-img {
        display: none;
    }
    .aut-img {
        display: block;
        width: 150px;
        margin-bottom: 20px;
        padding-right: 0;
    }
    .text-box, .btn-box {
        display:block;
    }
    .btn-box {
       padding-left: 0
    }
    .comment-body {
        padding-left:90px;
    }
    .comment-author .avatar {
        width: 70px;
    }
    .programs-slider-one {
        height: 410px;    
        padding-top: 73px;
    }
    #testimonials .testimonial .client-desc {
        margin: 0 20px;
    }
}

@media (max-width: 767px) {
    .home7-hero-sec .slider-item .slider-content{
        padding-top: 95px;
        padding-bottom: 150px;
    }
    .home7-hero-sec .slider-item .slider-content h1{
        font-size: 38px;
    }
    .home7-hero-sec .slider-content  p {
        color: #fff;
        max-width: 650px;
        font-size: 15px !important;
        margin-bottom: 30px;
    }
    .footer{
        padding: 60px 0;
    }
    .footer .foot-top .logo img {
        margin-bottom: 30px;
    }
    .footer .foot-top .menu-link li{
        display: block;
        margin-bottom: 5px;
    }
    .footer .foot-top .address-list li {
        margin-bottom: 20px;
    }
    .footer .foot-top .menu-link, 
    .footer .foot-top .social-icon{
        margin: 20px 0;
    }
    .footer .foot-top h2 {
        margin-top: 20px;
    }
    .btn{
        font-size: 12px;
        padding: 10px 15px;
    }
    .home7-hero-sec .slider-btn .slider-btn1 {
        margin-right: 20px;
    }
}

.affix.sticky-menu {
    position: fixed;
    color: #000;
    padding:10px 20px;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    z-index: 9999;
    background-color: #fff;
    -webkit-animation: slideInDown;
    animation: slideInDown;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-box-shadow: 0 0 20px -7px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px -7px rgba(0, 0, 0, 0.6);
}
.header-one .affix.sticky-menu .navbar{
    max-width: 1140px;
    margin: 0 auto;
}
.navbar {
    padding: 0;
}
.main-menu {
    position: relative;
}
.menu {
    color: #232323
}

.navbar-nav .nav-item a,
.navbar-nav .dropdown-item a,
.navbar-expand-lg .navbar-nav .nav-link {
    text-transform: capitalize;
    font-weight: 600;
    padding:20px 0;
    color: inherit;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    color: #232323;
}

.navbar-nav .nav-link {
    position: relative;
}

.navbar-nav .nav-item:hover .nav-link{
    color: #5aaf29;
}
.navbar-nav .dropdown-item a {
    padding: 13px 0px;
}

.navbar-nav .dropdown-menu .dropdown-item a {
    color: #000;
    font-size: 16px;
    display: block;
    padding: 8px 15px;
    margin: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    text-transform: capitalize;
    font-weight: 400;
}

.navbar-toggler {
    padding: 2px;
    line-height: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    z-index: 999;
    position: absolute;
    right: 0;
    top: -52px;
}

.navbar-toggler-icon {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    position: relative;
    z-index: 1;
    -webkit-transform-origin: 4px 0px;
    transform-origin: 4px 0px;
    -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    background-color: #5aaf29;
    -webkit-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    -moz-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    -ms-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    -o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

.navbar-toggler.open .navbar-toggler-icon {
    opacity: 1;
    transform: rotate(45deg) translate(-1px, -8px);
    -webkit-transform: rotate(45deg) translate(-1px, -8px);
    -moz-transform: rotate(45deg) translate(-1px, -8px);
    -ms-transform: rotate(45deg) translate(-1px, -8px);
    -o-transform: rotate(45deg) translate(-1px, -8px);
    background-color: #232323
}

.navbar-toggler.open .bar1 {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
    -webkit-transform: rotate(0deg) scale(0.2, 0.2);
    -moz-transform: rotate(0deg) scale(0.2, 0.2);
    -ms-transform: rotate(0deg) scale(0.2, 0.2);
    -o-transform: rotate(0deg) scale(0.2, 0.2);
    background-color: #fff
}

.navbar-toggler.open .bar3 {
    transform: rotate(-45deg) translate(1px, 2px);
    -webkit-transform: rotate(-45deg) translate(1px, 2px);
    -moz-transform: rotate(-45deg) translate(1px, 2px);
    -ms-transform: rotate(-45deg) translate(1px, 2px);
    -o-transform: rotate(-45deg) translate(1px, 2px);
}

.dropdown-menu {
    text-align: left;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0 !important;
    background-color: transparent;
}

.dropdown-toggle::after{
    font-family: "FontAwesome";
    content: "\f067";
    position: relative;
    top: 3px;
    margin-left: 5px;
    vertical-align: top;
    border: 0;
    width: auto;
    font-weight: 100;
    font-size: 12px;
    font-weight: 100;
    height: auto;
}

.dropdown-menu .dropdown-toggle::after {
    position: absolute;
    right: 20px;
    top: 10px;
}

.menu-con {
    text-align: right;
}

.menu-con .btn-blue {
    margin-top: 22px;
    padding: 13px 25px;
}

@media (max-width: 991px) {

    .navbar-collapse {
        background-color: #000;
        margin-top: 0;
        margin-left: 0;
        padding: 15px 25px;
        overflow-y: scroll;
        max-height: 350px;
        margin-top: 15px;
    }
    .navbar-nav .dropdown-menu .dropdown-item a {
        color: #fff;
        padding: 10px 0;
    }
    .dropdown-menu .dropdown-item {
        padding: 0;
        padding-left: 20px
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        color: #fff;
    }
}

@media (max-width: 992px) {
    header .top-bar{
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin-right: 28px;
    }

    .navbar-nav .nav-item:last-child{
        margin-right: 0;
    }
    
    .dropdown-menu {
        display: block;
        position: absolute;
        min-width: 190px;
        width: auto;
        z-index: 3;
        opacity: 0;
        visibility: hidden;
        text-align: left;
        margin: 0;
        padding: 0;
        display: block;
        border: 0;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        font-size: 15px;
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        -webkit-box-shadow: 0 0 10px rgba(105, 105, 105, 0.1);
        box-shadow: 0 0 10px rgba(105, 105, 105, 0.1);
    }
    .dropdown-menu .dropdown-menu {
        left: -100%;
        top: 0;
    }
    .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }

    ul.dropdown-menu:after{
        content: "";
        position: absolute;
        height: 15px;
        width: 15px;
        top: -5px;
        left: 40px;
        opacity: 1;
        z-index: -1;
        background: #fff;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    ul.mega-dropdown:after{
        content: "";
        position: absolute;
        height: 15px;
        width: 15px;
        top: -5px;
        left: 250px;
        opacity: 1;
        z-index: -1;
        background: #fff;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .mega-dropdown {
        background-color: #fff;
    }

    .dropdown-item {
        padding: 5px;
        margin: 0;
        position: relative;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        background-color: #fff
    }
    .dropdown-item > a{
        position: relative;
    }
    .dropdown-item > a::before{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 4px;
        height:0;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        background-color: #5aaf29;
    }
    .dropdown-item:hover>a::before {
        height: 100%;
    }
    .navbar-nav .dropdown-menu .dropdown-item:hover>a {
        color: #5aaf29;
    }
    .dropdown-item {
        background-color: #fff
    }

    .dropdown-item:last-child {
        border: 0
    }
    .dropdown.has-mega {
        position: static;
    }
    .dropdown-menu.mega-dropdown {
        width: 100%;
        padding: 10px 0;
    }
    .mega-dropdown>li {
        width: 25%;
        float: left;
        background-color: #fff;
    }
    .navbar-nav .nav-item .mega-heading {
        text-transform: uppercase;
        color: #232323;
        font-weight: 700;
        display: block;
        padding: 10px 0;
        pointer-events: none;
        border-bottom: 1px solid #d7d7d7;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        top: 87px;
        box-shadow: 8px 8px 30px 0 rgb(0 0 0 / 12%);
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu ul{
        top: 0px;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu ul:after{
        content: '';
        position: absolute;
        border: 0;
        height: 0;
        width: 0;
    }
}

@media (min-width: 1199px) {

    .navbar-nav .nav-item {
        margin-right: 28px;
    }
}


::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
    background: #ceac92;
}

.bg-theme{
    background-color: #ceac92;
}
h5 a:hover, h6 a:hover {
    color: #ceac92;
}
.c-theme {
    color:#ceac92;
}
.all-title .title-sep {
    fill: #ceac92;
}
/*  btn-one */
.btn-one{
    background-color: #ceac92;
}
.btn-one:hover{
    color:#ceac92;
}


/*  btn-two */

.btn-two{
    color: #ceac92;
}

.btn-two:before, 
.btn-two:after {
    border-top-color:#ceac92;
    border-bottom-color: #ceac92;
}
#c-scroll:after{
    border-bottom-color: #ceac92;
}
#c-scroll {
    background-color: #ceac92;
}
.navbar-nav .nav-item:hover .nav-link {
    color: #ceac92;
}
.navbar-toggler-icon{
    background-color: #ceac92;
}
.dropdown-item > a::before {
    background-color: #ceac92;
}
.navbar-nav .dropdown-menu .dropdown-item:hover>a {
    color: #ceac92;
}

.service-box2::after{
    background-color: #ceac92;
}

.title-sep2::after {
    background-color:#ceac92;
}
.list-2 li:before {
    background-color:#ceac92;
}
.filter-btn.active:before,
.filter-btn.active:after {
    background-color: #ceac92;
}
.team-two .t-socials a:hover{
    color: #ceac92;
}
.team-two:hover{
    border-color:  #ceac92;
}
.team-slider-two.owl-theme .owl-nav [class*=owl-]:hover{
    color: #ceac92;  
 }
 .service-box3 h5::after {
    background-color: #ceac92;
}
.service-box:hover .service-content{
    background-color:#ceac92;
    border-color: #ceac92;
}
 .foot-title h4::after {
    background-color: #ceac92;
 }
 .address i,
 .news-content p, 
 .news-content p i,
 .quick-link li a:hover,
 .foot-socials a:hover,
 .foot-bottom a,
 .quick-link li a:hover::after {
    color: #ceac92;
}
.navbar-nav .nav-item .mega-heading {
    color: #ceac92;
}
.cta {
    background-color: #ceac92;
}
.counter-box:after {
    background-color: #ceac92;
}
.feature-box:hover h5,
.banner-link li span {
    color: #ceac92;
}
.header-three .menu-search a,
.widget_categories li:hover,
.widget_archive li:hover{
    color:#ceac92;
}
.blog-item:hover .date,
.feature-box::after,
.class-box:hover h5:before, 
.class-box:hover h5:after{
    background-color: #ceac92;
}
.price-box .amount::after {
    background:#ceac92;
}
.price-box .amount::after,
.amount::before{
    background-color: #ceac92;
}

.price-box2:hover h5,
.price-box:hover h5 {
    color: #ceac92;
}
.price-content h5::after {
    background-color: #ceac92;
}
.programs-slider-one .swiper-slide-active h5 {
    color:  #ceac92;
}
.slider-wrap .swiper-button-prev:hover::after, 
.slider-wrap .swiper-button-next:hover::after {
    color: #ceac92;
}
.team-one .team-social {
    background-color:#ceac92;
}
.vid-btn:hover {
    color: #ceac92;
}

.main-menu .menu-item-has-children > a::after{
    content: "\f067" !important;
}

.owl-theme{
    display: flex !important;
}

.section-title-5 .separator ul li {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: none !important;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav {
    margin-top: 10px;
}
.owl-theme .owl-nav [class*="owl-"] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none;
}
.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}
.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
}
.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;
    -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -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 {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    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-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;
}
.owl-carousel .animated {
    animation-duration: 1s;
    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-height {
    transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}
.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;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 0.1s 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-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.hero-sec {
    height: 100% !important;
}

.main-menu .sub-menu li a:hover, .main-menu .sub-menu li a:focus {
    color: #03a9f4 !important;
}