@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --color-main: #00ca00;
    --color-ylw: #ff9933;
    --color-green: #138808;
    --color-white: #fff;
    --color-black: #000;
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    /* --heading-font: 'Jost', sans-serif; */
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    padding: 0;
    margin: 0;
    color: #000000;
}

body,
html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

body,
html {
    overflow-x: hidden;
}
p{
    margin-bottom: 15px;
}

.btn {
    font-size: 15px;
    outline: none !important;
    box-shadow: none !important;
    height: 44px;
    line-height: 42px;
    border: 1px solid transparent;
    display: inline-block;
    vertical-align: top;
    padding: 0 25px;
    border-radius: 0;
}

.btn-primary.btn {
    background-color: var(--color-main);
    border-color: var(--color-main);
}

.btn-primary.btn:where(:hover, :focus) {
    background-color: var(--color-white) !important;
    border-color: var(--color-main) !important;
    color: var(--color-main) !important;
    outline: none !important;
}

.next-btn {
    font-size: 18px;
}

.headerMain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 0;
    z-index: 99;
}

.headerMain .logo {
       max-width: 160px;
    background-color: #fff;
    padding: 20px;
    border-radius: 100px;
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-banner img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.contact-btn {
    margin: 0 0 0 auto;
    padding: 0 25px;
    height: 44px;
    line-height: 46px;
    background-color: var(--color-main);
    color: var(--color-white);
    border-radius: 0;
}

.contact-btn:where(:hover, :focus) {
    text-decoration: none !important;
    background-color: var(--color-white) !important;
    color: var(--color-main) !important;
}

.bannerimg {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 20%;
}

.bannerimg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannerimg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #2D2D2D;
    opacity: 0.6;
}

.form-section {
    padding: 50px 0;
    color: #000000;
}

.form-section h2 {
    color: #434343;
    font-family: "Poppins", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.form-section ul li {
    font-size: 18px;
    line-height: 24px;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    padding-left: 30px;
    list-style: none;
    position: relative;
    margin-bottom: 15px;
}

ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background: url(../images/check-mark.png) no-repeat center;
    background-size: contain;
    width: 16px;
    height: 16px;
}

.check-row {
    grid-row-gap: 10px;
    justify-content: center;
}

.check-row .check-icon {
    width: 25%;
}

.wicon img {
    height: 48px;
    width: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(57%) sepia(2%) saturate(9%) hue-rotate(333deg) brightness(85%) contrast(91%);
}

