/* 



*/

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
    font-weight: 300;
}

a {
    text-decoration: none !important;
    transition: all 0.5s;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    letter-spacing: -0.04rem;
    color: #113c53;
}

b,
strong {
    font-weight: 600;
}

.filled-button {
    background-color: #158ece;
    border: 1px solid #158ece;
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.02rem;
    padding: 8px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.filled-button:hover {
    background-color: #3BB54B;
    border: 1px solid #3BB54B;
}



.border-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.02rem;
    padding: 10px 28px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.border-button:hover {
    background-color: #fff;
    color: #3BB54B;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 600;

}

.section-heading em {
    font-style: normal;
    color: #3BB54B;
}

.section-heading span {
    display: block;
    margin-top: 10px;
}

#preloader {
    overflow: hidden;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 9999999;
    color: #000;
}

#preloader .jumper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    margin: auto;
    width: 50px;
    height: 50px;
}

#preloader .jumper>div {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: jumper 1s 0s linear infinite;
    animation: jumper 1s 0s linear infinite;
}

#preloader .jumper>div:nth-child(2) {
    -webkit-animation-delay: 0.33333s;
    animation-delay: 0.33333s;
}

#preloader .jumper>div:nth-child(3) {
    -webkit-animation-delay: 0.66666s;
    animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    5% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Sub Header Style */

.sub-header {
    background-color: #f9f9f9;
    /*    border-bottom: 1px solid rgba(0, 0, 0, 0.2);*/
    height: 46px;
    line-height: 46px;
}

.sub-header ul li {
    display: inline-block;
}

.sub-header ul.left-info li {
    border-left: 1px solid rgba(250, 250, 250, 0.3);
    padding: 0px;
    margin-right: 10px;
}

.sub-header ul.left-info li:last-child {
    border-right: 1px solid rgba(250, 250, 250, 0.3);
    margin-right: 0px;
}

.sub-header ul.left-info li i {
    margin-right: 5px;
    font-size: 18px;
}

.sub-header ul.left-info li a {
    color: #212529;
    font-size: 14px;
    font-weight: 600;
}

.sub-header ul.left-info li a:hover {
    text-decoration: underline !important;
}

.sub-header ul.right-icons {
    float: left;
}

ul.left-info {
    float: right;
}

