@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&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');

/* animation */

@keyframes bounce {
  from,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}
/* animation end*/

img{    filter: saturate(1.3);}

[animate="animate"] {
  transform: translateY(80px);
  opacity: 0;
  transition: none;
}

* {
    box-sizing: border-box;
    margin: 0px;
    user-select: none;

}

a {
    text-decoration: none;
}

body {
    top: 0;
}

h1,
h2,
h3 {

    font-family: 'Poppins', sans-serif;
    color: #253439;

}

.mainheader,
div,
span,
p {
    font-family: "Poppins", sans-serif;
}

:root {
    --mainheaderheight: 100px;
    --mainheaderheightmobile: 90px;
    --mainheaderheighttablet: 80px;
}




/* header start */

.mobilemenu,
.mobiletemp {
    display: none;
}

.mainheader .mobilelinemenu {
    display: none;
}


.mainheader {
    background-color: transparent;
    display: flex;
    height: var(--mainheaderheight);
    position: sticky;
    z-index: 999;
    top: 0;
    transition: all 0.3s ease;
}

.desklogo {
    display: flex;
    background-color: transparent;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
}

.desklogo img {
    height: 100%;
    padding: 15px;
    border-radius: 100%;
}

.desklogo .logoText {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 7px;
}

.desklogo .logoName {
    text-transform: uppercase;
    color: #ffffff;
    padding: 5px;
    font-size: 1.1rem;
}

.desklogo .logoName2 {
    text-transform: uppercase;
    color: #ffffff;
    padding: 5px;
    font-size: 0.7rem;
}

.deskmainmenu {
    background-color: transparent;
    display: flex;
    flex-grow: 5;
    justify-content: center;
    align-items: center;
    gap: 8%;
}

.deskmainmenu div {
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}

.headersocial {
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: transparent;
    flex-grow: 2;
}

.headersocial a {
    margin: 8px;
    text-decoration: none;
    color: #ffffff;
}

.headersocial a img {
    filter: invert(100%);
    width: 25px;
}

/* header end */

/* banner start */

.banner {
    display: flex;
    width: 100%;
    height: calc(100vh + var(--mainheaderheight));
    margin-top: calc(-1 * var(--mainheaderheight));
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #253439;

}

.banner h2 {
    z-index: 1;
    position: absolute;
    font-size: 2.5rem;
    background-color: rgb(0 0 0 / 50%);
    border-radius: 30px;
    padding: 20px;
    color: #ffffff;
    animation: flipInX 1s;
    border: solid 3px #ffffff;
    max-width: 80%;

}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .bannerarrow {
    position: absolute;
    width: 60px;
    aspect-ratio: 1/1;
    bottom: 28%;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.293);
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s;
}

.banner .bannerarrow:hover {
    background-color: rgba(0, 0, 0, 0.481);
}


/* section 3 */

/* Welcome */

.welcomenmain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.welcomenmain h2 {
    text-align: center;
}

.welcomenmain .itemtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0px;
}

.welcomenmain .itemwrapper {
    display: flex;
    gap: 10%;
    flex: 1;
    width: 50%;
    text-align: justify;
}

/* Welcome */

.slidersect {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.slidersect h2 {
    margin: 50px 0px;

}

.slidersect .splide {
    width: 70%;
}

.slidersect .splide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.slidersect .splide__arrow--next {
    right: -3em;
}

.slidersect .splide__arrow--prev {
    left: -3em;
}

.slidersect .splide__arrow {
    background: #253439;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 30px;
    height: 30px;

}

.slidersect .splide__arrow svg {
    fill: #ffffff;
    height: 1.2em;
    width: 1.2em;
}

.slidersect .itmeswarpper {
    display: flex;
    align-items: center;
}

.slidersect .itemtext {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex: 1;
    padding: 10px;

}

.hidcontetnt {
    display: none;
}

.slidersect .itemimage {
    display: flex;
    flex: 1;
    padding: 10px;
    overflow: hidden;
    overflow-x: auto;
}

.slidersect .itemimage img {
    border: 1px solid #ffffff;
}

/* section 3 end*/


/* section 4 start*/

.sectfour {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #253439;
    margin-top: 60px;
    padding: 100px 0px;
    color: #ffffff;
}

.sectfour .secttitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
    padding: 10px;
}

