@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;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #ff0000;
    --secondary: #33a098;
}

html {
    scroll-behavior: smooth;
    /*height: 100%;*/
    overflow-x: hidden;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: 'Jost', sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}


/* How to add New font */

@font-face {
    font-family: "SilkSerif";
    src: url("../fonts/SilkSerif-Medium.ttf");
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3 {
    font-family: "SilkSerif";
}

h4,
h5,
h6 {
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: #fff;
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}


/* loader */


/* btn css */

.themeBtn {
    background: var(--secondary);
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    padding: 12px 1.96em;
    line-height: normal;
}

.themeBtn:hover {
    border: 1px solid #319042;
    color: #fff;
    background: #319042;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}


/* btn css */


/* navigation css */

header {
    background: #537257;
}

.navbar-nav {
    align-items: center;
    gap: 3rem;
}

li.nav-item .themeBtn:hover {
    background: var(--secondary);
}

.navbar-nav .nav-item .nav-link {
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary);
}

.an-navbar {
    background: #7db38d;
    padding: 1rem 0;
}

li.nav-item .themeBtn {
    background: unset;
    border: 1px solid var(--secondary);
    padding: 8px 2em;
}


/* navigation css */


/* slider css */

.main-slider {
    height: 100vh;
    text-align: center;
    overflow:hidden;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 3rem;
    left: 0;
    right: 0;
    gap: 0;
}

.homeSlider .swiper-pagination .swiper-pagination-bullet {
    width: 19px;
    height: 19px;
    border: 0;
    background: rgb(255 255 255 / 43%);
}

.homeSlider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--white);
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 4rem;
    background: transparent;
    border: 1px solid #C4C4C4;
    border-radius: 0;
    width: 58px;
    height: 58px;
    opacity: 1;
}

.homeSlider .swiper-button-next:after {
    font-size: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 4rem;
    background: transparent;
    border: 1px solid #C4C4C4;
    border-radius: 0;
    width: 58px;
    height: 58px;
    opacity: 1;
}

.homeSlider .swiper-button-prev:after {
    font-size: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 45px;
    line-height: 1;
    font-weight: 500;
    text-transform: inherit;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px black;
    filter: drop-shadow(2px 4px 6px black);
}

.main-slider p {
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
    margin-top: 1rem;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
}


/* slider css */

.mainHead {
    font-size: 60px;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
}


/* barent sec css start */

.brentSec {
    background: #F2F3EC;
    padding-bottom: 0;
}

.brentSec h4 {
    font-size: 18px;
    color: #575757;
    text-transform: uppercase;
    font-weight: 500;
}

.brentSec h5 {
    font-size: 30px;
    font-weight: 500;
    color: #03020A;
}

.brentSec p {
    color: #565656;
    font-size: 20px;
}


/* barent sec css end */


/* Services Sec Css Start */

.serviceSec {
    z-index: 1;
    background: #EEEFE8;
    padding: 4rem 0 3rem 0;
}

.serviceSec h2 {
    color: #09121A;
}

.mainBox {
    position: relative;
}

.mainBox>h4 {
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 4rem;
    font-size: 36px;
    right: 0;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    font-weight: 400;
}

.mainBox:hover>h4 {
    opacity: 0;
}

