/* FONTS IMPORT */

/* GOOGLE FONT JOST  */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap");

/* LOCAL FONT KUNNARI  */
@font-face {
    font-family: "Kuunari";
    src: url("../fonts/kuunari.otf");
    font-weight: 400;
}

@font-face {
    font-family: "Kuunari";
    src: url("../fonts/kuunarimedium.otf");
    font-weight: 500;
}

@font-face {
    font-family: "Kuunari";
    src: url("../fonts/kuunaribold.otf");
    font-weight: 700;
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #b8792a;
    --accent: #ecc365;
    --secondary: #232323;
}

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

body {
    position: relative;
    background: var(--white);
    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,
h4,
h5,
h6 {
    color: #000;
}

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

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

/* 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 */

/* 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: var(--white);
    z-index: 11113;
}

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

/* loader */

/* btn css */

.themeBtn {
    background: var(--primary);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.65em 1.2em;
    border-radius: 5px;
    line-height: normal;
    background-size: 100% 300%;
    background-image: linear-gradient(to top, #ecc365, #814800, #b8792a, #ecc365);
    transition: all 0.4s ease-in-out;
}

.themeBtn:hover {
    background-position: 0% 100%;
    color: var(--white);
}

/* btn css */

/* mouse animation css  */

/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */

/* mouse animation css  */

/* navigation css */

header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    width: 100%;
    padding: 1.25rem 0 0;
    z-index: 111;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 200px;
}

.navbar-nav {
    align-items: center;
    gap: 3.5rem;
    margin-right: 2.375rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.btn-appointment {
    border: 2px solid #ae7466;
    border-radius: 5px;
    padding: 0;
    padding-left: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1.125rem;
    overflow: hidden;
}

.btn-appointment:hover {
    color: var(--white);
    background-color: var(--primary);
}

.btn-appointment i.fas {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 3px;
    overflow: hidden;
    background-color: var(--primary);
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1.25rem;
}

.btn-appointment:hover i.fas {
    animation: tada 1s infinite;
}

.downlink {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.downlink > :is(a, a:hover) {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

/* navigation css */

/* slider css */

.mainSlider {
    /* background: url('../images/main-hero.webp') bottom center/cover no-repeat; */
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
    position: relative;
}

.mainSlider .swiper-wrapper {
    z-index: auto;
}

.mainSlider .swiper-slide {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mainSlider .swiper-slide::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000050;
    z-index: 1;
}

.mainSlider .swiper-slide.swiper-slide-active .imgZoom {
    /*position: absolute;*/
    animation: animbg 5000ms infinite linear;
    /*inset: 0;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*object-fit: cover;*/
}

.zoomAnim {
    animation: animbg 5000ms infinite linear;
}

@keyframes animbg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.25);
    }
}

.heroText,
.bannerForm-wrap {
    position: relative;
    z-index: 1;
}

.mainSlider h1 {
    margin: 0;
    color: var(--white);
    font-size: 9.375rem;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

.mainSlider h4 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 4.75rem;
    font-weight: 600;
    border-top: 2px solid #c8903c;
    border-bottom: 2px solid #c8903c;
    width: fit-content;
    font-family: "Kuunari", sans-serif;
}

.mainSlider h4 span {
    padding-left: 1rem;
}

.mainSlider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.45;
    margin-top: 15px;
    font-size: 1.375rem;
    margin-bottom: 2rem;
    width: 54%;
}

.btngrp {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mainSlider .btngrp {
    /* margin-bottom: 10rem; */
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.btn-phone:hover figure img {
    animation: tada 1s infinite;
}

.btn-phone div {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
}

.btn-phone span {
    color: var(--primary);
    font-size: 1.875rem;
    font-weight: 500;
}

.social-link {
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-link a {
    width: 3.375rem;
    height: 3.375rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--secondary);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
}

.social-link a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.social-link .line {
    width: 1px;
    height: 6.125rem;
    background-color: var(--white);
    display: inline-block;
    border-radius: 2px;
    margin: 8px auto;
}

.social-link .text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    writing-mode: tb;
    letter-spacing: 1px;
}

.mouse-icon {
    width: 1.75rem;
    height: 2.875rem;
    border: 2px solid var(--white);
    border-radius: 14px;
    display: block;
    margin: 0 auto;
}

.mouse-icon span {
    display: block;
    width: 4px;
    height: 12px;
    background-color: var(--white);
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    top: 12px;
    animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-6px);
    }
}

