/*
Template Name: 
Document: Main Style Sheet
Author: designTone
Author URL: 

---------
CSS INDEX
---------
01 => Global CSS
02 => Preloader CSS
03 => back2top CSS
04 => Section Header
05 => Custom Animation
06 => Banner CSS
07 => tdu-hover CSS
08 => Theme Button
09 => Slieder CSS
10 => Line parallex
11 => Feature CSS
12 => About Section
13 => About Page
14 => Service Secion
15 => Service Setails
16 => Widget CSS
17 => Video Secion
18 => Team Secion
19 => Partner Secion
20 => testimony Secion
21 => Contact Page
22 => Error Page
23 => Footer Secion

/*** 
====================================================================
    Start Global CSS
====================================================================
 ***/
* {
    margin: 0px;
    padding: 0px;
    border: 0;
    outline: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

body::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
    background-color: #f3f8ec;
}

body::-webkit-scrollbar,
textarea::-webkit-scrollbar {
    width: 15px;
}

body::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
    background: #82b60b;
    min-height: 62px
}

a,
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
    outline: 0;
}

a {
    transition: all .3s ease;
    color: #91bf29;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure {
    margin: 0;
}

p {
    margin-bottom: 0;
        font-size: 15px;
	
}

ol,
ul,
li {
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}

input,
textarea {
    border: 0;
    outline: 0;
    box-shadow: none;
    resize: none;
    background-color: transparent;
}

input:focus,
textarea:focus {
    box-shadow: none;
    border: 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

textarea::placeholder,
input::placeholder {
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

button {
    background-color: transparent;
    border: 0;
    outline: 0
}

button:focus {
    outline: 0
}

img {
    max-width: 100%;
}

figure img {
    vertical-align: top;
}

::-moz-selection {
    color: #fff;
    background: #91bf29;
    text-shadow: none;
}

::selection {
    background: #91bf29;
    color: #fff;
    text-shadow: none;
}

.site-content {
   /* margin-top: 100px;*/
}
/*** 
====================================================================
    End Global CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Preloader CSS
====================================================================
 ***/
.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/preloader.gif);
    background-size: 80px;
}
/*** 
====================================================================
    End Preloader CSS
====================================================================
 ***/


/*** 
====================================================================
    Start back2top CSS
====================================================================
 ***/
.scroll-to-top {
    width: 40px;
    height: 40px;
    -webkit-box-shadow: 0 8px 12px -4px rgba(0, 0, 0, .5);
    box-shadow: 0 8px 12px -4px rgba(0, 0, 0, .5);
    text-align: center;
    cursor: pointer;
    z-index: 999;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #fff;
    color: #00235a;
    display: none;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.scroll-to-top:hover {
    background: #91bf29;
    color: #fff;
}

.scroll-to-top i::before {
    font-size: 15px;
    line-height: 40px;
}

/*** 
====================================================================
    End back2top CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Section Header CSS
====================================================================
 ***/
.section-header > h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 50px;
}

.section-header > p {
    font-size: 15px;
    line-height: 27px;
    margin: 23px auto 0;
}

.section-header:not(.text-white) > h2 {
    color: #00235a;
}

.section-header:not(.text-white) > p {
    color: #555752;
}
/*** 
====================================================================
    End Section Header CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Custom Animation CSS
====================================================================
 ***/
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
/*** 
====================================================================
    End Custom Animation CSS
====================================================================
 ***/

/*** 
====================================================================
    Start Banner CSS
====================================================================
 ***/
.innerPage-banner {
    background: url(../img/page-header.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 1;
}

.innerPage-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, 0.52);
    top: 0;
    left: 0;
    z-index: -1;
}

.innerabout-banner {
    background: url(../images/aboutus-banner.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 1;
}
.innerabout-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, 0.52);
    top: 0;
    left: 0;
    z-index: -1;
}

.innercontact-banner {
    background: url(../images/contact-banner.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 1;
}
.innercontact-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, 0.52);
    top: 0;
    left: 0;
    z-index: -1;
}

.inneraccesscontrol-banner {
    background: url(../images/access-control-banner.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 1;
}
.inneraccesscontrol-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, 0.52);
    top: 0;
    left: 0;
    z-index: -1;
}

.innerfire-banner {
    background: url(../images/fire-alarm-banner.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 1;
}
.innerfire-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, 0.52);
    top: 0;
    left: 0;
    z-index: -1;
}

.innernetworking-banner {
    background: url(../images/network-banner.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 1;
}
.innernetworking-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, 0.52);
    top: 0;
    left: 0;
    z-index: -1;
}
.innercctv-banner {
    background: url(../images/cctv-camera-banner.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 1;
}
.innercctv-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, 0.52);
    top: 0;
    left: 0;
    z-index: -1;
}
.innercomputer-banner {
    background: url(../images/computer-sales-and-services-banner.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 1;
}
.innercomputer-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, 0.52);
    top: 0;
    left: 0;
    z-index: -1;
}



.pageBanner-content > h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 110px;
    color: #fff;
}

.breadcrumbs {
    margin-top: 30px;
    padding: 10px 25px 8px;
    display: inline-block;
    background: #82b60b;
    color: #fff;
}

.breadcrumbs > a,
.breadcrumbs > span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
}

.breadcrumbs > a + a,
.breadcrumbs > a + span {
    padding-left: 16px;
    margin-left: 10px;
    position: relative;
}

.breadcrumbs > a + a::before,
.breadcrumbs > a + span::before {
    position: absolute;
    content: '-';
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    left: 0;
    top: 0;
}

.pageBanner-content {
    padding: 124px 0 140px;
    position: relative;
    z-index: 3;
}

.breadcrumbs > a:hover {
    text-decoration: underline;
}
/*** 
====================================================================
    End Banner CSS
====================================================================
 ***/

/*** 
====================================================================
    Start tdu-hover CSS
====================================================================
 ***/
.tdu-hover {
    display: inline-block;
    position: relative;
}

.tdu-hover::before {
    content: '';
    height: 1px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    background: currentColor;
    transform: translateY(6px);
    transition: 0.15s all cubic-bezier(0.39, 0.575, 0.565, 1);
    transition-property: opacity, transform;
    width: 100%;
}

.tdu-hover:hover::before {
    opacity: .8;
    transition-delay: 0.2s;
    transition-duration: 0.15s;
    transform: translateY(0) translateZ(0);
}
/*** 
====================================================================
    End tdu-hover CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Theme Button CSS
====================================================================
 ***/
.theme-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    background: #313191;
    color: #fff;
    cursor: pointer;
    transition: all .5s ease;
}

.theme-btn:hover {
    color: white;
    background: #82b60b;
}

.theme-btn > i {
    margin-left: 5px;
    color: #fff;
    display: inline-block;
    -webkit-transform: translate(0, 1px);
    -ms-transform: translate(0, 1px);
    transform: translate(0, 1px);
    transition: all .3s ease 0s;
}

