:root {
    scroll-behavior: smooth;
}
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}
a {
    color: #0f804a;
    text-decoration: none;
}
a:hover {
    color: #717ff5;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Nunito", sans-serif;
}
.form-control:focus{
    box-shadow: 0 0 0 1px rgba(13,110,253,.25);
}
/*------- Sections------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}
.section-header {
    text-align: center;
    padding-bottom: 40px;
}
.section-header .subtitle{
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #0f804a;
    line-height: 1.6;
}
.section-header .sectitle{
    padding: 0;
    font-size: 38px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a70b6;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.section-header .hometxt{
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #000;
    margin-top: 20px;
}
/*----------- Breadcrumbs--------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #1a70b6;
    min-height: 40px;
    color: #fff;
}
.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.breadcrumbs ol a {
    color: #fff;
    transition: 0.3s;
}
.breadcrumbs ol a:hover {
    text-decoration: underline;
}
.breadcrumbs ol li+li {
    padding-left: 10px;
}
.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #8894f6;
    content: "/";
}
/*------ Back to top button---------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #1a70b6;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: #0e8149;
    color: #fff;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
/*---------- Disable aos animation delay on mobile devices----------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*----------- Header-----------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    height: 82px;
    background: white;
    position: sticky;
    top: 0;
}
.header.header-scrolled {
    background: #fff;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
.header .logo {
    line-height: 0;
}
.header .logo img {
    max-height: 60px;
}
/*-----------------------# Navigation Menu------------------- */
.navbar {
    padding: 0;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar li {
    position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
}
.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
    color: #1a70b7;
}
.getstarted, .getstarted:focus {
    background: #1A70B6;
    border: 1px solid #1A70B7;
    padding: 8px 20px;
    margin-left: 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.getstarted i{
    font-size: 14px;
}
.getstarted:hover{
    background: #fff;
    color: #1A70B7;
    border: 1px solid #1A70B7;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
.getstarted:focus:hover {
    color: #fff;
    background: #1A70B7;
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}
.navbar .dropdown ul li {
    min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}
.navbar .dropdown ul a i {
    font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
    color: #0f804a;
}
.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
/*** Mobile Navigation */
.mobile-nav-toggle {
    color: #1A70B6;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
    color: #fff;
}
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #000;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
    color: #1a70b7;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}
.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
    min-width: 200px;
}
.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
    color: #0f804a;
}
.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}
/*------------ Hero Section--------------------------------*/
.hero {
    width: 100%;
    background: #fafafa;
}
.hero .section-header .sectitle{
    font-family: "Open Sans", sans-serif;
}
.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #1A70B6;
}
.hero h2 {
    color: #444444;
    margin: 15px 0 0 0;
    font-size: 26px;
}
.hero .btn-get-started {
    margin-top: 30px;
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #0f804a;
    box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}
