@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

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 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 25px;
    font-family: 'montserrat-medium-font';
    font-size: 14px;
    color: #00000061;
}


/***** Font Files *****/

@font-face {
    font-family: 'butler-light-font';
    src: url(../font/Butler_Light.otf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'montserrat-medium-font';
    src: url(../font/Montserrat-Medium.ttf);
    font-weight: 400;
    font-style: normal
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 35px;
    border: unset;
    border-radius: 55px;
    color: #ffffff;
    z-index: 1;
    background: #74aa36;
    position: relative;
    font-size: 14px;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'montserrat-medium-font';
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    height: 100%;
    width: 0;
    border-radius: 55px;
    background-color: #76d2c5;
    z-index: -1;
    transition: all 250ms;
    border: 1px solid #000;
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
    left: 0px;
}

.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: 'butler-light-font';
    font-size: 86px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'butler-light-font';
    font-size: 60px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 8px;
}

h3 {
    font-family: 'butler-light-font';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 10px;
}

h4 {
    font-family: 'butler-light-font';
    font-size: 25px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 8px;
}

h5 {
    font-family: 'butler-light-font';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

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 */

.menuSec {
    padding: 14px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.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: #000000;
    padding: 10px 18px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'montserrat-medium-font';
}

/* .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: #76d2c5;
}

.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 */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.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 [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;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */
.dis-block{
    display: block;
}

.container-fluid {
    padding: 0px 60px;
}

.topSec {
    background: #76d2c5;
    border-radius: 0px 0px 30px 30px;
    padding: 10px 0px;
}

.top-menu-info ul {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 0;
    position: relative;
}

.top-menu-info ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.top-menu-info ul:before {
    position: absolute;
    content: '';
    top: 0;
    height: 100%;
    width: 1px;
    background: #ffffff7a;
    left: 144px;
}

.top-menu-icon ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.top-menu-icon ul li a i {
    height: 30px;
    width: 30px;
    border: 1px solid #b2e6de;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b2e6de;
}

.top-menu-icon ul li a i:hover {
    background: #6fa334;
    color: #fff;
}
/* .header-logo img {
    width: 100%;
} */
.header-cart-icon ul li a {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cart-icon ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin-bottom: 0;
}

.header-cart-icon ul li a i {
    height: 50px;
    width: 50px;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #74aa36;
}
.header-cart-icon ul li a i:hover {
    background: #76d2c5;
    color: #fff;
}
.login-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.login-text i {
    height: unset !important;
    width: unset !important;
    border: unset !important;
    color: #000 !important;
}

.custom-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 0.8s ease;
}

.slide.active {
    opacity: 1;
}

/* UI Bar */
.slider-ui {
    position: absolute;
    bottom: 40px;
    left: 50px;
    transform: unset;
    background: #7adbd200;
    padding: 15px 0px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    width: 34%;
}

/* Arrows */
.arrow {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 0 20px;
}

/* Counter */
.counter {
    display: flex;
    align-items: center;
    color: white;
    font-size: 28px;
    /* font-weight: bold; */
    width: 100%;
    justify-content: space-between;
    font-family: 'butler-light-font';
}

.counter .line {
    width: 240px;
    height: 1px;
    background: white;
    margin: 0 10px;
}
.carousel-item {
    position: relative;
    display: unset;
    float: unset;
    width: 100%;
    margin-right: unset;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}
.banner_text {
    position: relative;
    z-index: 1;
}
.banner_text p {
    width: 80%;
    color: #fff;
}
.banner_img {
    position: absolute;
    bottom: -450px;
    right: 60px;
    z-index: 1;
}

.banner_img img {
    width: 90%;
}

.banner-img > img {
    height: 100vh;
    width: 100%;
}
.slider-ui span img {
    width: 70px;
}

.banner_text {
    margin-top: -170px;
}

section.main_slider:before {
    position: absolute;
    content: '';
    bottom: 140px;
    left: 0;
    height: 1px;
    width: 77%;
    background: #ffffff45;
    z-index: 1;
}
section.main_slider {
    position: relative;
    z-index: 1;
}

.about-img ul {
    display: flex;
    gap: 30px;
    width: 100%;
}

.about-img img {
    width: 100%;
}

.about-img ul li img {
    /* width: 100%; */
}

.about-img ul li {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    flex-direction: column;
    /* width: 40%; */
}


.about-img-number {
    text-align: center;
}

.about-img-number h4 {
    font-size: 40px;
    border-bottom: 1px solid #0000006b;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.about-img-number p {
    color: #000;
}

.about-img-number-img img {
    height: 410px;
    object-fit: cover;
    border-radius: 10px;
}
li.about-img-liwe img {
    width: 100%;
}

li.about-img-liwe {
    width: 60%;
}

.about-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    gap: 10px;
}

section.about-sec {
    margin: 100px 0px;
}
.jumpstart-experience-box-text {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.jumpstart-experience-box-img img {
    margin-bottom: 20px;
    width: 100%;
}

.jumpstart-experience-box {
    padding: 10px 10px;
    box-shadow: 0px 0px 6px 0px #00000024;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    border-bottom: 3px solid #70c7ba;
}

.jumpstart-experience-box:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background: #70c7ba;
    z-index: -1;
    border-radius: 20px;
}

.jumpstart-experience-box:hover:before {
    height: 100%;
    transition: 0.5s;
}

.jumpstart-experience-box:hover h4 {
    color: #fff;
}

.jumpstart-experience-box:hover p {
    color: #fff;
}

.jumpstart-experience-box:hover a {
    color: #fff;
}

