@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=Marcellus&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
    --primary-color: #242a56;
    --secondary-color: #223e73;
    --territory-color: #86a3cf;

    --body-color: #333333;
    --primary-light: #f8fcff;
    --secondary-light: #edf5ff;
    --white: #fff;
    --facebook: #4267B2;
    --twitter: #00acee;
    --linkedin: #0e76a8;
    --youtube: #FF0000;
    --whatsapp: #25D366;
    --instagram: #c92bb7;

    --header-height: 61px;
    --borderRadius: 5px;

    --poppins: "Poppins", sans-serif;
    --marcellus: "Marcellus", serif;
}

/* ----------------------------------------------------
bg background
 ---------------------------------------------------- */
.bg-white {
    background-color: #fff;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-territory {
    background-color: var(--territory-color) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-secondary-light {
    background-color: var(--secondary-light) !important;
}

/* ----------------------------------------------------
text color
 ---------------------------------------------------- */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

.text-secondary-light {
    color: var(--secondary-light) !important;
}

/* ----------------------------------------------------
social icons
---------------------------------------------------- */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.social-links a i {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 300ms ease-in-out;
    text-align: center;
}

.social-links a i.sm {
    width: 32px;
    height: 32px;
}

.social-links a .bi-facebook {
    background-color: var(--facebook);
}

.social-links a .bi-linkedin {
    background-color: var(--linkedin);
}

.social-links a .bi-twitter-x {
    background-color: var(--twitter);
}

.social-links a .bi-youtube {
    background-color: var(--youtube);
}

.social-links a .bi-whatsapp {
    background-color: var(--whatsapp);
}

.social-links a .bi-instagram {
    background-color: var(--instagram);
}

.social-links a:hover i {
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.social-links a:hover .bi-facebook {
    color: var(--facebook);
}

.social-links a:hover .bi-linkedin {
    color: var(--linkedin);
}

.social-links a:hover .bi-twitter-x {
    color: var(--twitter);
}

.social-links a:hover .bi-youtube {
    color: var(--youtube);
}

.social-links a:hover .bi-whatsapp {
    color: var(--whatsapp);
}

.social-links a:hover .bi-instagram {
    color: var(--instagram);
}

/* social icons */

/* -----------------------------------------------------
back to top button
----------------------------------------------------- */
#backToTop {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 17px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    z-index: 999;
    color: #fff;
    border-radius: var(--borderRadius);
}

#backToTop:hover {
    background-color: var(--secondary-color);
}

/* -----------------------------------------------------
form
----------------------------------------------------- */
.form-group input::placeholder {
    color: var(--body-color);
    opacity: 1;
}

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


/* -----------------------------------------------------
swiper
----------------------------------------------------- */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------
swiper-pagination
------------------------------------------ */
.swiper-pagination {
    text-align: center;
    margin-top: 15px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
    background: #ffb800;
    transform: scale(1.4);
}

/* ----------------------------------------------------
 swiper-button-next, 
 swiper-button-prev
 ---------------------------------------------------- */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-light);
    color: var(--primary-color);
    border-radius: var(--borderRadius);
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #ffb800;
    transform: scale(1.1);
} */

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* ----------------------------------------------------
Custom Scroll
---------------------------------------------------- */
.scroller {
    height: 300px;
    overflow: auto;
}

.scroller::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #adadad;
    border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
    background: #2957a4;
    border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Custom Scroll */

/* -------------------------------------------------
 General Styling
 ------------------------------------------------- */
body {
    font-family: var(--poppins);
}

a {
    text-decoration: none;
}


.padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


ul.list {
    padding-left: 20px;
    margin-left: 0px;
    /* border: 1px solid red; */
}