.hero .btn-get-started span {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}
.hero .btn-get-started i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}
.hero .btn-get-started:hover i {
    transform: translateX(5px);
}
.hero .hero-img {
    text-align: right;
}
.hero .swiper{
    width:80%;
    margin: auto;
}
.hero .swiper img{
    border-radius: 50%;
}
.hero .subhead{
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #0f804a;
    text-transform: capitalize;
    line-height: 1.6;
    display: block;
}
.hero ul li{
    padding: 0;
    font-size: 16px;
    line-height: 2;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 10px;
    white-space: nowrap;
}
.shape1{
    position:absolute;
    top:0;
    right:90px;
}
.shape2{
    position:absolute;
    bottom:0;
    left:0;
}
.shape3{
    position: absolute;
    bottom: 44px;
    left: 22px;
}
.shape4{
    position: absolute;
    top: 50px;
    left: 0;
}
.shape5{
    position:absolute;
    bottom:0;
    left:0;
}
.text-green{
    color:#0f804a;
}
/*--------------# About-----------------------------------*/
.about .content p{
    font-size: 14px;
    color: #000;
    line-height: 1.8;
}
.aboutpic{
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.08);
}
/*----------------Values-----------------------------------*/
.values .box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}
.values .box img {
    padding: 30px 50px;
    transition: 0.5s;
    transform: scale(1.1);
}
.values .box .valuetitle {
    font-size: 22px;
    color: #1a70b6;
    font-weight: 700;
    margin-bottom: 5px;
}
.values .box span {
    font-size: 16px;
    color: #0f804a;
    font-weight: 500;
}
.values .box p {
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: #000;
    margin: 10px 0 0;
}
.values .box:hover {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
.values .box:hover img {
    transform: scale(1);
}
/*------------- Features------------------*/
.featureDiv{
    border: 1px solid #e0f1ff;
    margin: 10px;
    height: 250px;
    box-shadow: 0px 0 10px rgba(1, 41, 112, 0.08);
}
.featureDiv .featurePic{
    height: 250px;
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 1px;
    margin: 0 auto;
}
.featureDiv .featurePic img{
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 0;
    margin:0;
    padding:0;
    -webkit-transition: top 11s;
    -moz-transition: top 11s;
    -ms-transition: top 11s;
    -o-transition: top 11s;
    transition: bottom 11s;
}
.featurePic.f1 img{
    bottom: -665px;
}
.featurePic.f2 img{
    bottom: -751px;
}
.featurePic.f3 img{
    bottom: -1055px;
}
.featurePic.f4 img{
    bottom: -1434px;
}
.featureDiv .featurePic:hover img {
    bottom: 0;
    -webkit-transition: all 11s;
    -moz-transition: all 11s;
    -ms-transition: all 11s;
    -o-transition: all 11s;
    transition: all 11s;
}
.features .featureTxt{
    background: #f3f3f3;
    margin: 10px;
}
.features .featureTxt p{
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 600;
    color: #1a70b6;
    margin-bottom: 0;
    text-align: center;
}
.features .feature-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #1a70b6;
}
.features .feature-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #1a70b6;
}
/*-----------------Services------------------------------*/
.services{
    background: #fafafa;
}
.services .service-box {
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.08);
    /*    border: 1px solid #c4e5fd;*/
    padding:  60px 30px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
    background: #fff;
    border-bottom: 5px solid #1A70B6;
    position: relative;
    margin-bottom: 40px;
}
.services .service-box .servicePic{
    width: 90px;
    height: 90px;
    padding: 15px;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 0;
    background: #fff;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.08);
    /*border: 1px solid #c4e5fd;*/
}
.services .service-box img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 1s ease;
}
.services .service-box .title {
    color: #0f804a;
    font-weight: 700;
    font-size: 20px;
}
.services .service-box p {
    color: #000;
    line-height: 1.8;
    font-size: 14px;
    height: 120px;
    margin-bottom: 0;
}
.services .service-box:hover {
    background: #edfff6;
    box-shadow: none;
}
.services .service-box:hover img{
    transform: scale(1.2);
    transition: 1s ease;
}
.services .service-box:hover h3,
.services .service-box:hover p {
    color: #000;
}
/*--------------- Pricing--------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0 10px rgba(1, 41, 112, 0.08);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}
.pricing .packageHead .packtitle{
    color: #1a70b6;
    font-weight: 600;
    font-size: 27px;
    margin-bottom: 5px;
}
.pricing .box:hover {
    transform: scale(1.05);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}
.pricing .box p{
    font-size: 14px;
    color: #a8a8a8;
    margin-bottom: 18px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.pricing .box .pricepack {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0px;
}
.box .pricepack.c1{
    color: #07d5c0;
}
.box .pricepack.c2{
    color: #65c600;
}
.box .pricepack.c3{
    color: #ff901c;
}
.box .pricepack.c4{
    color: #ff0071;
}
.pricing .price {
    font-size: 32px;
    color: #444444;
    font-weight: 600;
}
.pricing .price sup {
    font-size: 30px;
    top: 0px;
    left: -7px;
}
.pricing .price span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}
.pricing img {
    padding: 20px 40px;
}
.pricing ul {
    padding: 0;
    list-style: none;
    color: #000;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 25px;
}
.pricing ul li {
    line-height: 2;
}
.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}
.pricing .btn-buy {
    display: inline-block;
    padding: 8px 40px 8px 40px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    transition: 0.3s;
    border: 1px solid #0f804a;
    background: #0f804a;
}
.pricing .btn-buy:hover {
    background: transparent;
    color: #0f804a;
    border: 1px solid #0f804a;
}
.pricing .btn-getquote {
    display: inline-block;
    padding: 8px 40px 8px 40px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    transition: 0.3s;
    border: 1px solid #1A70B6;
    background: #1A70B6;
}
.pricing .btn-getquote:hover {
    background: transparent;
    color: #1A70B6;
    border: 1px solid #1A70B6;
}
.pricing .featured {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #0f804a;
    color: #fff;
}
.fs14{
    font-size: 14px;
}
/*----------------- F.A.Q----------------------------------*/
.faq .accordion-collapse {
    border: 0;
}
.faq .accordion-button {
    padding: 15px ;
    font-weight: 600;
    border: 0;
    font-size: 16px;
    color: #444444;
    text-align: left;
    background: #f6f8f7;
    margin-bottom: 10px;
    border-radius: 10px!important;
}
.faq .accordion-button:focus {
    box-shadow: none;
}
.faq .accordion-button:not(.collapsed) {
    background: #f6f8f7;
    color: #1a70b6;
    border-bottom: 0;
}
.faq .accordion-body {
    padding:  0 0 15px 15px;
    border: 0;
    font-size: 14px;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 30px;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
    background: #fff;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}
.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}
.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}
.testimonials .testimonial-item .usernem {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    color: #0e814b;
}
.testimonials .testimonial-item span {
    font-size: 14px;
    color: #1a70b6;
    margin: 0;
    line-height: 1.8;
}
.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
}
.testimonials .swiper-slide-next .testimonial-item{
    background: #fafafa;
    transition: 1s ease;
}
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #1a70b6;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #1a70b6;
}
.testimonials .swiper-slide {
    opacity: 1;
}
/*--------------------Clients-----------------------*/
.clients{
    background: #fafafa;
}
.clients .swiper-slide img {
    opacity: 1;
    transition: 0.3s;
    background: #fff;
    border-radius: 40px;
    padding: 10px
}
.clients .swiper-slide img:hover {
    opacity: 1;
}
/*---------------------# Recent Blog Posts-------------*/
.recent-blog-posts .post-box {
    box-shadow: 0px 0 10px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e4f3ff;
    margin: 10px;
    background: #fafafa;
}
.recent-blog-posts .post-box .post-img {
    overflow: hidden;
    position: relative;
    height: 250px;
    background: #fff;
}
.recent-blog-posts .post-box .post-img img {
    transition: 0.5s;
    object-fit: cover;
}
.recent-blog-posts .post-box .post-date {
    font-size: 13px;
    color: #1a70b6;
    display: block;
    margin-bottom: 10px;
    color: #000;
}
.recent-blog-posts .post-box .post-title {
    font-size: 18px;
    color: #1a70b6;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
    margin-bottom: 5px;
}
.recent-blog-posts .post-box p {
    font-size: 13px;
    line-height: 1.8;
    color: #000;
}
.recent-blog-posts .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    font-size: 13px;
    text-transform: uppercase;
    color: #1a70b6;
}
.recent-blog-posts .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
    color: #1a70b6;
}
.recent-blog-posts .post-box:hover .post-title {
    color: #0f804a;
}
.recent-blog-posts .post-box:hover .post-img img {
    transform:  scale(1.1);
}
/*------------# Contact----------------*/
.contact .info-box {
    color: #444444;
    background: #fafbff;
    padding: 30px;
}
.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: #0f804a;
}
.contact .info-box h3 {
    font-size: 20px;
    color: #1A70B6;
    font-weight: 700;
    margin: 20px 0 10px 0;
}
.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
.contact .php-email-form {
    background: #fafbff;
    padding: 30px;
    height: 100%;
    border: 10px solid #1a70b6;
}
.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}
.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #0f804a;
}
.contact .php-email-form input {
    padding: 10px 15px;
}
.contact .php-email-form textarea {
    padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
    background: #1a70b6;
    border: 1px solid #1a70b6;
    padding: 8px 20px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}