.theme-btn:hover > i {
    -webkit-transform: translate(5px, 1px);
    -ms-transform: translate(5px, 1px);
    transform: translate(5px, 1px);
    transition: all .3s ease .2s;
}
/*** 
====================================================================
    End Theme Button CSS
====================================================================
 ***/

/*** 
====================================================================
    Start  Slieder CSS
====================================================================
 ***/
.slider-wrapper {
    padding: 0 185px;
}

#mainSlider {
    position: relative;
    width: 100%;
}

#mainSlider .item-inner {
    height: 850px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}

#mainSlider .item-inner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 35, 90, 0.52);
    z-index: -1;
}

.slider-content {
    z-index: 5;
    position: relative;
}

.slider-content > h2 {
    font-size: 100px;
    line-height: 110px;
    font-weight: 700;
    color: #fff;
}

.slider-content > p {
    font-size: 20px;
    line-height: 35px;
    color: #fff;
    letter-spacing: .2px;
    margin: 22px 0 44px;
}

.animD-1 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.animD-2 {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.animD-3 {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

#mainSlider [class^="carousel-control-"] {
    width: 80px;
    height: 80px;
    left: -130px;
    text-align: center;
    border-radius: 100%;
    background: #f3f8ec;
    color: #113417;
    opacity: 1;
    position: absolute;
    display: block;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: all .3s linear;
}

#mainSlider .carousel-control-prev {
    top: calc(50% - 85px);
}

#mainSlider .carousel-control-next {
    top: calc(50% + 10px);
}

#mainSlider [class^="carousel-control-"]:hover,
#mainSlider [class^="carousel-control-"]:focus {
    background: #91bf29;
    color: #fff;
}

#mainSlider [class^="carousel-control-"] i {
    font-size: 28px;
    line-height: 80px;
}

#mainSlider .carousel-indicators {
    position: absolute;
    margin: 0;
    left: calc(100% + 90px);
    bottom: 50%;
    transform: translateY(50%);
    width: 2px;
    height: auto;
    display: block;
}

#mainSlider .carousel-indicators li {
    width: 1px;
    height: 80px;
    border: none;
    background: #00235a;
    position: relative;
    display: block;
    margin: 0;
    opacity: 1;
    transition: all .3s ease;
}

#mainSlider .carousel-indicators li + li {
    margin-top: 20px;
}

#mainSlider .carousel-indicators li.active {
    background: #82b60b;
    position: relative;
}

#mainSlider .carousel-indicators li.active::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 18px;
    background: inherit;
    top: 50%;
    transform: translateY(-50%);
    left: -1px;
}
/*** 
====================================================================
    End Slieder CSS
====================================================================
 ***/

/*** 
====================================================================
    Start Line parallex CSS
====================================================================
 ***/
.scroling-lines {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}

.scroling-lines > span {
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.scroling-lines span span {
    position: absolute;
    height: 20px;
    content: '';
    width: 100%;
    left: 0;
    display: block;
    background: white;
}

.scroling-lines > span:nth-child(1) {
    left: 15%;
}

.scroling-lines span:nth-child(1) span {
    top: 10%;
}

.scroling-lines > span:nth-child(2) {
    left: 33%;
}

.scroling-lines span:nth-child(2) span {
    top: 85%;
}

.scroling-lines > span:nth-child(3) {
    left: 51%;
}

.scroling-lines span:nth-child(3) span {
    top: 22%;
}

.scroling-lines > span:nth-child(4) {
    left: 69%;
}

.scroling-lines span:nth-child(4) span {
    top: 35%;
}

.scroling-lines > span:nth-child(5) {
    left: 87%;
}

.scroling-lines span:nth-child(5) span {
    top: 85%;
}
/*** 
====================================================================
    End Line parallex CSS
====================================================================
 ***/

/*** 
====================================================================
    Start Feature CSS
====================================================================
 ***/
.feature-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.feature-section .section-header {
    margin-bottom: 25px;
}

.feature-carousel {
    margin: 0 -15px;
}

.feature-single {
    text-align: center;
    padding: 0 15px;
}

.feature-single > a {
    padding: 25px 0;
    display: block;
    background: #f3f8ec;
    height: 200px;
}

.feature-single > a:hover {
    background: #82b60b;
}

.feature-single > a > span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #00235a;
    margin-top: 35px;
    transition: all .3s ease;
}

.feature-single > a > i {
    font-size: 50px;
    color: #82b60b;
    transition: all .3s ease .1s;
}

.feature-single > a:hover > i,
.feature-single > a:hover > span {
    color: #fff;
}

.slick-dots li {
    width: 30px;
    height: 5px;
    margin: 0 3px;
    overflow: hidden;
    display: inline-block;
    background: #f3f8ec;
    transition: all .3s ease;
}

.slick-dots .slick-active {
    background: #91bf29;
}

.slick-dots {
    text-align: center;
    margin-top: 30px;
}
/*** 
====================================================================
    End Feature CSS
====================================================================
 ***/


/*** 
====================================================================
    Start About Section CSS
====================================================================
 ***/
.about-section {
    padding: 50px 0;
    background: #fff;
}

.about-content > h2 {
    font-size: 42px;
   /* line-height: 62px;*/
    font-weight: 700;
    color: #00235a;
}

.about-content > h4 {
    font-size: 22px;
    line-height: 28px;
    color: #82b60b;
    margin-top: 12px;
    margin-bottom: 25px;
}

.about-content > p {
    font-size: 15px;
    text-align: justify;
    color: #555b56;
    
   /* 
   line-height: 25px;
   column-count: 2;
    column-gap: 70px;
    column-rule: 4px solid #00235a;
    margin-bottom: 60px;*/
}

.intro-gallery img {
    width: 100%;
}

.about-gallery-list {
    margin: 30px -15px 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.about-gallery-list li {
    padding: 0 15px;
    width: 33.3333%;
}

.about-gallery-list li > a {
    position: relative;
    display: block;
}

.about-gallery-list li > a::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(130, 182, 11, 0.9);
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    transition: all .3s ease;
}

.about-gallery-list li > a:not(.active):hover::before {
    visibility: visible;
    opacity: 1;
    background: rgba(130, 182, 11, 0.5);
}

.about-gallery-list li > a.active::before {
    visibility: visible;
    opacity: 1;
}

.about-gallery-list li > a > figure {
    position: relative;
}

.about-gallery-list li > a > figure::before,
.about-gallery-list li > a > figure::after {
    position: absolute;
    content: '';
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease;
}

.about-gallery-list li > a.active > figure::before {
    width: 1px;
    height: 50%;
    visibility: visible;
    opacity: 1;
}