ul.list li {
    font-family: var(--marcellus);
    color: var(--primary-color);
    font-size: 1.1rem;
    /* line-height: 1.3; */
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* .list li:last-child {
    line-height: normal;
} */


/* --------------------------------------------------
heading
--------------------------------------------------  */
.heading {
    margin-bottom: 60px;
}

.heading h2 {
    font-size: 2.6rem;
    /* line-height: 42px; */
    color: var(--primary-color);
    margin: 0;
    position: relative;
    font-family: var(--marcellus);
}

.heading h6 {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: var(--marcellus);
    letter-spacing: 2px;
}

/* .heading h2::before {
    position: absolute;
    content: "";
    background-image: url(../icons/title-element.svg);
    height: 100%;
    width: 100%;
    top: 100%;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
} */

/* -------------------------------------------------
button
------------------------------------------------- */
.readmore {
    gap: 5px;
}

.readmore .button {
    background-color: var(--primary-color);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    font-weight: 500;
    border-radius: var(--borderRadius);
    font-size: 14px;
    padding: 9px 13px;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    gap: 5px;
    letter-spacing: 2px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
}


.readmore .button:hover {
    background-color: var(--secondary-color);
}

.readmore .button img {
    filter: invert(0);
}

.readmore .button:hover img {
    filter: invert(1);
}

/* white */
.readmore .button.white {
    background-color: var(--white);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.readmore .button.white:hover {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

/* outline */
.readmore .button.outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.readmore .button.outline:hover {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}



/* --------------------------------------------------
modal
-------------------------------------------------- */
.modal-backdrop.show {
    opacity: 1;
    /* background: rgb(0 10 12 / 95%); */
    /* backdrop-filter: blur(5px); */
    background-color: var(--primary-color);
}

.modal-content {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
}

button.close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    opacity: 1;
    text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    color: #fff;
    opacity: 1;
    background-color: var(--secondary-color);
}

.modal-content {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1rem;
    border-radius: 1rem;
}

.modal-dialog {
    max-width: 600px;
}

.modal-content .modal-header {
    padding: 0;
    border: none;
}

.modal-content button.close {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    color: var(--white);
    outline: none;
    border: none;
    background-color: var(--primary-color);
    opacity: 1;
    border-radius: 4px;
    border: 1px solid var(--white);
}

.modal-header .close {
    color: #fff;
}

.modal-header {
    background: none;
    border: none;
}

.modal-content .popUpTitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.8rem;
    font-family: var(--marcellus);
    letter-spacing: 2px;
    text-align: center;
    /* border: 1px solid red; */
}

.modal-body {
    padding: 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
}

.modal-body .form-control {
    background-color: transparent;
    color: var(--primary-color);
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--secondary-color);
    padding: 1rem 0px;
    font-size: 14px;
    border-radius: 0;
}

.form-control::placeholder {
    color: var(--body-color);
    font-family: var(--marcellus);
}

.form-control:focus::placeholder {
    color: var(--primary-color);
}

/* Jab user type kare (value ho to placeholder gayab hota hi hai) */
/* .form-control:not(:placeholder-shown)::placeholder {
    color: red;
} */

.modal .readmore .button {
    /* background-color: var(--white); */
    /* color: var(--primary-color); */
    font-size: 12px;
    margin-top: 1rem;
}

/* .modal .readmore .button:nth-child(2) {
    border: 1px solid red;
    color: var(--white);
    background: linear-gradient(195deg, #53d161, #23b73c);
} */

/* ---------------------------------------------------
 enqueryForm
 ---------------------------------------------------  */
/* .enqueryForm {
    background-color: #fff;
    color: var(--body-color);
    text-align: center;
    transition: all 300ms ease-in-out;
    z-index: 99;
    padding: 1rem;
}

.form-close {
    position: absolute;
    right: -2px;
    top: 0;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: maroon;
    color: #fff;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.form-close:hover {
    background: var(--secondary-color);
}

.enqueryForm .form-tag {
    font-size: 14px;
}

.enqueryForm h6,
.enqueryForm .form-bhk {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--body-color);
}

.enqueryForm .form-bhk {
    padding: 0 0 0.5rem 0;
    border-bottom: solid rgb(0 0 0 / 10%);
    border-width: 1px 0;
    font-family: var(--cinzel);
}

.enqueryForm .form-group {
    margin-bottom: 10px;
}

.enqueryForm .form-control,
.modal-body .form-control {
    background-color: transparent;
    color: var(--white);
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
    padding: 1rem 0px;
    font-size: 14px;
    border-radius: 0;
}

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

.enqueryForm span {
    margin-top: 10px;
    display: block;
    font-size: 13px;
}

.enqueryForm .freePick {
    font-size: 11px;
} */

