/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
    --white: #fff;
    --black: #000;
    --primary: #87b97e;
    --secondary: #87572f;
}

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

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

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

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

h1,
h2,
h3 {
    font-family: "Roboto", sans-serif;
}

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;
}

/* LENIS */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
    overflow: hidden;
    height: 100vh;
}

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

.preLoader .counter {
    color: var(--white);
    font-size: 16rem;
    font-family: var(--font-text);
    font-weight: 600;
    letter-spacing: 8px;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.preLoader .bar {
    width: 20%;
    height: 100vh;
    background-color: #87572f;
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    display: inline-block;
    padding: 0.7em 0.9em;
    border-radius: 2px;
    line-height: normal;
    white-space: nowrap;
}

.themeBtn.btn1 {
    background: var(--secondary);
}

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

/* !GLOBAL CSS */


/* navigation css */

.topbar {
    position: relative;
    background: #1c2e31;
    padding: 7px 0;
}

/* .navbar-brand img {
    width: 250px;
}

*/
.navbar-nav {
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
    margin-right: 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.25rem;
    color: #1c2e31;
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

.call {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.call a i {
    margin-right: 7px;
    font-size: 1.5rem;
}

ul.top-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call a label {
    margin: 0;
}

.call a {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
    display: flex;
    align-items: center;
}

.call a span {
    font-weight: bold;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.social {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social a {
    font-size: 1.3rem;
    color: var(--white);
}

.topbar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--white);
    width: 24%;
    height: 38px;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

nav.navbar.navbar-expand-lg {
    padding: 0 0 14px 0;
}

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

.navbar .drop-down .nav-link:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
    color: var(--primary);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    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 ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.9);
}

.navbar .drop-down ul::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.navbar .drop-down ul::-webkit-scrollbar-thumb {
    background-color: var(--primary);
}

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

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

.navbar .about-drop-down li {
    min-width: 160px;
}

.navbar .drop-down ul a {
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

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

.navbar .drop-down ul a:hover::after {
    color: var(--white);
}

.navbar .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 0px);
}

.navbar .drop-down .drop-down:hover ul {
    top: 0;
}

.navbar .drop-down a span {
    padding-left: 6px;
    color: var(--primary);
}

.navbar .drop-down .drop-down a:after {
    transform: rotate(-95deg);
    display: inline-block;
    position: absolute;
    right: 10px;
}

/* navigation css */

/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 826px;
}

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

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

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.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: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 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: 5.625rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.main-slider h4 {
    margin: 0;
    color: var(--white);
    font-size: 2.1875rem;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

.slideOne .btn-group {
    margin-top: 41px;
    gap: 14px;
}

li.nav-item.searchicon a i {
    color: #000;
    font-size: 1.25rem;
}

/* !MAIN HERO SLIDER CSS */

/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 1.25rem;
}

/* !SEARCH BAR CSS */

/* SHOWCASE SECTION CSS */

.showcase-section {
    padding: 0;
    margin-top: -5rem;
}

.showcase-card {
    text-align: center;
    padding: 1.75rem 2.25rem;
    background-color: #1c2e31;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.showcase-card * {
    transition: 0.5s ease-in-out;
}

.showcase-card figure {
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.875rem;
}

.showcase-card h4 {
    font-size: 1.5625rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
    font-family: "Roboto";
}

.showcase-card p {
    font-size: 0.9375rem;
    color: #363636;
    line-height: 1.47;
}

.showcase-card:hover {
    background-color: var(--primary);
    box-shadow: 0 0.5rem 0 0 var(--secondary);
    transform: translateY(-0.5rem);
}

.showcase-card:hover * {
    color: var(--white);
}

.showcase-card:hover figure img {
    filter: brightness(0) invert(1);
}

/* !SHOWCASE SECTION CSS */

/* mision-section */
.misiionimg figure {
    display: flex;
    align-items: center;
    gap: 25px;
}

.misiionimg-top img:first-child {
    width: 440px;
    height: 250px;
    object-fit: cover;
}

.misiionimg-top img:last-child {
    width: 292px;
    height: 250px;
    object-fit: cover;
}

.misiionimg-bottom img {
    width: 757px;
    height: 338px;
    object-fit: cover;
}

.misiionimg {
    margin-bottom: 24px;
}

.mission-img {
    width: 100%;
    height: 500px;
    position: sticky;
    top: 5%;
}

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

.mission-cntnt h5 {
    font-size: 1.125rem;
    color: #131635;
}

.mission-cntnt h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #090c25;
    margin: 0;
}

.mission-cntnt h4 {
    font-size: 1.25rem;
    color: #292929;
    margin: 30px 0 23px 0;
    line-height: 1.5;
}

.mission-cntnt p {
    color: #676666;
    font-size: 1rem;
    line-height: 1.8;
}

.mission-cntnt p+p {
    margin-top: 2rem;
}

.mission-cntnt .btn-group {
    gap: 9px;
}

/* mision-section */

.subHead {
    font-size: 1.125rem;
    color: #131635;
}

.mainHead {
    font-size: 5rem;
    font-weight: bold;
    color: #091213;
}

