@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "Nunito", sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

:root {
    --primary: #272561;
    --btnColor: #86335d;
    --primaryLight: #6a67c5;
    --btnLight: #c56b98;
}

.primaryBtn {
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    background: #86335d;
    border-radius: 5px;
    padding: 10px 30px;
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    border-bottom: 3px #c56b98 solid;
    transition: .3s linear all;
}

.primaryBtn:hover {
    background: var(--primary);

    border-bottom: 3px var(--primaryLight) solid;
}




p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #333;
}

ol,
ul {
    padding: 0;
}

/* Top Strip */


.topStrip {
    background: var(--primary);
    padding-block: 0.5rem;
    color: #fff;
    height: 50px;
}

.topStrip .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.leftStrip {
    width: 99%;
    display: flex;


}

.leftStrip i {
    margin-left: 0.5rem;
}

.leftStrip a {
    color: #fff;
    font-size: 16px;
}

.leftStrip a:hover {
    text-decoration: underline;
}

.stripNumber {
    padding-right: 0.5rem;
    display: flex;
}

.stripEmail {
    padding-right: 0.5rem;
}


.rightStrip {
    width: 22%;
    text-align: right;
}

.rightStrip a {
    color: #fff;
    font-size: 16px;
}

.rightStrip i {
    text-align: center;
    font-size: 1rem;
    width: 30px;
    height: 30px;

    margin-left: 0.4rem;
    background-color: var(--btnColor);
    border-radius: 50%;
    padding: 0.5rem;
    cursor: pointer;
    -webkit-transition: all 0.9s;
    transition: all 0.6s ease;
}

.rightStrip i:hover {
    background-color: #fff;
    color: var(--btnColor);
}

/* Navbar */

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active
{
    border: none;
    outline: none;
    box-shadow:none;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 1);
    width: 100%;
    height: 100%;
    z-index: 999;
}

.nav-link {
    color: #363636;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    line-height: 20px;
    background: none;
    display: block;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--btnColor) !important;
}

.nav-link::before {
    content: '';
    width: 0%;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
    background-color: var(--btnColor);
    transition: all 0.5s ease;
}

.nav-link:hover:before {
    width: 100%;
}

header .active,
.nav-link:focus {
    border-bottom: 3px solid var(--btnColor);
    color: var(--btnColor) !important;
}

.dropdown-menu {
    border-radius: unset;
    width: 250px;
    padding-block: 0;
}

.dropdown-item {
    transition: all 0.4s;
    padding-block: 0.5rem;
}

.dropdown-item:hover {
    background-color: var(--btnColor);
    color: #fff;
    padding-left: 1rem !important;
}

/* Carousel */

.carousel-item {
    position: relative;
    overflow: hidden;
}

.carousel-item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(39, 37, 97, 0.4);
}

.carousel-caption {
    position: absolute;
    top: 30%;
}

.carousel-caption h5 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 800;
}

/* Introduction */

.introduction {
    margin-block: 4rem;
}

.introduction img {
    width: 95%;
    object-fit: contain;
}

.intro_content h5 {
    color: #aaa;
    font-size: 16px;
    font-weight: bold;
    line-height: 1em;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.intro_content h1 {
    color: #000000;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1em;
}

.underline {
    height: 5px;
    width: 90px;
    background: #86335d;
    margin: 20px 0;
    position: relative;
    border-radius: 30px;
}

/* Our Products */

.our_products,
.our_gallery {
    background: #f3f3fb;
    padding-block: 2rem;
    padding-top: 2.5rem;
}


.our_products h5,
.our_gallery h5 {
    color: #aaa;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1em;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}


.catagoriess>h1 {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 1rem;
    color: #fff !important;
}

#categories ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}



.blog-post h1 {
    text-align: left;
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: -5px;
    color: #4e4e4e !important;
    margin-top: 1rem;
}



#blogs {
    float: left;
    width: 75%;
    padding-left: 20px;
}

#blog-posts .blog-box {
    width: 100%;
    height: 250px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgb(213 205 205 / 25%);
    margin: 0px 8px 35px 8px;
    padding: 10px 10px 10px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px #86335d solid;
    transform-style: preserve-3d;
    transition: .4s linear all;
}