.about-gallery-list li > a.active > figure::after {
    width: 50%;
    height: 1px;
    visibility: visible;
    opacity: 1;
}
/*** 
====================================================================
    End About Section CSS
====================================================================
 ***/


/*** 
====================================================================
    Start About Page CSS
====================================================================
 ***/
.welcome-section {
    margin: 30px 0 30px;
}

.welcome-section section > h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 42px;
    color: #00235a;
}

.welcome-section section > p {
    font-size: 15px;
    line-height: 28px;
    color: #555b56;
    margin-top: 28px;
    padding-right: 20px;
}

.welcome-section section > p + p {
    margin-top: 24px;
}

.welcome-section section .theme-btn {
    margin-top: 30px;
}

.welcome-tab {
    padding: 0 70px 50px 70px;
    background: #f3f8ec;
}

.welcomeTab-list li a {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    background: #00235a;
    display: block;
    padding: 9px 25px 8px;
}

.welcomeTab-list li a.active {
    background: #82b60b;
}

.welcomeTab-list {
    padding-bottom: 30px;
}

#welcomeTab-content .tab-pane p {
    font-size: 15px;
    line-height: 28px;
    color: #555b56;
    margin-top: 13px;
}

#welcomeTab-content .tab-pane strong {
    font-size: 15px;
    line-height: 28px;
    font-weight: 700;
    color: #00235a;
    display: block;
    margin-top: 13px;
}

.video-section figure.vdo-onLeft::before {
    position: absolute;
    content: '';
    width: 80%;
    height: 100%;
    background: #fff;
    top: 70px;
    left: initial;
    right: -70px;
    z-index: -1;
}
/*** 
====================================================================
    End About Page CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Service Secion CSS
====================================================================
 ***/
.service-section {
    padding: 50px 0 50px;
}

.service-section .section-header {
    margin-bottom: 20px;
}

.service-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px 0;
    box-shadow:1px 1.732px 60px 0px rgb(0 0 0 / 10%);
}

.service-single figure,
.service-single .service-card {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.service-single figure a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.service-single figure a img {
    width: 100%;
    height: 100%;
}

.service-single .service-card {
    background: #fff;
    transition: all .3s ease;
}

.service-single:hover .service-card {
    background: #82b60b;
}

.service-single .service-card {
   /* padding: 50px 40px 45px;*/
   padding:20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.service-area .row:nth-child(odd) .service-single figure,
.service-area .row:nth-child(even) .service-single .service-card {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.service-area .row:nth-child(even) .service-single figure,
.service-area .row:nth-child(odd) .service-single .service-card {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.service-card > h2 {
    margin-top: auto;
    margin-bottom: 18px;
}

.service-card > h2 > a {
    font-size: 22px;
    font-weight: 700;
    color: #00235a;
    transition: all .3s ease;
}

.service-card > p {
    font-size: 15px;
    line-height: 26px;
    color: #555752;
    transition: all .3s ease;
}

.service-card > a {
    color: #00235a;
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
    position: relative;
    margin-bottom: auto;
    display: inline-block;
    transition: all .3s ease;
}

.service-single:hover .service-card > h2 > a,
.service-single:hover .service-card > p,
.service-single:hover .service-card > a {
    color: #fff
}

.service-card > a::before {
    position: absolute;
    content: '';
    width: calc(100% - 3px);
    height: 1px;
    bottom: -5px;
    left: 0;
    background: currentColor;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform .5s cubic-bezier(0.100, 0.600, 0.350, 1.000) 0s, background .3s;
}

.service-card > a:hover::before {
    transform: scale(1, 1);
    transform-origin: left;
    transition: transform .5s cubic-bezier(0.100, 0.600, 0.350, 1.000) .1s, background .3s;
}

.service-area .theme-btn {
    /*margin-top: 65px;*/
    margin-top:15px
}
/*** 
====================================================================
    End Service Secion CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Service Setails CSS
====================================================================
 ***/
.single-service,
.service-aside {
    margin: 50px 0;
}

.single-service figure {
    padding-bottom: 10px;
}

.single-service > h2 {
    font-size: 35px;
    font-weight: 700;
    color: #00235a;
    margin: 40px 0 15px;
}
.sinsale{font-size: 25px !important;
    margin-bottom: 10px;
    color: #82b60b !important;
    font-weight: 500;
}
    
.single-service > p {
    font-size: 15px;
    line-height: 28px;
    color: #555b56;
    padding: 10px 0;
}

.key-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 25px;
}

.key-feature > i {
    -ms-flex: 0 0 41px;
    flex: 0 0 41px;
    max-width: 41px;
    width: 41px;
    height: 41px;
    line-height: 41px;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    background: #82b60b;
    color: #fff;
}

.feature-content {
    -ms-flex: 0 0 calc(100% - 80px);
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
}

.feature-content > h3 {
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
    color: #00235a;
}

.feature-content > p {
    font-size: 15px;
    line-height: 28px;
    color: #555b56;
}

#faq-wraper {
    margin-top: 40px;
}

#faq-wraper .card {
    border: none;
    background: transparent;
    transition: all .3s ease;
}

#faq-wraper .card.active-faq {
    background: #f3f8ec;
}

#faq-wraper .card + .card {
    margin-top: 10px;
}

#faq-wraper .card-header {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 2px;
    box-shadow: inset 0 0 0 1px #e9e9e9;
    transition: all .3s ease;
}

#faq-wraper .card.active-faq .card-header {
    box-shadow: none;
}

#faq-wraper .card-body {
    padding: 0 30px 30px;
    font-size: 15px;
    line-height: 28px;
    color: #555b56;
}

.faq_title > a::after {
    content: "";
    clear: both;
    display: table;
}

.faq_title > a {
    padding-left: 30px;
    display: block;
}

.faq_title > a > span {
    font-size: 18px;
    font-weight: 700;
    padding: 20px 0;
    line-height: 26px;
    width: calc(100% - 60px);
    float: left;
    display: block;
    color: #00235a;
}

.faq-icon {
    width: 60px;
    height: 65px;
    display: block;
    float: right;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    position: absolute;
    content: '';
    background: #00235a;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all .5s ease;
}

.faq-icon::before {
    width: 2px;
    height: 10px;
    transition: all .5s ease .2s;
}

.faq-icon::after {
    width: 10px;
    height: 2px;
    transition: all .5s ease 0s;
}

.faq_title > a[aria-expanded="true"] .faq-icon::before {
    transition: all .5s ease 0s;
    transform: translate(-50%, -50%) rotate(270deg);
}
/*** 
====================================================================
    End Service Setails CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Widget CSS
====================================================================
 ***/
.service-aside {
    padding-right: 20px;
}

.widget-single:not(.download-widget) {
    padding: 37px 40px 40px;
    background: #f3f8ec;
}

.widget-single + .widget-single {
    margin-top: 50px;
}

.widget-single > h2 {
    font-size: 22px;
    font-weight: 700;
    color: #00235a;
}