.bannerForm-wrap {
    background-color: #ffffffbd;
    padding: 2rem;
    box-shadow: 0 0 1.25rem 0 #000000ad;
    border-radius: 3.125rem 0.3125rem 0.3125rem 0.3125rem;
    backdrop-filter: blur(4px);
}

.bannerForm-wrap h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.bannerForm .bannerForm-checkbox input {
    width: fit-content;
    margin: 0;
    padding: 0;
    accent-color: var(--primary);
}

.bannerForm-wrap p {
    width: 100%;
    margin: 0 0 1rem;
    color: var(--secondary);
    font-size: 1rem;
    text-align: center;
}

.bannerForm :is(input,textarea) {
    display: block;
    width: 100%;
    padding: 0.65em 1em;
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--black);
    border: 1px solid var(--accent);
    outline: none !important;
    resize: none;
    background-color: var(--white);
}

.bannerForm-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.bannerForm-checkbox label {
    color: var(--secondary);
    font-size: 1rem;
    text-transform: capitalize;
    margin: 0;
}

/* slider css */

/* SEARCH MODULE */

#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: 20px;
}

/* !@SEARCH MODULE */

/* GLOBAL CSS */

.subtitle {
    font-size: 1.875rem;
    text-transform: uppercase;
    color: var(--secondary);
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
}

.subtitle .char {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-280px) rotate(-45deg);
}

.heading:not(.cta-section .heading) .char {
    transform: translateX(-10px);
    opacity: 0;
    visibility: hidden;
}

.heading {
    font-size: 3.75rem;
    color: var(--secondary);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    border-top: 2px solid #c8903c;
    border-bottom: 2px solid #c8903c;
    width: fit-content;
}

.obj {
    position: absolute;
}

/* !@GLOBAL CSS */

/* ABOUT SECTION CSS */

.about-section {
    padding: 4.75rem 0 3rem;
}

.about-figure {
    position: relative;
    border-radius: 50%;
    max-width: 535px;
    aspect-ratio: 1;
    padding: 1.875rem;
}

.about-figure::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed #ba7b2c;
    animation: rotateBorder 20s linear infinite;
}

.about-figure > .obj {
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-31deg);
    width: 620px;
    animation: rotation 5s infinite linear alternate;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.about-figure .img-sm {
    position: absolute;
    max-width: 270px;
    right: -2rem;
    bottom: -3rem;
}

.about-figure .img-sm .obj {
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.about-figure .img-sm img:first-child {
    border: 0.75rem solid var(--white);
    border-radius: 50%;
}

.about-section p {
    font-size: 1.25rem;
    margin-top: 1.75rem;
    color: var(--secondary);
    line-height: 1.65;
}

.icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5rem 2.625rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.icon-list-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.icon-list-item figure img {
    height: 80px;
    object-fit: contain;
}

.icon-list-item p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.3;
    margin-top: 8px;
}

/* !@ABOUT SECTION CSS */

/* FEATURE SECTION CSS */

.feature-section {
    padding: 12.75rem 0 7.625rem;
    background: url("../images/feature-bg.webp");
    background-size: 100% 100%;
    z-index: 1;
}