#blog-posts .blog-box:hover {
    transform: scale(1.05);
    border-color: #000;
}

.blog-post .twoBoxes {
    display: flex;
    gap: 20px;
}



#blog-posts .blog-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-box-content {
    text-align: center;
    position: absolute;
    top: 0%;
    right: 0%;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s ease;
}

.blog-box-content .blog-date {
    margin-top: 1rem;
    font-weight: 600;
}

.blog-box-content .blog-title {
    padding: 0.5rem;
    width: 100%;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px !important;
    color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* .blog-post .twoBoxes:hover .blog-box-content {
    width: 100%;

} */

.blog-box-content a {
    color: #fff;
    background-color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    position: absolute;
    bottom: 20px;
    border-radius: 5px !important;
}

.blog-box-content a:hover {
    color: #fff;
    text-decoration: none;
    background: var(--darkBlue);
}

#blog-container {
    width: 90%;
    margin: 0 auto;
    /* display: flex; */
    flex-wrap: wrap;
}



#categories {
    flex: 1
}

#categories ul {
    padding: 0 !important;
    list-style: none;
    background: var(--darkBlue);
}

#categories ul li {
    margin: 0;
    padding: 0;
}

#categories ul li:last-child {
    border-bottom: none;
}

#categories ul li a {
    display: inline-block;
    color: #bbbbbb;
    font-size: 40px;
    font-weight: 800;
    padding: 0;
    margin: 0 .7em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

#categories ul li a:hover {
    color: #353535;
    background: none;
    border-bottom: 3px solid var(--btnColor);
    border-radius: 0;
}

#categories .pro_active {
    color: #353535;
    border-bottom: 3px solid var(--btnColor);
}

#blog-posts {
    flex: 3;
}

.blog-post {
    display: none;
    margin-bottom: 20px;
}



.blog-post:nth-child(1) {
    display: block;
}

[data-category]:hover {
    cursor: pointer;
}


.discc li {
    list-style: disc !important;
    line-height: 20px;
    color: #000 !important;
    font-weight: 400;
}

.productBigImg img {
    padding: 0.5rem;
    border: 1px solid #ccc;
    width: 100%;
    height: 660px !important;
    object-fit: cover;
}


/*Home Vision Mission */


.vis_mis_sec {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url("../imgs/vision_bg.jpg") no-repeat center fixed;
    background-size: cover;
    padding-block: 2.5rem;
}

.vis_box {
    background: rgb(255 255 255 / 96%);
    text-align: center;
    padding: 30px;
    height: 300px;
    box-shadow: 0 0 20px #ccc;
}

.vis_box h2 {
    text-align: center;
    font-weight: 800;
    color: #000;
    margin-block: 15px;
    font-size: 28px;
    color: var(--btnColor);
}

.vis_box p {
    line-height: 27px;
    margin-bottom: 20px;
}

.vis_mis_sec img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Our Gallery */





.openPopupBtn {
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.videopopup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.popup-content {
    position: fixed;
    padding: 20px;
    width: 90%;
    height: 75%;
    background: white;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9999;
}

#closePopupBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    background-color: var(--btnColor);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#closePopupBtn:hover{
    background-color: var(--primary);
}


















.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.popup img {
    width: 60%;
    height: 60%;
    border-radius: 1rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.nav-btn {
    font-size: 1.1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 20px;

}

.next-btn {
    right: 20px;
}


#image-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    font-size: 18px;
}





.galleryImg {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--btnColor);
    border-radius: 1rem;


}

/* .galleryImg::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 9;
} */

/* .galleryImg:hover:before {
    opacity: 1;
} */