/* ------------------------------------------------
form
------------------------------------------------ */

/* -------------------------------------------------
header
------------------------------------------------- */
.header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 998;
    padding: 10px 0;
    background-color: #fff;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
}

.header .inner {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    width: 200px;
    text-transform: uppercase;
    z-index: 2;
    transition: all 300ms ease-in-out;
}

.header .logo img {
    width: 100%;
}


/* .header .logo span {
    font-size: 1.9rem;
    color: var(--primary-color);
} */


.header .nav {
    gap: 1rem;
}

.header .nav>ul {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
}

.header .nav>ul>li>a {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 300ms ease-in-out;
    padding: 0.8rem;
    color: var(--primary-color);
    z-index: 1;
    font-family: var(--marcellus);
    font-size: 1.1rem;
}

.header .nav>ul>li:hover>a {
    color: var(--body-color);
}

.header .nav ul li:hover>a::before {
    width: 100%;
}

/* .header .topCTC {
    display: flex;
    align-items: center;
} */



/* .header .topCTC a {
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(--cinzel);
    color: var(--white);
    font-weight: 500;
    align-items: center;
    display: flex;
    gap: 6px;
} */

/* .header .topCTC a:first-child {
    border-right: 1px solid var(--body-color);
    color: var(--body-color);
    font-weight: 600;
} */

/* .header .topCTC a i {
    display: flex;
    align-items: center;
    color: var(--body-color);
}

.header .topCTC a img {
    border-right: 1px solid #c5c5c5;
    width: 33px;
    margin-right: 3px;
    padding-right: 11px;
} */

.header.fixed .menuBtn span::before {
    background: var(--body-color);
}

.menuBtn {
    width: 50px;
    height: 42px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    position: relative;
    cursor: pointer;
    border-radius: var(--borderRadius);
    background-color: var(--secondary-color);
}

.header.fixed .menuBtn {
    width: 40px;
    height: 40px;
}

.menuBtn div {
    position: relative;
    width: 50%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    transition: all 300ms ease-in-out;
}