.feature-card {
    background-color: var(--white);
    padding: 3.375rem 4rem 2.5rem;
    text-align: center;
    margin-top: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.feature-card figure {
    margin-bottom: 1.25rem;
}

.feature-card figure img {
    border-radius: 50%;
    width: 100%;
    object-fit: cover;
}

.feature-card h4 {
    font-size: 1.5625rem;
    font-weight: 500;
    color: #262626;
    margin-bottom: 1.25rem;
}

.feature-card p {
    color: #6e6e6e;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

/* !@FEATURE SECTION CSS */

/* SERVICES SECTION CSS */

.services-section {
    background: url("../images/services-bg.webp") no-repeat;
    background-size: 100% 100%;
    padding: 6.875rem 0 16.875rem;
    margin-top: -1.75rem;
}

.services-section .heading {
    margin-bottom: 4.125rem;
}

.services-item {
    position: relative;
    background-color: #f8f8f8;
    z-index: 0;
}

.services-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #7e7e7e;
    z-index: -1;
}

.services-item + .services-item {
    padding-top: 2.25rem;
}

.services-item .service-content {
    margin-left: 3.75rem;
    position: relative;
}

.services-item .service-content::after {
    content: "";
    position: absolute;
    top: 10px;
    left: -5.5rem;
    width: 1.625rem;
    height: 1.625rem;
    border: 4px solid #bc7e2e;
    background-color: var(--white);
    border-radius: 50%;
}

.services-item .flex-row-reverse .service-content {
    margin-left: 0rem;
}

.services-item .flex-row-reverse .service-content::after {
    left: auto;
    right: -9.5rem;
}

.services-item .flex-row-reverse figure {
    text-align: right;
}

.services-item h4 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.services-item p {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* !@SERVICES SECTION CSS */

/* CTA SECTION CSS */

.cta-section .obj {
    right: 0;
    bottom: 0;
}

.cta-box {
    background: var(--primary) url("../images/cta-bg.webp") center center/cover;
    border-radius: 1.875rem;
    padding: 4.625rem 3.5rem 4.625rem 4.375rem;
    margin-top: -9.25rem;
}

.cta-box .heading {
    text-transform: unset;
    margin-bottom: 1rem;
}

.cta-box .themeBtn {
    background: var(--black);
    color: var(--white);
}

/* !@CTA SECTION CSS */

/* VIDEO SECTION CSS */

.video-section {
    padding: 2.25rem 0 6.625rem;
}

.video-section p {
    font-size: 1.5625rem;
    margin-bottom: 1.75rem;
}

.video-box {
    border-radius: 3.125rem;
    position: relative;
    overflow: hidden;
}

.video-box .control-box {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: start;
    gap: 1.125rem;
}

.video-box .control-box a {
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 50%;
    background-color: var(--white);
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #162537;
    border: 1.375rem solid #bc7e2e;
}

.video-box .control-box a:hover {
    background-color: #bc7e2e;
    color: var(--white);
}

/* !@VIDEO SECTION CSS */

/* FAQ SECTION CSS */

.faq-section {
    padding: 4.5rem 0 2.75rem;
    background: url("../images/faq-bg.webp") no-repeat;
    background-size: 100% 100%;
}

.faq-section .themeBtn {
    background: var(--secondary);
    margin-top: 2.75rem;
}

.accordion .accordion-item {
    margin-top: 1.875rem;
}

.accordion .card-header {
    background: none;
    border: 0;
    padding: 0;
}

.accordion .card-header .btn {
    background-color: var(--white);
    width: 100%;
    border-radius: 50px;
    text-align: left;
    box-shadow: none !important;
    position: relative;
    font-size: 1.5625rem;
    padding: 1.27rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.125rem;
}

.accordion .card-header .btn::after {
    content: "\f062";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    background-color: var(--primary);
    color: var(--white);
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s ease;
}

.accordion .card-header .btn.collapsed::after {
    content: "\f063";
    background-color: var(--secondary);
    transition: 0.5s ease;
}

.accordion .card-header .btn span {
    font-size: 1.375rem;
    padding-right: 1.125rem;
    border-right: 1px solid var(--secondary);
}

.accordion .card-body p {
    color: var(--white);
    font-size: 1.375rem;
    max-width: 720px;
    text-align: left;
    line-height: 1.3;
    margin-left: 3.25rem;
    margin-bottom: 14px;
}

/* !@FAQ SECTION CSS */

/* STATISTICS SECTION CSS */

.statistics-section {
    padding: 2.8125rem 0 7rem;
}

.statistics-card {
    background-color: var(--primary);
    padding: 3.5rem 1rem 3.375rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s ease;
}

.statistics-card p {
    font-size: 1.5625rem;
    margin: 0;
    color: var(--white);
    margin-bottom: -0.75rem;
}

.statistics-card h4 {
    color: var(--white);
    margin: 0;
    font-size: 5rem;
}

.card2 {
    background-color: #f2cc6d;
}

.card3 {
    background-color: #606060;
}

.card4 {
    background-color: #814800;
}

.statistics-section .card-row1 .col-md-3:nth-child(2) .statistics-card {
    background-color: #f2cc6d;
}

.statistics-section .card-row1 .col-md-3:nth-child(3) .statistics-card {
    background-color: #606060;
}

.statistics-section .card-row1 .col-md-3:nth-child(4) .statistics-card {
    background-color: #814800;
}

.statistics-card:hover {
    background-color: var(--black);
}

/* !@STATISTICS SECTION CSS */

/* TESTIMONIAL SECTION CSS */

.testimonial-section {
    padding: 6.375rem 0 7rem;
    background: url("../images/reviewbg.webp") center center;
    background-size: 120% 100%;
}

.reviewSlider {
    margin-top: 3.5rem;
}

.review-card {
    text-align: center;
    padding: 0 1.75rem;
}

.review-card figure {
    margin-bottom: 14px;
}

.review-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.review-card .rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #ebaa57;
}

.reviewSlider .swiper-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.reviewSlider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    background-color: #b7b7b7;
    opacity: 1;
    transition: 0.5s ease;
}

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