.mainBox .boxContent {
    position: absolute;
    transition: all 0.4s ease-in-out;
    transform: scaleY(0);
    background-color: rgb(51 160 152 / 70%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 1.1875rem;
    transform-origin: top;
    inset: 0;
}

.mainBox .boxContent h4 {
    font-size: 36px;
    margin-bottom: 8px;
    font-weight: 400;
    color: #fff;
}

.mainBox .boxContent a {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 1rem;
    border: 1px solid #FFFFFF;
}

.mainBox:hover .boxContent {
    transform: scaleY(1);
}

section.serviceSec .themeBtn {
    background: unset;
    border: 1px solid #3A3A3A;
    color: #1B2B1E;
    font-size: 18px;
}

.serviceSec .themeBtn:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.servbtn {
    display: flex;
    align-items: center;
    gap: 7rem;
    justify-content: center;
}

.servbtn .mainHead {
    /* margin-left: 4rem; */
    text-transform: capitalize;
    /* margin-bottom: 0 !important; */
}

.servbtn h5 {
    font-size: 30px;
    color: #5B5B5B;
    font-weight: 400;
}


/* Services Sec Css End */


/* product css start */

.prodcntnt h3 {
    font-size: 14px;
    margin-top: 1rem;
    font-family: 'Jost';
}

.prodcntnt h3 span {
    color: var(--secondary);
    text-decoration: underline;
}

.prodcntnt h4 {
    font-size: 25px;
    font-weight: 400;
}

.prodcntnt p {
    font-size: 14px;
    color: #565656;
}

.prodcntnt a {
    color: #1B2B1E;
    font-size: 18px;
    text-transform: uppercase;
    border: 1px solid #3A3A3A;
    padding: 11px 1.2rem;
    display: inline-block;
}

.prodcntnt a:hover {
    background: var(--secondary);
    color: #fff;
    border: var(--secondary);
}

.productSec {
    padding: 4rem 0;
}


/* product css end */


/* About Sec Css Start */

.aboutSec {
    position: relative;
    padding: 3rem 0 5rem 0;
    background: url(../images/coachingbg.webp) center/cover no-repeat;
}

.aboutImg {
    text-align: end;
    position: relative;
    margin-right: -4rem;
}

.aboutLogo {
    display: block;
    width: 450px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.aboutLogo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt2 {
    position: absolute;
    left: 3rem;
    z-index: -1;
    top: 3rem;
}

.abt3 {
    position: absolute;
    bottom: -2rem;
    left: 7rem;
}

.aboutImg figure {
    position: relative;
}

.aboutImg figure:before {
    content: "";
    position: absolute;
    background-color: #FCBD10;
    height: 22px;
    width: 22px;
    border-radius: 50px;
    left: 35%;
    top: 0;
}

.aboutImg figure:after {
    content: "";
    position: absolute;
    background-color: #633015;
    height: 24px;
    width: 24px;
    border-radius: 50px;
    bottom: 3.5rem;
    right: 2.7rem;
}

.aboutImg:before {
    content: "";
    position: absolute;
    background-color: #C39F63;
    height: 75px;
    width: 75px;
    border-radius: 50px;
    top: 0rem;
    right: 0rem;
}

.items {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.itemcntnt h5 {
    font-size: 30px;
    margin-bottom: 0;
    font-weight: 400;
}

.itemcntnt p {
    font-size: 20px;
    color: #6D6D6D;
    font-weight: 400;
}

.itemcntnt {
    width: 75%;
    margin-left: 2rem;
    border-bottom: 1px solid #B8B8B8;
}

img.img-fluid.tree11 {
    position: absolute;
    right: 0;
    top: 0;
}

.itemcntnt.items2 {
    border-bottom: unset;
}


/* About Sec Css End */


/* videosec css start */

.videoSec {
    padding-top: 3rem;
}

.videowrap {
    position: relative;
}

.videowrap a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


/* videosec css end */


/* ourblogSec css start */

.ourblogSec {
    background-color: #272262;
}

.blogcntnt h4 {
    font-size: 14px;
    color: #fff;
}

.blogcntnt h3 {
    font-size: 25px;
    color: #fff;
    border-bottom: 2px solid #F7F7F7;
    font-family: 'Jost';
}

.blogcntnt ul {
    display: flex;
    gap: 11px;
}

.blogcntnt ul li {
    color: #fff;
    font-size: 16px;
}

.blogwrap {
    position: relative;
}

.blogcntnt {
    position: absolute;
    bottom: 13px;
    left: 1rem;
}

.ourblogSec .mainHead {
    color: #fff;
}


/* ourblogSec css end */


/* Contact Page */

.contact-section {
    padding: 4rem 0;
}

.contact-section .form-control {
    border: 0;
    border-bottom: 1px solid #000000;
    height: 60px;
    padding: 0;
    margin-bottom: 2rem;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none !important;
    transition: 0.5s ease;
    padding-left: 1rem;
}

.contact-section textarea.form-control {
    height: auto;
}

.contact-section .form-control:focus {
    border-color: var(--secondary) !important;
}

.contact-section .themeBtn {
    border-radius: 0;
}


/* !@Contact Page */


/*Review Section css Start*/

.reviewSec {
    padding: 3rem 0;
}

.reviewSec {
    padding: 6rem 0;
    background-color: #F6F6F6;
}

.reviewSec h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    margin-top: 2rem;
    font-family: 'Jost';
}

.reviewSec .revewBox {
    text-align: center;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.revewBox span i {
    color: #f4a51c;
}

.revewBox p {
    line-height: 1.9;
    font-size: 15px;
}

.reviewSec .revewBox img {
    margin: auto;
}

.reviewSec .revewBox .content {
    padding: 0 1rem;
}

.reviewSec .revewBox+.revewBox {
    border-left: 2px solid #bbbbbb;
}

.swiper-slide.swiper-slide-active .revewBox {
    border-left: 1px solid #B7B7B7;
    border-right: 1px solid #B7B7B7;
}

.reviewslider {
    padding-bottom: 4rem;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #B7B7B7;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: #DBAF6E;
}


/*Review Section css End*/

.videoSec .swiper-button-prev {
    left: 2%;
    top: 62%;
}

.videoSec .swiper-button-prev:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    border: 2px solid #384556;
    width: 45px;
    height: 45px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.videoSec .swiper-button-prev:after {
    content: '\f177';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: #384556;
    position: absolute;
    left: 20px;
    transform: scale(1.1);
}

.videoSec .swiper-button-next {
    right: 3%;
    top: 62%;
}

.videoSec .swiper-button-next:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    border: 2px solid #384556;
    width: 45px;
    height: 45px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.videoSec .swiper-button-next:after {
    content: '\f178';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: #384556;
    position: absolute;
    right: 0;
    transform: scale(1.1);
}


/* Footer Css Start  */

footer {
    background: url(../images/footBg.webp) center/cover no-repeat;
    padding-top: 4rem;
}

footer h3 {
    font-size: 30px;
    text-transform: capitalize;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 1rem;
}

.links li a {
    font-size: 1rem;
    color: var(--white);
}

footer ul li a:hover {
    color: var(--secondary);
}

.contactLinks li a {
    display: grid;
}

.contactLinks li a span {
    font-size: 0.625rem;
    color: var(--white);
    display: grid;
    text-transform: uppercase;
}

.contactLinks li a strong {
    font-size: 1rem;
    text-transform: initial;
    font-weight: 400;
}

.contactLinks li a i {
    color: var(--white);
}

.contactLinks li+li {
    padding-top: 0.75rem;
}

.socialLinks {
    display: flex;
    gap: 2.7rem;
    justify-content: center;
}

.socialLinks li a {
    color: var(--white);
    font-size: 1.625rem;
}

.copyRight {
    border-top: 1px solid #DCDCDC;
    margin-top: 2.5rem;
    padding: 1.5rem 0;
}

.terms {
    display: flex;
    gap: 1.5rem;
}

.terms li a,
.terms li span {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}

.copyRight p {
    font-size: 20px;
    color: var(--white);
    margin: 0;
}

a.undr span strong {
    text-decoration: underline;
}


/* Footer Css End  */

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}


/* .navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 10px;
    color: #fff;
} */

.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 6px 17px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
    text-transform: capitalize;
}

.navbar .drop-down ul a:hover {
    background: var(--secondary);
    color: #fff;
}

.contactLinks li+li {
    padding-top: 1.7rem;
}

.links li+li {
    padding-top: 8px;
}


/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 55px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    text-align: center;
}

