
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
:root {
    /* Core Palette */
    --navy-dark: #0a1f44;
    --navy-primary: #1e3a5f;
    --navy-light: #2d4a72;

    --teal-dark: #006b7d;
    --teal-primary: #0097a7;
    --teal-light: #26c6da;

    --gold: #d4af37;
    --gold-light: #f4d47f;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Status */
    --success: #10b981;
    --error: #ef4444;

    /* Overlays */
    --black-05: rgba(0, 0, 0, 0.05);
    --black-10: rgba(0, 0, 0, 0.1);
    --black-70: rgba(0, 0, 0, 0.7);
    --teal-15: rgba(0, 151, 167, 0.15);
    --teal-20: rgba(0, 151, 167, 0.2);
    --teal-30: rgba(0, 151, 167, 0.3);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-80: rgba(255, 255, 255, 0.8);
}
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    color: #000;
    position: relative
}

#body-wrap {
    overflow-x: hidden;
}

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

a,
a:visited,
a:focus,
a:active,
a:hover {
    text-decoration: none;
    outline: none;
}

a,
button {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

a {
    color: #1c1c1c;
    font-size: 16px
}

h1,
h2,
h3,
h4,
h5,
h6,
h1,
.h1,
.h2,
.h3 {
    font-weight: 600;
    margin-top: 0
}

h1 {
    font-size: 46px;
    line-height: 65px
}

h2 {
    font-size: 30px;
    line-height: 40px
}

h3 {
    font-size: 24px;
    line-height: 34px
}

h4 {
    font-size: 20px;
    line-height: 30px
}

h5 {
    font-size: 18px;
    line-height: 28px
}

h6 {
    font-size: 16px;
    line-height: 26px
}

p {
    font-size: 14px;
    color: #555;
    line-height: 24px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #8F8F8F;
    opacity: 5;
}

.font-800 {
    font-weight: 800
}
.font-700 {
    font-weight: 700
}

.font-600 {
    font-weight: 600
}

.font-500 {
    font-weight: 500
}
.font-500 {
    font-weight: 400
}
.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.float-right {
    float: right
}

.float-left {
    float: left
}

.color-primary {
    color: var(--teal-primary, #0097a7)
}

.text-white {
    color: #fff
}

.form-control {
    border: 1px solid #ccd7e0;
    -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0) inset;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0) inset;
    border-radius: 4px
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5)
}