.contact .php-email-form button[type=submit]:hover {
    background: #fff;
    color: #1A70B7;
    border: 1px solid #1A70B7;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

#captchaValidIcon{
    color: #049904;
    font-size: 28px;
    line-height: normal;
    margin-left: 10px;
}
.captchapic {
    display: flex;
    align-items: center;
    position: relative;
}
.captchapic  .captchaCanvas{
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: 5px 0 0 5px;
}
.captchaCanvas{
    background-color: #ffdfb5;
    background-image: radial-gradient(lightgrey 1px, transparent 0);
    background-size: 8px 8px;
}
.captchapic input{
    padding-left: 125px;
    height:40px;
}
.error{
    color: #f20c0c;
    text-transform: lowercase;
    font-size: 14px;
}
.valid{
    color: #028702;
    font-size: 14px;
}
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------Footer----------------------------------*/
.footer {
    background: #a9a9a9;
    padding: 0 0 30px 0;
    font-size: 14px;
}
.footer .footer-top {
    background: #E4F3FF  url(../img/home/footer-bg.png) no-repeat right top;
    background-size: contain;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 60px 0 30px 0;
}
.footer .footer-top .footer-info {
    margin-bottom: 30px;
}
.footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
}
.footer .footer-top .footer-info .logo img {
    max-height: 60px;
}
.footer .footer-top .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1A70B6;
    font-family: "Raleway", sans-serif;
    margin-top: 3px;
}
.footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #000;
}
.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color:  rgba(0,0,0,0.6);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}
.footer .footer-top .social-links a:hover {
    color: #1a70b7;
}
.footer .footer-top .foothead{
    font-size: 17px;
    font-weight: bold;
    color: #1A70B6!important;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}
.footer .footer-top .footer-links {
    margin-bottom: 30px;
}
.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #5b6166;
    font-size: 12px;
    line-height: 0;
}
.footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #a7a6a6;
    color: #000;
    font-weight: 500;
}
.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-top .footer-links ul a {
    color: #000;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    transition: all 0.3s;
    font-weight: 500;
}
.footer .footer-top .footer-links ul li:hover a{
    color: #1a70b7;
    padding-left: 5px;
}
.footer .footer-top .footer-contact p {
    line-height: 26px;
    color: #000;
}
.footer .copyright {
    text-align: center;
    color: #fff;
}
.footer .copyright a{
    color: #000;
}
.footer .copyright a:hover{
    color: #034a84;
}
.heroSlider{
    width: 100%;
}
/*************CSS FOR CONTACT SECTION SHARADA@29March2023************/
.form-control::placeholder{
    color: #707070;
    font-size: 13px;
}
.contactDiv{
    box-shadow: 1px 2px 10px rgb(140 140 140 / 20%);
}
.contactDiv label{
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    color: #1A70B6;
    letter-spacing: 1px;
}
.contact .map{
    width: 100%;
    height: 407px;
    border: 1px solid #dfdddd;
}
/*************CSS FOR TERMS & CONDITION SECTION SHARADA@29March2023************/
.innerDiv h2{
    font-size: 28px!important;
}
.privacyTxt p, .privacyTxt ul{
    font-size: 14px;
    text-align: justify;
    line-height: 1.8;
}
/*************CSS FOR FAQ SECTION SHARADA@29March2023************/
.faq ul{
    background: #e4f3ff;
}
.faq .nav-tabs .nav-link.active{
    background-color: #1a70b6;
    color: #fff;
    font-weight: 600;
}
.faq .nav-tabs .nav-link{
    color: #1a70b6;
}
.faq .tab-content{
    background: #fff;
    box-shadow: 1px 2px 10px rgb(140 140 140 / 20%);
    border: 1px solid #f7f7f7;
    padding: 20px;
}
/*************CSS FOR CAREER SECTION SHARADA@29March2023************/
.innerDiv p{
    font-size: 16px;
    color: #000;
    text-align: center;
    font-weight: normal;
}
.jobopening .jobpost{
    border: 1px dashed #0e814b;
    padding: 14px;
    background: #f7fff7;
}
.jobopening .jobpost h5, .jobopening h5{
    font-weight: bold;
    color: #0f804a;
    text-transform: capitalize;
    font-size: 20px;
}
.jobopening h5{
    color: #1a70b6;
}
.jobopening h6{
    color: #1a70b6;
    font-weight: 700;
}
.form-select{
    padding: 11px 15px;
    border-radius: 0;
    color: #707070;
    font-size: 13px;
}
/*************CSS FOR LOGIN SECTION SHARADA@29March2023************/
.form-control::placeholder{
    color: #707070;
    font-size: 13px;
}
.loginDiv{
    box-shadow: 1px 2px 10px rgb(140 140 140 / 20%);
}
.loginDiv h5{
    font-size: 26px;
    font-weight: bold;
    color: #1a70b6;
    text-align: center;
    text-transform: uppercase;
}
.loginDiv label{
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    color: #1A70B6;
    letter-spacing: 1px;
}
.loginPic{
    background: #F4FAFF;
    border-right: 1px solid #c6e2f8;
    padding: 26px 0px;
    border-radius: 10px;
}
.modal-content{
    border: 2px solid #1a70b6;
    border-radius: 10px;
}
.loginDiv  button, .payment button{
    background: #1a70b6;
    border: 1px solid #1a70b6;
    padding: 8px 20px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}