.sectfour .itemwrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px 5%;
    row-gap: 22px;
}

.sectfour .itemwrapper div {
    width: calc(100% / 4);
    padding: 5px;
}

.sectfour .itemwrapper p {
    margin-bottom: 15px;
    font-weight: 600;
}

/* section 4 end */


/* section 5 start */


.sectfive {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 100px;

}

.sectfive .itemwrappper {
    display: flex;
    width: 70%;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.sectfive .itemslt {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
    cursor: pointer;
    flex-wrap: wrap;
    padding: 3%;
}

.sectfive .itemslt>span {
    border: 1px solid black;
    padding: 7px 15px;
    border-radius: 20px;
}

.sectfive .allitems {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 25px 0px;
    gap: 1%;
    justify-content: flex-start;
    /* max-height: 62vw;
    overflow: auto; */
    position: relative
}

/* Apply only in Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0;
}

/* Chrome, Safari, Edge */
html::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

html::-webkit-scrollbar-track {
    background: #f0f0f0;
}

html::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* .sectfive .allitems::before,
.sectfive .allitems::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  z-index: 1;
  pointer-events: none;
}

.sectfive .allitems::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
}

.sectfive .allitems::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
} */

.sectfive .items {
    display: flex;
    flex-direction: column;
    width: calc(96% / 3);
    animation: fadeIn 1s;
    margin-bottom: 30px;
}

.sectfive .items img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 10px;
}

.sectfive .itemslt .active {
    text-decoration: underline;
    font-weight: 600;
}

/*  section 5 end */


/* section 6 start */

.sectsix {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
    width: 100%;
    /* opacity: 0;
    transition: opacity 1s ease-in-out; */
}


.visibleelement {
  transform: translateY(0) translateZ(0);
  opacity: 1;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  will-change: transform, opacity;
}

.sectsix .sectwrapper {
    display: flex;
    width: 82%;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.sectsix .product_card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: #fbfbfb;

}

.sectsix .product_card .imgdiv {
    padding: 20px;
}

.sectsix .product_card h4 {
    margin: 10px;
    font-size: 18px;
    margin-left: 31px;
}

.sectsix .product_card li {
    margin: 10px;
    margin-top: 16px;
}

.sectsix .product_card .imgdiv img {
    width: 100%;
    border-radius: 10px;
}

.sectsix .bgprwrap {
    display: flex;
    justify-content: space-between
}

.sectsix .badge {
    display: flex;
    justify-content: center;
    background-color: #b60f1dd5;
    padding: 7px 15px;
    border-radius: 7px;
    color: #ffffff;
    margin-left: 3%;
}

.sectsix .price {
    display: flex;
    justify-content: center;
    background-color: #1F7D53;
    padding: 7px 15px;
    border-radius: 7px;
    color: #ffffff;
    margin-right: 3%;
}

.sectsix .dtllist {
    display: flex;
}

.sectsix .dtllist>div {
    flex: 1;
}

.sectsix .dtllist li {
    /* list-style-type: none; */
    padding-left: 5px;
}

.sectsix .dtllist ul {
    font-size: 15px;
    padding-left: 20px;
}

.sectsix .tagpop {
    display: flex;
    justify-content: center;
    border-radius: 7px;
    border-top: #253439 1px solid;
    margin: 10px;
    padding: 10px;
    background-color: #253439;
    color: #ffffff;
}

.sectsix .tagpop::before {
    content: "*";
    color: #eee;
}


.sectsix h2 {

    margin: 30px 0px;

}

.sectsix .splide {

    width: 100%;

}

.sectsix .splide__arrow--next {
    right: -2em;
}