.menuBtn span {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    margin: 8px 0;
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
    -webkit-transform: rotate(45deg) translate(4px, 4px);
    transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
    right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
    -webkit-transform: rotate(-45deg) translate(4px, -5px);
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ----------------------------------------------------------
menuContainer 
---------------------------------------------------------- */
.menuContainer {
    position: fixed;
    inset: 0;
    padding-top: 100px;
    z-index: 996;
    background-color: var(--primary-color);
    /* background-color: rgb(0 123 255 / 13%); */
    backdrop-filter: blur(5px);
    display: none;
}

.menuContainer .inner {
    padding: 5px 15px;
    width: 100%;
    height: 100%;
    visibility: hidden;
    /* background: var(--primary-color); */
    /* background: radial-gradient(circle at 50% -10%, var(--secondary-color), var(--primary-color)); */
    /* box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%); */
    transition: all 300ms ease-in-out;
    margin-top: 3%;
    margin-left: 4%;
}

.header.fixed+.menuContainer {
    padding-top: calc(1rem + 80px);
}

.menuContainer.active .inner {
    visibility: visible;
}

.menuContainer a {
    color: #fff;
    transition: all 300ms ease-in-out;
}

.mainMenu ul li:last-child a {
    padding-bottom: 0;
}


.mainMenu li:not(:last-child) a {
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu a {
    padding: 1rem 0;
    display: block;
    font-family: var(--marcellus);
    position: relative;
    text-transform: uppercase;
}

/* .mainMenu li.active>a,
.mainMenu li:hover>a {
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
} */

.mainMenu a i {
    font-size: 75%;
    position: absolute;
    right: 0;
    top: 50%;
    line-height: 0;
    transition: all 300ms ease-in-out;
}

.mainMenu li.active>a i,
.mainMenu li:hover>a i {
    right: 10px;
}

.mainMenu li.active>a i {
    transform: rotate(540deg);
}

.menuDrop {
    padding: 5px 15px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    display: none;
}

.mainMenu ul ul li:last-child a {
    border-bottom: 0;
}

/*header*/

.header .rightmenubox {
    gap: 1rem;
    display: flex;
    align-items: center;
}

.header .rightmenubox .button {
    border-radius: var(--borderRadius);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: transparent;
    letter-spacing: 2px;
}


/* -----------------------------------------------------------
 banner
 ----------------------------------------------------------- */
.banner {
    margin-top: 100px;
    height: calc(80vh - 100px);
    background: var(--territory-color);
    position: relative;
    z-index: 1;
    display: flex;
    /* padding: 0 4rem 4rem 4rem; */
    align-items: center;
    justify-content: center;
}

.banner::before {
    content: '';
    position: absolute;
    background: var(--primary-light);
    inset: 2rem;
    border-radius: 2rem;
    z-index: -1;
}

/* .banner img {
    border-radius: 4rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.banner .inner {
    max-width: 80%;
}

.banner .vdo {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    box-shadow: rgb(134 163 207) 10px 10px;
}

.banner .vdo video {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.banner .heroContent {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.banner .heroContent h1 {
    /* color: var(--primary-color); */
    font-size: 2.5rem;
    line-height: 1.3;
    /* font-weight: 600; */
    font-family: var(--marcellus);
}

.banner .heroContent .heroName {
    color: var(--primary-color);

}

.banner .heroContent p {
    padding: 2rem 0;
}

.banner .readmore {
    margin-top: 1rem;
}


/* .banner  */

.banner .carousel-control-next, 
.banner .carousel-control-prev{
    opacity: 0.7;
}


.banner .carousel-control-next-icon,
.banner .carousel-control-prev-icon {
    border-radius: var(--borderRadius);
    background-color: var(--territory-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.banner .carousel-control-prev-icon,
.banner .carousel-control-next-icon {
    width: 40px;   
    height: 40px;  
    background-size: 1.1rem;
}


/* -----------------------------------------
herobox
  ----------------------------------------- */


/* -----------------------------------------
herobox
  ----------------------------------------- */



/* ---------------------------------
 sticky form
 --------------------------------- */
/* .stickyForm {
    width: 340px;
    position: absolute;
    right: 20px;
    bottom: 1rem;
    padding: 1rem;
    background-color: #fff;
    color: var(--body-color);
    text-align: center;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
    transition: all 300ms ease-in-out;
    z-index: 99;
}

.stickyForm .formText {
    margin-bottom: 1rem;
}

.stickyForm .formText .head {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.stickyForm .form-group {
    margin-bottom: 10px;
}

.stickyForm .form-control,
.modal-body .form-control {
    border-bottom: 2px solid #eaeaea;
    background-color: #f1f1f1;
    padding: 8px 10px;
    font-size: 14px;
    color: var(--body-color);
    border-radius: 0;
}

.stickyForm .readmore {
    display: flex;
}

.stickyForm .readmore .button:last-child {
    background: linear-gradient(195deg, #53d161, #23b73c);
    border: 1px solid var(--whatsapp);
    color: var(--white);
}

.stickyForm .readmore .button:last-child:hover {
    border: 1px solid var(--primary-color);

}

.stickyForm .readmore .button:last-child a {
    color: var(--white);
} */

/*------------------------------------------------ 
overview
------------------------------------------------ */
.overview {
    position: relative;
    overflow: hidden;
}

.overview::before {
    content: "OVERVIEW";
    position: absolute;
    left: 50%;
    bottom: -12%;
    /* transform: translate(-50%, -50%) rotate(-45deg); */
    transform: translateX(-50%);
    font-weight: 700;
    letter-spacing: 10px;
    color: rgb(181 181 181 / 8%);
    white-space: nowrap;
    pointer-events: none;
    font-size: 19rem;
    z-index: 0;
}

/* .overview::before {
    position: absolute;
    content: '';
    inset: 0;
    background-image: url('../images/overview.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    z-index: -1;
    background-size: 600px auto;
    } */


.overview .overview-img {
    position: absolute;
    bottom: 0;
    max-height: 500px;
    max-width: 100%;
}


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

.overview .innerContent {
    text-align: center;
}

.overview .innerContent h3 {
    font-family: var(--marcellus);
    font-size: 1.8rem;
}


.overview .innerContent p {
    font-weight: 400;
    text-align: center;
}


/* -----------------------------------------------
iconInnerbox
----------------------------------------------- */
.iconInnerbox {
    padding-top: 2rem;
}

.iconInnerbox .iconbox .icon {
    width: 60px;
    padding: 1rem;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondary-color);
    margin: 0 auto;
}

.iconInnerbox .iconbox .icon img {
    width: 100%;
    /* filter: invert(1); */
}

.iconInnerbox .iconbox h6 {
    margin-top: 1.4rem;
    text-transform: capitalize;
    text-align: center;
    font-size: 1rem;
    display: block;
    color: var(--primary-color);
    /* border: 1px solid red; */
}

.iconInnerbox .iconbox {
    padding: 1.6rem;
    /* border: 1px solid red; */
}



/* -------------------------------------------
 iconSction
 ------------------------------------------- */
/* .iconSction {
    overflow: hidden;

}

.iconSction .iconInnerbox {
    padding-top: 0;
}

.iconSction .iconbox .icon {
    border: 1px solid #ffffff4f;
}

.iconSction h6 {
    color: var(--white) !important;
    text-align: center;
}

.iconSction .iconbox span {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--white) !important;
    text-align: center !important;
    display: block;
} */


/* -------------------------------------------
 buildSction
 ------------------------------------------- */
.buildSction {
    overflow: hidden;
}

.buildSction .buildInnerbox .imgbox {
    background-color: var(--primary-light);
    border-radius: var(--borderRadius);
    height: 100%;
}

.buildSction .buildInnerbox .imgbox .img {
    width: 100%;
    position: relative;
}

.buildSction .buildInnerbox .imgbox .img img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--borderRadius);
}