.loginDiv button:hover ,.payment button:hover{
    background: #fff;
    color: #1A70B7;
    border: 1px solid #1A70B7;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
.loginDiv .btn-close{
    color: #1a70b6;
    background: none;
    font-size: 25px;
    padding: 0;
    border: 0;
    position: absolute;
    right: 5px;
    top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loginDiv .btn-close:hover{
    border: 0;
    background: none;
}
.modal.show .modal-dialog{
    transform: translate(0,15%);
}
/*************CSS FOR PAYMENT SECTION SHARADA@29March2023************/
.contactDiv .price-details td{
    font-size: 15px;
    color: #1a70b6;
    font-weight: 600;
}
.contactDiv .total-price-details td{
    font-size: 15px;
    color: #000;
    font-weight: 700;
}
.contactDiv .payHead{
    font-size: 20px;
    font-weight: 600;
    color: #0e814b;
    text-transform: capitalize;
}
.contactDiv .paysubHead{
    font-size: 18px;
    font-weight: 600;
    color: #0e814b;
    text-transform: capitalize;
}
.contactDiv .payCheck .form-check-label{
    font-size: 13px;
    text-transform: capitalize;
    font-weight: normal;
    color: #434343;
}
.contactDiv .payCheck .form-check-input{
    border-radius: 0;
    width: 13px;
    height: 13px;
}
/*************CSS FOR CALL  & WHATS APP BUTTON  SHARADA@29March2023************/
.callDiv{
    position: fixed;
    z-index: 100;
    bottom: 6%;
    right: 17px;
}
.callBtn,.whatsappBtn{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
}
.callBtn i,.whatsappBtn i{
    color: #fff;
}
.callBtn{
    animation: pulse 2s infinite;
    background: #1a70b6;
}
.whatsappBtn{
    animation: pulse1 2s infinite;
    background: #028702;
}
/*************CSS FOR CALL  & WHATS APP BUTTON ANIMATION ************/
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(26, 112, 182, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 14px rgba(26, 112, 182, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(26, 112, 182, 0);
    }
}
@keyframes pulse1 {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(2, 135, 2, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 14px rgba(2, 135, 2, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(2, 135, 2, 0);
    }
}
/*css for blog detail*/
.blog {
    padding: 40px 0 20px 0;
}
.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}
.blog .entry .entry-title {
    font-size: 24px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}
.blog .entry .entry-title a {
    color: #1A70B6;
    transition: 0.3s;
}
.blog .entry .entry-title a:hover {
    color: #0f804a;
}
.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #4084fd;
}
.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.blog .entry .entry-meta ul li+li {
    padding-left: 20px;
}
.blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
}
.blog .entry .entry-meta span{
    color: #777777;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}
.blog .entry .entry-content p {
    line-height: 1.6;
    font-size: 14px;
}
.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}
.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #1A70B6;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}
.blog .entry .entry-content .read-more a:hover {
    background: #0f804a;
}
.blog .entry .entry-content h3 {
    font-size: 17px;
    margin-top: 30px;
    font-weight: bold;
}
.blog .entry-single {
    margin-bottom: 30px;
}
.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #1A70B6;
    position: relative;
}
.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}
.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}
.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
    background: #fafafa;
}
.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}
.blog .sidebar .recent-posts h4 a {
    color: #1A70B6;
    transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
    color: #0f804a;
}
.blog .sidebar .recent-posts span {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
}
/*css for upload resume*/
.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.upload-btn-wrapper .btn {
    border: 1px solid #1A70B6;
    color: #1A70B6;
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}
.upload-btn-wrapper .btn i {
    margin-right: 5px;
    font-size: 14px;
}
.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
/*************RESPONSIVE CSS  SHARADA@29March2023************/
@media (max-width: 480px) {
    .recent-blog-posts .post-box .readmore {
        font-size: 11px;
    }
    .section-header .subtitle, .contactDiv .total-price-details td, .contactDiv .price-details td, .about .content p, .values .box p, .services .service-box p, .pricing .box p, .pricing ul, .testimonials .testimonial-item span, .testimonials .testimonial-item p, .footer .footer-top .footer-info p, .footer .footer-top .footer-links ul a, .footer, .blog .entry .entry-content p{
        font-size: 13px;
    }
    .values .box span, .pricing .packageHead .packtitle, .pricing .price span{
        font-size: 14px;
    }
    .contactDiv .payHead, .footer .footer-top .foothead, .features .featureTxt p{
        font-size: 15px;
    }
    .services .service-box .title, .recent-blog-posts .post-box .post-title, .testimonials .testimonial-item .usernem, .blog .entry .entry-title{
        font-size: 16px;
    }
    .section-header .sectitle, .values .box .valuetitle,  .pricing .box .pricepack{
        font-size: 18px;
    }
    .pricing .price{
        font-size: 24px;
    }
    .header .logo img {
        max-height: 34px;
    }
    .getstarted,  .getstarted:focus{
        margin-left: 0;
    }
    .getstarted,  .getstarted:hover,  .getstarted:focus {
        padding: 3px 3px;
    }
    .pricing .btn-buy, .pricing .btn-getquote{
        font-size: 14px;
        padding: 8px 20px 8px 20px;
    }
}
@media (max-width: 576px){
    .featurePic.f1 img{
        bottom: -581px;
    }
    .featurePic.f2 img{
        bottom: -658px;
    }
    .featurePic.f3 img{
        bottom: -935px;
    }
    .featurePic.f4 img{
        bottom: -1198px;
    }
    .getstarted, .getstarted:hover , .getstarted:focus{
        padding:5px 10px;
    }
    .getstarted i{
        font-size: 18px;
    }
    .shape1{
        right: 58px;
        width: 47px;
    }
    .shape3{
        left: 5px;
        width: 79px;
    }
    .shape4{
        top: 15px;
        height: 30px;
    }
    .shape5{
        height: 150px;
    }
}
@media (min-width: 576px){
    .featurePic.f1 img{
        bottom: -435px;
    }
    .featurePic.f2 img{
        bottom: -500px;
    }
    .featurePic.f3 img{
        bottom: -727px;
    }
    .featurePic.f4 img{
        bottom: -946px;
    }
}
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero h2 {
        font-size: 24px;
    }
    .hero .hero-img img {
        width: 100%;
    }
    .services .service-box p{
        height: auto;
    }
}
@media (min-width: 768px){
    .featurePic.f1 img{
        bottom: -708px;
    }
    .featurePic.f2 img{
        bottom: -797px;
    }
    .featurePic.f3 img{
        bottom: -1115px;
    }
    .featurePic.f4 img{
        bottom: -1420px;
    }
    .services .service-box p{
        height: 150px;
    }
}
@media (max-width: 991px) {
    .hero {
        height: auto;
        padding: 120px 0 60px 0;
    }
    .hero .hero-img {
        text-align: center;
        margin-top: 80px;
    }
    .hero .hero-img img {
        width: 80%;
    }
}
@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
    .navbar-mobile ul {
        display: block;
    }
}
@media (min-width: 992px) {
    .section-header .sectitle{
        font-size: 38px;
    }
}
@media (min-width:992px) and (max-width:1300px){
    .navbar a{
        font-size: 13px;
        padding: 10px 0 10px 10px;
    }
    .getstarted{
        margin-left: 20px;
    }
    .getstarted i{
        display: none;
    }
    .featurePic.f1 img{
        bottom: -589px;
    }
    .featurePic.f2 img{
        bottom: -666px;
    }
    .featurePic.f3 img{
        bottom: -946px;
    }
    .featurePic.f4 img{
        bottom: -1214px;
    }
}
@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}
@media screen and (min-width: 1120px){
    .callDiv {
        bottom: 9%;
    }
    .navbar a{
        padding: 10px 0 10px 20px;
    }
}
@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }
    .testimonials .swiper-pagination {
        margin-top: 0;
    }
}
@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
    .featurePic.f1 img{
        bottom: -533px;
    }
    .featurePic.f2 img{
        bottom: -602px;
    }
    .featurePic.f3 img{
        bottom: -861px;
    }
    .featurePic.f4 img{
        bottom: -1110px;
    }
}
@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}
@media(min-width:1400px){
    .navbar a{
        font-size: 14px;
        padding: 10px 0 10px 30px;
    }
    .getstarted{
        margin-left: 30px;
    }
    .featurePic.f1 img{
        bottom: -665px;
    }
    .featurePic.f2 img{
        bottom: -751px;
    }
    .featurePic.f3 img{
        bottom: -1055px;
    }
    .featurePic.f4 img{
        bottom: -1348px;
    }
    .services .service-box p{
        height: 120px;
    }
}
.is-valid {
    border-color: green;
}

.is-invalid {
    border-color: red;
}