.sectsix .splide__arrow--prev {
    left: -2em;
}

.sectsix .splide__arrow {
    background: #253439;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 30px;
    height: 30px;

}

.sectsix .splide__arrow svg {
    fill: #ffffff;
    height: 1.2em;
    width: 1.2em;
}

.splide__pagination {
    position: relative !important;
    margin-top: 15px !important;
}

.splide__pagination__page {
    background-color: #253439 !important;
}

.splide__pagination__page.is-active {
    background-color: #8b8b8b !important;
}

/* .sectsix .splide__slide img {
    width: 100%;
    aspect-ratio: 3/4;

} */


/* section 6 end */

/* section 8 start */

.sectseight {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    margin-top: 80px;
    flex-direction: column;
}

.sectseight .instagpost {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65%;

    margin-top: 3%;
}

.sectseight .splide {
    width: 100%;
}

.sectseight h2 {
    color: #253439;
}

.sectseight .splide li {
    padding: 1%;
}

.sectseight .splide img {
    width: 100%;
    aspect-ratio: 1/1;
    /* border-radius: 100%; */
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.sectseight .splide__arrow--next {
    right: -3em;
}

.sectseight .splide__arrow--prev {
    left: -3em;
}

.sectseight .splide__arrow {
    background: #ffffff;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 30px;
    height: 30px;

}

.sectseight .splide__arrow svg {
    fill: #253439;
    height: 1.2em;
    width: 1.2em;
}

.sectseight a {
    display: flex;
    gap: 10px;
    text-decoration: none;
}

.sectseight a img {
    width: 30px;
    filter: invert(0);
}

/* section 8 end */


/* section 9 start */
.sectnine {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.sectnine h2 {
    margin: 30px 0px;
}

.sectnine .itemwrapper {
    display: flex;
    width: 80%;
}

.sectnine .itemleft {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    padding: 5%;
    flex-direction: column;
}

.sectnine .itemright {
    display: flex;
    flex: 1;
}

.sectnine .itemright img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}


/* section 9 start */


/* section 10 start */

.sectten {
    display: flex;
    margin-top: 60px;
    align-items: center;
    justify-content: center;
}

.sectten .itemwrapper {
    display: flex;
    width: 80%;
}

.sectten .itemmap {
    display: flex;
    flex: 1;
}

.sectten .itencontacts {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3%;
    gap: 15px;
}

/* section 10 End */


/* section 11 start */

.sectelen {
    display: flex;
    width: 100%;
    background-color: #253439;
    margin-top: 60px;
    align-items: flex-end;
    padding-top: 50px;
}

.sectelen .itemwrapper {
    display: flex;
    width: 96%;
    align-items: center;
    justify-content: flex-end;
    height: 70%;
}

.sectelen .itemleft {
    display: flex;
    flex: 2;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
}

.sectelen .itencontacts {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3%;
    gap: 15px;
}

.sectelen .qrcode {
    border-radius: 10px;
    margin-bottom: 10px;
    height: 150px;
}

.sectelen .itemleft a {
    width: 50px;
    padding: 10px;
}

.sectelen .itemleft .icons {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.sectelen .itemcenter {
    display: flex;
    flex: 2;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    padding: 2%;

}

.sectelen .itemcentertwo {
    display: flex;
    flex: 2;
    color: #ffffff;
    align-items: flex-start;
    padding: 2%;
    flex-direction: column;
}

.sectelen .itemright {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.sectelen .itemright img {
    width: 100%;
    border-radius: 100%;
}

.sectelen a img {
    filter: invert(100%);
}


/* Readmoreless bttn */
.redmrbttn {
    margin-top: 10px;
    background: #b60f1dd5;
    border: 1px solid #b60f1dd5;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 35px;
    outline: 0;
    padding: 10px 15px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
}

.redmrbttn-24:hover,
.redmrbttn:active {
    background-color: initial;
    background-position: 0 0;
    color: #b60f1dd5;
}

.redmrbttn:active {
    opacity: .5;
}

/* section 11 End */

/* section sdddend */
/* section sdddend */
/* section sdddend */
/* section sdddend */
/* section sdddend */
/* section sdddend */
/* section sdddend */
/* section sdddend */
/* section sdddend */
/* section sdddend */
/* section sdddend */

@media (max-width: 991px) {

    .desklogo {
        width: 40%;
    }

    .deskmainmenu {
        width: 60%;
    }

    .sectsix .sectwrapper {
        width: 90%;
    }

    .headersocial {
        display: none;
    }

    .banner h2 {
        font-size: 2rem;
    }

    .mainheader {
        height: var(--mainheaderheighttablet);
        width: 100%;
    }

    /* 
    .banner {
        top: calc(-1 * var(--mainheaderheighttablet));
    } */
    .slidersect .splide {
        width: 80%;
    }

    .slidersect .itmeswarpper {
        display: flex;
        flex-direction: column-reverse;
    }

    .welcomenmain .itemwrapper {
        width: 80%;
    }

    .sectfour .itemwrapper div {
        width: calc(100% / 2);
    }

    .sectfive .itemwrappper {
        width: 90%;
    }




    .sectfive .items {
        width: calc(96% / 2);
    }


    .sectnine .itemwrapper {
        width: 95%;
    }


    .sectelen {

        justify-content: center;
    }

    .sectelen .itemwrapper {
        width: 94%;
        flex-wrap: wrap;

    }

    .sectelen .itemwrapper>div {
        flex: 50%;
    }

    .sectelen .itemright img {
        width: 60%;
    }

    .sectelen .itemleft,
    .itemcenter,
    .itemcentertwo,
    .itemright {
        margin: 20px 0px;

    }

    .sectten .itemwrapper {
        flex-direction: column;
    }


    .sectnine .itemwrapper {
        flex-direction: column-reverse;
    }

     .banner{height: auto;}

        .banner img{
        width: 100%;
        height: 900px;
    }

}



/*
lef
sdfsdfgsdnfs
f
sdfsd;flksdfsdf
sdf
sdf;sd,lfsdf
s
fsd;f,sdl;f

*/

@media (max-width: 599px) {

    /* ye hatana h mobile menu */

    .mobilemenu {
        display: none;
        width: 100%;
        height: 60px;
        background-color: #253439;
        position: fixed;
        bottom: 0%;
        align-items: flex-end;
        z-index: 9998;
    }

    .mobilemenuoption {
        position: absolute;
        z-index: 9999;
        display: flex;
        width: 100%;
        height: 100%;
    }

    .mobilemenuoptionlist {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobilemenuoption img {
        filter: invert(100%);
    }

    .mobilemenu a img {
        height: 25px;
        aspect-ratio: 1/1;
        margin: 15px;
    }





    .mobilecontact,
    .mobilesocial,
    .mobilecategory {
        display: flex;
        flex: 1;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        position: relative;
        bottom: 60px;
    }

    .mobilesocial .mobfollowus {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0px;
    }

    .mobilecontact .mobenquiry {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0px;
    }

    .menulist {
        display: none;
        /* overflow: hidden; */
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: #ffffff;
        border-radius: 7px;

    }

    .mobilecategorylist .mobilehome,
    .mobileabout,
    .mobileproperty,
    .mobilecontactbtn {
        display: flex;
        height: 30px;
        margin: 15px;
        align-items: center;
        width: 80%;
        justify-content: flex-end;
    }

    .mobilecategorylist img {
        width: 25px;
        margin-left: 8px;
    }

    /* ye hatana h mobile menu */

    .dividermobilemenu {
        height: 1px;
        background-color: #eee;
        width: 90%;
    }



    .deskmainmenu,
    .headersocial {
        display: none;
    }



    .banner h2 {
        font-size: clamp(1.2rem, 3vw, 2rem);
        padding: 20px 10px;
        border-radius: 30px;
           }


    .mainheader {
        height: var(--mainheaderheightmobile);

    }

    .welcomenmain .itemwrapper {
        width: 80%;
        flex-wrap: wrap;
        gap: 30px;
    }

    .welcomenmain h2 {
        width: 90%;
    }

    .slidersect {
        margin-top: 50px;

    }

    .slidersect .splide {
        width: 75%;
    }

    .sectfour .itemwrapper {
        padding: 0px 10%;
    }

    .sectfour .itemwrapper div {
        width: calc(100% / 1);
        padding: 5px;
    }

    .sectfive .allitems {
        flex-wrap: nowrap;
        overflow: auto;
        gap: 3%;
        padding: 3%;
        max-height: 100%;
        overflow-y: hidden;
    }

    .sectfive .items {
        width: 90%;
        flex-shrink: 0;
    }


    .slidersect .itmeswarpper {
        display: flex;
        flex-direction: column-reverse;
    }

    .sectnine .itemwrapper {
        flex-direction: column;
    }


    .sectten .itemwrapper {
        flex-direction: column;
    }


    .sectelen {

        justify-content: center;
    }

    .sectelen .itemwrapper {
        flex-direction: column;
        width: 94%;
    }

    .sectelen .itemright img {
        width: 60%;
    }

    .sectelen .itemleft,
    .itemcenter,
    .itemcentertwo,
    .itemright {
        margin: 20px 0px;

    }


    .slidersect .splide__arrow--next {
        right: -3em;
    }

    .slidersect .splide__arrow--prev {
        left: -3em;
    }

    .sectsix .dtllist ul {
        font-size: 13px;
        padding-left: 16px;
    }

    .banner{height: auto;}
    .banner img{
        width: 100%;
        height: 800px;
    }
    .sectsix .sectwrapper {
        width: 80%;
    }

    .desklogo {
        flex-grow: 0.6;
        justify-content: flex-start;
        padding-left: 15px;
    }

    .desklogo img {
        height: 80%;
        padding: 10px;
    }

    .desklogo .logoName {
        font-size: 0.9rem;
    }

    .mainheader .mobilelinemenu {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #FFFFFF;
        flex-grow: 0.4;
        font-size: 2rem;
    }

    .mainheader .mobilelinemenu span {
        display: flex;
        border: solid 1px;
        height: 45%;
        aspect-ratio: 1 / 1;
        justify-content: center;
        align-items: center;
         border-radius: 6px;
    }


        /* .mainheader .mobilelinemenu span {
        border: solid 1px;
        aspect-ratio: 1 / 1;
        border-radius: 6px;
        padding: 0px 12px;
            } */


    .mobiletemp {
        width: 100%;
        height: 100%;
        background-color: #0000007b;
        z-index: 9999;
        position: fixed;
        top: 0;
        overflow: hidden;
            }

    .mobiletemp .mobiletempcat {
        padding-top: 10%;
        padding: 5%;
        display: flex;
        width: 60%;
        background-color: #ffffff;

    }

    .mobiletemp .closbtn {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .mobiletemp .closbtn span {
        display: flex;

        justify-content: center;
        align-items: center;
        font-size: 2rem;
    }

    .mobiletemp img {
        margin-right: 10px;
    }

    .mobiletemp .mobiletempcatlist,
    .mobiletempcatlist>div {

        width: 100%;
    }

    .mobiletemp .tmmobilehome,
    .tmmobileabout,
    .tmmobileproperty,
    .tmmobilecontactbtn,
    .tmmobileenqrybtn {
        width: 100%;
        display: flex;
        height: 50px;
        align-items: center;
        padding: 11px 0px;
    }

    .mobiletemp .tmmobileenqrybtn {
        align-items: center;
        justify-content: center;
        background-color: #1F7D53;
        border-radius: 30px;
        margin-top: 20px;
        height: 40px;

    }

.sectsix .product_card .imgdiv {
    padding: 10px;
}


}


/* banner end */