.widget-single .searchform input:not([type="submit"]) {
    width: calc(100% - 60px);
    height: 62px;
    margin-right: 60px;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    padding: 15px 30px;
}

.widget-single .searchform [type="submit"] {
    width: 60px;
    height: 62px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.widget-single .searchform {
    margin-top: 35px;
    position: relative;
    width: 100%;
}

.widget-single .searchform::before {
    position: absolute;
    content: '';
    width: 60px;
    height: 62px;
    right: 0;
    top: 0;
    background: #82b60b;
}

.widget-single .searchform::after {
    position: absolute;
    content: "\ed12";
    font-family: "IcoFont";
    position: absolute;
    top: 50%;
    right: 22px;
    color: #fff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.widget-single .searchform input::-webkit-input-placeholder {
    color: #555b56;
}

.widget-single .searchform input::-moz-placeholder {
    color: #555b56;
}

.widget-single .searchform input:-ms-input-placeholder {
    color: #555b56;
}

.widget-single .searchform input::placeholder {
    color: #555b56;
}

.widget-single.category-widget > ul {
    margin-top: 40px;
}

.widget-single > ul > li + li {
    margin-top: 10px;
}

.widget-single > ul > li > a {
    display: flex;
    background: #fff;
    overflow: auto;
}

.widget-single > ul > li > a::after {
    content: '';
    display: table-cell;
    clear: both;
}

.widget-single > ul > li > a > i {
    width: 50px;
    line-height: 50px;
    font-size: 17px;
    background: #e7ecdf;
    color: #222;
    text-align: center;
    transition: all .3s ease;
}

.widget-single > ul > li > a > span {
    width: calc(100% - 50px);
    float: left;
    display: block;
    font-size: 15px;
    padding: 15px 10px 10px 30px;
    font-weight: 500;
    color: #222;
    transition: all .3s ease;
}

.widget-single > ul > li > a:hover > i {
    background: #00235a;
    color: #fff;
}

.widget-single > ul > li > a:hover > span {
    color: #fff;
}

.widget-single > ul > li > a:hover {
    background: #82b60b;
}

.widget-single .download-btn {
    display: flex;
    background: #f3f8ec;
    overflow: auto;
}

.widget-single .download-btn + .download-btn {
    margin-top: 10px;
}

.widget-single .download-btn:hover {
    background: #82b60b;
}

.widget-single .download-btn::after {
    content: '';
    display: table-cell;
    clear: both;
}

.widget-single .download-btn > span {
    font-size: 19px;
    font-weight: 700;
    color: #00235a;
    width: calc(100% - 70px);
    float: left;
    padding: 22px 10px 20px 30px;
    display: block;
    transition: all .3s ease;
}

.widget-single .download-btn:hover > span {
    color: #fff;
}

.widget-single .download-btn > i {
    width: 70px;
    line-height: 70px;
    font-size: 20px;
    text-align: center;
    background: #e7ecdf;
    color: #00235a;
    transition: all .3s ease;
}

.widget-single .download-btn:hover > i {
    background: #76a608;
    color: #fff;
}
/*** 
====================================================================
    End Widget CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Video Secion CSS
====================================================================
 ***/
.video-section {
   /* margin-top: 115px;*/
    padding: 50px 0px;
    background: #f3f8ec;
}

.video-content {
    margin-top: 140px;
}

.video-content > h2 {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00235a;
}

.video-content > p {
    font-size: 15px;
    line-height: 28px;
    color: #555b56;
    margin-bottom: 33px;
}

.video-section figure {
    margin-top: -184px;
    position: relative;
    z-index: 1;
}

.video-section figure img {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.video-section figure::before {
    position: absolute;
    content: '';
    width: 80%;
    height: 100%;
    background: #fff;
    top: 70px;
    left: -70px;
    z-index: -1;
}

.video-section figure > a {
    width: 95px;
    height: 95px;
    border-radius: 100%;
    text-align: center;
    display: block;
    background: #82b60b;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-section figure > a i {
    color: #fff;
    font-size: 30px;
    line-height: 95px;
}

.video-section figure > a:hover {
    background: #00235a;
}

#popup-video .modal-content iframe {
    width: 100%;
    height: 450px;
}
/*** 
====================================================================
    End Video Secion CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Team Secion CSS
====================================================================
 ***/
.team-section {
    padding: 150px 0 100px;
}

.team-member {
    margin-bottom: 50px;
}

.team-member img {
    width: 100%;
}

.team-section .section-header > p {
    width: 70%;
    margin-left: 0;
}

.team-section .team-member > figcaption {
    border-left: 8px solid #f3f8ec;
    margin: 30px 0 0 30px;
    padding-left: 30px;
    padding: 10px 0 4px 30px;
    transition: all .3s ease;
}

.team-section .team-member:hover > figcaption {
    border-left: 8px solid #82b60b;
}

.team-section .team-member > figcaption > h3 {
    font-size: 26px;
    line-height: 27px;
    font-weight: 700;
    color: #00235a;
    margin-bottom: 13px;

}

.team-section .team-member > figcaption > p {
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    color: #82b60b;
}

.team-members .team-member {
    margin-bottom: 40px;
}
/*** 
====================================================================
    End Team Secion CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Partner Secion CSS
====================================================================
 ***/
.partners-section {
    padding: 50px 0 50px;
    background: url(../img/bg/04.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 1;
}

.partners-section::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(130, 182, 11, .97);
    top: 0;
    left: 0;
    z-index: -1;
}

.partners-section .section-header {
    margin-bottom: 96px;
}

.partners-container figure > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 150px;
    height: 150px;
    position: relative;
}

.partners-container figure > a::before {
    position: absolute;
    content: '';
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    border: 1px solid rgba(255, 255, 255, .175);
    top: 0;
    left: 0;
}

.hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

.partners-container figure > a:hover {
    background: #fff;
}

.partners-container figure > a:hover .hover-img {
    visibility: visible;
    opacity: 1;
}

.partners-container figure > a:hover img:not(.hover-img) {
    visibility: hidden;
    opacity: 0;
}

.footer-space {
    margin-bottom: 270px;
}
/*** 
====================================================================
    End Partner Secion CSS
====================================================================
 ***/


/*** 
====================================================================
    End testimony Secion CSS
====================================================================
 ***/
.testimony-section {
    padding: 145px 0 150px;
}

.testimony-section .section-header {
    margin-bottom: 95px;
}

.review-buttons {
    background: #f3f8ec;
}

.review-btn {
    display: block;
    position: relative;
    z-index: 1;
    background: rgba(130, 182, 11, 1);
}

.review-btn,
.review-btn img {
    transition: all .3s ease;
}

.review-btn img {
    opacity: 1;
    width: 100%;
}

.review-btn:hover img {
    opacity: .4
}