.buildSction .buildInnerbox .imgbox .title {
    position: absolute;
    background-color: #00000067;
    color: var(--white);
    bottom: 0;
    padding: 0.7rem 0;
    width: 100%;
    left: 0;
    display: flex;
    right: 0;
    justify-content: center;
    text-transform: uppercase;
}

.buildSction .buildInnerbox .imgbox .title h6 {
    letter-spacing: 2px;
    /* font-weight: 600; */
    font-size: 1.2rem;
    font-family: var(--marcellus);
}

.buildSction .buildInnerbox .imgbox .content {
    padding: 1rem;
    /* text-align: justify;
    text-align-last: center; */
}

.buildSction .buildInnerbox .imgbox span {
    padding: 1rem 0;
    color: var(--primary-color);
    text-align: center;
}

.buildSction .readmore {
    margin-top: 2rem;
}

/* -------------------------------------------
product-section
 ------------------------------------------- */
.product-section {
    z-index: 1;
    padding-bottom: 0;
}

/* Products section */
.productGrid {
    align-items: flex-start;
    /* border-top: 1px solid var(--primary-color); */
    display: grid;
    grid-template-columns: auto auto auto;
    position: relative;
}

.media-wrapper {
    /* border-right: 1px solid var(--primary-color); */
    height: calc(100vh - var(--header-height));
    position: sticky;
    top: var(--header-height);
    width: calc(50vw - .5px);
    overflow: hidden;
}

.media-wrapper figure {
    /* padding: 32px 32px 32px 5vw; */
    position: absolute;
}

