@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/***** General CSS *****/

html {
    overflow-x: hidden;
}

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

i {
    font-family: FontAwesome !important;
    font-style: normal;
}

i::before {
    font-family: FontAwesome !important;
}

.slicknav_nav a:hover {
    background: #66cc33;
}

.heding {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 50px 0;
}

/* Chrome, Safari, Edge (Chromium) */
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
}

/* Firefox */
input[type="date"] {
    -moz-appearance: textfield;
}

/* Old Edge / IE */
input[type="date"]::-ms-clear,
input[type="date"]::-ms-expand {
    display: none;
}


.theme-color {
    background-image: linear-gradient(to right, #66cc33, #93df6d, rgb(107, 231, 45), #4c9c23);
    background-size: 600%;
    background-position: 0 0;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: gradients;
}

@keyframes gradients {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.sec {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 30px;
    border-radius: 100px;
    overflow: hidden;
    background-color: #66cc33;
    border: none;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    height: 95%;
    width: 98%;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover::before {
    height: 0;
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
    font-size: 15px;
    line-height: 20px;
    font-family: 'Montserrat';
    color: #66cc33;
    z-index: 9;
    font-weight: 500;
    text-transform: capitalize;
    opacity: 1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
    opacity: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
    width: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    background-color: #ffff;
    border-radius: 100px;
    color: #66cc33;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
    height: 35px;
    width: 35px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon i {
    font-size: 15px;
}

/* Buttons Css Ends */

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Oswald", sans-serif;
    font-size: 67px;
    line-height: 70px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

h2 {
    font-family: "Oswald", sans-serif;
    font-size: 70px;
    line-height: 75px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

h3 {
    font-family: "Oswald", sans-serif;
    font-size: 49px;
    line-height: 55px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h4 {
    font-family: "Oswald", sans-serif;
    font-size: 44px;
    line-height: 50px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h5 {
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    line-height: 40px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h6 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    line-height: 25px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

p {
    color: #000;
    font-size: 16px;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
header {
    /* padding: 20px 0; */
}

.menuSec {
    height: 100px;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 50px;
}

.menu-box ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menu-box li ul {
    display: none;
}

.menu-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Montserrat';
    color: #000;
    font-weight: 500;
    /* border-radius: 5px; */
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}


.menu-box ul li a:hover {
    color: #66cc33;
    transition: ease-out;
    transition-duration: 0.5s;
}

/* .menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #ff8040;
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
} */

/* .menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
} */

.menu-box ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: unset;
    margin: 0 auto;
    width: 0;
    height: 1px;
    background-color: #66cc33;
    transition: ease-out;
    transition-duration: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::after {
    width: 100%;
    right: unset;
    left: 0;
    transition: ease-out;
    /* transition-delay: 0.5s; */
    transition-duration: 0.5s;
}

/* .menu-box ul li.active a {
    color: #fff;
} */

.menu-box ul li.active a::after {
    width: 100%;
}

.menu-box ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menu-box li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menu-box ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menu-box li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menu-box li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menu-box li>ul>li,
.menu-box li>ul>li>a {
    display: block;
    margin: 0;
}

.menu-box li>ul>li>a:before,
.menu-box li>ul>li>a:after {
    display: none;
}

.menu-box li:hover li {
    float: none;
}

.menu-box li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menu-box ul ul ul {
    left: 100%;
    top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.topSec {
    height: 60px;
}

.top-bar-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 9;
    padding: 0 30px 0 0;
}

.top-bar-links-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.top-bar-left::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background-color: #66cc33;
    z-index: -1;
}

.top-bar-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    padding: 0 30px;
    height: 100%;
}

.top-bar-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #191919;
    z-index: -1;
}

.socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.socials ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid #0000;
    color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.socials ul li a:hover {
    background-color: #66cc33;
    transition: ease-out;
    transition-duration: 0.5s;
}

.socials ul li a i {
    transition: ease-in;
    transition-duration: 0.5s;
}

.socials ul li a:hover i {
    /* color: #191919; */
    transition: ease-out;
    transition-duration: 0.5s;
}

.socials-txt h6 {
    font-size: 13px;
    line-height: 20px;
    text-transform: capitalize;
    font-family: 'Poppins';
    color: #ffff;
}

/*header css start */

/*banner css start */

section.main_slider {
    position: relative;
}

img.bg1 {
    position: absolute;
    bottom: 35%;
    right: 2%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 200px;
}

img.bg2 {
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 200px;
}

img.ban1 {
    position: absolute;
    bottom: 20%;
    left: 57%;
    z-index: 1;
}

img.ban2 {
    position: absolute;
    top: 30%;
    right: 35%;
    z-index: 1;
}

img.ban3 {
    z-index: 1;
    position: absolute;
    top: 60%;
    right: 27%;
}

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: #f0f0f0;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.topSec .container,
.topSec .row,
.topSec .col-12,
.topSec .top-bar-left,
.menuSec .container,
.menuSec .row,
.menuSec .col-12,
.menuSec .menu-box,
.menuSec .header-btn {
    height: 100%;
}

.top-bar-con a {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
    font-family: 'Montserrat';
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.top-bar-on a {
    position: relative;
    font-size: 20px;
    line-height: 25px;
    font-family: 'Oswald';
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    transition: ease-in;
    transition-duration: 0.5s;
}

.top-bar-on a:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.top-bar-on a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.top-bar-on a:hover::Before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.top-bar-brand h6 {
    font-size: 23px;
    line-height: 30px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}

.carousel-item {
    height: 90vh;
}

.banner_main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.banner_text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
}

.banner_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 300px;
}

.banner_logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: 0 0;
}

.banner_text h1 span {
    display: block;
}

/*banner css end*/

/*banner-bottom css end*/

.banner-bottom {
    /* background-color: #66cc33; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 9;
}

.banner-bottom-txt {
    width: 80%;
    margin: 0 auto;
}

.banner-bottom-txt h4 {
    color: #fff;
    font-style: italic;
}

/*banner-bottom css Ends*/

/*Inner Banner Css Starts*/

section.inner-banner .banner_main {
    align-items: center;
    justify-content: center;
}

section.inner-banner .carousel-item {
    height: 60vh;
}




/*Inner Banner Css Ends*/

/*Steps Sec Css Starts*/

.steps-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 100px 0 0 0;
    position: relative;
}

.steps-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 220px;
    height: 90px;
    background-image: url('../images/stepsba1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.steps-main::after {
    content: '';
    position: absolute;
    top: 0;
    right: 25%;
    width: 220px;
    height: 90px;
    background-image: url('../images/stepsba1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    rotate: 180deg;
    z-index: -1;
}

.steps-card-main {
    width: 33.3333%;
}

.steps-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    height: 300px;
    width: 300px;
    margin: 0 auto;
    border-radius: 300px;
    /* overflow: hidden; */
    background-color: #fff;
    box-shadow: 0 0 7px 0 #00000026;
    transition: ease-in;
    transition-duration: 0.5s;
}

.steps-card:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.steps-card::before {
    content: '';
    position: absolute;
    top: 2%;
    left: 2%;
    background-color: #5c5c5c;
    border-radius: 300px;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.steps-card:hover::before {
    top: 0;
    left: 0;
    height: 105%;
    width: 105%;
    /* top: 5%;
    left: 5%; */
    background-color: #7ff047;
    transition: ease-out;
    transition-duration: 0.5s;
}

.steps-card-num h5 {
    font-size: 75px;
    line-height: 80px;
    font-weight: 600;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #66cc33, #93df6d, rgb(107, 231, 45), #4c9c23);
    background-size: 600%;
    background-position: 0 0;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: gradients;
}

.steps-card-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.steps-card-num h6 {
    font-family: 'Montserrat';
    font-weight: 500;
    text-transform: uppercase;
}

.steps-card-txt {
    width: 70%;
    margin: 0 auto;
}

.steps-card-txt p {
    text-align: center;
}

/*Steps Sec Css Ends*/

/*Help Sec Css Starts*/

section.help-sec {
    position: relative;
}

section.help-sec::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 45vw;
    border-radius: 20px 0 0 20px;
    z-index: 0;
    border: 8px solid #66cc33;
    border-right: none;
}

.help-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.help-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.help-txt-main {
    position: relative;
    padding: 50px 0;
    background-color: #fff;
}

.help-txt h5 {
    font-size: 50px;
    line-height: 55px;
}

.help-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
    background-color: #fff;
}

.help-txt ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.help-txt ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

/*Help Sec Css Ends*/

/*Footer Css Starts*/

footer {
    background-color: #121212;
    padding: 80px 0 0 0;
}

.footer-logo-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.footer-socials ul li a {
    border: 1px solid #fff;
}

.footer-socials ul li a:hover {
    border: 1px solid #0000;
}

.footer-con {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
}

.footer-head h5 {
    font-size: 35px;
    line-height: 49px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
}

.footer-testi-card-main p {
    color: #66cc33;
    font-weight: 300;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.footer-links ul li {
    width: 100%;
}

.footer-links ul li a {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    opacity: 0.7;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    height: 40px;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.5s;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding: 0 20px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #66cc33;
    z-index: -1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.footer-links ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-contact ul li a i {
    color: #66cc33;
    font-size: 20px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.footer-contact ul li a:hover i {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-contact ul li:nth-child(2) {
    padding: 20px 0;
    border: 1px solid #fff;
    border-right: none;
    border-left: none;
}

.footer-contact ul li a:hover {
    /* padding: 0; */
}


.footer-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    margin: 50px 0 0 0;
    border-top: 1px solid #ffffff61;
}

.footer-copy p,
.footer-copy p a {
    position: relative;
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
    transition: ease-in;
    transition-duration: 0.5s;
}

.footer-copy p a:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-copy p a::before {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.footer-copy p a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-links {
    width: 100%;
}

.footer-contact-main {
    margin: 0 0 0 40px;
}

/*Footer Css Ends*/

/*loan Application Css Starts*/

.loan-form-heading h2 {
    font-size: 50px;
    line-height: 55px;
}

.loan-form-input label {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 5px;
    margin: 20px 0;
    width: 100%;
}

.loan-form-input label {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 5px;
    margin: 10px 0;
    width: 100%;
}

.loan-form-input label input,
.loan-form-input label textarea,
.loan-form-input label select {
    width: 100%;
    height: 50px;
    border: 1px solid #00000091;
    padding: 0 20px;
    outline: none;
}

.loan-form-input label select {
    cursor: pointer;
}

.loan-form-input label textarea {
    height: 250px;
    padding: 20px;
    resize: none;
}

.loan-form-input label img {
    position: absolute;
    top: 50%;
    right: 3%;
}

.loan-form-input label span {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat';
    color: #5d5d5d;
    text-transform: capitalize;
    font-weight: 600;
    cursor: pointer;
}

.loan-form-heading {
    margin: 20px 0;
}

.loan-form-check label {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 20px 0;
}

.loan-form-check label span {
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    color: #7e7e7e;
    font-weight: 500;
    transition: ease-in;
    transition-duration: 0.5s;
}

.loan-form-check label span:hover {
    color: #66cc33;
    transition: ease-out;
    transition-duration: 0.5s;
}

/*loan Application Css Ends*/

/*Location Css Starts*/

.location-map {
    width: 100%;
}

.location-map iframe {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    width: 100%;
    border: 20px solid #fff !important;
    box-shadow: 0 0 20px 0 #00000026 !important;
    border-radius: 20px !important;
}

.location-map-contact {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 40px;
}

.location-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.location-contact-heading h5 {
    font-size: 55px;
    line-height: 60px;
    font-weight: 600;
}

.location-contact-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.location-contact-txt h5 {
    font-size: 34px;
    line-height: 40px;
    color: #66cc33;
    text-transform: capitalize;
    font-weight: 700;
    font-family: 'Montserrat';
}

.location-contact-txt h6 {
    font-size: 18px;
    line-height: 25px;
    text-transform: capitalize;
}

.location-contact-txt p {
    font-size: 15px;
    line-height: 25px;
}

/*Location Css Ends*/

/*contact */

.contact-pag-form form {
    position: relative;
}

.contact-pag-form .form-group {
    position: relative;
}

.contact-pag-form .form-group::after {
    content: "";
    height: 53px;
    width: 10px;
    position: absolute;
    left: 45px;
    top: 5px;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form form input.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 65px;
    border: 1px solid #d2d0cc;
    line-height: 0;
    box-shadow: none;
    color: black;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    font-family: "Montserrat";
    display: flex;
    border-radius: 0;
    text-transform: capitalize;
    /* background: #f8f6f3; */
    border-radius: 5px;
}

/* .contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 8px;
    height: 47px;
    background-repeat: no-repeat;
    left: 40px;
    top: 5px;
} */

/* .contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 50px;
    height: 50px;
} */

.contact-pag-form form input.form-control::placeholder {
    color: #909091;
    text-transform: capitalize;
}

.contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;
}

.contact-pag-form form textarea.form-control {
    font-size: 15px;
    padding-left: 65px;
    padding-top: 13px;
    border: 1px solid #c6c6c6;
    letter-spacing: 0;
    box-shadow: none;
    resize: none;
    background-color: transparent;
    margin-top: 20px;
    color: #000000;
    border-radius: inherit;
    border-radius: 0;
    /* background: #f8f6f3; */
    border-radius: 5px;
}

.contact-pag-form .email {
    padding: 0;
}

.contact-pag-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.contact-pag-form form textarea.form-control::placeholder {
    color: #909091;
    text-transform: capitalize;
}

.contact-pag-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909091;
}

.contact-pag-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-moz-placeholder {
    /* Firefox 18- */
    color: rgba(18, 28, 42, 0.55);
}

.cicle-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 1px solid #5ab32d;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    background-color: #5ab32d;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cicle-icon img {
    margin: 0 auto;
}

.contact-main-sec .contact-info {
    background: transparent;
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 10px;
    border: 1px solid #c6c6c6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* background: #f8f6f3; */
    border-radius: 30px;
}

.contact-main-sec h4 {
    font-size: 50px;
    color: #000000;
    font-weight: 600;
    line-height: 55px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.contact-main-sec h2 {
    margin: 0;
    font-size: 17px;
    color: #000000;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    font-family: 'Montserrat';
}

.contact_text p {
    font-size: 16px;
    line-height: 25px;
    color: #8b8b8b;
    padding-top: 0px;
    font-weight: 500;
    font-family: "Montserrat";
    letter-spacing: 1px;
}

.contact_text p a {
    font-size: 22px;
    color: #8b8b8b;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    margin-top: 3px;
    display: block;
}

.mailt {
    padding-left: 30px;
}

.contact_text a:hover {
    color: #8b8b8b;
}

.contact_text p a.email-text {
    font-size: 15px;
    color: #8b8b8b;
}

.contact_text p a.email-text:hover {
    color: #8b8b8b;
}

.contact-us {
    padding: 6% 0;
}

.contact-head {
    text-align: center;
}

.contact-head h2 {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}

.lg-btn {
    width: 100%;
}

.cp {
    font-size: 17px;
    line-height: 27px;
}

.contact_heading {
    margin-bottom: 30px;
}

.contact_heading h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bolder;
}

.contact-side-bar {
    padding-top: 18px;
}

.contact-main-sec {
    padding: 100px 0;
}

.contact-main-sec .them-btn-1 {
    margin-top: 20px;
    border: none;
    padding: 12px 20px;
    background-color: #ff0000;
    color: white;
    border-radius: 25px;
}

.b-img img {
    border-radius: 20px;
}

.contact-pag-form .form-group i {
    position: absolute;
    top: 20px;
    left: 13px;
    font-size: 20px;
    background: #66cc33;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-pag-form {
    margin-top: 0;
}

.contact-pag-form button {
    margin-top: 5%;
    width: fit-content;
    border: none;
}

button.theme_btn img {
    width: 30%;
}

.paint-card {
    margin: 20px 0;
}

.contact-pag-form .web-btn {
    border: 2px solid #e1e1e1;
}

.contact-bottom {
    margin: 50px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.contact-bottom h5 {
    font-weight: 600;
}

.contact-bottom ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.contact-bottom ul li {
    width: 100%;
}

.contact-bottom ul li p {
    font-size: 19px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.contact-bottom ul li p span {
    color: #66cc33;
}

/*contact end*/

/*Media Query Starts*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {

    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    img.ban1 {
        bottom: 19%;
        left: 59%;
    }

    img.ban2 {
        top: 35%;
        right: 30%;
    }

    img.ban3 {
        top: 61%;
        right: 22%;
    }

    /* Home css Ends */


}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {

    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    img.ban1 {
        bottom: 30%;
        /* left: 53%; */
    }

    img.ban2 {
        top: 45%;
        right: 27%;
    }

    img.ban3 {
        top: 68%;
        right: 17%;
    }

    /* Home css Ends */


}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {

    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    img.ban1 {
        bottom: 30%;
        left: 53%;
    }

    img.ban2 {
        top: 45%;
        right: 27%;
    }

    img.ban3 {
        top: 68%;
        right: 17%;
    }

    .footer-contact-main {
        margin: 0;
    }

    /* Home css Ends */


}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {


    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    img.ban1 {
        bottom: 30%;
        left: 51%;
    }

    img.ban2 {
        top: 45%;
        right: 27%;
    }

    img.ban3 {
        top: 68%;
        right: 17%;
    }

    .footer-contact-main {
        margin: 0;
    }

    /* Home css Ends */


}

@media only screen and (min-width: 992px) and (max-width: 1199px) {


    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    .footer-contact-main {
        margin: 0;
    }

    /* Home css Ends */






}

@media only screen and (min-width: 768px) and (max-width: 991px) {


    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    .footer-contact-main {
        margin: 0;
    }


    /* Home css Ends */




}

@media only screen and (min-width: 520px) and (max-width: 767px) {

    /* Fonts css Starts */

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    .footer-contact-main {
        margin: 0;
    }

    /* Home css Ends */


}

@media only screen and (min-width: 300px) and (max-width: 519px) {

    .sec {
        padding: 20px 0;
    }

    .heding {
        margin: 0 0 20px 0;
    }

    /* Fonts css Starts */

    h1 {
        font-size: 35px;
        line-height: 40px;
    }

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

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

    p {
        font-size: 12px;
        line-height: 25px;
    }

    /* Fonts css Ends */



    /* Buttons css Starts */

    /* Buttons css Ends */




    /* Home css Starts */

    .topSec {
        height: 100px;
        margin: 0 0 110px 0;
    }

    .top-bar-left {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0;
    }

    .top-bar-links-main {
        gap: 10px;
    }

    .top-bar-right {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .header-btn {
        justify-content: center;
    }

    .carousel-item {
        height: 1050px;
    }

    .banner_logo {
        height: 150px;
        width: 200px;
    }

    .banner_text {
        gap: 10px;
    }

    img.ban1 {
        display: none;
    }

    img.ban2 {
        position: relative;
        top: unset;
        right: unset;
        z-index: 1;
    }

    img.ban3 {
        position: relative;
        top: unset;
        right: unset;
    }

    .steps-main {
        margin: 40px 0 0 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .steps-card-main {
        width: 100%;
    }

    .steps-card {
        gap: 10px;
        height: 250px;
        width: 250px;
        border-radius: 200px;
    }

    .steps-card-num h5 {
        font-size: 40px;
        line-height: 45px;
    }

    .steps-main::before,
    .steps-main::after {
        display: none;
    }

    .help-img {
        height: 300px;
    }

    .help-txt-main {
        padding: 20px 0;
    }

    .help-txt {
        gap: 20px;
    }

    .help-txt h5 {
        font-size: 30px;
        line-height: 35px;
    }

    .footer-contact-main {
        margin: 0;
    }


    /* Home css Ends */


}


/*Media Query End*/