.review-btn.active img {
    opacity: .1
}

.review-btn::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: rgba(130, 182, 11, 0.08);
    top: 0;
    left: 0;
    transform: scale(0);
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.review-btn.active::before {
    transition: transform .3s ease 0s, visibility .3s ease .2s, opacity .3s ease .2s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

.review-buttons figure {
    position: relative;
}

.review-buttons figure::before,
.review-buttons figure::after {
    position: absolute;
    content: '';
    background: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease 0s;
}

.review-buttons figure.active-btn::before,
.review-buttons figure.active-btn::after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    transition: all .4s ease .2s;
}

.review-buttons figure.active-btn::before {
    width: 1px;
    height: 50%;
}

.review-buttons figure.active-btn::after {
    width: 50%;
    height: 1px;
}

.review-single {
    background: #f3f8ec;
    display: none;
    padding: 50px 60px;
}

.review-single.active {
    display: block;
}

.review-inner > p {
    font-size: 23px;
    line-height: 33px;
    font-weight: 500;
    color: #00235a;
    font-style: italic;
    margin-top: 34px;
}

.reviewer {
    margin-top: 38px;
}

.reviewer > img {
    width: 90px;
}

.reviewed-by {
    margin-left: 40px;
}

.reviewed-by > h3 {
    font-size: 25px;
    font-weight: 700;
    color: #00235a;
    margin-bottom: 5px;
}

.reviewed-by > span {
    font-size: 15px;
    color: #82b60b;
}
/*** 
====================================================================
    End testimony Secion CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Contact Page CSS
====================================================================
 ***/
.contact-info {
    margin-top: 50px;
}

.contact-inner {
    background: #e9f2f1;
    padding: 50px 50px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    border-radius: 8px;
}

.contact-single {
    padding: 30px;
    background: #fff;
    text-align: center;
    margin-bottom: 30px;
    transition: all .3s ease;
    height: 90%;
    border-radius: 8px;
}

.contact-single > i {
    font-size: 70px;
    color: #82b60b;
}

.contact-single > h4 {
    font-size: 22px;
    font-weight: 700;
    color: #00235a;
    margin: 27px 0 16px;
}

.contact-single > p {
    font-size: 15px;
    color: #878c8f;
}

.contact-single > i,
.contact-single > h4,
.contact-single > p {
    transition: all .3s ease;
}

.contact-single:hover > i,
.contact-single:hover > h4,
.contact-single:hover > p {
    color: #fff;
}

.contact-single:hover {
    background: #82b60b;
}

.contact-form-area {
	margin-bottom: 150px;
}

.contact-form h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 55px;
    color: #00235a;
    text-align: center;
    margin: 10px 0 47px;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.contact-form textarea {
    font-size: 15px;
    padding: 20px 30px;
    width: 100%;
    transition: all .3s ease;
    margin-top: 20px;
    box-shadow: inset 0 0 0 1px #e0e1e1;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus,
.contact-form textarea:focus {
    box-shadow: inset 0 0 0 1px #82b60b;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]):not([type="file"])::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    color: #00235a;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]):not([type="file"])::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    color: #00235a;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
    color: #00235a;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]):not([type="file"])::placeholder,
.contact-form textarea::placeholder {
    color: #00235a;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
    height: 60px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form [type="submit"] {
    margin-top: 11px;
}

.contact-map {
    height: 700px;
    z-index: 0;
}

.leaflet-bottom.leaflet-right {
    display: none;
}

.contact-page .footer-top {
    margin-top: 0;
}


/*** 
====================================================================
    End Contact Page CSS
====================================================================
 ***/


/*** 
====================================================================
    Start Error Page CSS
====================================================================
 ***/
.error-content {
    background: #f3f8ec;
    padding: 130px 50px 117px;
    margin: 150px 0 300px;
}

.error-content span {
    font-size: 252px;
    line-height: 252px;
    font-weight: 700;
    display: block;
    text-align: center;
    color: #82b60b;
    background: #fff;
    text-shadow: 10px 10px 0 rgba(130, 182, 11, 0.1);
    margin-bottom: 76px;
    margin-top: 45px;
}

.error-content .col:nth-child(2) span {
    background: #82b60b;
    color: #fff;
    margin-top: 0;
    text-shadow: 10px 10px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.error-content .col:nth-child(2) span::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 12px;
    background: #fff;
    bottom: -45px;
    left: 0;
}

.error-content h3,
.error-content p {
    font-weight: 700;
    color: #00235a;
}

.error-content h3 {
    font-size: 50px;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 18px;
}

.error-content a {
    display: inline-block;
    padding: 20px 40px 17px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    background: #00235a;
    color: #fff !important;
    cursor: pointer;
    transition: all .5s ease;
}

.error-content a:hover {
    background: #82b60b;
}

.error-content a > i {
    margin-right: 8px;
    color: #fff;
    display: inline-block;
    -webkit-transform: translate(0, 1px);
    -ms-transform: translate(0, 1px);
    transform: translate(0, 1px);
    transition: all .3s ease 0s;
}

.error-content a:hover > i {
    -webkit-transform: translate(-5px, 1px);
    -ms-transform: translate(-5px, 1px);
    transform: translate(-5px, 1px);
    transition: all .3s ease .2s;
}
/*** 
====================================================================
    End Error Page CSS
====================================================================
 ***/


/*** 
====================================================================
    End Footer Secion CSS
====================================================================
 ***/
footer {
    background: #f3f8ec;
}

.footer-top {
    margin-top: 120px;
    transform: translateY(-50%);
}

.call-to-action {
    z-index: 1;
    display: flex;
    position: relative;
    align-items: center;
    /*padding: 57px 100px 63px;*/
	    padding: 30px 100px 30px;
    justify-content: space-between;
    background: url(../img/bg/05.jpg) no-repeat center center / cover;
	
}

.call-to-action::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, .96);
    box-shadow: inset 0 -6px 0 #82b60b;
    top: 0;
    left: 0;
    z-index: -1;
	
}

.call-to-action h2 {
    font-size: 35px;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
    width: 50%;
}

.call-to-action .theme-btn {
    color: #ffffff;
}

.call-to-action .theme-btn:hover {
    background: #fff;
    color: #00235a;
}

.call-to-action .theme-btn:hover > i {
    color: #00235a;
}

.footer-middle {
    padding: 125px 0;
}

.footer-top + .footer-middle {
    padding: 30px 0 30px;
}

.footer-gallery {
    margin: 0 -5px;
}

.footer-gallery figure {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 5px;
}

.footer-gallery figure > a {
    display: block;
    position: relative;
    background: #82b60b;
}

.footer-gallery figure > a::before,
.footer-gallery figure > a::after {
    position: absolute;
    content: '';
    background: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease 0s;
}

.footer-gallery figure > a:hover::before,
.footer-gallery figure > a:hover::after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    transition: all .4s ease .1s;
}