.our_gallery img {
    transition: all 1s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galleryImg:hover .scale {
    transform: scale(1.2);
}

.iconImg {
    display: none;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.iconImg img {
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease;
}

.galleryImg:hover .iconImg img {
    transform: scale(1);
    opacity: 1;
}

/* Tag;ine */

.tagline {
    background: #000 url(../imgs/enquiry_bg.jpg) no-repeat center;
    background-size: cover;
    padding: 90px 0;
    text-align: center;
}

.tagline h3 {
    font-size: 45px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    width: 60%;
    margin: 0 auto;
}

.tagline .underline {
    margin: 0 auto;
    background-color: #fff;
    margin-top: 1rem;
}

/* Sister Comapny */

.sister_company {
    background: url(../imgs/tagline.jpg) no-repeat center;
    background-size: cover;
    padding: 90px 0;
}

.sister_company h3 {
    font-size: 45px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.sister_company p {
    color: #fff;
    line-height: 150px;
    height: 120px;
    width: 120px;
    background: #fff;
    border-radius: 33% 66% 70% 30% / 49% 62% 38% 51% !important;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sister_company img {
    width: 80px;
    object-fit: contain;
}

.sister_company .col-12>div {
    text-align: center;
    width: 98%;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    height: 250px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}



.sister_company a {
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    padding-bottom: 13px;
    text-transform: capitalize;
    -webkit-transition: all .7s ease 0;
    transition: all .7s ease 0;
    color: #000;

}

/* Footer */

footer {
    padding-top: 45px;
    padding-bottom: 35px;
    /* border-top: 5px #413e89 solid; */
    background-color: var(--primary);
}


footer a,
footer li {
    font-size: 16px;
    /* text-transform: uppercase; */
    line-height: 26px;
    color: #555;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: .3s linear all;
    display: block;
    font-weight: 600;
}

footer a:hover {
    /* color: var(--btnColor); */
    text-decoration: underline;
}

footer i {
    color: var(--primary);
    color: #fff;

}

footer h6 {
    display: block;
    font-size: 15px;
    line-height: 24px;
    color: #272561;
    color: #fff;

    font-weight: 800;
}

.address a {
    color: var(--primary);
    color: #fff;

    display: inline-block;
}


/* .address a:hover {
    color: var(--primary);
    
} */

.ft_heading {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    color: #fff;

    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 1rem;
}

.ft_logo {
    text-align: right;
  

}

.ft_logo img {
    width: 212px;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    object-fit: contain;
    box-sizing: unset;
}

.ft_logo p {
    margin-top: 1rem;
    color: var(--primary);
    color: #fff;

}

.subfooter {
    display: none !important;
    border-top: 1px solid #d4d4d4;
    padding: 0.5em 0;
    margin-top: 3em;
    background: #ececec;
    height: 80px;
    display: flex;
    align-items: center;
}

.subfooter a {
    display: inline-block;
}

.ft_social {
    display: flex;
    gap: 15px;
    justify-content: end;
}

.subfooter p {
    margin-bottom: 0;
}

.ft_social i {
    font-size: 1rem;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.5s ease;
}

.ft_social i:hover {
    background-color: var(--btnColor);
    color: #fff;
}

.ft_social a:hover {
    text-decoration: none;
}

#back-top img {
    width: 60px;
    height: 80px;
    object-fit: contain;

}

#back-top {
    position: fixed;
    right: -0.5%;
    z-index: 99;
    bottom: 2%;
    transition: all 0.3s ease;
}

#back-top:hover {
    right: -0%;

}

/* About Us Page  */


/* Comman Banner */
.banner-area {
    width: 100%;
    text-align: center;
    height: auto;
    position: relative;
}

.banner-area img {
    display: block;
    width: 100%;
    margin: auto;
    max-height: 550px;
    min-height: 350px;
    object-fit: cover;
}

/* Comman Heading */

.abou-hed {
    width: 100%;
    height: 41px;
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.abou-hed h1 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 37px;
    font-weight: 400;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 5px 22px;
}

/* Comman Strip */
.breadcrumb_bg {
    background: var(--btnColor);
}

.breadcrumb {
    margin: 0;
    font-size: 16px;
    color: #fff;
    background: none;
    padding: 6px 0px;
    font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.breadcrumb a,
.breadcrumb a:visited,
.breadcrumb a:hover {
    font-weight: 500;
    color: #fff;
}

.breadcrumb li.active {
    color: #fff;
}

.about_page {
    margin-top: 3rem;
}

.about_page img {
    width: 50%;
    object-fit: contain;
    float: right;
    margin-left: 1rem;
}

.quality {
    background: #f3f3fb;
    padding: 60px 0;
    background-size: cover;
}

.quality h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0px 0px 20px 0px;
    text-align: center;
    background: #272561;
    color: #fff;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 20px 0 20px 0;
    text-transform: uppercase;
}

.quality strong {
    font-size: 17px;
    display: block;
    margin-bottom: 1rem;
}

.quality li {
   
    
    margin: 0px 0px 10px 20px;
    list-style: disc;
    /* color: #6b6868; */
}

.fourBoxes img {
    object-fit: contain;
    padding: 0.5rem;
    border: 1px solid #ccc;
    background-color: #fff;
}

.visionBox {
    margin-block: 3rem;
}

.vis_miss_img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.product_range img {
    object-fit: cover;
}

.visionBox h4 {
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1em;
    text-transform: uppercase;
}

.visionBox li img {
    width: 15px;
    padding: unset;
    border: unset;
}

.visionBox li {
    margin: 0px 0px 10px 20px;
}

.missionBox {
    background: #f3f3fb;
    padding: 3rem 0;
}

.about_sis .primaryBtn {
    width: max-content;
    color: #fff;
    display: block;
    margin: 0 auto;
}

.about_sis h3 {
    width: 50%;
    margin: 0 auto;
}

.about_sis .underline {
    background-color: #fff;
}

.about_sis span {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 1rem;
}

/* Contact Us Page */
.category_section {
    background: #f3f3fb;
    padding: 60px 0 60px;
}

.category_section h1 {
    color: #000000;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1em;
    text-align: center;
}

.category_section h2 {
    color: #000000;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1em;
    text-align: center;
    text-transform: uppercase;
}

.category_section h2 p {
    margin-top: 1rem;
    color: #045782;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin: 5px 0 15px 0
}

.category_section h2 p strong {
    color: #000;
    margin-bottom: 0.5rem;
}

.category_section h2 span {
    display: block;
    width: 100px;
    height: 2px;
    margin: 10px auto 25px;
    background: #e91e63;
}

.category_section h2 span {
    background: #9B50DB none repeat scroll 0 0;
    height: 2px;
    margin: 0 auto 5px;
    width: 62px
}

.text_left .category_section h2 span {
    margin: 0
}

.category_section h2 span {
    height: 5px;
    width: 90px;
    background: #86335d;
    margin: 20px auto;
    position: relative;
    border-radius: 30px
}



.cat-htext {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    padding: 0 0 10px 0;
}

.cat-htext2 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    color: #000;
}