.media-wrapper figure:nth-child(1) {
    z-index: 9;
}

.media-wrapper figure:nth-child(2) {
    z-index: 8;
}

.media-wrapper figure:nth-child(3) {
    z-index: 7;
}

.media-wrapper figure:nth-child(4) {
    z-index: 6;
}

.media-wrapper figure:nth-child(5) {
    z-index: 5;
}

/* .text-wrapper {
  width: calc(45vw - .5px);
} */

.text-wrapper .slide-item {
    align-items: center;
    display: grid;
    height: 75vh;
    min-height: 700px;
    /* padding-left: calc(8.4375vw - .65625px); */
    /* padding-right: calc(8.4375vw - .65625px); */
    padding-left: 7rem;
    padding-right: 7rem;
}

/* .text-wrapper .slide-item:first-child {
    margin-top: 25vh;
} */


.text-wrapper .slide-item:nth-child(1) {
    height: 100%;
    background-color: #eff6ff;
}

.text-wrapper .slide-item:nth-child(2) {
    height: 100%;
    background-color: #fff;
}

.text-wrapper .slide-item:nth-child(3) {
    height: 100%;
    background-color: #eff6ff;
}

.text-wrapper .slide-item:nth-child(4) {
    height: 100%;
    background-color: #fff;
}

.text-wrapper .slide-item:nth-child(5) {
    height: 100%;
    background-color: #eff6ff;
}

.text-wrapper .slide-item p {
    color: var(--primary-color);
    font-family: var(--marcellus);
    font-size: 1.1rem;
}

/* .text-wrapper .slide-item:first-child {
    margin-top: 25vh;
    height:100%;
    background-color: red;
} */

.productGrid .lines {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-height));
    justify-content: center;
    position: sticky;
    right: 0;
    row-gap: 8px;
    top: var(--header-height);
    width: 5vw;
}

.productGrid .lines .line {
    background-color: rgb(0 0 0 / 25%);
    height: 2px;
    transition: background-color .45s cubic-bezier(.33, 1, .68, 1) 0s,
        width .45s cubic-bezier(.33, 1, .68, 1) 0s;
    width: 28px;
}

.productGrid .lines .line.active-line {
    background-color: var(--body-color);
    width: 40px;
}

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

.product-section .list li:last-child {
    line-height: normal;
}


/* Products section */

/* -------------------------------------------
productMobile
 ------------------------------------------- */
.productMobile {
    display: none;
}


.productMobile .heading {
    margin-bottom: 0;
    text-align: start;
}


/* --- accordion --- */
.productMobile .accordion {
    padding: 1rem;
    background-color: transparent;
}

.accordion-item,
.accordion-button {
    background-color: transparent;
}

.accordion-item {
    border-bottom-color: #dcdff1;
}

.accordion-button {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 300ms ease-in-out;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-light);
    box-shadow: none;
    border-bottom: 1px solid #dcdff1;
    /* font-size: 1rem; */
    /* font-weight: 700; */
}


.accordion-body {
    background-color: var(--primary-light);
}

.accordion-body p {
    /* font-size: 0.875rem; */
    font-weight: 500;
    text-align: start;
    font-family: var(--marcellus);
    color: var(--primary-color);
}



.productMobileZones ul {
    display: flex;
    align-items: center;
    row-gap: 1rem;
    flex-wrap: wrap;
    padding-left: 1rem;
    /* border: 1px solid red; */
}

.mobileCollapseBox .btmTitlebox {
    position: absolute;
    left: 10px;
    bottom: 10px;
}


.productMobileImg img {
    width: 100%;
}

/* --- accordion --- */


/* -------------------------------------------
 testiSection
 ------------------------------------------- */
.testiSection {
    overflow: hidden;
}

.testiSection .testimSlider {
    height: 440px;
}

.testiSection .testim-card.swiper-slide {
    height: auto;
}

.testiSection .testim-card .inner {
    color: inherit;
    outline: none;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: var(--borderRadius);
    z-index: 1;
}

