@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&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 {
    --main: #2928ce;
    --light: #e8e4f0;
    --yellow: #ffda00;
}

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: auto;
    min-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.share_blogs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3vh;
    border-radius: 50%;
    color: black;
    cursor: pointer;
    right: 2vh;
    top: 2vh;
    height: 5vh;
    width: 5vh;
    background-color: #037dff17;
    backdrop-filter: blur(11px);
    margin-right: 2vh;
}

.body_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.navbar_container {
    /* height: 10vh; */
    width: 100%;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navbar_container .main_container {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.navbar_container .main_container .section1 {
    width: 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.navbar_container .main_container .section1 .logo {
    height: 100%;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.8vh 0;
}

.navbar_container .nav_active {
    text-decoration: underline;
    text-underline-offset: 0.5vh;
}

.navbar_container .main_container .section2 span.active a {
    color: var(--main);
}

.navbar_container .main_container .section3 {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    display: none;
}

.navbar_navs {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.navbar_container .main_container .section2 {
    font-weight: 500;
    color: black;
    font-size: 1.8vh;
    text-transform: uppercase;
    width: 83%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar_body {
    position: absolute;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 10vw;
    /* top: 10vh; */
}

.navbar_body span {
    display: flex;
    width: 100%;
    height: 5vh;
    justify-content: flex-start;
    padding: 0 1rem;
    align-items: center;
    text-align: left;
    z-index: 999;
    background: white;
}

.navbar_body span a {
    text-align: left;
    width: 100%;
}


.calculator_body span,
.more_body span,
.blogs_body span,
.projects_body span,
.appliances_body span,
.wardrobe_body span,
.interior_body span,
.kitchen_body span,
.about_body span {
    width: 100%;
    text-align: center;
}

.calculator_body span:hover,
.more_body span:hover,
.blogs_body span:hover,
.projects_body span:hover,
.appliances_body span:hover,
.wardrobe_body span:hover,
.interior_body span:hover,
.kitchen_body span:hover,
.about_body span:hover {
    background: var(--main);
    color: white;
}

.bold {
    font-weight: bold;
}

.navbar_container .main_container .section2 span.active {
    color: var(--main);
}

.banner_container {
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner_container .main_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("<?=$cdn?>/assets/img/new2/17.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blur_background {
    width: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    backdrop-filter: blur(20px);
}

.fa-solid.fa-caret-down {
    /* height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.banner_container .main_container2 {
    background-image: url("<?=$cdn?>/assets/img/new/20.jpg");
}

/* .banner_container .main_container_index {
    background-image: url("<?=$cdn?>/assets/img/new/19.jpg");
} */

.banner_container .main_container_wardrobe {
    background-image: url("<?=$cdn?>/assets/img/dreamkitchen-wardrobe/1.png");
}

.banner_container .main_container_appliance {
    background-image: url("<?=$cdn?>/assets/img/dreamkitchen-kitchen-appliances/1.jpg");
}

.banner_container .modal_container {
    height: 100%;
    width: 100%;
    background: white;
    padding: 1vw 1vw;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.banner_container .modal_container .flex_element {
    width: 100%;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1vw;
    position: relative;
}

.banner_container .modal_container .flex_element .flag_icon {
    height: auto;
    width: 3vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
    position: absolute;
    left: 1.5vw;
}

.banner_container .modal_container .flex_element .flag_icon img {
    height: auto;
    width: 70%;
    /* position: absolute; */
}

.banner_container .modal_container .flex_element input {
    padding-left: 6vw;
}

.modal_container .whatsapp {
    font-size: 1.2vh;
    display: grid;
    width: 100%;
    grid-template-columns: 10% 80% 10%;
    place-items: center;
}

.modal_container .whatsapp {
    font-size: 1.2vh;
    display: grid;
    width: 100%;
    grid-template-columns: 10% 80% 10%;
    place-items: center;
}

.whatsapp i {
    font-size: 4vh;
    color: green;
}

.modal_container input[type="checkbox"] {
    height: 2.5vh;
    width: 2.5vh;
    accent-color: var(--main);
}

.custom_btn2 {
    width: 100%;
    height: 6vh;
    color: white;
    border: none;
    outline: none;
    text-transform: uppercase;
    font-size: 2vh;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    background: var(--main);
    border-radius: 1.2vh;
}

.modal_container input {
    height: 5vh;
    width: 100%;
    padding-left: 8px;
    border-radius: 6px;
    border: 1px solid lightgray;
}

.banner_container .overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.65);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}


.banner_container .overlay3 .container h2.heading {
    padding-left: 3vw;
}

.about_banner_container {
    height: 70vh;
}

.banner_container .overlay3 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.65);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.banner_container .overlay3 .container {
    width: 60%;
    height: 100%;
    display: flex;
    padding-right: 10%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.banner_container .overlay3 .container h2.heading {
    text-align: left;
    font-size: 4vh;
    color: var(--light);
}

.banner_container .overlay3 .container h1.heading {
    text-align: left;
    font-size: 4vh;
    color: var(--light);
}

.banner_container .overlay2 {
    position: absolute;
    right: 10vh;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background: white;
    padding: 2vh;
    height: 60vh;
    width: 60vh;
    margin-top: 1rem;
    border-radius: 12px;
}

.banner_container h2.heading {
    font-size: 6vh;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    width: 90%;
}

.banner_container .line {
    margin-left: 3vw;
}

.banner_container h1.heading {
    font-size: 6vh;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    width: 60%;
    padding-left: 3vw;
}

.banner_container .description {
    color: white;
    font-size: 3vh;
    padding: 1.2vh 0 2.2vh 3vw;
}

.banner_container .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 3vh;
    padding-left: 3vw;
}

.about_us_container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.about_us_container .left {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about_us_container .left .image_div {
    height: 80%;
    width: 100%;
    border-radius: 2vh;
    overflow: hidden;
}

.about_us_container .right {
    width: 35%;
    height: 100%;
    display: flex;
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2vh;
}

.about_us_container .right .name {
    text-transform: uppercase;
    font-size: 3vh;
}

.about_us_container .right .sub_heading {
    font-size: 2.5vh;
    text-align: left;
    font-weight: 500;
}

.text {
    font-family: "Roboto", sans-serif;
    width: 100%;
    text-align: center;
}

.about_us_container .right .content {
    text-align: justify;
    font-family: "Roboto", sans-serif;
    padding: 0 0 2vh 0;
}

.page_container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.estimate_section_new .section1 h2 {
    font-size: 4.5vw;
}

.page_container .why_choose_container {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
}

.page_container .why_choose_container .container {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4vh;
}

.page_container .why_choose_container .container .content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page_container .why_choose_container .container .content .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    font-weight: 500;
}

.page_container .why_choose_container .container .content .icon {
    height: 15vh;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2vh;
}

.page_container .how_it_works_containter {
    height: 60vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page_container .how_it_works_containter .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4vh;
    height: 100%;
    width: 80%;
}

.page_container .how_it_works_containter .container .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* gap: ; */
}

.page_container .how_it_works_containter .container .item {
    height: 35vh;
    font-weight: 500;
    width: 17%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2vw;
    border-radius: 1.2vh;
    border: 0.2vh solid #d1d1d1;
}

.page_container .testimonials_container {
    height: 65vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-image: url("<?=$cdn?>/img/3.jpg"); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.page_container .testimonials_container .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.page_container .testimonials_container .overlay .profile {
    height: 17vh;
    width: 17vh;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}

.page_container .testimonials_container .overlay .quote {
    color: white;
    font-size: 3vh;
    font-style: italic;
}

.page_container .testimonials_container .overlay .name {
    color: white;
    font-size: 3.2vh;
    font-weight: bold;
}

.page_container .testimonials_container .overlay .sub_heading {
    color: white;
    font-size: 2.2vh;
    font-weight: bold;
}

.countdown_container {
    height: 40vh;
    width: 100%;
    display: flex;
    background: #ededed;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown_container .counters {
    width: 80%;
    height: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.countdown_container .counters .description {
    width: 100%;
    height: 40%;
    text-align: center;
    font-size: 3vh;
}

.services_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    padding: 4vh 0 6vh 0;
    gap: 5vh;
}

.owl-carousel .heading {
    font-size: 2vh;
    font-weight: bold;
    text-align: left;
    color: black;
}

.owl-carousel .image {
    height: 55%;
}

.owl-carousel .content_display {
    padding: 0.6vw;
    height: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
}

.owl-carousel .content_display .left {
    width: 80%;
}

.owl-carousel .sub_heading {
    text-align: center !important;
    font-size: 1.7vh !important;
}

.services_container .content {
    width: 80%;
    display: flex;
    gap: 1rem;
    height: auto;
    flex-direction: column;
    align-items: center;
    /* align-items: flex-start; */
    justify-content: center;
}

.services_container .content_display {
    width: 100%;
    height: 18vh;
    background: white;
    position: absolute;
    bottom: 0;
    left: 0;
}

.services_container .content_display .left {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 2vh;
    width: 90%;
}

.services_container .content_display .left .heading {
    font-size: 2vh;
    font-weight: bold;
    text-align: center;
    color: black;
    padding-left: 0;
}

.services_container .content_display .left .sub_heading {
    text-align: center;
    font-size: 1.7vh;
    text-overflow: ellipsis;
    overflow: hidden;
}

.estimate_section h2:not(.heading) {
    font-size: 2.5vh;
}

.estimate_section h2.heading {
    font-size: 5vh;
}

.services_container .content .description {
    font-size: 2.4vh;
    font-weight: 500;
    padding-left: 1vw;
    width: 100%;
    text-align: center;
    font-family: "Roboto", sans-serif;
}

.services_container .content .item {}

.our_brand_partners {
    height: 50vh;
    width: 100%;
    /*background: rgb(236, 236, 236);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
}

.brands_marquee {
    width: 100%;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands_marquee marquee {
    height: 100%;
    width: 100%;
}

.brands_marquee marquee img {
    height: 13vh;
    width: auto;
    margin-right: 3vh;
}

.news_section {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10vh;
}

.news_section .content {
    height: auto;
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.news_section .content .image_div {
    height: 100%;
    width: auto;
}

.news_section .content .image_div img {
    height: 10vh;
    width: 15vw;
    /* object-fit: cover; */
}

.testimonials_section {
    height: 76vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
    /* background: rgb(236, 236, 236); */
}

.testimonials_section .content {
    height: 60%;
    width: 85%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.testimonials_section .content .item {
    height: 100%;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    align-items: center;
    justify-content: center;
}

.testimonials_section .content .text {
    font-size: 2vh;
    text-align: justify;
    font-style: italic;
    width: 95%;
}

.testimonials_section .content .item .image_div {
    height: 60%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1.5vh 1.5vh 0 0;
    overflow: hidden;
    position: relative;

    filter: brightness(0.6);
    /* Increase brightness by 50% */
    transition: filter 0.3s ease;
    /* Add transition */
}

.testimonials_section .content .item .image_div:hover {
    filter: brightness(1);
}

.testimonials_section .content .item .image_div .overlay {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    color: white;
    font-size: 5vh;
}

.testimonials_section .content .item .image_div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.item .name {
    /* font-size: 2.7vh; */
    font-weight: 600;
    text-align: left;
    width: 95%;
}

.testimonials_section .content .item .sub_heading {
    font-size: 1.6vh;
    font-weight: 300;
    text-align: left;
    width: 95%;
    color: #808080ba;
}

.explore_projects {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
    position: relative;
    /* background-image: url("<?=$cdn?>/img/4.jpg"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.explore_projects .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.explore_projects .overlay .heading_section {
    display: flex;
    width: 80%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.explore_projects .overlay .line_background {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    justify-content: flex-start;
}

.latest_blogs {
    min-height: 90vh;
    height: auto;
    padding: 4vh 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.latest_blogs .container {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
}

.latest_blogs h2.heading {
    width: 100%;
    text-align: center;
}

.latest_blogs .line_background {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.latest_blogs .grid_section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 31%);
    /* flex-direction: row;
  align-items: center;
  justify-content: flex-start; */
    gap: 3vw;
    height: auto;
}

.latest_blogs .grid_section .grid_item {
    min-height: 45vh;
    height: 100%;
    width: 100%;
    /* border: 0.2vh solid black; */
    border-radius: 2vh;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 1vh;
    gap: 0.9rem;
    transition: 0.3s all ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
    position: relative;
}

.main_content_container .grid_container .grid_item {
    /*min-height: 63vh;*/
    height: 100%;
    width: 100%;
    /* border: 0.2vh solid black; */
    border-radius: 2vh;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 1vh;
    gap: 0.9rem;
    transition: 0.3s all ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
}

.latest_blogs .grid_section .grid_item:hover {
    transform: scale(1.05);
}

.latest_blogs .grid_section .grid_item img,
.main_content_container .grid_container .grid_item img {
    border-radius: 2vh 2vh 0 0;
    height: 30vh;
    width: 100%;
}

.latest_blogs .grid_section .grid_item .title {
    font-size: 2.4vh;
    height: 30%;
    width: 100%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 1.5vh;
}

.latest_blogs .grid_section .grid_item .discription {
    font-size: 1.7vh;
    text-align: center;
    height: 30%;
    width: 100%;
    text-align: left;
    padding: 0 1.5vh;
    font-family: "Roboto", sans-serif;
}

.get_in_touch_section h3 {
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: row;
    gap: 1vw;
    align-items: center;
    justify-content: center;
}

.get_in_touch_page {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.get_in_touch_page .title_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
    height: 40vh;
    background: var(--main);
    color: white;
}

.get_in_touch_section {
    height: 70vh;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.get_in_touch_section2 {
    height: 70vh;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5vw;
}

.get_in_touch_section .left {
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3vh;
}

.get_in_touch_section2 .map_container {
    height: 40vh;
}

.get_in_touch_page .right {
    height: 100%;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
}

.get_in_touch_page .right .form_section {
    height: 80%;
    border-radius: 0.8rem;
    width: 70%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
}

.get_in_touch_page .right input {
    height: 6vh;
    width: 100%;
    padding-left: 0.8vw;
    border-radius: 1.1vh;
    background: rgb(236, 236, 236);
    font-size: 2.5vh;
}

/* carousel */

.carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-inner,
.carousel-inner2,
.carousel-inner3,
.carousel-inner4,
.carousel-inner5 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* .owl-carousel.owl-drag .owl-item {
    padding: 1rem;
} */

.carousel_item,
.carousel_item2,
.carousel_item3,
.carousel_item4,
.carousel_item5 {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    height: 40vh;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* .owl-carousel .owl-item img {
    border-radius: 1.2rem 1.2rem 0 0;
    height: 25vh;
} */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    color: #333;
    background: none;
    border: none;
}

.prev {
    left: 1vh;
    border: 0.3vh solid white;
    aspect-ratio: 1/1;
    height: 5vh;
    width: 5vh;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.next {
    right: 1vh;
    border: 0.3vh solid white;
    aspect-ratio: 1/1;
    height: 5vh;
    width: 5vh;
    display: flex;
    border-radius: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* footer */

.badadiv {
    width: 100%;
    /* background: var(--main); */
    background: linear-gradient(to right, #09076d, #2625c4, #09076d);
    color: white;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.badadiv .icon {
    height: 5vh;
    width: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.4vh;
    border: none;
    transition: 0.3s all ease-in-out;
}

.badadiv .icon:hover {
    transform: scale(1.5);
}

.innerdiv2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 95%;
}

.innerdiv2>div {
    cursor: pointer;
    font-size: 2vh;
}

.footerlogo {
    width: 15vw;
    height: auto;
}

.footer_item {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.footer_item li {
    cursor: pointer;
}

.footer_item li::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.footer_item li:hover::after {
    width: 100%;
    transition: width 0.3s;
}

.innerdiv1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 95%;
}

.right-line {
    height: 100%;
    width: 0.2vh;
    background: white;
}

.quicklinks {
    display: flex;
    gap: 10px;
}

.quicklinks li {
    cursor: pointer;
    text-align: left;
}

.first {
    display: flex;
    flex-direction: column;
    gap: 15px;

    text-decoration: none;
    text-align: center;
    list-style: none;
}

.heading {
    font-weight: bold;
    text-align: center;
    font-size: 26px;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
}

.footer_item.contact .address,
.footer_item.contact .contactno,
.footer_item.contact .mail {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5vh;
}

.footer_item.contact .address p {
    text-align: right;
}

.social {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.icon {
    border: 2px solid white;
    border-radius: 50%;
}

/* estimate section */

.estimate_section {
    text-align: center;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    gap: 5vh;
}

.estimate_item {
    width: 25%;
    /*height: 46vh;*/
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.heading {
    text-align: center;
    font-size: 30px;
}

.estimate_outer {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.estimate_icons {
    display: flex;
    justify-content: space-between;
}

.fullhome {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.5s, transform 0.5s;
    text-align: left;
}

.meet_a_designer_modal .close {
    position: absolute;
    color: black;
    right: 2vh;
    top: 2vh;
    font-size: 3vh;
    cursor: pointer;
}

.meet_a_designer_modal .whatsapp span,
.meet_a_designer_modal .whatsapp i,
.meet_a_designer_modal .small {
    color: black;
}

.fullhome:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.03);
}

.kitchen {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.5s, transform 0.5s;
    text-align: left;
}

.kitchen:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.03);
}

.wardrobe {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.5s, transform 0.5s;
    text-align: left;
}

.wardrobe:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.03);
}

.calculate_estimate {
    background-color: var(--main);
    color: whitesmoke;
    border: none;
    padding: 10px;
    margin-top: 30px;
    border-radius: 20px;

    width: 100%;
}

.estimate_button {
    width: 100%;
}

.wardrobe_text {
    font-size: 20px;
    font-weight: bold;
    /* text-align: left; */
}

.estimate_text {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wardrobe_text2 {
    color: #515050;
    text-align: center;
}

.meet_a_designer_modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0000004f;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    z-index: 99999;
    justify-content: center;
    overflow: hidden;
}

.meet_a_designer_modal .modal_container {
    height: 60vh;
    width: 30vw;
    background: white;
    padding: 1vw 3vw;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.logos_4 {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logos_4 .container {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.about_page {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about_page .container {
    height: 90%;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5vw;
}

.about_page .container .section {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_page .container .section1 .content {
    font-size: 1.8vh;
}

.about_page .container .section1 {
    align-items: flex-start;
    gap: 2vh;
    text-align: justify;
}

.about_page .container .section2 {
    height: 95%;
}

.our_suppliers_business {
    height: 60vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.our_suppliers_business .container {
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.our_suppliers_business .container .img_div {
    margin-top: 5vh;
    /* border: 0.2vh solid black; */
    border-radius: 0;
    height: 20vh;
    width: 16vw;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.variety_designs_section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.variety_designs_section .container {
    display: grid;
    grid-template-columns: 29% 39% 29%;
    gap: 1%;
    place-items: center;
    height: 90%;
    width: 90%;
}

.variety_designs_section .container .section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.variety_designs_section .img_div {
    width: 100%;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 0.2vh solid black; */
}

.variety_designs_section .text {
    height: 35vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.variety_designs_section .text .content {
    width: 70%;
}

.estimate_section_new {
    height: 65vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background-color: #0000ff14;
}

.estimate_section_new .section1 {
    min-width: 95%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.estimate_section_new .section1 .sub_heading {
    text-align: left;
    font-size: 4vh;
    color: grey;
    font-weight: 600;
}

.estimate_section_new .section2 {
    position: absolute;
    right: 8%;
    height: 70%;
    width: 27%;
    top: 65%;
    transform: translate(0, -50%);
}

.modular_kitchens_designs_section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modular_kitchens_designs_section .container {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
    align-items: center;
    justify-content: center;
}

.modular_kitchens_designs_section .container .sub_heading {
    text-align: center;
    width: 100%;
    font-size: 2.4vh;
}

.modular_kitchens_designs_section li {
    font-size: 2.5vh;
}

.modular_kitchens_designs_section .container .section {
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.modular_kitchens_designs_section .carousel_section_kitchen {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modular_kitchen_design {
    width: 100%;
    height: auto;
    padding: 3vh 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4vh;
}

.modular_kitchen_design .grid_container {
    /* width: 80%; */
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(3, 32%);
    gap: 1%;
    row-gap: 2vh;
}

.modular_kitchen_design .grid_container .item {
    /* height: 40vh; */
    width: 100%;
}

#viewMoreGridContainer {
    display: none;
}

.a_talk_about_section {
    height: 80vh;
    width: 100%;
    display: flex;
    background: #ededed;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.a_talk_about_section .container {
    height: 90%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.a_talk_about_section .container .talk_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2vh;
}

.a_talk_about_section .container .talk_section .section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 2.4vh;
    gap: 1vh;
}

.a_talk_about_section .container .talk_section .section .icon {
    padding-top: 0.5vh;
}

.faq_section {
    /* margin-top: 39vh; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq_section .container {
    height: 90%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5vh;
}

.faq_section .container .q_n_a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1vh;
    font-size: 2.4vh;
}

.faq_section .container .q_n_a .question {
    font-weight: bold;
}

.faq_section .container .q_n_a .answer {
    font-size: 2vh;
    font-weight: normal;
}

.faq_section .container .q_n_a .answer span.bold {
    font-weight: bold;
}

.container_container {
    width: 80vw;
}

.main_content_container {
    width: 100vw;
    height: auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main_content_container .main_container {
    width: 80%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.main_content_container .grid_container {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(3, 31%);
    /* gap: 2.6%; */
    column-gap: 2rem;
    row-gap: 2rem;
}

.main_content_container .grid_container .title {
    font-size: 2.4vh;
    width: 100%;
    font-weight: bold;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    text-align: left;
    padding: 0 1.5vh;
}

.main_content_container .grid_container .discription {
    font-size: 1.7vh;
    text-align: center;
    width: 100%;
    text-align: left;
    padding: 0 1.5vh;
    font-family: "Roboto", sans-serif;
}

.main_content_container .grid_container .box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 0.3vh solid black;
    border-radius: 2vh;
    padding: 0.5vh;
    transition: 0.3s all ease-in-out;
}

.main_content_container .grid_container .box:hover {
    transform: scale(1.05);
}

.main_content_container .grid_container .box .img {
    border-radius: 2vh;
    overflow: hidden;
    height: 80%;
    width: 100%;
}

.main_content_container .grid_container .box .text {
    height: 30%;
    width: 100%;
    display: flex;
    font-weight: bold;
    padding: 0 1.5vh;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.services_container .heading {
    padding-left: 1vw;
}

.get_in_touch_section .right .form_section .description {
    font-size: 2.4vh;
    color: gray;
}

.get_started_btn {
    animation: sizeEffect 0.8s ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

.readmore {
    display: flex;
    align-items: left;
    justify-content: space-between;
    padding-bottom: 1.3vh;
    padding: 0 1.5vh;
}

.readbtn {
    float: left;
    color: #007bff;
    background: none;
    border: none;
    border-radius: 7px;
    padding: 0 1.6vh;
    padding: 4px;
}

.readbtn:hover {
    background: #80808024;
}

.blogdate {
    padding: 0 1.6vh;
    color: #51505099;
    font-size: 1.8vh;
}

@media screen and (max-width: 1450px) {
    .navbar_container .main_container .section2 {
        width: 80%;
    }

    .latest_blogs .grid_section .grid_item,
    .main_content_container .grid_container .grid_item {
        width: 100%;
    }
}

.new_banner_container {
    height: 40vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("../../assets/img/banners/1.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.new_banner_container .new_banner_overlay {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(5, 0, 0, 0.199);
}

.new_banner_container .new_banner_overlay h2.heading {
    font-size: 3rem;
    color: white;
}

.career_heading {
    height: 40vh;
    display: flex;
    background-color: #f5f4f5;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.career_heading h3 {
    font-size: 1.6rem;
    font-weight: bold;
}

.career_heading p {
    font-size: 1rem;
    width: 70%;
    text-align: center;
}

.career_grid_section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
    padding: 0 1.5vw;
}

.career_grid_section .container {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
    padding: 0 1.5vw;
}

.career_grid_section .grid_container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.5vw;
    padding: 0 1.5vw;
}

.career_grid_section .grid_container .item {
    width: 100%;
    height: 25vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5vw;
    padding: 0 1.5vw;
}

.career_grid_section .grid_container .item .icon {
    width: auto;
    height: 50%;
    object-fit: contain;
}

.career_grid_section .grid_container .item .heading {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #515050;
}

.career_grid_section .grid_container .item .sub_heading {
    font-size: 1rem;
    text-align: center;
}

.career_benefits {
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
    padding: 5vh 1.5vw;
}

.career_benefits .perks_grid {
    width: 90%;
    height: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.5vw;
    padding: 0 1.5vw;
}

.career_benefits .perks_grid .grid_item {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2vh;
}

.career_benefits .perks_grid .grid_item i.fa-check {
    color: green;
}

.career_benefits .perks_grid .grid_item2, .career_benefits .perks_grid .grid_item3 {
    grid-row: span 2;
}

.open_positions {
    width: 100%;
    height: auto;
    display: flex;
    background-color: #f5f4f5;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
    padding: 5vh 1.5vw;
}

.open_positions .open_positions_grid {
    width: 90%;
    display: grid;
    height: 90%;
    grid-template-columns: 1fr 1fr;
    gap: 2.5vw;
    padding: 0 1.5vw;
}

.open_positions .open_positions_grid .grid_item {
    height: 35vh;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 0.5rem;
    gap: 2vh;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.open_positions .open_positions_grid .grid_item .heading {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #515050;
}

.open_positions .open_positions_grid .grid_item .sub_grid {
    width: 100%;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 1.2vw;
}

.open_positions .open_positions_grid .grid_item .sub_grid .sub_grid_heading {
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    color: #515050;
}

.open_positions .apply_btn {
    background-color: var(--main);
    color: whitesmoke;
    padding: 1.2vh 3vw;
    border-radius: 1.2rem;
    transition: all 0.5s;
    border: none;
    cursor: pointer;
}
.latest_blogs .container {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
}
@media screen and (max-width: 758px) {
    .latest_blogs .container {
       
        width: 90%;
    }
    .new_banner_container .new_banner_overlay h2.heading {
        font-size: 2rem;
        color: white;
    }
}