.sub-header ul.right-icons li {
    margin-right: -4px;
    width: 46px;
    display: inline-block;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.sub-header ul.right-icons li:first-child {
    border-left: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.right-icons li a {
    color: #212529;
    transition: all 0.3s;
}

.sub-header ul.right-icons li a:hover {
    opacity: 0.75;
}



/* Header Style */
header {
    /*    position: absolute;*/
    z-index: 99999;
    width: 100%;
    background-color: transparent !important;
    /*    height: 90px;*/
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

header .navbar {
    padding: 15px 0px;
    border-bottom: solid 1px #0000000f;
}

.background-header .navbar {
    padding: 10px 0px;
}

.background-header {
    top: 0;
    position: fixed;
    background-color: #fff !important;
    /*    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);*/
}

.background-header .navbar-brand h2 {
    color: #3BB54B !important;
}

.background-header .navbar-nav a.nav-link {
    color: #1e1e1e !important;
}

.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.current,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
    color: #3BB54B !important;
}

.navbar .navbar-brand {
    float: left;
    margin: 0;
    padding: 0;
    outline: none;
}

.navbar .navbar-brand h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.navbar .navbar-brand h2 em {
    font-style: normal;
    font-size: 16px;
}

#navbarResponsive {
    z-index: 999;
}

.navbar-collapse {
    text-align: center;
}

.navbar .navbar-nav .nav-item {
    margin: 0px 14px;
}

.navbar .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

.navbar .navbar-nav a.nav-link {
    text-transform: capitalize;
    /*    */
    font-weight: 600;
    color: #000;
    transition: all 0.5s;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.current,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
    color: #3BB54B;
    border-bottom: 3px solid #3BB54B;
}

.navbar .navbar-toggler-icon {
    background-image: none;
}

.navbar .navbar-toggler {
    border-color: #158ece;
    background-color: #fff;
    height: 36px;
    outline: none;
    border-radius: 0px;
    position: absolute;
    right: 15px;
    top: 24px;
}

.navbar .navbar-toggler-icon:after {
    content: '\f0c9';
    color: #3BB54B;
    font-size: 18px;
    line-height: 26px;
    font-family: 'FontAwesome';
}



/* Banner Style */

.img-fill {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center
}

.img-fill img {
    min-height: 100%;
    min-width: 100%;
    position: relative;
    display: inline-block;
    max-width: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.Grid1k {
    padding: 0 15px;
    max-width: 1200px;
    margin: auto;
}

.blocks-box,
.slick-slider {
    margin: 0;
    padding: 0 !important;
}

.Modern-Slider .text-content {
    padding: 0 15px !important;
}

.slick-slide {
    float: left;
    padding: 0;
}

.Modern-Slider .item .img-fill {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 95vh;
}

.Modern-Slider .item-1 .img-fill {
    background-image: url(../images/slide_01.webp);
}

.Modern-Slider .item-2 .img-fill {
    background-image: url(../images/slide_02.webp);
}

.Modern-Slider .item-3 .img-fill {
    background-image: url(../images/slide_03.webp);
}

.Modern-Slider .NextArrow {
    position: absolute;
    top: 50%;
    right: 30px;
    border: 0 none;
    background-color: transparent;
    text-align: center;
    font-size: 36px;
    font-family: 'FontAwesome';
    color: #FFF;
    z-index: 5;
    outline: none;
    cursor: pointer;
}

.Modern-Slider .NextArrow:before {
    content: '\f105';
}

.Modern-Slider .PrevArrow {
    position: absolute;
    top: 50%;
    left: 30px;
    border: 0 none;
    background-color: transparent;
    text-align: center;
    font-size: 36px;
    font-family: 'FontAwesome';
    color: #FFF;
    z-index: 5;
    outline: none;
    cursor: pointer;
}

.Modern-Slider .PrevArrow:before {
    content: '\f104';
}

ul.slick-dots {
    display: none !important;
}

.Modern-Slider .text-content {
    text-align: left;
    width: 75%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Modern-Slider .item h6 {
    margin-bottom: 15px;
    font-size: 16px;
    /*    text-transform: uppercase;*/
    font-weight: 600;

    color: #3BB54B;
    animation: fadeOutRight 1s both;
}

.Modern-Slider .item h4 {
    margin-bottom: 15px;
    /*    text-transform: uppercase;*/
    font-size: 34px;
    font-weight: 600;
    color: #FFF;
    overflow: hidden;
    animation: fadeOutLeft 1s both;
}

.Modern-Slider .item p {
    max-width: 570px;
    color: #fff;


    margin-bottom: 15px;
}

.Modern-Slider .item a {
    margin: 0;
}

.Modern-Slider .item.slick-active h6 {
    animation: fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h4 {
    animation: fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active {
    animation: Slick-FastSwipeIn 1s both;
}

.Modern-Slider .buttons {
    position: relative;
}

.Modern-Slider {
    background: #000;
}


/* ==== Slick Slider Css Ruls === */
.slick-slider {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left
        /* If RTL Make This Right */
    ;
    height: 100%;
    min-height: 1px
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}




/* Request Form */

.request-form {
    background-color: #3BB54B;
    padding: 40px 0px;
    color: #fff;
}

.request-form h4 {
    font-size: 22px;
    font-weight: 600;
}

.request-form span {


    display: inline-block;
    margin-top: 10px;
}

.request-form a.border-button {
    margin-top: 12px;
    float: right;
}



.news-and-events {
    padding: 100px 0;

}

.news-and-events-item .down-content .arrow-button {}

.news-and-events-item {
    display: flex;
    flex-direction: column;
    transition: all 0.5s;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.05);
    border-radius: 0px;
    cursor: pointer;
}

.news-and-events-item img {
    transition: 0.2s;
    max-height: 220px;
    object-fit: cover;
    width: 100%;
    display: block;
    object-position: bottom;
}

.news-and-events-item:hover img {
    /*    transform: scale(1.05);*/
}

.news-and-events-item .down-content {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.news-and-events-item .down-content a {
    color: #113c53;
}

.news-and-events-item .down-content:hover a {
    text-decoration: underline !important;
}

.grid-col-news-page .news-and-events-item {
    flex-direction: row;
}

.grid-col-news-page .news-and-events-item .down-content {
    display: unset;
}

.news-and-events-item .down-content .news-tag {
    background: #e7f7ff;
    display: inline-block;
    border-radius: 4px;
    padding: 2px 10px;
    font-size: 80%;
    margin-bottom: 5px;
}

.news-and-events-item .down-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
}

.news-and-events-item .down-content p {
    margin-bottom: 15px;
}

.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px 10px;
    background: #000;
    color: #fff;
    font-size: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-date svg {
    margin-top: -2px;
    margin-right: 4px;
}

.news-bottom {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-bottom .arrow-button button.learn-more {
    width: 11rem;
}

.news-bottom .posted-by {
    display: flex;
    justify-content: normal;
    align-items: center;
}

/* Services */

.services {
    padding: 100px 0;
}

.service-item img {
    width: 100%;
    overflow: hidden;
}

.service-item {

    position: relative;
}

.service-item .down-content {
    /*    background-color: #ffffff;*/
    padding: 20px 20px 80px;
}

.service-item .down-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-item .down-content p {
    margin-bottom: 20px;
}



/* Fun Facts */

.fun-facts {
    /*    margin-top: 140px;*/
    background-image: url(../images/fun-facts-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0px;
    color: #fff;
}

.fun-facts span {
    color: #fff;

    margin-bottom: 10px;
    display: block;
}

.fun-facts h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #fff;
}

.fun-facts em {
    font-style: normal;
    color: #3BB54B;
}

.fun-facts p {
    color: #fff;
    margin-bottom: 0px;
}

.fun-facts .left-content {
    margin-right: 45px;
}

.count-area-content {
    text-align: center;
    background-color: rgba(250, 250, 250, 0.1);
    padding: 20px;
    margin: 15px 0px;
    border-radius: 0px;
}

.count-digit {
    margin: 5px 0px;
    color: #3BB54B;
    font-weight: 600;
    font-size: 36px;
}

.count-title {
    font-size: 16px;
    color: #fff;

}



/* More Info */

.more-info {
    margin: 0px 0;
}

.more-info .left-image img {
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
}

.more-info .more-info-content {
    /*    background-color: #f9f9f9;*/
}

.about-info .more-info-content {
    background-color: transparent;
}

.about-info .right-content {
    padding: 0px !important;
    margin-right: 30px;
}

.more-info .right-content {
    padding: 45px 45px 45px 30px;
}

.more-info .right-content span {
    color: #666;

    margin-bottom: 10px;
    display: block;
}

.more-info .right-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}

.more-info .right-content em {
    font-style: normal;
    color: #3BB54B;
}

.more-info .right-content p {
    margin-bottom: 30px;
}


/* Testimonials Style */

.about-testimonials {
    margin-top: 0px !important;
}

.testimonials {
    padding: 100px 0px;
}

.testimonial-item .inner-content {
    text-align: center;
    background-color: #f7fcff;
    padding: 30px;
    border-radius: 0px;
}

.testimonial-item p {}

.testimonial-item h4 {
    font-size: 18px;
    font-weight: 600;

    margin-top: 8px;
    margin-bottom: 0px;
}

.testimonial-item span {
    display: inline-block;
    margin-top: 1px;
    font-size: 14px;
    color: #3BB54B;
}

.testimonial-item img {
    max-width: 60px;
    border-radius: 50%;
    margin: 25px auto 0px auto;
}




/* Call Back Style */

.callback-services {
    border-top: 1px solid #eee;
    padding-top: 140px;
}

.contact-us {
    padding: 140px 0px;
}

.contact-us .contact-form {
    background-color: transparent !important;
    padding: 0 !important;
}

.callback-form {
    /*    margin-top: 140px;*/
}

.callback-form .contact-form {
    background-color: #3BB54B;
    padding: 60px;
    border-radius: 5px;
    /*    text-align: center;*/
}

.callback-form .contact-form label {
    margin: 0;
    display: none;
}

.callback-form .contact-form .form-control {
    margin: 0;
}

.callback-form .contact-form input {
    border-radius: 20px;
    height: 46px;
}

.callback-form .contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #3BB54B;
}

.callback-form .contact-form textarea {
    border-radius: 20px;
    height: 120px;
    max-height: 200px;
    min-height: 120px;
    display: inline-block;
    padding: 15px;
    color: #6a6a6a;
    text-transform: none;
    box-shadow: none;
    border: none;
    margin-bottom: 35px;
}

.callback-form .contact-form textarea:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.callback-form .contact-form ::-webkit-input-placeholder {
    /* Edge */
    color: #aaa;
}

.callback-form .contact-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #aaa;
}

.callback-form .contact-form ::placeholder {
    color: #aaa;
}

.callback-form .contact-form button.border-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
    outline: none;
    box-shadow: none;
    text-shadow: none;
    cursor: pointer;
}

.callback-form .contact-form button.border-button:hover {
    background-color: #fff;
    color: #3BB54B;
}

.contact-us .contact-form button.filled-button {
    background-color: #1c8ece;
    color: #fff;
    border: none;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
    outline: none;
    box-shadow: none;
    text-shadow: none;
    cursor: pointer;
}

.contact-us .contact-form button.filled-button:hover {
    background-color: #fff;
    color: #3BB54B;
}



/* Partners Style */

.contact-partners {
    margin-top: -8px !important;
}

.partners {
    padding: 100px 0px;
}

.partners .owl-item {
    text-align: center;
    cursor: pointer;
}

.partners .partner-item img {
    /*    max-width: 156px;*/
    margin: auto;
}



/* Footer Style */

footer {
    background-color: #232323;
    padding: 80px 0px;
    color: #fff;
    font-size: 14px;
}

footer h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;

    margin-bottom: 35px;
}