.reviewSlider .swiper-slide {
    position: relative;
    transition: 0.5 ease;
    margin-bottom: 2rem;
}

.reviewSlider .swiper-slide-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(0deg,
    rgba(0, 0, 0, 0) 0%,
    #b7b7b7 10%,
    #b7b7b7 90%,
    rgba(0, 0, 0, 0) 100%);
}

.reviewSlider .swiper-slide-active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(0deg,
    rgba(0, 0, 0, 0) 0%,
    #b7b7b7 10%,
    #b7b7b7 90%,
    rgba(0, 0, 0, 0) 100%);
}

/* !@TESTIMONIAL SECTION CSS */

/* BLOG SECTION CSS */

.blog-section {
    padding: 3.125rem 0 8.25rem;
}

.blog-card {
    margin-top: 2.75rem;
}

.blog-card figure {
    margin-bottom: 1.5rem;
}

.blog-card h4 {
    font-size: 1.5625rem;
    font-weight: 500;
    margin-bottom: 1.125rem;
}

.blog-card p {
    color: #5d5d5d;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* !@BLOG SECTION CSS */

/* CONTACT SECTION */

.contact-section {
    padding: 0;
    padding-bottom: 6.5rem;
}

.contact-section .obj {
    right: -2.25rem;
    top: -10.375rem;
    z-index: 2;
}

.contact-box {
    background: url("../images/contactbg.webp") var(--primary) center center/cover;
    padding: 3.125rem 5rem 3rem;
    border-radius: 1.375rem;
    margin: 0 -4.5rem;
}

.contact-form .row {
    margin-top: 3rem;
    gap: 3rem 0;
}

.contact-form .form-control {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--white);
    background-color: transparent;
    color: var(--white);
    padding: 12px;
}

.contact-form .form-control::placeholder {
    color: var(--white);
}

.contact-form .form-control:focus {
    box-shadow: none;
}

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

.cta-box .themeBtn:hover,
.faq-section .themeBtn:hover,
.contact-form .themeBtn:hover {
    background: var(--white);
    color: var(--secondary);
}

/* !@CONTACT SECTION */

/* FOOTER */

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

footer h3 {
    font-size: 1.5625rem;
    margin-bottom: 8px;
    color: var(--white);
    text-transform: uppercase;
}

footer a {
    color: var(--white);
    font-size: 1.0625rem;
}

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

.quickList li + li {
    margin-top: 4px;
}

.calFoter li {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.calFoter li + li {
    margin-top: 1.375rem;
}

.calFoter li strong {
    font-weight: 400;
    font-size: 1rem;
}

footer p {
    color: var(--white);
    margin-top: -5px;
    margin-bottom: 1rem;
}

.newsletterForm {
    text-align: right;
}

.newsletterForm .form-control {
    margin-bottom: 12px;
    height: 3.125rem;
    border-radius: 0;
    border: 0;
    color: var(--black);
}

.newsletterForm .form-control:focus {
    box-shadow: none;
}

.copyRight {
    margin-top: 3.75rem;
    border-top: 2px solid #dfdfe0;
    padding: 2.75rem 0;
}

.copyRight p {
    margin: 0;
    color: var(--white);
    font-size: 1.375rem;
    text-align: center;
}

footer .social-link {
    position: static;
    width: 100%;
    flex-direction: row;
    justify-content: end;
    transform: translateY(0);
}

/* !@FOOTER */

/* ======================= INNER PAGES =======================  */

.innerpage-main {
    height: 700px;
    overflow: hidden;
    padding: 0;
}

.innerpage-main img {
    object-fit: cover;
}

.innerpage-main .innerpage-main__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: #00000040;
}