.mt-5 ul {
    margin: 0px;
    padding: 0px
}

.mt-5 ul:after {
    content: '';
    display: block;
    clear: both
}

.mt-5 ul li {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: block;
}

.feature-box {
    width: 290px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgb(213 205 205 / 25%);
    margin: 0px 8px 35px 8px;
    padding: 10px 10px 10px 10px;
    text-align: center;
    position: relative;
    border-bottom: 5px #86335d solid;
    transform-style: preserve-3d;
    position: relative;
    transition: .6s linear all;
}

.feature-box .icon {
    width: 100px;
    margin: 0 auto 20px;
    height: 100px;
    background: #272561;
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51% !important;
    padding: 20px;
    color: #fff;
}

.feature-box .icon svg {
    fill: #fff;
}

.feature-box2 {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgb(213 205 205 / 25%);
    margin: 0px 8px 35px 8px;
    padding: 10px 10px 20px 10px;
    text-align: center;
    position: relative;
    border-bottom: 5px #86335d solid;
    transform-style: preserve-3d;
    position: relative;
    transition: .6s linear all;
}

.feature-box2 i{
    font-size: 1.5rem;
}

.feature_img {
    width: 270px;
    height: 179px;
    margin: 0 auto 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.feature_img figure {
    width: 270px;
    height: 179px;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
}

.feature_img figure img {
    max-width: 100%;
    height: auto;
    transition: all linear .6s
}

.cate_w:hover .feature_img figure img {
    transform: scale(1.1)
}

.feature-title {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin: 0px 0 0 0;
    /* height:48px; */
    overflow: hidden;
    line-height: 22px;
    width: 100%;
    /* display: table-cell; */
    /* vertical-align: middle; */
    text-align: center;
}

.feature-text {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin: 15px 0 0 0;
    height: 94px;
    overflow: hidden;
    font-weight: 400;
}

.feature-text a {
    color: #000000;
}

.feature-text a:hover{
    text-decoration: underline;
}

.ico-read {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: auto;
    width: 40px;
    transition: .3s linear all;
}

.ico-read a {
    color: #fff;
    text-decoration: none;
    height: 40px;
    width: 40px;
    background: #86335d;
    border-radius: 100%;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 42px;
    position: absolute;
    display: block;
}

.feature-box:hover .icon {
    transform: rotateY(180deg);
    background: #000;
    transition: .1s linear all;
}

.feature-box:hover {
    border-bottom: 5px #000 solid;
    transform: scale(1.09);
}

.feature-box:hover .ico-read {
    left: 10px;
}



.form {
    background: #fff;
    padding: 25px;
    border: 1px solid #d5d5d5;
    border-radius: 15px;
    position: relative;
    margin: -55px auto 0;
    width: 80%;
    box-shadow: 0 0 20px rgb(158 158 158 / 25%);
}

.contact_box h2 {
    margin-bottom: 10px;
    line-height: 25px;
    color: #404040;
    font-weight: 600
}

.contact_form input[type=text],
.contact_form select,
.contact_form textarea {
    width: 49%;
    padding: 11px 15px;
    margin: 0;
    background: #fff;
    border: 1px #dddddd solid;
    border-radius: 5px;
}

.contact_form input::placeholder{
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}

.contact_form .large {
    width: 98.8% !important
}

.contact_form_cont input {
    margin-bottom: 0.7rem !important;
}

.addrs_w {
    border: 1px solid #d5d5d5;
    margin-bottom: 10px;
    padding: 10px 15px;
    background: #fff;
    width: 100%;
    color: #000
}

.addrs_w p:first-child {
    border-bottom: 1px solid #ccc;
    padding: 6px 10px;
    margin-top: -10px;
    margin-bottom: 0
}

.addrs_w p {
    margin: 0 -15px 15px;
    padding: 0 10px 5px
}

.contact_person {
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid #ccc;
    margin: 0 -15px 15px;
    padding: 7px 15px;
    background: #f3f3f3
}

.ofc_short_dtl {
    font-size: 14px;
    padding: 10px;
    background: #053d65;
    color: #fff
}

.contact_add span {
    display: block;
    float: left;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    font-weight: 500;
    border-radius: 50%;
    background: #272561;
    text-align: center;
    margin: 0 10px 5px 0;
    color: #fff;
}

.contact_add p {
    margin: 15px 0 11px;
    padding: 0;
    line-height: 22px;
    display: inline-block;
}

.c_address span {
    display: block;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500
}

.c_address span>b {
    font-size: 17px;
    margin-left: 0;
    border-radius: 50%;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    color: #fff;
    width: 30px;
    height: 30px;
    border: 1px solid #f1f1f1;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    font-weight: 500;
    border-radius: 50%;
    background: #272561;
    text-align: center;
}

.c_address span>b.whats {
    color: #50d925
}

.c_address span>b.skyp {
    color: #4cb1ff
}

.c_address br {
    line-height: 30px
}

.db {
    display: block
}

.loc {
    background: #80b84e;
    color: #fff
}

.loc img {
    border: 1px solid #000;
    width: 40px;
    height: 27px
}

.map-container {
    border: 3px solid #000;
    margin: 10px 0
}

.map-container iframe {
    width: 100%
}

.reset-butt {
    background: #9aa5af;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px
}

.reset-butt:hover {
    background: #ff7e48;
    color: #fff
}

.addrs_w hr {
    margin: 12px 0 !important;
}

.form h2 {
    text-align: center;
}

.contactBtn {
    margin-top: 1rem;
    background-color: var(--btnColor);
    color: #fff;
}

.contactBtn:hover {
    background-color: var(--primary);
    color: #fff;
}

.contactBtn1 {
    margin-top: 1rem;
    margin-left: 1rem;
    background-color: #ccc;
    border: 2px solid transparent;
    font-weight: 500;
}

.contactBtn1:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

/* CONTACTS ENDS */

/* Image Gallery */

.image_gallery .col-12 {
    margin-top: 1.5rem;
}

.our_gallery img{
    border-radius: 1rem;
}

/* Modern Kitchen Page */

.modern_kitchen_page {
    margin-block: 3rem;
}



.modern_kitchen_page .twoBoxes {
    width: 100%;
    height: 240px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px #ccc;
    margin: 0px 8px 35px 8px;
    padding: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px #86335d solid;
    transition: .4s linear all;
    cursor: pointer;
}


.modern_kitchen_page .twoBoxes:hover {
    transform: scale(1.1);
    border-color: #000;
}

.modern_kitchen_page .twoBoxes::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: scale(0);
    transition: .6s linear all;

}