/* why-choose */
.why-choose {
    padding: 5rem 0;
}

.choosehead {
    text-align: center;
    margin-bottom: 5rem;
}

.choosehead .subHead {
    margin: 0;
}

.choosewrap h3 {
    font-size: 1.5625rem;
    font-weight: bold;
    color: #091213;
    margin: 32px 0 9px 0;
}

.choosewrap p {
    font-size: 1rem;
    color: #676666;
    line-height: 1.6;
}

.null1 {
    position: absolute;
    right: 0;
    top: -24px;
}

/* why-choose */

/* build-section */
.build-section {
    background: url(../images/buildbg.webp) center/cover no-repeat fixed;
    padding: 5.4rem 0 6rem 0;
    overflow: clip;
}

.buildwrap h2 {
    font-size: 8.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.buildwrap p {
    font-size: 1rem;
    line-height: 1.8125;
    color: #fff;
    margin: 1rem 0;
}

.build-section figure img {
    margin: -6rem 0;
}

/* build-section */

/* Insta Sec Css Start */

.instaSec {
    padding: 3rem 0;
}

.instaSlider {
    margin: 0 20px;
}

.instaSlider .swiper-wrapper {
    transition-timing-function: linear;
}

/* insta   */

/* reach-section */

.reachSection {
    background: url(../images/reachbg.webp) center/cover no-repeat fixed;
    padding: 5rem 0;
}

.reachBox {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 50px 35px 35px 35px;
}

.reachBox label {
    font-size: 1.0625rem;
    color: #060606;
    margin: 0;
    display: block;
}

.reachBox .form-group {
    margin-bottom: 25px;
}

.reachBox input,
.reachBox select {
    height: 57px;
}

.reachBox .form-control,
.reachBox select {
    background: #e9ecef;
    border: 1px solid #dbdbdb;
    outline: unset;
    box-shadow: unset;
    width: 100%;
    border-radius: 5px;
}

.reachBox .themeBtn {
    background: #e98a13;
    border: unset;
}

/* reach-section */

.map-section iframe {
    filter: grayscale();
}

/* services-offered */
.services-offered {
    background: url(../images/offeredng.webp) center/cover no-repeat;
}

.service-head {
    text-align: center;
    margin-bottom: 50px;
}

.service-head .mainhead {
    color: #fff;
}

.service-head .mainHead {
    color: #fff;
}

.service-head .subHead {
    color: #87b97e;
    margin: 0;
}

section.services-offered ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.services-offered ul li {
    border-bottom: 1px solid #fff;
    border-left: 1px solid var(--white);
}

.services-offered ul li:nth-child(3n + 1) {
    border-left: 0px;
}

.services-offered ul li:nth-last-child(-n + 3) {
    border-bottom: 0;
}

section.services-offered ul li a {
    display: inline-flex;
    gap: 10px;
    align-items: baseline;
}

section.services-offered ul li a {
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: "Roboto";
    padding: 1.125rem;
}

section.services-offered ul li a i {
    color: #87b97e;
}

/* services-offered */

/* commercialsection */
.commercial-wrap {
    display: flex;
    justify-content: space-between;
}

.commercial-wrap .separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
    justify-content: end;
}

.commercial-wrap .separator .line {
    width: 12px;
    height: 508px;
    background-color: #87572f;
    border-radius: 30px;
}

.comm-wrap,
.comm-wrap2 {
    position: relative;
    width: 100%;
    max-width: 850px;
}

.comm-wrap2 {
    text-align: right;
}

.comm-wrap img,
.comm-wrap2 img {
    height: 656px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    transition: all 500ms ease-in-out;
}

.comm-wrap2 img {
    width: 681px;
    right: 0;
}

.comm-wrap img {
    width: 724px;
    left: 0;
}

:is(.comm-wrap, .comm-wrap2) img:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.comm-wrap__content {
    position: absolute;
    top: 60px;
    right: 0px;
    text-align: left;
}

.comm-wrap2 .comm-wrap__content {
    right: auto;
    left: 0px;
}

.comm-wrap h3 {
    font-size: 1.875rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.comm-wrap2 h3 {
    font-size: 1.875rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.comm-wrap__content ul {
    text-transform: capitalize;
    margin: 0.5rem 0 0 1.5rem;
    opacity: 0;
    height: 300px;
    overflow-y: auto;
    visibility: hidden;
    transform: translateY(10px);
    list-style: disc;
    transition: all 300ms ease-in-out 0s;
    background: var(--white);
}

.comm-wrap__content ul li a {

    font-size: 0.9375rem;

    color: var(--black);
}

:is(.comm-wrap, .comm-wrap2) h3:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

/* commercialsection */

/* testimonialsectiohn */

.testimonial-main {
    background: #f0f0f0;
}

.testimonialBox {
    background: #f8f8f8;
    padding: 2rem 3.2rem;
    border-radius: 18px;
}

.testimonialBox p {
    color: var(--black);
    line-height: 1.6;
    margin: 0.925rem 0 1.375rem 0;
    font-size: 1rem;
    color: #494949;
}

.testimonialSlider {
    padding-bottom: 2rem;
}

.testimonialBox figure {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: static;
    left: 2rem;
    bottom: 0;
    justify-content: flex-start;
}

.testimonialBox figure h6 {
    font-size: 1.125rem;
    color: #000;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin: 0;
}

.testimonialBox figure p {
    margin: 0;
    font-size: 0.875rem;
    color: #ababab;
}

.testimonial-main {
    padding: 5rem 0;
}

.reviewSlider {
    padding-bottom: 4rem;
}

.reviewSlider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reviewSlider .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--black);
    opacity: 1;
}