.icon-check {
    text-align: center;
    border: 1px solid #6c757d;
    padding: 6px;
    cursor: pointer;
    height: 105px;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.icon-check h5 {
    line-height: normal;
    font-size: 11px;
    font-weight: 500;
    margin: 8px 0 0;
    font-family: var(--body-font);
    color: #7d7d7d;
}

.check-icon input {
    position: absolute;
    opacity: 0;
}

.check-icon {
    padding: 0 5px;
    margin: 0;
}

.check-icon .icon-check:hover .wicon img,
.check-icon input:checked~.icon-check .wicon img {
    filter: brightness(0) invert(1);
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.check-icon input:checked~.icon-check h5 {
    color: #fff;
}

.check-icon input:checked~.icon-check,
.check-icon .icon-check:hover {
    background-color: var(--color-main);
}

.check-icon .icon-check:hover .wicon {
    display: none;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.check-icon .icon-check:hover h5 {
    padding-top: 26px;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.check-icon .icon-check:hover .check-icon input:checked~.icon-check h5,
.check-icon .icon-check:hover h5 {
    color: var(--color-white);
}

.form-wrap h3 {
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
    margin-top: 0px;
}

.form-wrap form {
    height: 100%;
}

.radio-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.radiobox {
    border: 1px solid #6c757d;
    text-align: center;
    padding: 13px 5px;
    cursor: pointer;
}

.radiobox h5 {
    color: #7d7d7d;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--body-font);
    margin: 0;
}

.radio-icon {
    margin-bottom: 0;
}

.radio-icon input {
    position: absolute;
    opacity: 0;
}

.form-wrap select{
    border-radius: 0;
    font-size: 15px;
    outline: 0;
    box-shadow: none;
    height: 44px;
}
.radio-icon:nth-child(2) .radiobox {
    border-left: 0;
    border-right: 0;
}

.radio-icon input:checked~.radiobox,
.radio-icon .radiobox:hover {
    background: var(--color-main);
}

.radio-icon input:checked~.radiobox h5,
.radio-icon .radiobox:hover h5 {
    color: var(--color-white);
}

.radiobox-round {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: #fff;
    border: 1px solid #7d7d7d;
    margin: 0;
    margin-right: 8px;
    cursor: pointer;
}

.radio-round input {
    position: absolute;
    opacity: 0;
}

.radio-round input:checked~.radiobox-round {
    border: 4px solid var(--color-main);
}

.radio-round h5 {
    margin: 0;
    font-size: 15px;
    line-height: normal;
    color: #000;
    font-weight: 400;
}

.radio-round-row {
    grid-column-gap: 18px;
}

.form-wrap {
    padding: 20px 15px 22px 15px;
    background: #ffffff;
    height: 90%;
    border-radius: 0;
}

.form-section {
    background-color: #f6f6f6;
}

.smallpara {
    font-size: 9px;
    line-height: normal;
    color: #7d7d7d;
    margin-top: 30px;
}

.smallpara p {
    margin-bottom: 0;
}

.inputwrap .form-control {
    height: 45px;
    padding: 0 20px;
}

.inputwrap h3 {
    margin-bottom: 5px;
}

.checkbox-simple span {
    font-size: 16px;
    margin-left: 10px;
}

#form1,
#form2,
#form3 {
    height: 100%;
}

#form3 h2 {
    color: var(--color-green);
}

.radio-round {
    cursor: pointer;
    margin: 0;
}

.mainFooter {
    padding: 20px 0;
    font-size: 15px;
    line-height: normal;
    color: #fff;
    background-color: #000;
}

.mainFooter a {
    color: inherit;
}

.mainFooter ul {
    grid-gap: 10px;
    margin-top: 15px;
}

.mainFooter ul li {
    padding-left: 25px;
    margin-bottom: 0;
}

.mainFooter ul li::before {
    top: 3px;
    width: 22px;
    height: 16px;
}

.mainFooter ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.mainFooter ul li a:hover {
    color: var(--color-main);
}

/* HEADER
---------------------------------*/


.sticky .headerMain {
    position: fixed;
    padding: 5px 0;
    background: #001e11;
    border-width: 0;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.sticky.fixed .headerMain {
    top: 0;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.progresstop {
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    line-height: normal;
    margin-bottom: 30px;
}

.progresstop .bar {
    height: 9px;
    background-color: #e3e3e3;
}

.progresstop .bar .progress {
    height: 100%;
}

.progresstop .bar span {
    display: block;
    height: 100%;
}

.bar0 {
    width: 0;
    background-color: var(--color-main);
}

.bar66 {
    width: 66%;
    background-color: var(--color-main);
}

.bar100 {
    width: 100%;
    background-color: var(--color-main);
}

.sec-space {
    padding: 30px 0;
}

.cms-page h3 {
    font-size: 24px;
    line-height: normal;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    margin-top: 30px;
}

.cms-page p,
.cms-page ul li,
.cms-page a,
.cms-page {
    font-size: 16px;
    font-weight: 300;
}

.cms-page h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: normal;
    color: #1e293b;
    padding-bottom: 30px;
}

.cms-page h4 {
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
    color: #1e293b;
    margin-top: 0;
}

.cms-page ul li strong {
    font-weight: 600;
}

.error-block {
    color: #e60303;
    display: none;
    font-size: 14px;
}

.dot-pulse {
    position: relative;
    left: -9999px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    box-shadow: 9999px 0 0 -5px;
    animation: dot-pulse 1.5s infinite linear;
    animation-delay: 0.25s;
    margin: 0 auto;
}

.dot-pulse::before,
.dot-pulse::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
}

.dot-pulse::before {
    box-shadow: 9984px 0 0 -5px;
    animation: dot-pulse-before 1.5s infinite linear;
    animation-delay: 0s;
}

.dot-pulse::after {
    box-shadow: 10014px 0 0 -5px;
    animation: dot-pulse-after 1.5s infinite linear;
    animation-delay: 0.5s;
}

.f-heading {
    background-color: #00ca00;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 24px;
    line-height: 40px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)), url(../images/banner.jpg) fixed center center;
    background-size: cover;
    padding: 18% 0 8%;
    background-position: bottom;
    background-attachment: inherit;
}

.cta h3 {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #00ca00;
    background-color: #00ca00;
    color: #fff;
    text-decoration: none;
}