footer p {
    color: #fff;
}

footer ul.social-icons {
    margin-top: 25px;
}

footer ul.social-icons li {
    display: inline-block;
    margin-right: 5px;
}

footer ul.social-icons li:last-child {
    margin-right: 0px;
}

footer ul.social-icons li a {
    width: 34px;
    height: 34px;
    display: inline-block;
    line-height: 34px;
    text-align: center;
    background-color: #fff;
    color: #232323;
    border-radius: 50%;
    transition: all 0.3s;
}

footer ul.social-icons li a:hover {
    background-color: #3BB54B;
}

footer ul.menu-list li {
    margin-bottom: 13px;
}

footer ul.menu-list li:last-child {
    margin-bottom: 0px;
}

footer ul.menu-list li a {
    font-size: 14px;
    color: #fff;
    transition: all 0.3s;
}

footer ul.menu-list li a:hover {
    color: #3BB54B;
}

footer .contact-form input {
    border-radius: 20px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    padding: 0px 15px;
    color: #aaa !important;
    background-color: #343434;
    font-size: 13px;
    text-transform: none;
    box-shadow: none;
    border: none;
    margin-bottom: 15px;
}

footer .contact-form input:focus {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: #343434;
}

footer .contact-form textarea {
    border-radius: 20px;
    height: 120px;
    max-height: 200px;
    min-height: 120px;
    display: inline-block;
    padding: 15px;
    color: #aaa !important;
    background-color: #343434;
    font-size: 13px;
    text-transform: none;
    box-shadow: none;
    border: none;
    margin-bottom: 15px;
}