.footer-gallery figure > a:hover::before {
    width: 1px;
    height: 50%;
}

.footer-gallery figure > a:hover::after {
    width: 50%;
    height: 1px;
}

.footer-gallery figure > a > img {
    transition: all .3s ease;
    width: 100%;
}

.footer-gallery figure > a:hover > img {
    opacity: .1;
}

.footer-col {
   margin-bottom: 10px;
}

.footer-col > h2 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
   margin-bottom: 20px;
}

.footer-contact p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer-contact p + p {
    margin-top: 7px;
}

.footer-contact p > i {
    font-size: 20px;
    line-height: 30px;
    color: #d3e6f7;
}

.footer-contact p > span {
    font-size: 15px;
    line-height: 30px;
    color: #fff;
    display: inline-block;
    margin-left: 10px;
}
.footer-social {
    margin-top: 25px;
}
.footer-social > a {
    width: 35px;
    height: 35px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    box-shadow: inset 0 0 0 1px #c4c4c4;
	background-color: #fff;
}
.footer-social > a + a {
    margin-left: 10px;
}
.footer-social > a:hover {
    box-shadow: inset 0 0 0 25px #313191;
}
.footer-social > a > i {
    font-size: 15px;
    line-height: 37px;
    color: #313191;
    transition: all .3s ease;
}
.footer-social > a:hover > i {
    color: #fff;
}


.footer-socials {
    margin-top: 25px;
}
.footer-socials > a {
    width: 45px;
    height: 45px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    box-shadow: inset 0 0 0 1px #c4c4c4;
}
.footer-socials > a + a {
    margin-left: 10px;
}
.footer-socials > a:hover {
    box-shadow: inset 0 0 0 25px #c7c7d6;
}
.footer-socials > a > i {
    font-size: 15px;
    line-height: 45px;
    color: #efeff6;
    transition: all .3s ease;
}
.footer-socials > a:hover > i {
    color: #000;
}

.footer-col ul li {
    position: relative;
    color: #d3e6f7;
    padding-left: 32px;
    transition: all .3s ease;
}

.footer-col ul li:hover {
    color: #fff
}

.footer-col ul li + li {
    margin-top: 12px;
}

.footer-col ul li::before {
    position: absolute;
    content: "\ea7c";
    font-family: "IcoFont";
    color: currentColor;
    transition: all .3s ease;
    top: 0;
    left: 0;
}

.footer-col ul li > a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    position: relative;
}

.footer-col ul li > a:hover {
    color: #d3e6f7
}

.footer-col ul li > a::before {
    position: absolute;
    content: '';
    width: calc(100% - 3px);
    height: 1px;
    bottom: -2px;
    left: 0;
    background: currentColor;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform .5s cubic-bezier(0.100, 0.600, 0.350, 1.000) 0s, background .3s;
}

.footer-col ul li > a:hover::before {
    transform: scale(1, 1);
    transform-origin: left;
    transition: transform .5s cubic-bezier(0.100, 0.600, 0.350, 1.000) .1s, background .3s;
}

.footer-bottom {
    padding: 10px 0;
    background: #82b60b;
}

.footer-bottom p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
	text-align: center;;
}

.footer-bottom p > span {
    font-weight: 700;
}
/*** 
====================================================================
    End Footer Secion CSS
====================================================================
 ***/