/* .modern_kitchen_page .twoBoxes:hover::before{
    opacity: 1;
    transform: scale(1);
} */

.modern_kitchen_page img {
    border-radius: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.modern_kitchen_page .blog-box-content {
    width: 100%;
    background-color: unset;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.specialheight .blog-title {
    opacity: 0;
}

.modern_kitchen_page .twoBoxes:hover .specialheight .blog-title {
    opacity: 1;
}

/* Interior Page */

.interior_page #categories ul {
    flex-wrap: wrap;
}

.interior_page #categories a {
    font-size: 16px;
    font-weight: 600;
    margin: 0px 0px 20px 0px;
    text-align: center;
    background: #bdbdbd;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px 0 15px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s linear all;
    border: none;
}

.interior_page #categories a:hover {
    padding: 5px 15px;
    border-radius: 15px 0 15px 0;
    background-color: var(--primary);
    color: #fff;
    border: none;
}

.interior_page #categories .pro_active {
    background-color: var(--primary);
    color: #fff;
}

.interior_page .blog-box {
    height: 300px;
    padding: 1rem !important;
    border-radius: 1rem;
}

.interior_page img {
    border-radius: 1rem;
}

/* Site MAp */

.sitemap_page {
    margin-block: 2rem;
}

.sitemap {
    text-align: left;
    padding: 30px auto
}

.sitemap h2 {
    color: #232323;
    font-weight: 600;
    font-size: 20px !important;
    background: #eff2f7;
    border: 1px solid #d9dde3;
    border-radius: 5px;
}

.sitemap a {
    display: inline-block;
    padding: 5px 24px;
    background: url(../imgs/arr-1.png) no-repeat 8px center;
    font: 400 14px/20px Poppins, sans-serif;
    margin: 5px;
    color: #000;
    width: 32%;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    transition: .3s linear all;
}

.sitemap a:hover {
    color: #222;
    border: 1px solid #b7d7e9;
    text-decoration: none;
    background-color: #f7f7f7
}

.sitemap_hed {
    font-family: 'Poppins', sans-serif;
    color: #57b585;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 20px;
    margin: 15px 0 0;
}