footer .contact-form textarea:focus {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: #343434;
}

footer .contact-form ::-webkit-input-placeholder {
    /* Edge */
    color: #aaa;
}

footer .contact-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #aaa;
}

footer .contact-form ::placeholder {
    color: #aaa;
}

footer .contact-form button.filled-button {
    background-color: transparent;
    color: #fff;
    background-color: #3BB54B;
    border: none;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
    outline: none;
    box-shadow: none;
    text-shadow: none;
    cursor: pointer;
}

footer .contact-form button.filled-button:hover {
    background-color: #fff;
    color: #3BB54B;
}



/* Sub-footer Style */

.sub-footer {
    background-color: #343434;
    text-align: center;
    padding: 25px 0px;
    font-size: 85%;
}

.sub-footer p {
    line-height: normal;
}

.sub-footer p {
    color: #fff;
    font-weight: 300;
    margin-bottom: 0;

}

.sub-footer a,
footer a {
    color: #fff;
    transition: all 0.3s;
}

.sub-footer a:hover,
footer a:hover {
    color: #3BB54B;
    /*    text-decoration: underline !important;*/
}


.page-heading {
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    color: #fff;
    min-height: 450px;
    display: flex;
    align-items: end;
    padding-bottom: 0;
}

.heading-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    background-color: #000;
    padding: 15px;
}