.cta .cta-btn:hover {
    background: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    color: #00ca00;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    overflow: hidden;
}

.about {
    padding: 70px 0;
    background: #f0f8ff url(../images/about-bg.jpg) repeat center top;
}

.section-bg {
    background-color: #f6f9fe;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: #e7f1fd;
    color: #00ca00;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title h3 {
    margin: 0 0 30px 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
}

.section-title h3 span {
    color: #00ca00;
}



@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
    columns: 2;
}

.about .content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

.about .content ul i {
    background: #fff;
    box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
    font-size: 24px;
    padding: 20px;
    margin-right: 15px;
    color: #00ca00;
    border-radius: 50px;
}

.about .content ul h5 {
    font-size: 18px;
    color: #555555;
    line-height: 28px;
}

.about .content ul p {
 font-size: 18px;
    font-weight: 500;
    color: #000;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.error-block {
    color: #e60303;
    display: none;
    font-size: 14px;
}

/* Color of invalid field */
.has-error .control-label,
.has-error .help-block,
.has-error .form-control-feedback,
.error-message {
    color: #a94442;
    font-size: 0.8rem;
}

/* Color of valid field */
.has-success .control-label,
.has-success .help-block,
.has-success .form-control-feedback {
    color: #3c763d;
    font-size: 0.8rem;
}

small.help-block {
    display: none !important;
}

@media screen and (max-width:1169px) {
    .form-section h2 {
        font-size: 22px;
        line-height: normal;
        margin-bottom: 15px;
    }

    .form-section ul li {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 7px;
    }
}

@media screen and (max-width:991px) {
    .form-section ul {
        margin-bottom: 20px;
    }

    .form-section {
        padding: 25px 0;
    }
}

@media screen and (max-width:767px) {
    .headerMain {
        padding: 10px 0;
        position: static;
    }

    .contact-btn {
        padding: 0 15px;
        height: 35px;
        font-size: 14px;
        line-height: 35px;
    }

    .form-section h2 {
        font-size: 20px;
        line-height: normal;
    }

    .img-banner img {
        height: auto;
    }

    .f-heading {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
        padding: 6px;
    }

    .stats {
        padding: 30px 0px;
    }

    .section-title h3 {
        font-size: 24px;
        line-height: 38px;
        margin: 0 !important;
        margin-bottom: 15px !important
    }

    .about .content ul li:last-child {
        margin-bottom: 0px;
    }

    .cta h3 {
        color: #fff;
        font-size: 22px;
        font-weight: 600;
    }

    .cta {
        padding: 30px 0px;
    }
    .about .content ul{
        columns: 1;
        margin-bottom: 20px;
    }
    .about{padding: 30px 0px;}
    .section-title {
    text-align: center;
    padding-bottom: 0;
}
p.w-75{width: 100% !important;}
}

@media screen and (max-width:479px) {
    .check-row .check-icon {
        width: 33%;
    }

    .form-wrap h3 {
        font-size: 12px;
    }

    .radio-round h5 {
        font-size: 12px;
    }

    .radio-round-row {
        flex-wrap: wrap;
    }

    .radiobox h5 {
        font-size: 15px;
    }

    .radiobox {
        padding: 6px 5px;
    }

    .bannerimg {
        padding-top: 36%;
    }

    body {
        font-size: 15px;
        line-height: 22px;
    }

    .cms-page h2 {
        font-weight: 600;
        font-size: 22px;
        line-height: normal;
    }

    .cms-page h3 {
        font-size: 17px;
        line-height: normal;
    }
}

@media screen and (max-width:359px) {
    .form-section h2 {
        font-size: 18px;
        line-height: 24px;
        margin-top: 15px;
    }

    .check-row .check-icon {
        width: 50%;
    }
}
.bannercall {
    background-color: #00ca00;
    z-index: 5;
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    display: flex;
    margin: 0 0 0 auto;
}
.bannercall a, .callsty a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    padding-left: 0;
    text-decoration: none;
}
.bannercall a img, .callsty a img {
    background-color: #fff;
    padding: 5px;
    border-radius: 50px;
    margin-right: 10px;
}


@media screen and (max-width:479px) {
   .bannercall a, .callsty a{font-size: 20px ; margin: 0 auto;}
   .bannercall{margin: 0 auto;}
   .headerMain .logo{
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
    height: auto;
    width: auto;
    padding: 0;
   }
}