.testiSection .testim-card .inner::before {
    position: absolute;
    content: "";
    inset: 0 0 0 10%;
    /* background: rgba(255, 241, 214, 1); */
    background: var(--primary-light);
    z-index: -1;
}

.testiSection .testim-card .inner .testim-header {
    max-width: 130px;
    flex: 0 0 130px;
    padding: 1.8rem;
    background-color: var(--primary-light);
    box-shadow: rgba(100, 100, 111, 0.212) 0px 7px 29px 0px;
    border-radius: var(--borderRadius);
}

.testiSection .testim-card .inner .client-img {
    border-radius: var(--borderRadius);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.testiSection .testim-card .inner .testimText {
    max-width: calc(100% - 160px);
    flex: 0 0 calc(100% - 160px);
    padding: 2rem;
}

.testiSection .testim-card .inner p {
    font-size: 14px;
    text-align: start;
}

.testiSection .testim-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.testiSection .testim-nav .swiper-button-prev,
.testiSection .testim-nav .swiper-button-next {
    position: static;
    margin: 0 10px;
    transform: none;
    transform: rotate(90deg);
}



/* -------------------------------------------
 brandLogo
 ------------------------------------------- */
.brandLogo {
    overflow: hidden;
}

.brandbox {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 10px 20px; */
}

.brandbox img {
    max-height: 80px;
    object-fit: contain;
}

/* ------------------------------------------------
 enquiryWrapper
 ------------------------------------------------ */
/* Consultation Form */
.formContainer {
    background-color: #fff;
    color: var(--body-color);
    position: relative;
    z-index: 1;
    border-radius: 1rem;
}

.enquiry-form .inner {
    padding: 4rem;
}

.enquiry-form .form-img {
    width: 100%;
}

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

.enquiry-form .inner .button {
    margin-top: 1rem;
}

/* Consultation Form */


/* ------------------------------------------------
 footer
 ------------------------------------------------ */
.footer {
    border-top: var(--border);
    border-bottom: var(--border);
    position: relative;

}

/* .footer::before {
  content: "";
  position: absolute;
  background: url(../images/bgImg.png) no-repeat bottom center;
  background-size: cover;
  inset: 0;
  z-index: 9;
  opacity: 0.02;
  filter: brightness(0) invert(0);
  z-index: -1;
} */

.footer .insideBox .smallHeading {
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
}

footer .list {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.foot-address .list li {
    color: var(--white);
}

.foot-address .list li {
    font-size: .875rem;

}

.footer a {
    display: inline-block;
    color: #fff !important;
    font-size: .875rem;
    /* padding: 5px 0; */
}

.footer p {
    font-size: .875rem;
    color: var(--white);
}

.footer a:hover {
    color: var(--secondary-color-light);
}

.footer-links {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.footerSocial {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.footerSocial i.icon-circular {
    font-size: 1.6rem;
}

.footer-bottom {
    padding: 10px 0;
    color: var(--secondary-color-light);
    background-color: var(--white);
    color: var(--body-color);
    border-top: var(--border);
}

.copyrights {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.copyrights p {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: #fff;
    font-size: 12px;
}

.copyrights p img {
    width: 13px;
    margin-left: 5px;
}

/*Footer*/

/* ---------------------------------------------------
footer-enquiryBtn
--------------------------------------------------- */
.footer-enquiryBtn {
    position: fixed;
    bottom: 2px;
    left: 2px;
    right: 2px;
    display: flex;
    justify-content: space-between;
    z-index: 99;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    text-align: center;
}

.footer-enquiryBtn a {
    color: var(--white);
    text-align: center;
    display: block;
    width: calc(100% / 2);
    padding: 8px 5px;
    border: 1px solid rgb(0 0 0 / 15%);
    border-left: 0;
}

.footer-enquiryBtn a.whatsCall {
    background: linear-gradient(45deg, #0db634, #015c16);
    border: 0;
    color: #fff;
}