.page-heading h1 {
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
    display: inline;
    color: #fff;
    padding: 3px 10px;
    margin-bottom: 1px;
}

.page-heading span {
    display: inline;
    padding: 0px 10px 10px 10px;
    max-width: 500px;
    text-align: left;
    line-height: 1.5;
    font-weight: 300;
}


.heading h1 {
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
}

.heading .contact-sub-content {
    display: block;
    max-width: 70%;
    margin: 0 auto 20px auto;
    text-align: center;
}

/* team */

.team {
    /*    margin-top: 140px;*/
    margin-bottom: -140px;
    padding: 120px 0px;
}

.team-item img {
    width: 100%;
    overflow: hidden;
}

.team-item .down-content {
    background-color: #fff;
    padding: 30px;
}

.team-item .down-content h4 {
    font-size: 20px;
    font-weight: 600;

    margin-bottom: 10px;
}

.team-item .down-content span {
    color: #3BB54B;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.team-item .down-content p {
    margin-bottom: 20px;
}


/* Single Service */

.single-services {
    padding: 100px 0;
}

#tabs ul {
    margin: 0;
    padding: 0;
}

#tabs ul li {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}

#tabs ul li:last-child {
    margin-bottom: 0px;
}

#tabs ul li a {
    text-transform: capitalize;
    width: 100%;
    padding: 30px 30px;
    display: inline-block;
    background-color: #3BB54B;
    font-size: 20px;
    color: #121212;

    font-weight: 600;
    transition: all 0.3s;
}

#tabs ul li a i {
    float: right;
    margin-top: 5px;
}

#tabs ul .ui-tabs-active span {
    background: #faf5b2;
    border: #faf5b2;
    line-height: 90px;
    border-bottom: none;
}

#tabs ul .ui-tabs-active a {
    color: #fff;
}

#tabs ul .ui-tabs-active span {}

.tabs-content {
    margin-left: 30px;
    text-align: left;
    display: inline-block;
    transition: all 0.3s;
}

.tabs-content img {
    max-width: 100%;
    overflow: hidden;
}

.tabs-content h4 {
    font-size: 20px;
    font-weight: 600;

    margin-bottom: 15px;
    margin-top: 30px;
}

.tabs-content p {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 0px;
}



/* Contact Information */

.contact-information {
    /*    margin-top: 100px;*/
}

.contact-information .contact-item {
    padding: 20px 14px;
    text-align: center;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.05);
    border-radius: 0px;
    height: 100%;
}

.contact-information .contact-item i {
    color: #3BB54B;
    font-size: 48px;
    margin-bottom: 40px;
}

.contact-information .contact-item h4 {
    font-size: 20px;
    font-weight: 600;

    margin-bottom: 15px;
}

.contact-information .contact-item p {
    margin-bottom: 0px;
}

.contact-information .contact-item svg {
    margin-bottom: 10px;
}

.contact-information .contact-item a {
    color: #3BB54B;
    font-weight: 500;

}

.service-item {
    cursor: pointer;
    transition: all 0.5s;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.05);
    border-radius: 0px;
}

/*
.service-item:hover {
    background-color: #158ece;
    color: #fff;

}

.service-item:hover .down-content {
    color: #fff;
}
.service-item:hover .down-content p {
    color: #fff;
}
*/
.service-item .down-content .arrow-button {
    bottom: 20px;
    position: absolute;
}

.service-item img {
    transition: 0.2s;
}

.service-item:hover img {
    transform: scale(1.1);
}