.reviewSlider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--black);
}

.reviewSlider {
    padding-bottom: 5rem;
}

ul.star {
    display: flex;
    align-items: center;
    gap: 5px;
}

ul.star li a {
    color: #ebb400;
}

ul.star {
    margin-top: 12px;
}

.testimonial-main .subHead {
    margin: 0;
}

.testimonial-main .swiper-button-next:after,
.testimonial-main .swiper-button-prev:after {
    font-size: 1.25rem;
    font-weight: 700;
}

.testimonial-main .swiper-button-next,
.testimonial-main .swiper-button-prev {
    border: 1px solid #000;
    width: 81px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50px;
    color: var(--black);
    background: transparent;
    top: 68%;
    transition: 0.5s ease;
}

.testimonial-main .swiper-button-next:hover,
.testimonial-main .swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.testimonial-main .swiper-button-next {
    right: 14rem;
    top: 8rem;
}

.testimonial-main .swiper-button-prev {
    right: 20rem;
    left: inherit;
    top: 8rem;
}

/* testimonialsectiohn */

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

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

.themeBtn.btn1:hover {
    background: var(--primary);
}

.showcase-card .themeBtn.btn1:hover {
    background: #000;
}

/* Footer Sec Css Start */

footer {
    background-color: var(--white);
    padding-top: 4rem;
}

footer ul li a {
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 500;
}

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

footer h3 {
    font-size: 1.5625rem;
    text-transform: capitalize;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
}

.links li a {
    text-transform: capitalize;
}

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

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

.contactLinks li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

footer p {
    font-size: 0.875rem;
    color: #231f20;
    text-align: start;
    line-height: 1.5;
}

.footForm input {
    height: 50px;
    border-radius: unset;
    padding-left: 1.5rem;
}

.footForm .themeBtn {
    font-size: 1.125rem;
    border: unset;
    padding: 1rem 2em;
    margin: 12px 0 1rem 0;
}

.cartWraps p {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.copyRight {
    border-top: 1px solid #dfdfe0;
    margin-top: 2rem;
    padding: 1rem 0;
    background: #1c2e31;
    text-align: center;
}

.socialLinks {
    gap: 1.125rem;
    display: flex;
    margin-top: 27px;
}

.socialLinks li a {
    color: #1c2e31;
}

.contactLinks li a span {
    font-size: 0.9375rem;
    text-transform: capitalize;
}

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

.backtop {
    background: #f1d3bb;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1c2e31;
    position: absolute;
    right: 0;
    padding: 18px 44px;
    bottom: 0;
    z-index: 999;
}

/* Footer Sec Css End */

/* inner-pages */
.inner-banner {
    height: 540px;
}

.inner-banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(9 18 19 / 40%);
    position: absolute;
    inset: 0;
}

.inner-banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.inner-banner__content h1 {
    font-size: 3.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.service-card {
    margin-bottom: 2rem;
    display: inline-block;
}

.service-card h4 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1.125rem 0 0;
}

.educational-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #090c25;
    margin-bottom: 1.5rem;
}

.ready-card {
    background-color: #83562f;
    border-radius: 1.25rem;
    padding: 2.5rem;
    margin: 1.25rem 5rem 0 0;
}

.ready-card * {
    color: var(--white);
}

.educational-img {
    height: 100%;
}

.educational-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
}

.educational-bg {
    margin: 5rem 0 0;
}

.testimonial-inner .testimonialBox {
    margin-bottom: 2rem;
}

/* get-in */
.get-in h3 {
    font-size: 4rem;
    margin-bottom: 1.25rem;
}

.get-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.get-info li a span i {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 1rem;
}

.get-info li a {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1c2e31;
    display: flex;
    align-items: center;
}

.get-info li a:hover {
    color: var(--primary);
}

.get-info li a>i {
    font-size: 2rem;
}

.instaWrap img {
    width: 100%;
    height: 448px;
    aspect-ratio: 1;
    object-fit: cover;
}

.service-details .mission-cntnt h4 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1rem 0;
    line-height: 1;
}

.service-details .mission-cntnt :is(p, li) {
    font-size: 1.125rem;
    color: #676666;
    margin: 0 0 1rem;
}

.mission-cntnt-list li {
    position: relative;
    padding-left: 2rem;
}

.mission-cntnt-list li::before {
    content: "\f058";
    font-size: 1.125rem;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    line-height: 1;
    color: var(--black);
    position: absolute;
    left: 0;
}

.service-details .mission-cntnt li ul li::before {
    content: none;
}

.service-details .mission-cntnt li ul {
    list-style: lower-roman;
}

.service-details-img {
    height: 100%;
}

.service-details-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}