.innerBan {
    position: relative;
}

.aboutpara p {
    color: #565656;
    text-align: center;
    font-size: 19px;
}

.videoSec.videoinner {
    padding-bottom: 0;
}

.servcntnt h5 {
    font-size: 50px;
    margin-top: 1rem;
    font-weight: 400;
}

.servcntnt p {
    font-size: 20px;
    color: #747C87;
}

.servcntnt {
    margin-bottom: 3rem;
}

.serviceinnerSec {
    padding-bottom: 0;
}

.blogcntntinner h4 {
    font-size: 22px;
    color: #6B6B6B;
    margin-top: 1rem;
    font-weight: 400;
}

.blogcntntinner h3 {
    font-size: 33px;
    font-weight: 400;
    font-family: 'Jost';
}

.blogcntntinner ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #000;
    width: 32%;
    margin-bottom: 1rem;
}

.blogcntntinner ul li {
    font-size: 21px;
}

.blogcntntinner p {
    font-size: 20px;
    color: #747C87;
}

.blogwrapiner {
    margin-bottom: 4rem;
}

.bloginnerSection {
    padding-bottom: 0;
}

section.reviewSec.reviewiner {
    background: #fff;
    padding-bottom: 0;
}

section.reviewSec.reviewiner .revewBox {
    margin-bottom: 2rem;
    border-bottom: 1px solid #707070;
    padding-bottom: 1.5rem;
}

.reviewSec.reviewiner .revewBox p {
    font-size: 20px;
    color: #747C87;
}

.number ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.number ul li {
    font-size: 43px;
}

.number ul li span {
    color: #000;
}

.number ul li strong {
    font-weight: 400;
    margin-left: 2rem;
}

.number {
    margin-bottom: 3rem;
}

.map {
    padding: 0;
}

a.footLogo img {
    filter: brightness(0) invert(1);
}

.homeSlider .slide-inner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0006;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.map p{
    margin-bottom: 0rem;
}

.map iframe {
    display: block;
}