.jumpstart-experience-box-text a {
    color: #74aa36;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    gap: 10px;
}
.jumpstart-experience-top-heading {
    text-align: center;
    width: 56%;
    margin: 0 auto;
    margin-bottom: 30px;
}
section.jumpstart-experience-sec {
    margin-bottom: 100px;
}
section.work-today-sec {
    position: relative;
    height: 100%;
    width: 100%;
    /* background-color: #38fa14; */
    z-index: 1;
    padding: 120px 0px;
    background-image: url(../images/gental-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 100px;
}
.work-today-box {
    text-align: center;
}
.work-today-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.work-today-box ul li input {
    width: 320px;
    border: 2px solid #ffffffab;
    padding: 15px 20px;
    border-radius: 30px;
    background: #ffffff00;
    font-size: 14px;
    color: #fff;
}
button.work-btn {
    border: #fff;
    padding: 18px 60px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 500;
    background: #74aa36;
    color: #fff;
}
.work-today-box ul li input::placeholder {
    color: #ffffff;
    text-transform:uppercase;
    font-size: 14px;
}
section.work-today-sec .row {
    padding: 80px 50px;
    background: #70c7bae0;
    border-radius: 30px;
}

.work-today-box h2 {
    color: #fff;
}

.work-today-box p {
    width: 50%;
    color: #fff;
    margin: 0 auto;
}

.work-today-box p a {
    color: #fff;
}
.nicki-img img {
    /* width: 100%; */
}
section.hi-nicki-sec {
    margin-bottom: 100px;
}
.feaured-post-box-text h3 {
    font-size: 18px;
    text-transform: uppercase;
}

.feaured-post-box-text h4 {
    font-size: 14px;
    text-transform: uppercase;
}

.feaured-post-box-text h4 span {
    color: #76d2c5;
}

.feaured-post-box ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feaured-post-box-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 160px;
}

.feaured-post-img {
    position: relative;
    z-index: 1;
}

.feaured-post-img-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.feaured-post-img-text h5 {
    color: #fff;
    margin-bottom: 0;
}

.feaured-post-top-heading {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
}

section.feaured-post-sec {
    margin-bottom: 100px;
}




/* Footer sectrion css */

.footerSec {
    background: #050505;
    position: relative;
    overflow: hidden;
    padding: 80px 0px 0px;
}

footer ul.social li a i:hover {
    transform: scale(1.1);
    color: #727269;
}

footer ul li a {
    transition: 0.1s;
    font-size: 14px;
    line-height: 23px;
    color: #7a7a7a;
    font-weight: 400;
    font-family: 'montserrat-medium-font';
}

footer ul.social li a {
    background: #76d1c4;
    color: #fff;
}

footer ul li a:hover {
    color: #fff;
}

.footerSec .footer-btm .row {
    padding-bottom: 20px;
    padding-top: 20px;
}

.footerSec .footer-btm .row p {
    opacity: 70%;
}

.copy-txt p {
    color: #727269;
}

.footerSec .footer-btm:before {
    position: absolute;
    content: "";
    width: 124%;
    height: 1px;
    top: 0;
    right: -148px;
    margin: 0px auto;
    background: #1e1e1e;
    opacity: 1;
}

.news-letter ul li a {
    gap: 14px;
    line-height: 20px;
    margin: 30px 0;
    font-size: 13px;
    color: #fff;
}

.news-letter ul li a:hover {
    color: #fff;
    transform: translate(3px, 0px);
}

h5.subscribe {
    text-transform: uppercase;
    margin-top: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.ft-header {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.footer-about h4.text-light.ft-header {
    text-transform: unset;
}

.ft-header:before {
    position: absolute;
    content: "";
    width: 220px;
    height: 2px;
    bottom: 0;
    background: #1e1e1d;
    opacity: 1;
    left: 2px;
}

.foot-products ul {
    position: relative;
    margin-right: 10px;
}

footer .news-letter {
    position: relative;
}

footer .foot-quick-links {
    position: relative;
    padding-left: 10px;
}

footer ul.social {
    gap: 6px;
    justify-content: end;
}

h5.ft-header {
    margin-top: 0px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    width: 220px;
}

.ft-header {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-about {
    position: relative;
    height: 100%;
}

ul.social li a {
    width: 40px;
    height: 40px;
    border: 1px solid #76d1c4;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 55px;
    font-size: 16px;
    text-align: center;
    transition: 0.3s;
    z-index: 12;
    position: relative;
}

ul.social li a:hover {
    background: #fff;
    color: #74aa36;
    border: 1px solid #74aa36;
}

.footer-about img {
    width: 80%;
}

footer .ftcol-1 {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 80px;
    gap: 80px;
}

footer .ftcol-1 ul {
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .foot-quick-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-btm {
    position: relative;
}

.footerSec .row {
    position: relative;
    overflow: hidden;
}

.footerSec .footer-btm .row p a {
    color: #727269;
}

.footer-about p {
    color: #9b9b9b;
    width: 75%;
}

.ft-header:after {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    bottom: 0;
    background: #ffffff;
    opacity: 1;
    right: 0px;
}

.ftr_boddr_btm {
    padding-bottom: 30px;
    border-bottom: 1px solid #3c3c3c;
    margin-bottom: 60px;
}

/* Footer section end */





.testi_main {
    padding: 30px;
    border-right: 1px solid #0000001c;
    border-radius: 0px;
}

.testi_main ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.testi_main h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
}

.testi_main h4 {
    color: #74aa36;
    font-size: 16px;
    font-size: 400;
    margin-bottom: 5px;
}

.testi_main i {
    color: #ffcd37;
}

.test_avatar {
    position: relative;
    padding: 0 10px;
}

.test_avatar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #76d2c5;
    height: 80px;
    width: 5px;
}

.test_slider .slick-slide {
    opacity: 1;
}

.testimonial{
    /* padding: 100px 0; */
    margin-bottom: 100px;
}