@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Rubik', 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 20px;
    padding: 0;
    list-style-type: none;
}


/***** 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;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000!important;
    text-align: center;
    position: relative;
    overflow: hidden!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000!important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000!important;
    color: #fff!important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.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: "Rubik", sans-serif;
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: "Rubik", sans-serif;
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: "Rubik", sans-serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0px 0;
}

h4 {
   font-family: "Rubik", sans-serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Rubik", sans-serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #212529;
    font-size: 16px;
    line-height: 28px;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0px;
}

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 {
    position: relative;
    padding-top: 20px;
    padding-bottom: 15px;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
    padding-top: 0px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 10px 23px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}



.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec 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;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */

.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: rgba(0, 0, 0, 0.1);
}

.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;
}

section.main_slider {
    position: relative;
}

section.main_slider:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 28%);
    z-index: 1;
}

section.main_slider .banner_text h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 400;
}

section.main_slider .banner_text h1 {}

section.main_slider .banner_text {
    position: relative;
    z-index: 888;
}

section.main_slider .banner_text p {
    font-size: 16px;
    line-height: 27px;
    color: #fff;
    font-weight: 400;
}

h3 {}

section.main_slider .banner_text .btn_badam {
    background: #5e9d34;
    color: #fff;
    padding: 10px 30px;
    border: 2px solid #5e9d34;
    margin-top: 30px;
}

.main_slider img {
    height: 650px;
    width: 100%;
    object-fit: cover;
}

section.main_slider .banner_text .btn_badam:hover {
    background: #0665ac;
    color: #fff;
    padding: 10px 30px;
    border: 2px solid #0665ac;
    margin-top: 30px;
}

.carousel-control-prev, .carousel-control-next {
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #5e9d34;
    color: #fff;
    padding: 20px 20px;
    border-radius: 60px;
    width: 40px;
    height: 40px;
    line-height: 21px;
    background-image: none;
    position: relative;
}

.carousel-control-prev-icon:before{
 content: '\f060';
 font-family: "Font Awesome 5 Pro";
 font-weight: 900;
 font-size: 18px;
 padding: 0;
 position: absolute;
 left: 13px;
 top: 12px;
}

 .carousel-control-next-icon:before {
    content: '\f061';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    right: 11px;
    top: 10px;
}

button.carousel-control-next {
    right: -30px;
    opacity: 1;
}

button.carousel-control-prev {
    opacity: 1;
    left: -40px;
}

/*banner css end*/

/*About Us*/

.aboutus {}

.aboutus {}

.aboutus {
    padding-top: 100px;
    padding-bottom: 100px;
}

.aboutus p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 28px;
}

.aboutus h2 {
    font-size: 35px;
    font-weight: 600;
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
}

.btn-theme {}

.btn-theme {
    background: #5e9d34;
    color: #fff;
    padding: 10px 30px;
    border: 2px solid #5e9d34;
    margin-top: 30px;
    border-radius: 4px;
    margin-top: 10px;
    display: inline-block;
    font-size: 15px;
    text-transform: capitalize;
}

.btn-theme:hover {
    background: #0665ac;
    color: #fff;
    padding: 10px 30px;
    border: 2px solid #0665ac;
}

.aboutus img {
    height: 500px;
    width: 96%;
    object-fit: cover;
    border-radius: 5px;
}

/*About Us End*/




/* UNPARALLELED Start */

.unparalleled-sec {
    position: relative;
    background-image: url(../images/unparalleled-sec-bg-img.jpg);
    padding: 70px 0px;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 100px;
    /* background: fixed; */
    background-attachment: fixed;
    z-index: 1;
}
.unparalleled-sec-text {
    width: 69%;
    text-align: center;
    margin: 0 auto;
}
section.unparalleled-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #0000008c;
    z-index: -1;
}
.unparalleled-sec-text h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 38px;
}
.unparalleled-sec-text p {
    margin-bottom: 20px;
    line-height: 30px;
    font-size: 19px;
    color: #fff;
}

/* UNPARALLELED End */



/* Exclusive Services Start */
section.services-sec {
    margin-bottom: 100px;
}
.services-heading {
    text-align: center;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.services-heading h2{
    color: #000;
    margin-top: 20px;
    
}
.services-heading h2 {
    color: #000;
    margin-bottom: 20px;
}

.services-icon img {
    height: 50px;
    width: 50px;
    object-fit: cover;
}
.services-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-box {
    text-align: center;
    /* margin: 0 auto; */
    padding: 20px 20px;
    box-shadow: 0px 0px 20px 0px #0006;
}
.services-box:hover {
    box-shadow: 0px 0px 23px 0px #5e9d34ad;
    transition: 1s;
}

.services-box h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.services-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #5e9d34;
    height: 76px;
    width: 76px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
}
.services-slider .slick-active {
    opacity: 1;
}
.services-slider .slick-slide {
    margin: 20px 20px;
}







.services-slider .slick-prev:before {
    content: '\f060';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 18px;
    padding: 0;
    position: absolute;
    left: 13px;
    top: 12px;
    color: #fff;
    opacity: 1;
}
/* .slick-prev:before, .slick-next:before {
    color: #f20707;
} */
.services-slider .slick-next:before {
    content: '\f061';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    right: 12px;
    top: 11px;
    color: #fff;
    opacity: 1;
}
.services-slider .slick-next, .services-slider .slick-prev {
    background-color: #5e9d34;
    color: #fff;
    padding: 20px 20px;
    border-radius: 60px;
    width: 40px;
    height: 40px;
    line-height: 21px;
    background-image: none;
    position: relative;
}