.service-item{position:relative;border-radius:10px;margin-bottom:40px;background-color:#fff;box-shadow:0 5px 83px 0 rgba(9,29,62,0.05);transition:all .4s ease;height: 100%;}
.service-item .service__body{position:relative;z-index:2;padding:50px; text-align: center;}
.service-item .service__icon{position:relative;color:#65b530;font-size:60px;line-height:1;margin-bottom:25px;transition:all .3s linear}
.service-item .service__title{font-size:22px;margin-bottom:13px;transition:all .3s linear;color: #092a5f;font-weight: 700;}
 .service-item .service__desc{font-size:15px;margin-bottom:32px;transition:all .3s linear}.service-item .service__img{position:relative}.service-item .service__img:before{content:"";position:absolute;left:0;bottom:0;z-index:2;height:0;width:100%;opacity:0;transition:all .3s ease;background-image:linear-gradient(rgba(27,26,26,0) 0%,rgba(101,181,48,0) 0%,#65b530 79%)}.service-item .btn__link.btn__primary{color:#222}.service-item .btn__link.btn__primary:hover{color:#65b530}.service-item:hover .service__img:before{opacity:1;height:100%}.service-item:hover .btn__link.btn__primary{color:#65b530}.services-layout2 .service-item{border-radius:0;box-shadow:none;margin-bottom:0}
.services-layout2 .service-item .service__body{padding:30px}
.services-layout2 .service-item:hover{background-color:#82b60b}
.services-layout2 .service-item:hover .service__icon,.services-layout2 .service-item:hover .service__title,.services-layout2 .service-item:hover .service__desc,.services-layout2 .service-item:hover .btn{color:#fff}.services-layout2 .service-item .btn:hover .icon-filled{color:#65b530;border-color:#fff;background-color:#fff}.services-layout2 .services-wrapper{box-shadow:0 5px 83px 0 rgba(27,26,26,0.12)}.services-layout2 .services-wrapper > .row > [class*=col-]{border-right:2px solid #eaeaea}.services-layout2 .services-wrapper > .row > [class*=col-]:last-of-type{border-right:0}.services-layout2 + .about-layout3{margin-top:-150px;padding-top:275px}.services-layout3 .service-item{display:flex;flex-wrap:wrap;border-radius:0;box-shadow:none;margin-bottom:0}.services-layout3 .service-item .service__body,.services-layout3 .service-item .service__img{flex:0 0 50%;max-width:50%}.services-layout3 .service-item .service__body{padding:40px}.services-layout3 .service-item .service__img{min-height:200px}.services-layout3 .service-item .service__img:before{display:none}.services-layout3 .services-wrapper{box-shadow:0 5px 83px 0 rgba(27,26,26,0.12)}.services-carousel .service-item{box-shadow:0 5px 83px 0 rgba(9,29,62,0.05)}.services-carousel .service-item:hover{box-shadow:0 5px 83px 0 rgba(9,29,62,0.15)}.services-carousel .slick-dots{text-align:center}.services-carousel .slick-list{margin:-15px;overflow:visible}.services-carousel .slick-slide{margin:15px;transition:all .3s ease}.services-carousel .slick-slide.slick-active{opacity:1;visibility:visible}.services-carousel .slick-slide:not(.slick-active){opacity:0;visibility:hidden}
@media (min-width: 1200px){.services-layout1 .service-item .service__title{padding-right:45px}}
@media (max-width: 992px){.service-item{margin-bottom:30px}.service-item .service__body{padding:20px}.service-item .service__icon{font-size:50px;margin-bottom:10px}
.service-item .service__title{font-size:22px;margin-bottom:10px}.service-item .service__desc{font-size:15px;margin-bottom:10px}
.services-layout2 .service-item .service__body{padding:20px}.services-layout2 .services-wrapper > .row > [class*=col-]{border-bottom:2px solid #eaeaea}.services-layout3 .service-item .service__body{padding:20px}}@media (min-width: 501px){.services-layout3 .services-wrapper > [class*=col-]:nth-of-type(3) .service-item .service__img,.services-layout3 .services-wrapper > [class*=col-]:nth-of-type(4) .service-item .service__img{order:1}.services-layout3 .services-wrapper > [class*=col-]:nth-of-type(3) .service-item .service__body,.services-layout3 .services-wrapper > [class*=col-]:nth-of-type(4) .service-item .service__body{order:2}}@media (max-width: 500px){.services-layout3 .service-item .service__body,.services-layout3 .service-item .service__img{flex:0 0 100%;max-width:100%}}

/* steps area */
.steps-area h2,.steps-area h3{
color: #fff;}
.steps-area li {
  margin-bottom: 30px;

}
.steps-area li:last-child{
    margin-bottom: 0;
}
.step-box {
  display: flex;
}
.step-box .text p{
    margin-bottom: 0;
    color: #9f9f9f;
}
.step-box .date-box {
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #fff;
margin-right: 30px;
text-align: center;
position: relative;
float: left;
color: #f26520;
font-family: 'Rubik', sans-serif;
font-size: 24px;
font-weight: 700;
line-height: 60px;
     box-shadow: 5px 8.66px 30px 0px rgba(0, 0, 0, 0.1);
}

.step-box .date-box::before {
  content: "";
width: 50px;
height: 50px;
left: 5px;
position: absolute;
top: 5px;
border-radius: 50%;
}
.step-img {
  margin-left: -305px;
}
.side {
   background-color: #f0f2f5;
    padding: 10px 20px;
    border-left: 4px solid #313191;
    font-weight: 600;
	margin-top: 10px;
	color: black !important;
}
.cont{
     
    background: #f8f8fb;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;

}

 .list__item{position:relative;
 font-size:15px;
 /*font-weight:700;*/
 font-weight:500;
 padding-left:40px;
 color:#222;
 padding-bottom:20px;
 margin-bottom:20px}
 [class*=list-items] li:before,[class*=list-items] .list__item:before{content:"";position:absolute}.list-items-layout1 .list__item{border-bottom:1px solid #eaeaea}.list-items-layout1 .list__item:before{left:8px;top:9px;width:8px;height:8px;border-radius:50%;background-color:#eaeaea;box-shadow:0 0 0 2px #65b530,0 0 0 9px #eaeaea}.list-items-layout1.list-items-light .list__item{border-bottom-color:#a8d08d}.list-items-layout2 .list__item,.list-items-layout3 .list__item,.list-items-layout4 .list__item,.list-items-layout5 .list__item{transition:all .3s ease}
 .list-items-layout2 .list__item:before,.list-items-layout3 .list__item:before,.list-items-layout4 .list__item:before,.list-items-layout5 .list__item:before{
     content:"\f00c";
     font-family:'Font Awesome 5 Pro';
     font-weight:900;
     display:flex;
     align-items:center;
     justify-content:center;font-size:13px;left:0;width:25px;height:25px;border-radius:50%;transition:all .3s ease}
     .list-items-layout2 .list__item,.list-items-layout3 .list__item{margin-bottom:0;padding:20px 10px 20px 40px}.list-items-layout2 .list__item:hover,.list-items-layout3 .list__item:hover{padding-left:60px}.list-items-layout2 .list__item:hover:before,.list-items-layout3 .list__item:hover:before{transform:translateX(20px)}.list-items-layout2 .list__item{border-bottom:1px solid #eaeaea}.list-items-layout2 .list__item:last-child{border-bottom:0}
 .list-items-layout2 .list__item:before{color:#fff;background-color:#222}.list-items-layout2 .list__item:hover{color:#fff;background-color:#65b530}.list-items-layout2 .list__item:hover:before{color:#65b530;background-color:#fff}.list-items-layout3 .list__item{border-top:1px solid #eaeaea}.list-items-layout3 .list__item:before{color:#fff;background-color:#65b530}.list-items-layout3 .list__item:hover{color:#fff;background-color:#65b530}.list-items-layout3 .list__item:hover:before{color:#65b530;background-color:#fff}.list-items-layout4 .list__item{padding-bottom:0}.list-items-layout4 .list__item:before{width:26px;height:26px;color:#65b530;border:2px solid #9b9b9b}.list-items-layout5 .list__item{width:auto;padding-left:30px;padding-bottom:0}.list-items-layout5 .list__item:before{color:#65b530;background-color:transparent}.list-items-light .list__item{color:#fff}.list-items-light.list-items-layout2 .list__item:before{color:#fff;border-color:#65b530;background-color:#65b530}.list-horizontal{display:flex;flex-wrap:wrap}.list-horizontal li,.list-horizontal .list__item{flex:0 0 50%;max-width:50%}.details-list > li{display:flex;flex-wrap:wrap;padding:20px;border-radius:13px}.details-list > li:nth-of-type(odd){background-color:#def8f6}.details-list > li .details__title{font-size:14px;flex:0 0 40%;max-width:40%;margin-bottom:0}.details-list > li .details__content{flex:0 0 60%;max-width:60%}.borderd-box{padding:27px;border-radius:4px;border:1px solid #e7ebef}@media (max-width: 992px){.list-horizontal{flex-direction:column}.list-horizontal .list__item{flex:0 0 100%!important;max-width:100%!important}.details-list > li{padding:10px;flex-direction:column}.details-list > li .details__title,.details-list > li .details__content{flex:0 0 100%;max-width:100%}}@media (max-width: 992px){[class*=list-items] li,[class*=list-items] .list__item{font-size:15px}}@media (min-width: 768px){.list-items-layout1 .list__item:last-child{border-bottom:0}}@media (max-width: 767px){.list-items-layout1{margin-bottom:0}}@-webkit-keyframes pulsing{0%{opacity:0;transform:scale(1)}40%{opacity:.3;transform:scale(1.2)}100%{opacity:0;transform:scale(1.5)}}@keyframes pulsing{0%{opacity:0;transform:scale(1)}40%{opacity:.3;transform:scale(1.2)}100%{opacity:0;transform:scale(1.5)}}@-webkit-keyframes slideTopDown{0%{transform:translateY(0)}100%{transform:translateY(-6px)}}@keyframes slideTopDown{0%{transform:translateY(0)}100%{transform:translateY(-6px)}}@-webkit-keyframes headerAnimation{0%{opacity:0;transform:translateY(-100%)}100%{opacity:1;transform:translateY(0)}}@keyframes headerAnimation{0%{opacity:0;transform:translateY(-100%)}100%{opacity:1;transform:translateY(0)}}@-webkit-keyframes zoomOut{50%{transform:scale(1.1)}}@keyframes zoomOut{50%{transform:scale(1.1)}}
 
 /*====================
19. About css 
======================*/

.about-area{
  position: relative;
}

.about-left{
  margin-right: 20px;
}

.about-img{
  display: flex;
  gap: 30px;
  position: relative;
}

.about-img .img-1{
  border-radius: 80px 80px 0 80px;
}

.about-img .img-2{
  border-radius: 50%;
  border: 2px dashed #82b60b;
  padding: 8px;
}

.about-img .img-3{
  border-radius: 0 80px 80px 80px;
}
.site-title span {
    color: #82b60b;
}

.about-experience{
  display: flex;
  align-items: center;
  text-align: center;
  background: #82b60b;
  padding: 15px 20px 15px 15px;
  color: #ffffff;
  border-radius: 50px 50px 50px 0;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
}

.about-experience-icon{
  color: #81b50c;
  font-size: 65px;
  width: 90px;
  height: 90px;
  line-height: 70px;
  text-align: center;
  margin: auto;
  background: #fff;
  border-radius: 50px;
  margin-bottom: 5px;
}

.about-experience-icon img{
  width: 65px;
}

.about-right {
  position: relative;
  display: block;
}

.about-content {
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f8ec;
}

.about-item {
  position: relative;
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.about-item-icon {
  width: 70px;
  height: 70px;
  line-height: 72px;
  text-align: center;
  margin-bottom: 12px;
  background: #022459;
  border-radius: 50px;
  font-size: 35px;
  color: #ffffff;
  box-shadow: -5px 5px 0 rgb(233 242 241);
}


.about-item-icon img{
  width: 45px;
  filter: brightness(0) invert(1);
}

.about-item-content {
  flex: 1;
}

.about-item-content h5 {
  font-size: 22px;
  margin-bottom: 5px;
}

.about-quote{
  position: relative;
  color: #19232b;
  padding: 20px 22px;
  background: rgb(233 242 241);
  border-radius: 20px;
}

.about-quote i{
  position: absolute;
  font-size: 45px;
  color: var(--theme-color);
  right: 15px;
  bottom: -15px;
}

.about-bottom{
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 30px 0px;
}

.about-phone{
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-phone .icon{
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: #022459;
    color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  box-shadow: -5px 5px 0 rgb(233 242 241);
}

.about-phone .number{
  line-height: 1;
}

.about-phone .number span{
  color: #82b60b;
  font-weight: 500;
}

.about-phone .number h6{
  font-size: 20px;
  margin-top: 8px;
}

.about-phone .number h6 a{
  color: #022459;
}


@media all and (max-width: 991px) {
  .about-right {
    margin-top: 30px;
  }
}

@media all and (max-width: 767px) {
  .about-item {
    margin-top: 30px;
  }
}
.theme-btn1 {
    font-size: 14px;
    color: #ffffff;
    padding: 14px 20px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px 50px 50px 0;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: #82b60b;
    box-shadow: var(--box-shadow);
    z-index: 1;
}
.theme-btn1:hover {
    color: #fff;
}
.text-start {
    text-align: left!important;
    color: #ffffff;
}

.inog{
    background-color: #fff;
   
    width: 130px;
    height: 130px;
    line-height: 20px;
    border-radius: 8px;
    padding: 10px;
}
.ty{    text-align: justify;}

.feature-list li h5 {
    font-size: 22px;
    margin-bottom: 8px;
    transition: 0.3s;
    color: #00235a;;
    font-weight: 700;
}
.feature-list li span {
    position: absolute;
    top: 6px;
    left: 0;
}
.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
}
.feature-list.style1 li {
    padding-left: 40px;
}
.feature-list.style1 li span i {
    color: #82b60b;
    font-size: 24px;
}
.feature-list li span i {
    line-height: 0.8;
    display: inline-block;
}
.section-title h2, .content-title h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}
.section-title.style1 span, .content-title.style1 span {
    color: #D80758;
}
.why-choose-wrap {
    position: relative;
}
.wh-bg-1 {
    background-image: url(../../assets/img/wh-bg-1.png);
}
.why-choose-wrap.style1 .wh-img-wrap {
    position: relative;
}
.why-choose-wrap.style1 .wh-img-wrap .wh-img-1 {
    height: 664px;
    width: calc(100% - 150px);
    border-radius: 5px;
    margin-left: auto;
}
.wh-img-1 {
    background-image: url(../../assets/images/lap-4.jpg);
}
.bg-f {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f3f6fa;
}
.why-choose-wrap.style1 .wh-img-wrap .wh-img-2 {
    height: 450px;
    width: 350px;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 5px;
    z-index: 1;
    transform: translateY(-50%);
}
.wh-img-2 {
    background-image: url(../../assets/images/lap-2.jpg);
}
.list-style2 li:before {
    content: '\f0a9';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
    color: #82b60b;
    font-size: 16px;
    vertical-align: middle;
    padding-right: 15px;
        /* top: 16px; */
    right: 99%;
    position: absolute;
}

.botp{
        position: relative;
    top: -10px;
    right: -24px;
    padding-top: 10px;
    text-align: justify;
}
.list-style2 li {
    margin-bottom: 15px;
}
.list-style2 {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
     font-size: 15px;
}
.border-radius-5 {
    border-radius: 5px;
}


.pt-120
{padding-top:20px;} 

.pb-90{
    padding-bottom:50px;
}

.bord {
    border-radius: 5px;
    box-shadow: -3px 0px 30px 0px rgb(0 0 0 / 10%);
}

.services-item-five {
    margin-bottom: 30px;
}
.services-thumb-five {
    border-radius: 10px;
    overflow: hidden;
}
.services-thumb-five img {
    transform: scale(1);
    transition: all .8s cubic-bezier(.25, .46, .45, .94);
    width: 370px;
    height: 270px;
    object-fit: cover;
}
.services-item-five:hover .services-thumb-five img {
    transform: scale(1.1);
}
.team-img-bg:before {
    content: "";
    position: absolute;
    background: #00235a;
    width: 90%;
    border-radius: 5px;
    height: 90%;
    bottom: 45px;
    right: 36px;
    z-index: 0;
}
.bod-back {
    border-color: #ededed !important;
    background-color: #f7faff !important;
    box-shadow: -3px 0px 30px 0px rgb(0 0 0 / 10%);
    border-radius: 5px;
}
blockquote {
    background-color: #f9f9f9;
    padding: 24px 57px 24px 37px;
    font-size: 19px;
    line-height: 30px;
    color: #222;
    font-weight: 500;
    position: relative;
}
blockquote:before {
    content: '';
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #82b60b;
}