.bg-gray {
    background-color: #f1f7fc
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.m-0 {
    margin: 0
}

.p-0 {
    padding: 0
}

.d-table {
    display: table;
    width: 100%;
    height: 100%
}

.d-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.full-height {
    height: 100vh
}

.height-90vh {
    height: 90vh;
}
.height-80vh {
    height: 80vh;
}
textarea.form-control {
    height: 130px;
}
.contact-text-base {
    margin-top: 15%;
}

/*-------------------------------------------------------------------------------------
    Preloader
---------------------------------------------------------------------------------------*/

.preloader {
    background-color: var(--teal-dark, #006b7d);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
    opacity: 0.8
}

.preloader .spinner {
    width: 60px;
    height: 60px;
    margin: 21% auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------------------
    Header Area
---------------------------------------------------------------------------------------*/
.top-base{
    background-color: var(--teal-dark, #006b7d);
   min-height: 40px;
   opacity: 1;
}
.top-bar-text h6{
   line-height: 42px;
   color: white;
   margin-bottom: 0;
}
#header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
}
.navbar-brand {
    float: left;
    min-height: 50px;
    padding: 24px 15px;
    font-size: 18px;
    line-height: 160px;
}
nav.navbar.bootsnav {
    background-color: #fff;
    border-bottom: 0
}

nav.navbar.bootsnav ul.nav > li > a {
    color: var(--teal-primary, #0097a7);
    font-weight: 700;
}
nav.navbar.bootsnav ul.nav > li > a:hover {
   color: #003a33;
    border-bottom: 3px solid var(--teal-primary, #0097a7);
   padding-bottom: 26px;
}
nav.navbar.bootsnav.affix ul.nav > li > a {
    color: var(--teal-primary, #0097a7);
}
nav.navbar.bootsnav.affix ul.nav > li > a:hover {
   color: #003a33;
    border-bottom:2px solid var(--teal-primary, #0097a7);
   padding-bottom: 27px;
}
nav.navbar.bootsnav ul.nav > li.active > a,
nav.navbar.bootsnav ul.nav > li.active > a:hover,
nav.navbar.bootsnav ul.nav > li > a:hover {
    color: var(--teal-primary, #0097a7);
}
.pad-r-0{
    padding-right: 0 !important;
}
.navbar.navbar-default.bootsnav.affix {
    background-color: #fff;
}

.navbar {
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.navbar.affix {
    -webkit-box-shadow: 0 0 10px #ccc;
    box-shadow: 0 0 10px #ccc;
    top: 0;
    width: 100%;
}

.navbar.affix-top {
    position: static;
    top: -10px;
}

.affix {
    width: 100%;
}

.navbar.affix .navbar-brand.logo,
.navbar .navbar-brand.logo-two {
    display: none
}

.navbar.affix .navbar-brand.logo-two {
    display: block
}
.login-btn a span{
    background-color: rgba(0, 82, 73);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 14px;

}
.login-btn a span:hover{
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 14px;
    background-color: rgba(0, 82, 73);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
    border-bottom: 0 !important;
}
.login-btn a:hover{
    border-bottom: 0 !important;
}
/*-------------------------------------------------------------------------------------
    Hero Area
---------------------------------------------------------------------------------------*/

#hero-area {
    position: relative;
    background-attachment: fixed;
    background-position: top
}

.hero-content {
    position: relative;
    padding-top: 4%;
}

.cd-headline {
    font-size: 50px;
    line-height: 60px;
    margin: 0
}

#particles {
    height: 100%;
    width: 100%;
}

#particles canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.sld-text p{
   font-size: 25px;
   line-height: 35px;
}
.sld-text h1{
    padding-top: 17%;
}
/*-------------------------------------------------------------------------------------
    Slider Area
---------------------------------------------------------------------------------------*/
.container-auto{
    width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.slide-single {
    position: relative;
    background-position: top;
    padding-top: 8%;
}

.slide-caption {
    padding: 0%;
    width: 75%
}

.slide-btn a {
    background-color: #b2e79f;
    color: var(--teal-primary, #0097a7);
    display: inline-block;
    margin: 60px 10px 0 0;
    padding: 12px 20px;
    border-radius: 30px;
    border: 2px solid #b2e79f;
    font-weight: 800;
    text-transform: uppercase;
}

.slide-btn a.transparent {
    background-color: transparent;
    color: #fff;
    border-color: #fff
}

.slide-btn a:hover {
    background-color: var(--teal-dark, #006b7d);
    border-color: var(--teal-primary, #0097a7) ;
    color:white !important;
}

.owl-item.active .slide-caption h4 {
    -webkit-animation: 1s .2s fadeInUp both;
    animation: 1s .2s fadeInUp both;
}

.owl-item.active .slide-caption h1 {
    -webkit-animation: 1s .4s fadeInUp both;
    animation: 1s .4s fadeInUp both;
}

.owl-item.active .slide-caption p {
    -webkit-animation: 1s .6s fadeInUp both;
    animation: 1s .6s fadeInUp both;
}

.owl-item.active .slide-caption .slide-btn {
    -webkit-animation: 1s .8s fadeInUp both;
    animation: 1s .8s fadeInUp both;
}

.owl-stage {
    margin-left: -2px
}

.silder .owl-nav div {
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 30px;
    width: 60px;
    height: 60px;
    top: 55%;
    left: 20px;
    padding: 10px 14px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%
}

.silder .owl-nav div:hover {
    background-color: var(--teal-dark, #006b7d)
}

.silder .owl-nav .owl-next {
    right: 20px;
    left: auto;
    padding: 10px 16px;
}

.silder .owl-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px
}

.silder .owl-dot {
    height: 6px;
    width: 40px;
    margin: 0 4px;
    display: inline-block;
    background-color: #fff
}

.silder .owl-dot.active {
    background-color: var(--teal-dark, #006b7d);
}
.owl-dots{
 display: none;
}

/*-------------------------------------------------------------------------------------
   Our Solution Section
---------------------------------------------------------------------------------------*/
#our-solution{
  padding: 35px 0 60px;
}
.section-heading {
    padding: 0 0 50px
}
.our-sol-text h5{
    margin: 20px 0 30px;
}
.sol-box-base{
   margin-top: 40px;
}
.sol-box-inner{
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
    color: var(--teal-primary, #0097a7);
    margin-bottom: 20px;
    max-height: 70px;
}
.sol-box-inner h6{
    margin: 0;
    padding: 16px 12px 16px 20px;
    font-weight: 700;

}
.fa-arrow-right-custom {
   padding: 22px 14px;

}
.sol-box-inner:hover{
    border-radius: 5px;
    background-color:  var(--teal-dark, #006b7d);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
    color: #fff;
}

/*-------------------------------------------------------------------------------------
    About Area
---------------------------------------------------------------------------------------*/

#about-area {
    padding: 80px 0
}

.about-content h6 {
    margin-bottom: 5px;
}

/*-------------------------------------------------------------------------------------
    Service Area
---------------------------------------------------------------------------------------*/

#services-area {
    padding: 70px 0 80px
}

.service-single {
    -webkit-box-shadow: 0 0 10px #e6f0fa;
    box-shadow: 0 0 10px #e6f0fa;
    padding: 30px 15px 20px;
    border-radius: 10px;
    border: 1px solid #e6f0fa;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.service-single:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 22px 40px #e6f0fa;
    box-shadow: 0 22px 40px #e6f0fa;
}

.our-sol-single i {
    background-color: #ffffff;
    padding: 40px;
    font-size: 55px;
    width: 135px;
    height: 135px;
    border-radius: 80px;
   -webkit-box-shadow: 0px 7px 10px 4px #e1f0ff;
    box-shadow: 0px 7px 10px 4px #e1f0ff;
    color: var(--teal-primary, #0097a7);
}

.our-sol-single i:hover{
    background-color: var(--teal-dark, #006b7d);
    padding: 40px;
    font-size: 55px;
    width: 135px;
    height: 135px;
    border-radius: 80px;
   -webkit-box-shadow: -1px 2px 10px #e6f0fa;
    box-shadow: -1px 2px 10px #dcedff;
    color: #fff;
}

.service-single h5 {
    margin: 0 0 5px;
}

/*-------------------------------------------------------------------------------------
    Why Choose Area
---------------------------------------------------------------------------------------*/

#why-choose-us {
    position: relative;
    /* padding: 70px 0 30px; */
    /* background-image: url(../images/banner-icons.jpg); */
    width: 100%;
    /* background-size: cover; */
    /* background-position: right; */
}
.solution-steps {
    background-image: url(../images/banner-icons.jpg);
    background-size: cover;
    background-position: right;
    padding: 50px 0 30px;
}
.process-steps {
    padding-top: 50px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.why-choose-content {
    padding-right: 8%;
}
.how-sol-work {
    padding: 20px 0;
}
.how-sol-work-base {
    padding: 2%;
    margin-bottom: 30px;
}
.how-sol-work-base img {
    height: 45px;
    width: 45px;
}
.how-sol-work-btn {
    background: #b2e79f;
    border: 1px solid;
    border-color: #b2e79f;
    padding: 4px 16px;
    color: var(--teal-primary, #0097a7);
    border-radius: 25px;
    margin: 10px;
}
.how-sol-work-btn:hover {
    background: #fff;
    border: 1px solid;
    border-color: #b2e79f;
    padding: 4px 16px;
    color: var(--teal-primary, #0097a7);
    border-radius: 25px;
    margin: 10px;
}

.how-sol-work-base h3{
    margin: 25px 0 10px;
}

/*.why-choose-content ul {
    padding: 8px 0 0;
}

.why-choose-content ul li {
    padding: 6px 0;
}

.why-choose-content li i {
    font-size: 10px;
    padding-right: 4px;
}

.skill-bars {
    padding: 30px 0 0;
}

.progress {
    background-color: #ddd;
    border-radius: 0;
    height: 6px;
}

.progress-bar {
    background-color: var(--teal-dark, #006b7d);
}*/


/*-------------------------------------------------------------------------------------
    Portfolio Area
---------------------------------------------------------------------------------------*/

#portfolio-area {
    padding: 70px 0 75px
}

.portfolio-menu button {
    background-color: transparent;
    border: 1px solid #e6f0fa;
    -webkit-box-shadow: 0 0 10px #e6f0fa;
    box-shadow: 0 0 10px #e6f0fa;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 30px;
    margin: 0 0 30px;
}

.portfolio-menu button.active,
.portfolio-menu button:hover,
.portfolio-menu button:focus {
    background-color: var(--teal-dark, #006b7d);
    border-color: var(--teal-primary, #0097a7);
    color: #fff
}

.portfolio-menu button:focus {
    outline: none;
}

.portfolio-list .grid-item {
    padding: 5px
}

.portfolio-single {
    position: relative;
    overflow: hidden
}

.portfolio-single:hover .portfolio-overlay {
    opacity: 1;
    visibility: visible;
    top: 0
}

.portfolio-overlay {
    position: absolute;
    left: 0;
    top: 20px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.portfolio-overlay a {
    color: var(--navy-primary, #1e3a5f);
    font-size: 24px;
    background-color: #fff;
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 50%;
    line-height: 65px;
    margin: 0 0 15px;
}

.portfolio-overlay a:hover {
    color: #fff;
    background-color: var(--teal-primary, #0097a7)
}

/*-------------------------------------------------------------------------------------
    Pricing Area
---------------------------------------------------------------------------------------*/

#pricing-area {
    padding: 70px 0 80px
}

.pricing-table-single {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 0 50px;
    -webkit-box-shadow: 0 0 10px #e6f0fa;
    box-shadow: 0 0 10px #e6f0fa;
    border: 1px solid #e6f0fa;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.pricing-table-single:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 22px 40px #e6f0fa;
    box-shadow: 0 22px 40px #e6f0fa;
}

.pricing-table-single.recom {
    position: relative;
    overflow: hidden
}

.p-table-price h2 {
    font-size: 40px;
    margin: 25px 0 20px
}

.p-table-price h2 sub {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

.p-table-price h2 span {
    font-size: 24px;
    font-weight: 500;
    padding-right: 4px;
}

.p-table-content ul li {
    padding: 6px 0;
    font-weight: 500
}

.p-table-btn a {
    display: inline-block;
    border: 2px solid var(--teal-primary, #0097a7);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--navy-primary, #1e3a5f);
    font-weight: 500;
    margin: 25px 0 0;
}

.p-table-btn a:hover {
    background-color: var(--teal-primary, #0097a7);
    color: #fff
}

.ribbon {
    position: absolute;
    left: -120px;
    top: 40px;
    width: 100%;
    background-color: var(--teal-primary, #0097a7);
    color: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding: 6px 0;
}

/*-------------------------------------------------------------------------------------
    Video Area
---------------------------------------------------------------------------------------*/

#video-area {
    padding: 70px 0 85px;
    background-image: url(../images/banner-2.jpg);
    background-attachment: fixed;
    position: relative;
}

.video-popup-icon {
    position: relative;
    margin: 40px 0 0;
}

.video-content a {
    display: inline-block;
    font-size: 30px;
    color: #005249;
    background-color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 85px;
    position: relative;
    z-index: 2
}

.video-content a:hover {
    background-color: #005249;
    color: #fff
}

.pulse1 {
    position: absolute;
    width: 95px;
    height: 95px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
    -webkit-animation: pulsejg1 1.3s linear infinite;
    animation: pulsejg1 1.3s linear infinite;
    border-radius: 999px;
    -webkit-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .5);
    box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .5);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pulse2 {
    position: absolute;
    width: 95px;
    height: 95px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0);
    -webkit-animation: pulsejg2 0.9s linear infinite;
    animation: pulsejg2 0.9s linear infinite;
    border-radius: 999px;
    -webkit-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .9);
    box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .9);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes pulsejg1 {
    0% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(.9);
        opacity: .2;
    }

    70% {
        -webkit-transform: scale(1.1);
        opacity: .35;
    }

    80% {
        -webkit-transform: scale(1.25);
        opacity: .2;
    }

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

@keyframes pulsejg1 {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
        opacity: .1;
    }

    70% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .25;
    }

    80% {
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
        opacity: .1;
    }

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

@-webkit-keyframes pulsejg2 {
    0% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    40% {
        -webkit-transform: scale(.8);
        opacity: .05;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: .1;
    }

    60% {
        -webkit-transform: scale(1.1);
        opacity: .3;
    }

    80% {
        -webkit-transform: scale(1.2);
        opacity: .1;
    }

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

@keyframes pulsejg2 {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }

    40% {
        -webkit-transform: scale(.8);
        transform: scale(.8);
        opacity: .05;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .1;
    }

    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .3;
    }

    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: .1;
    }

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


/*-------------------------------------------------------------------------------------
    Team Area
---------------------------------------------------------------------------------------*/

#team-area {
    padding: 70px 0 80px
}

.team-single {
    border: 1px solid #e6f0fa;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px #e6f0fa;
    box-shadow: 0 0 10px #e6f0fa;
    padding: 0 0 20px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.team-single:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 22px 40px #e6f0fa;
    box-shadow: 0 22px 40px #e6f0fa;
}

.team-member-info {
    padding: 20px 0 0;
}

.team-social-icons ul li {
    display: inline-block;
}

.team-social-icons li a {
    display: block;
    font-size: 40px;
    color: #005249;
}

/*-------------------------------------------------------------------------------------
    Testimonial Area
---------------------------------------------------------------------------------------*/

#testimonial-area {
    padding: 75px 0 115px;
    position: relative;
    background-image: url(../images/banner-2.jpg);
    background-attachment: fixed
}

.testimonial-single img {
    max-width: 100px;
    margin: 30px auto 0;
    border-radius: 50%;
    border: 4px solid #005249;
}

.client-info h5 {
    margin: 15px 0 0;
}

.client-comment p:before {
    content: '\f0b1';
    font-family: 'IcoFont';
    color: #005249;
    margin-right: 10px;
    font-size: 20px;
}

.client-comment p:after {
    content: '\f0b2';
    font-family: 'IcoFont';
    color: #005249;
    margin-left: 10px;
    font-size: 20px;
}

.client-comment p {
    font-style: italic;
}

.testimonial .owl-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px
}

.testimonial .owl-dot {
    border: 2px solid #005249;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    display: inline-block;
}

.testimonial .owl-dot.active {
    background-color: #005249;
}

/*-------------------------------------------------------------------------------------
    Counter Area
---------------------------------------------------------------------------------------*/

#counter-area {
    padding: 80px 0 65px
}

.blog-single {
    -webkit-box-shadow: 0 0 10px #e6f0fa;
    box-shadow: 0 0 10px #e6f0fa;
    border: 1px solid #e6f0fa;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 20px
}

.counter-single i {
    font-size: 30px;
    color: #005249;
    display: inline-block;
    margin: 0 0 12px;
}

/*-------------------------------------------------------------------------------------
    Blog Area
---------------------------------------------------------------------------------------*/

#blog-area {
    padding: 70px 0 60px
}

.blog-details {
    padding: 20px;
}

.blog-details p a {
    display: inline-block;
    font-size: 12px;
    padding-right: 12px;
}

.blog-details p a i {
    color: #005249;
    padding-right: 2px;
}

.blog-details h5 a {
    display: block;
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 5px;
}

.blog-details h5 a:hover,
.blog-details p a:hover {
    color: #005249
}

/*-------------------------------------------------------------------------------------
    Partner Area
---------------------------------------------------------------------------------------*/

#partner-area {
    padding: 50px 0 40px
}

.partner img {
    max-width: 130px;
    margin: 0 auto;
    -webkit-filter: grayscale(1);
    filter: grayscale(1)
}

.partner img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

/*-------------------------------------------------------------------------------------
    Contact Area
---------------------------------------------------------------------------------------*/
.wrapper-bg{
  background: #f8f8f8;
}
#contact-area {
    position: relative;
    padding: 70px 0 30px;
    background-image: url(../images/banner-bg_02.jpg);
    width: 100%;
    background-size: cover;
    background-position: right;
}
.cont-p{
    color: #005249;
    padding: 15px 0;
}

#contact-area {
    padding: 70px 0 80px
}

.contact-content {
    -webkit-box-shadow: 0 0 10px #9ddb9a9c;
    box-shadow: 0 0 10px #9ddb9a9c;
    border-radius: 10px;
    padding: 30px 25px;
    border: 1px solid #e6f0fa;
    background: white;
}

.contact-form input {
    height: 50px;
}
.contact-form {
    text-align: center;
}
.contact-form button {
    background-color: #005249;
    border: 0;
    padding: 12px 40px;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    margin-top: 15px;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #008879 !important;
    margin-top: 15px;
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.3);

}

.contact-info {
    padding-left: 30px;
}

.contact-info-single {
    margin: 0 0 30px;
}

.contact-info-single span i {
    color: #005249;
    padding-right: 6px;
}

.contact-info-single h6 {
    margin-bottom: 5px;
}

#footer {
    background-color: #1c1c1c;
    padding: 20px 0;
}
.colr-cont-head{
  color: #001328;
}
.con-ul-radio {
    display: inline-flex;
    margin-top: 30px;
}
.mr-20{
  margin-right: 20px;
}
.form-check-label {
    display: inline-block;
    max-width: 100%;
    margin-left: 5px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #005249;
}
.cont-tab-box {
    margin-top: 16px;
}
.nav-tabs > li.active > button, .nav-tabs > li.active > button:hover, .nav-tabs > li.active > button:focus {
    color: #005249;
    cursor: pointer;
    background-color: #b2e79f;
    border: 1px solid #b2e79f;
    border-bottom-color: transparent;
    font-weight: 600;
    padding: 11px 15px;
}
.nav-tabs > li > button {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    background-color: #eee;
    font-weight: 600;
    padding: 11px 15px;
}
/*-------------------------------------------------------------------------------------
     Live Demo
---------------------------------------------------------------------------------------*/

.demo-item {
    margin: 0 0 30px;
}

.demo-item:hover .demo-overlay {
    opacity: 1;
    visibility: visible
}

.demo-inner {
    -webkit-box-shadow: 0 0 6px #e6f0fa;
    box-shadow: 0 0 6px #ccc;
    position: relative
}

.demo-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 32, 80, 0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.demo-table {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center
}

.demo-cell {
    display: table-cell;
    vertical-align: middle
}

.demo-cell a {
    display: inline-block;
    background-color: #000;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    color: #fff
}

.demo-cell a:hover {
    background-color: #f5f5f5;
    color: #005249
}

.demo-item h3 {
    text-align: center
}

.demo-item h3 a {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    margin: 15px 0 30px;
}

.demo-item h3 a:hover {
    color: #005249;
}

.demo-heading-content h1 {
    font-weight: 700;
}

.demo-heading-content a {
    display: inline-block;
    background-color: #005249;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 2px;
    margin: 30px 10px 0;
}

#demo-heading {
    padding: 90px 0 0;
}

#demo-area {
    padding: 100px 0 60px;
}

/*Footer section*/
#footer{
    position: relative;
    padding: 70px 0 10px;
    background-image: url(../images/footer-bg.jpg);
    width: 100%;
    background-size: cover;
    background-position: right;
}
.ft-Logo img{
    width: 100%;
    margin-top: 50%;
    max-width: 120px;
}
.ft-text-base h6{
    font-size: 20px;
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}
.ft-text-base ul li a{
    font-size: 14.5px;
    color: #dbe9fa;
    line-height: 33px;
}
.ft-text-base ul li a:hover{
    font-size: 14.5px;
    color: #dbe9fa;
    line-height: 33px;
    padding-left: 5px;
}
.lower-bottom-text {
    border-top: 1px solid rgba(255, 255, 254, 0.1);
    margin-top: 25px;
    line-height: 25px; /* reduced by webmaster from 65px to 25px */
    color: #dbeafb;
}
.ft-demo-btn {
    background: #b2e79f;
    font-size: 16px;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: #005249;
    margin-right: 15px;
}
.ft-demo-btn:hover {
    background: #007b6d;
    font-size: 16px;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: #fff;
    margin-right: 15px;
}
.fa-ft {
    font-size: 20px;
    padding: 7px;
    margin: 4px 0px;
    color: white;
}
.ft-media-icon{
   margin-top: 20%;
}

/*******************************
       Login Page
 ********************************/
.log-content {
    background: #f8f8f8;
   /* height: 100vh;*/
}
.log-content-base{
    padding: 100px 0px 60px;
}
.bc-log-cutom {
    color: black;
    /* color: #999fa2; */
    height: 46px;
    font-size: 15px;
    border: 1px solid #c9cbcd;
}
::-webkit-input-placeholder { /* Edge */
    color: #c1c5c6;
}
:-ms-input-placeholder { /* Internet Explorer */
    color: #c1c5c6;
}
::placeholder {
    color: #c1c5c6;
}
.login-inner-base h2{
    display: block;
    text-align: center;
    color: #2b2b2b;
    font-weight: 700;
    margin-bottom: 20px;
}
.login-inner-base p{
    display: block;
    text-align: center;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}
.log-link{
    color: #44a0ef;
}
.bc-log-forgot a{
    color: #005249;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin: 26px;
}
.register-inner-base h2 {
    display: block;
    text-align: center;
    color: #2b2b2b;
    font-weight: 800;
    margin-bottom: 20px;
 }
 .register-inner-base p {
    display: block;
    text-align: center;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.bc-register-btn {
    display: block;
    width: 100%;
    background: var(--teal-primary, #0097a7);
    text-align: center;
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: 0 solid transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.bc-register-btn:hover {
    display: block;
    background: var(--teal-dark, #006b7d);
    text-align: center;
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
}
.bc-register-btn-base p{
    display: block;
    text-align: center;
    color: #2b2b2b;
    font-weight: 700;
    font-size: 16px;
    margin: 20px 0;
}
.bc-log-p-term-text p{
  display: block;
  text-align: center;
  color: #888a8c;
  font-size: 14px;
  margin: 26px 0 20px;
}
#hr-or {
  display: block;
    text-align: center;
    color: #888a8c;
    font-weight: normal;
    font-size: 15px;
    margin: 20px 0;
}
.bc-regwith-fb-btn{
    display: block;
    background: #3b5998;
    text-align: center;
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 60px;
}
.bc-regwith-fb-btn:hover {
    background: #2f4779;
    color: white;
}
/*Individual Request Form */
.individual-form-content h3{
  color: #FFF;
  padding-top: 155px;
  text-align: center;
  font-weight: 700;
}
.individual-form-content{
    /* Replaced legacy green-tinted image with brand gradient */
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--teal-dark) 60%, var(--teal-primary) 100%);
    min-height: 400px;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
}

/* Register tabs: brand pill style for active */
.nav-tabs .nav-link {
    color: var(--navy-primary);
}
.nav-tabs .nav-link:hover {
    color: var(--teal-dark);
}
.nav-tabs .nav-link.active {
    background-color: var(--teal-primary);
    color: #fff;
    border-color: var(--teal-primary) var(--teal-primary) transparent;
    border-radius: 4px; /* rectangular (slight rounding) */
}
.form-box-inner{
    min-height: 500px;
    background-color: white
    border-style: solid;
    border-width: 1px;
    border-color: rgba(227, 229, 231);
    border-radius: 5px;
    background-color: rgba(255, 255, 255);
    margin-top: -160px;
    margin-bottom: 110px;
}

.form-box-inner-head h3{
    font-weight: bold;
    border-bottom: 1.5px solid var(--teal-primary);
    color: var(--navy-primary);
    margin-bottom: 30px;
    padding-bottom: 5px;
}
.form-box-inner{
  padding: 25px;
}
.individual-form-identity {
    padding-top: 20px;
}
.pad-top-20 {
    padding-top: 20px;
}
.re-form-sub-btn {
    background: var(--teal-primary);
    color: white;
    border: 1px solid var(--teal-primary);
    padding: 5px 20px;
    width: 220px;
    height: 46px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 3px;
    margin: 40px 0;
}
.re-form-sub-btn:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
}
.b-r-r-btn {
    background: var(--teal-primary);
    padding: 3px 15px;
    color: white;
    border-radius: 3px;
}
.m-b-0{
    margin-bottom: 0;
}
.w-100{
    width: 100%;
}
.b-rr-td td{
    padding: 4px 5px 4px 0;
}
.verf-box-base{
    margin-top: 50px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(204, 215, 224);
    min-height: 200px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255);
    box-shadow: 0px 10px 30px 0px rgba(204, 215, 224, 0.3);
    padding: 30px;
}
.c-c-p-text p{
    color: #2b2b2b;
    font-size: 15px;
}
.c-c-p-text1 p{
    color: #2b2b2b;
    font-size: 15px;
    margin: 15px 0 12px;
}
.c-c-p-text ul li{
    line-height: 24px;
}
.vef-mail-btn-base{
 margin: 25px 0;
}
.verf-box-base p{
    color: #747474;
    font-size: 14px;
}
.verf-box-base h3{
    font-weight: 800;
    color: #005249;
}
.vef-mail-btn{
    color: white;
    background: #005249;
    padding: 8px 24px;
    border-radius: 25px;
}
.vef-mail-btn:hover {
  background-color: rgb(0, 82, 73);
  box-shadow: 0px 10px 30px 0px rgba(0, 82, 73, 0.3);
  color: white;
  background: #005249;
  padding: 8px 24px;
  border-radius: 25px;
}
.verf-wel-text h3{
    font-weight: 800;
    color: #005249;
    margin: 25px 0;
}

.is-invalid{
    border:1px red solid!important;
}