.services-slider .slick-prev {
    left: -51px;
    top: 215px;
}

.services-slider .slick-next{
    left: 101%;
    top: -125px;
}

/* Exclusive Services End */





/* How It Work Start */
section.we-work-sec {
    margin-bottom: 100px;
}
.we-work-img img {
    height: 544px;
    width: 100%;
    object-fit: cover;
}
.box-how-sec {
    box-shadow: 0px 0px 11px 0px #00000024;
    margin-top: 20px;
    padding: 20px;
}
.box-how-sec:hover {
    box-shadow: 0px 0px 14px 0px #5e9d3463;
    transition: 1s;
}
.how-it-icon-text h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 3px;
}

.how-it-icon-text p {
    font-size: 14px;
    line-height: 20px;
}
.we-work-text h2 {
    color: #000;
    margin-bottom: 10px;
}




/* How It Work End */

/* testimonial Section Satrt */

section.test-sec {
    margin-bottom: 60px;
}
.test-main-head {
    width: 50%;
    text-align: center;
    margin: 0 auto;
}

.test-main-head h2 {
    color: #000;
    font-size: 39px;
    margin-bottom: 10px;
}


.text-box ul {
    display: flex;
    gap: 20px;
    margin: 10px;
}
.test-box-sec img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.text-box {
    box-shadow: 0px 0px 11px 0px #0000004f;
    padding: 20px 20px 0px;
}

.test-slider .slick-active {
    opacity: 1;
}
.test-slider .slick-slide {
    margin: 30px 20px 0px;
}





.test-slider .slick-prev:before {
    content: '\f060';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 18px;
    padding: 0;
    position: absolute;
    left: 13px;
    top: 12px;
    color: #fff;
    opacity: 1;
}
/* .slick-prev:before, .slick-next:before {
    color: #f20707;
} */
.test-slider .slick-next:before {
    content: '\f061';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    right: 12px;
    top: 11px;
    color: #fff;
    opacity: 1;
}
.test-slider .slick-next, .test-slider .slick-prev {
    background-color: #5e9d34;
    color: #fff;
    padding: 20px 20px;
    border-radius: 60px;
    width: 40px;
    height: 40px;
    line-height: 21px;
    background-image: none;
    position: relative;
}


.test-slider .slick-prev {
    left: -51px;
    top: 180px;
}

.test-slider .slick-next{
    left: 101%;
    top: -158px;
}
.text-box ul li i {
    color: #5e9d34;
}


 /* testimonial Section End  */



/* Our Case Start */


section.our-case-sec {
    margin-bottom: 100px;
}
.our-caseour-head h2 {
    color: #000;
    font-size: 50px;
    margin-bottom: 10px;
}
.our-caseour-head {
    width: 50%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
}
.our-case-box h3 {
    font-size: 24px;
    margin-bottom: 6px;
}
.our-box-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
}
.our-case-box p {
    font-size: 15px;
}
.our-case-box {
    padding: 11px;
    box-shadow: 0px 0px 12px 0px #0000005c;
    border-radius: 10px;
}
.our-case-box:hover {
    box-shadow: 0px 0px 12px 0px #5e9d34ad;
    transform: 1s;
}
/* Our Case End */







/*footer start*/

section.footer-wrap {
    padding: 50px 0 0;
    /* background-image: url(../images/footer.jpg); */
    padding-top: 100px;
    background: #5e9d34;
  }
  
  section.footer-wrap * {
    color: #fff;
  }
  .socail-1 i {
    font-size: 20px;
    height: 35px;
    width: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 14px;
    animation: blinkin 3s ease infinite;
    background: #000;
    color: #fff;
    transition: 0.5s;
  }
  .socail-1 i:hover {
    transform: scale(1.2);
    box-shadow: inset 0 0 50px 0 #7fb256;
  }
  
  section.footer-wrap p {
    font-size: 14px;
  }
  .foot-fold a {
    text-transform: uppercase;
  }
  .foot-fold2 a {
    display: block;
    line-height: 50px;
    font-size: 16px;
  }
  .foot-fold li {
    line-height: 35px;
    font-size: 14px;
  }
  .foot-fold1 input {
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    color: #000;
  }
  
  .foot-fold2 i {
    margin: 0 10px 0 0;
  }
  .foot-fold2 {
    width: 90%;
    margin-left: 10%;
  }
  .copy-right p {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  .copy-right {
    border-top: 1px solid #ffffff24;
    margin-top: 20px;
    padding: 15px 0;
  }
  .socail-1 {
    margin: 25px 0;
  }
  
  .foot-fold1 form {
    position: relative;
    margin-top: 10px;
  }
  
  .foot-fold1 form button {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background: #000;
    height: 100%;
    width: 14%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: unset;
  }
  .foot-fold-1 img {
      margin-bottom: 20px;
      background: #fff;
      border-radius: 20px 20px 0 20px;
      padding: 5px;
  }
  .test-slider .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    border: 1px solid #000;
    border-radius: 50%;
  }
  .test-slider .slick-dots li.slick-active button:before {
    opacity: 1.75;
    color: #b01f22;
    background: #b22023;
  }
  .test-slider .slick-dots {
    position: absolute;
    bottom: -35%;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
  .footer-wrap h4 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
  }
  
  section.footer-wrap:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    /* background-image: url(../images/footer-design.png); */
    height: 45px;
    animation: filling 140s linear infinite;
  }
  .foot-fold ul li a i {
    margin-right: 11px;
}
.header-logo a h3 {
    color: #5e9d34;
}
.header-logo a h3 span.logo-sp-color {
    color: #0665ac;
}