.innerpage-main h1 {
    color: var(--white);
    font-size: 6.125rem;
    text-transform: uppercase;
}

/* ABOUT PAGE */

.icon-list.inner {
    margin-top: 7rem;
    gap: 6rem 0;
}

.icon-list.inner .icon-list-item {
    width: 20%;
}

.about-section.inner {
    padding-top: 0;
    padding-bottom: 12rem;
}

.about-section.inner .about-figure {
    text-align: right;
    margin-left: auto;
}

.about-section.inner .about-figure::before {
    display: none;
}

.about-section.inner .about-figure .img-sm {
    left: -12rem;
    right: auto;
}

/* !@ABOUT PAGE */

/* SERVICES PAGE */

.inner-services {
    padding: 7rem 0 13.625rem;
}

.inner-services .row + .row {
    margin-top: 1.875rem;
}

.serv-img {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    border-radius: 50%;
}

.services-text-content {
    /* height: 100%; */
    /* background-color: #f7f7f7; */
    /* border: 1px solid #c4c4c4; */
    padding: 2.625rem 3.125rem;
    /* overflow: hidden; */
}

.services-text-content h4 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    border-top: 2px solid #c8903c;
    border-bottom: 2px solid #c8903c;
    width: fit-content;
}

.services-text-content p {
    font-size: 1.125rem;
    color: #5d5d5d;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* !@SERVICES PAGE */

/* BLOG PAGE */

.blog-option {
    margin-top: 2.25rem;
}

.blog-option + .blog-option {
    margin-top: 5.625rem;
}

.blog-option figure {
    margin-bottom: 14px;
}

.blog-option h4 {
    font-size: 3.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-option p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #5d5d5d;
}

/* !@BLOG PAGE */

/* CONTACT PAGE */

.contact-inner {
    padding: 5rem 0 11.75rem;
}

.contact-item {
    text-align: center;
    padding: 1rem;
}

.contact-item figure {
    margin-bottom: 1rem;
    height: 114px;
    display: grid;
    place-items: center;
}

.contact-item a {
    display: flex;
    flex-direction: column;
    color: var(--secondary);
    font-size: 1.875rem;
    font-family: "Kuunari", sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

.contact-inner .col-md-4 + .col-md-4 {
    border-left: 2px solid #c8903c;
}

.contact-item a:hover span {
    color: var(--primary);
}

.map {
    margin: 0 -4.5rem;
    margin-top: 3.5rem;
    border-radius: 1.25rem;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 800px;
    display: block;
}

/* !@CONTACT PAGE */

/* TEAM PAGE */

.teams-section {
    padding: 5rem 0 9.125rem;
}

.teams-section .row {
    gap: 4.75rem 0;
    margin-top: 2.25rem;
}

.teams-card {
    height: 100%;
    text-align: center;
    padding-bottom: 1rem;
}

.teams-card figure {
    width: 100%;
    height: 460px;
    border-radius: 2.75rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.teams-card h3 {
    font-size: 2.125rem;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.teams-card h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
    transition: all 300ms ease-in-out;
    background: var(--primary);
    padding: 1rem 0;
}

.teams-card p {
    width: 80%;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    min-height: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.teams-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.teams-card .themeBtn {
    margin-top: auto;
}

.teams-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.teams-card:hover .subText {
    transform: translateY(-3.5rem);
}

.teams-card:hover figure img {
    transform: scale(1.1);
}

/* !@TEAM PAGE */

/* TEAM DETAILS PAGE */

.team-detail {
    padding: 8.5rem 0 3.875rem;
}

/* !@TEAM DETAILS PAGE */


.about-figure img:nth-child(2),
.about-figure .img-sm img:first-child {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}


.review-card p span {
    appearance: none !important;
    background: unset !important;
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
}

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

.mainSlider .swiper-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100vh;
}

.mainSlider .content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    border: 1px solid var(--accent);
}

.select2-container {
    width: 100% !important;
    margin: 0 0 1rem;
}

.navbar-brand>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