/* Responsive Style */
@media (max-width: 768px) {
    .Modern-Slider .item a {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .sub-header {
        display: none;
    }

    .Modern-Slider .item h6 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .Modern-Slider .item h4 {
        margin-bottom: 15px;
        font-size: 22px;

    }

    .Modern-Slider .item p {
        max-width: 570px;
        margin-bottom: 15px;
    }

    .Modern-Slider .NextArrow {
        right: 5px;
    }

    .Modern-Slider .PrevArrow {
        left: 5px;
    }

    .request-form {
        text-align: center;
    }

    .request-form a.border-button {
        float: none;
        margin-top: 30px;
    }


    .services .service-item {
        margin-bottom: 30px;
        cursor: pointer;
    }

    .fun-facts .left-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    footer .footer-item {
        margin-bottom: 0px;
        padding-bottom: 30px;
    }

    footer .footer-item:last-child {
        padding-bottom: 0px;
    }

    footer .last-item {
        border-bottom: none;
    }

    .about-info .right-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .team .team-item {
        margin-bottom: 30px;
    }

    .tabs-content {
        margin-left: 0px;
        margin-top: 30px;
    }



}

@media (max-width: 992px) {
    .navbar .navbar-brand {
        position: static;
        padding-left: 15px;
        top: 10px;
    }

    .navbar .navbar-brand {
        width: auto;
    }

    .navbar:after {
        display: none;
    }

    #navbarResponsive {
        z-index: 99999;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        text-align: unset;
        background-color: #fff;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar .navbar-nav .nav-item {
        border-bottom: 1px solid #eee;
    }

    .navbar .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar .navbar-nav a.nav-link {
        padding: 15px 0px;
        color: #1e1e1e !important;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .active>.nav-link,
    .navbar .navbar-nav .nav-link.current,
    .navbar .navbar-nav .nav-link.show,
    .navbar .navbar-nav .show>.nav-link {
        color: #3BB54B !important;
        border-bottom: none !important;
    }

}

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

.section {
    padding: 100px 0;
}

.news-image {
    position: relative;
}

.grid-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.grid-col-news-page {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.grid-col-news-page .news-and-events-item img {
    min-width: 350px;
}

.grid-col-news-page .news-and-events-item {
    display: flex;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
}

.message-section {
    background-color: #f7fcff;
    padding: 50px;
}

.message-section .section-heading {
    text-align: unset;
}

.message-section .section-heading h2 {
    font-size: 30px;
    font-weight: 600;

}

.navbar .navbar-brand img {
    /*    filter: brightness(0) invert(1);*/
    height: 60px;
}


.background-header .navbar .navbar-brand img {
    filter: none;
    height: 60px;
}

.background-header .navbar .navbar-brand {
    margin: 0;
    padding: 0;

}

.secondary-text-color {
    color: #158ECE;
}

.count-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.count-plus {
    margin: 5px;
    color: #fff;
    font-size: 36px;
}

ul.menu-list-services li {
    list-style: inside;
}

.owl-carousel.owl-loaded .owl-dots {
    display: none;
}

footer .footer-item img.company-logo {
    height: 72px;
}

.section-padding {
    padding: 70px 0;
    border-top: solid 1px #00000012;
}

.scrollTop {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 30px;
    bottom: 30px;
    background-color: #1c8ece;
    color: #fff;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
}

.scrollTop a {
    color: #fff;
    font-size: 30px;
}

.contact-information .contact-item a:hover {
    text-decoration: underline !important;
}

.services-item {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 30px;
    padding: 30px;
    border-radius: 0px;
    border: solid 1px #f0f0f0;
    margin-bottom: 30px;
}

.services-item:last-child {
    margin-bottom: 0px;
}

.services-item img {
    border-radius: 0px;
}

.services-item:nth-child(odd) {
    background-color: #f9f9f9;
}

.services-item:nth-child(even) {
    background: #fff;
}

.services-item h2 {
    font-size: 26px;
    font-weight: 600;

    margin-bottom: 15px;
}

.mobileBottomContactBar {
    width: 100%;
    position: fixed;
    bottom: 0;
    text-align: center;
    background-color: #1c8ece;
    display: none;
    /*    border-top: 1px solid rgba(255, 255, 255, .3);*/
    z-index: 999;
}

.mobileBottomContactBar a {
    color: #fff;
    font-size: 30px;
    float: left;
    width: 33.3%;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.mobileBottomContactBar a .text-label {
    font-size: 13px;
    margin-bottom: 5px;
}

.mobileBottomContactBar a:last-child {
    border-right: 0px solid rgba(255, 255, 255, .3);
    background-color: #3BB54B;
}

.mobileBottomContactBar a:first-child {
    background-color: #000;
    color: #fff;
}

.grid-col-clients {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

.grid-col-clients .partner-item {
    border: solid 1px rgba(0, 0, 0, .05);
    border-radius: 0px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.grid-col-clients .partner-item .partner-name {
    background: #000000;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 90%;
    padding: 10px 5px;
    margin-top: 0;
}

.grid-col-clients .partner-item img {
    border-radius: 0px;
    margin: auto;
}

@media (max-width: 992px) {
    .Modern-Slider .item .img-fill {
        height: calc(100vh - 260px);
    }

    .grid-col-clients {
        grid-template-columns: 1fr 1fr;
    }

    .grid-col-clients .partner-item img {
        width: 100%;
    }

    .Modern-Slider .PrevArrow,
    .Modern-Slider .NextArrow {
        display: none !important;
    }

    .Modern-Slider .text-content {
        width: 90%;
    }

    .service-item .down-content .arrow-button {
        position: static;
        margin-top: 10px;
    }

    .scrollTop {
        bottom: 90px;
        right: 15px;
    }

    .sub-footer {
        padding-bottom: 90px;
    }

    .mobileBottomContactBar {
        display: block;
    }

    .grid-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .navbar .navbar-brand img {
        height: 60px;
    }

    .navbar .navbar-brand {
        left: 15px;
        top: 0px;
    }

    footer .footer-item img.company-logo {
        height: 60px;
    }

    .background-header .navbar .navbar-brand {
        top: 10px;
        padding-left: 15px;
    }

    .section-padding,
    footer {
        padding: 40px 0;
    }

    .Modern-Slider .text-content {
        padding: 0 0px !important;
    }

    .service-item .down-content,
    .more-info .right-content {
        padding: 20px;
    }

    .services-item {
        grid-template-columns: 1fr;
        grid-gap: 15px;
        padding: 15px;
        margin-bottom: 15px;
    }

    .services-item h2 {
        font-size: 20px;
    }
}

.h2.secondary-text-color {
    /*    font-size: 1.9rem;*/
    font-weight: 600;
}

.owl-partners.owl-drag .owl-item {
    border: solid 1px rgba(0, 0, 0, .05);
    border-radius: 0px;
    transition: all 0.5s;

}

.owl-partners.owl-drag .owl-item:hover {
    border: solid 1px #158ece;
}

.owl-partners.owl-drag .owl-item img {
    border-radius: 0px;
    transition: 0.3s;
}


.owl-partners.owl-drag .owl-item {
    overflow: hidden;
}

.owl-partners.owl-drag .owl-item:hover img {
    transform: scale(.9);
}

.text-content-inner-box {
    background: rgb(0 0 0 / 50%);
    padding: 20px;
    display: inline-block;
    max-width: 600px;
    /*    border-radius: 0px;*/
}

.font-weight-bold {
    font-weight: 600 !important;
}

.whatsApp-button {
    background: #3bb54b;
    background: #158ece;
    border-radius: 35px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    justify-content: center;
    margin-left: 2rem;
    max-height: 45px;
    font-weight: 500;
}


.whatsApp-button:hover {
    background: #3bb54b;
    color: #fff;
}

.whatsAppUs-button {
    background: #3bb54b;
    border-radius: 35px;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
    font-weight: 500;
}

.whatsAppUs-button:hover {
    background: #269835;
    color: #fff;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
    background-color: #158ece;
    color: #fff;
}

#navbarResponsive .dropdown-menu {
    margin: 0;
    padding: 0;
    border-radius: 0px;
    overflow: hidden;
}

#navbarResponsive .dropdown-menu .dropdown-item {
    padding: .5rem 1rem;
}

.fun-facts .left-content a {
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
}

.whatsAppUs-button.fixedButton {
    position: fixed;
    bottom: 90px;
    right: 30px;
}

@media (max-width: 767px) {
    .whatsAppUs-button.fixedButton {
        display: none;
    }

    .h2,
    h2 {
        font-size: 1.6rem;
    }

    .page-heading {
        padding: 0px;
        min-height: 450px;
    }

    .heading .contact-sub-content {
        max-width: 100%;
    }

    .whatsApp-button {
        margin: 10px;
    }

    .grid-col {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 0px;
    }


    h2.content-title {
        font-size: 1rem;
        line-height: normal;
    }

    .h5.secondary-text-color {
        font-size: 1rem;
    }

    .section-heading h2,
    .more-info .right-content h2,
    .fun-facts h2 {
        font-size: 24px;
    }

    .services .service-item {
        margin: 15px;
    }

    .contact-information .contact-item {
        margin-bottom: 15px;
        padding: 20px;
        height: auto;
    }

    .contact-information .contact-item i {
        margin-bottom: 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .message-section {
        padding: 20px;
    }

    .heading-inner {
        background-color: #000000d4;
        padding: 10px;
    }

    .news-and-events-item.cursor-default {
        flex-direction: column;
    }

    .contact-us .contact-form button.filled-button {
        display: block;
        width: 100%;
    }

    .page-heading h1,
    .message-section .section-heading h2 {
        font-size: 24px;
    }

    body {
        font-size: 15px;
    }

    .owl-partners.owl-drag .owl-item img {
        max-width: 200px;
    }

    .owl-carousel.owl-drag .owl-item .partner-item {
        min-height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fun-facts .left-content a {
        display: flex;
    }
}

.contact-form p.pt-3 {
    padding-bottom: 0;
    margin-bottom: 0;
}

.callback-form .contact-form .form-control {
    border: 1px solid #ced4da70;
}

.arrow-button button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.arrow-button button.learn-more {
    width: 14rem;
    height: auto;
}

.arrow-button button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #113c53;
    border-radius: 1.625rem;
}

.arrow-button button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.arrow-button button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.arrow-button button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.arrow-button button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #000;
    line-height: 1.6;
    text-align: center;
    display: none;
}

.arrow-button button.learn-more:hover .button-text {
    display: block;
}

.arrow-button button:hover .circle {
    width: 100%;
}

.arrow-button button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

.arrow-button button:hover .button-text {
    color: #fff;
}

.cursor-default {
    cursor: default;
}

.fun-facts .left-content ul {
    list-style: disc;
    line-height: normal;
}

.fun-facts .left-content ul li {
    margin-left: 20px;
    margin-bottom: 10px;
    list-style-position: outside;
}

.fun-facts .left-content ul li:last-child {
    margin-bottom: 20px;
}

.pulse-button {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    animation: pulse 1.5s infinite;
    letter-spacing: -0.02rem;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


form.disabled {
    pointer-events: none;
    opacity: 0.7;
}

form .dbl-field {
    display: flex;
    margin-bottom: 25px;
    justify-content: space-between;
}

.dbl-field .field {
    height: 50px;
    display: flex;
    position: relative;
    width: calc(100% / 2 - 13px);
}

.contact-form form i {
    position: absolute;
    top: 50%;
    left: 18px;
    color: #ccc;
    font-size: 17px;
    pointer-events: none;
    transform: translateY(-50%);
}

form .field input,
form .message textarea {
    width: 100%;
    height: 100%;
    outline: none;
    padding: 0 18px 0 48px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.field input::placeholder,
.message textarea::placeholder {
    color: #ccc;
}

.field input:focus,
.message textarea:focus {
    padding-left: 47px;
    border: 2px solid #0D6EFD;
}

.field input:focus~i,
.message textarea:focus~i {
    color: #0D6EFD;
}

form .message {
    position: relative;
}

form .message i {
    top: 30px;
    font-size: 20px;
}

form .message textarea {
    min-height: 130px;
    max-height: 230px;
    max-width: 100%;
    min-width: 100%;
    padding: 15px 20px 0 48px;
}

form .message textarea::-webkit-scrollbar {
    width: 0px;
}

.message textarea:focus {
    padding-top: 14px;
}

form .button-area {
    margin: 25px 0;
    display: flex;
    align-items: center;
}

.button-area button {
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    padding: 13px 25px;
    background: #0D6EFD;
    transition: background 0.3s ease;
}

.button-area button:hover {
    background: #025ce3;
}

.button-area span {
    font-size: 17px;
    margin-left: 30px;
    display: none;
}

.callback-form .contact-form .form-control.error {
    color: red;
}

@media (max-width: 600px) {
    .wrapper header {
        text-align: center;
    }

    .wrapper form {
        margin: 35px 20px;
    }

    form .dbl-field {
        flex-direction: column;
        margin-bottom: 0px;
    }

    form .dbl-field .field {
        width: 100%;
        height: 45px;
        margin-bottom: 20px;
    }

    form .message textarea {
        resize: none;
    }

    form .button-area {
        margin-top: 20px;
        flex-direction: column;
    }

    .button-area button {
        width: 100%;
        padding: 11px 0;
        font-size: 16px;
    }

    .button-area span {
        margin: 20px 0 0;
        text-align: center;
    }
}

/*in your css hide the field so real users cant fill it in*/
form #website {
    display: none;
}