@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f96328;
    --white: #fff;
    --black: #111;
}

ul {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
}

a {
    text-decoration: none;
}

.btn-primary {
    border: 1px solid var(--primary);
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--white);
    background-color: var(--primary);
    line-height: normal;
    font-size: 14.8px;
    text-transform: capitalize;
    padding: 7px 20px 7px;
    border-radius: 6px;
    letter-spacing: .5px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
    color: #5e5e5e;
    font-size: 14px;
    line-height: normal;
    width: 100%;
    outline: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    border: 1px solid #dbdbdb;
    margin: 0px 0 14px;
    border-radius: 4px;
    padding: 12px 20px;
    font-weight: 400;
    letter-spacing: .5px;
    background: #fff;
}

::placeholder {
    color: #777;
    font-weight: 400;
}

input[type="submit"] {
    color: var(--white);
    background: var(--primary);
    text-transform: uppercase;
    border: none;
    font-size: 14.5px;
    border: 0;
    outline: none;
    font-weight: 400;
    font-family: "Bricolage Grotesque", sans-serif;
    padding: 12px 20px;
    letter-spacing: 1px;
    border-radius: 4px;
    line-height: normal;
    width: 100%;
}

input[type="submit"]:hover {
    background: var(--secondary);
    color: var(--white);
    transition: 0.8s;
}

textarea {
    height: 100px;
    margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px 0;
    font-family: "Bricolage Grotesque", sans-serif;
    color: #050A15;
    font-weight: 500;
    text-transform: inherit;
    line-height: normal;
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 24px
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 23px;
    font-weight: 600;
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: "Bricolage Grotesque", sans-serif;
    color: #444;
    line-height: 24px;
}

ul,
li,
a {
    list-style-type: none;
    font-family: "Bricolage Grotesque", sans-serif;
    color: #444;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500
}

a:hover {
    transition: 0.8s;
    text-decoration: none;
}

.heading,
.leftheading {
    text-align: center;
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 6px;
}

.heading {
    width: fit-content;
    margin: 0 auto 25px;
    padding-left: 55px;
    background: url(../img/heading.png) no-repeat left;
    background-size: 45px;
}

.leftheading {
    text-align: left;
}

.subheading {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.subheading:before {
    position: absolute;
    bottom: 5px;
    background: #1b6ebd4f;
    height: 5px;
    width: 100%;
    content: '';
    z-index: -1;
}

figure {
    margin: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.drop-down-cnt {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease-in-out;
    margin-top: 5px;
}

.drop-down-cnt a {
    color: black;
    text-decoration: none;
    display: block;
    font-size: 14.8px !important;
    padding: 10px !important;
    border-bottom: 1px solid #00000024;
}

.drop-down-cnt a:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    transition: all 0.3s ease-in-out;
}

.dropdown:hover .drop-down-cnt {
    display: block;
}

/* top bar section  */

.top-bar {
    background-color: var(--primary);
    padding: 4px 0;
}

.top-bar .top-contact ul {
    column-gap: 25px;
}

.top-bar .top-contact ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    color: #ffffff9e;
}

.top-bar .top-contact ul li a {
    color: #fff;
}

.top-bar .top-contact ul li i {
    height: 30px;
    width: 30px;
    background-color: #ffffff40;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 14px;
}

.top-bar .top-icons {
    column-gap: 8px;
}

.top-bar .top-icons li {
    z-index: 1;
}

/*
.top-bar .top-icons::after{
    position: absolute;
    content: '';
    top: 0;
    height: 100%;
    width: 230px;
    background-color: var(--black);
    right: -54%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 8% 100%);
}
*/

.top-icons li:last-child i {
    margin-right: 0;
}

.top-bar i {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.top-bar i.fab.fa-facebook-f {
    background: #0866ff;
}

.top-bar i.fab.fa-linkedin-in {
    background: #0077b5;
}

/* menu bar section  */
.nav-bar.sticky {
    background-color: #000;
    color: #fff;
    top: 0;
}

.menu-bar.fixed {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 3px 3px 13px #4444441f;
    background: var(--white);
}

.menu-bar {
    padding: 5px 0;
    position: relative;
}

/*
.menu-bar figure {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
}
.menu-bar::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background-color: var(--primary);
    height: 100%;
    width: 280px;
    clip-path: polygon(75% 0%, 87% 49%, 75% 100%, 0% 100%, 0 51%, 0% 0%);
    z-index: -1;
}
*/
.menu-bar figure img {
    width: 200px;
}
/* 
.menu-bar .nav-links ul li a.active {
    color: var(--primary);
} */

.menu-bar ul li a {
    color: #000;
    padding: 10px 25px;
    font-size: 17px;
    letter-spacing: 1px;
    transition: 0.5s ease-in-out;
}
.menu-bar ul li.active a {
    color: var(--primary);
}


.menu-bar nav i {
    display: none;
}

i.fa-solid.fa-angle-down {
    display: inline-block;
    font-size: 13px;
}

/* banner section  */
.carousel-item img {
    height: auto;
    object-fit: cover;
}
/* 
.carousel-cnt {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 800px;
}

.carousel-cnt h2 {
    font-size: 42px;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 1px;
    opacity: 0;
    animation: .5s ease-in-out .7s forwards lts;
}

.carousel-cnt .btn-primary {
    opacity: 0;
    animation: .6s ease-in-out .8s forwards lts;
}

@keyframes lts {
    0% {
        transform: translateX(-150px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
} */

button.carousel-control-prev,
button.carousel-control-next {
    height: 40px;
    width: 40px;
    background: #ffffff70;
    position: absolute;
    top: 50%;
    border-radius: 10px;
    transform: translateY(-50%);
}

button.carousel-control-next {
    right: 20px;
}

button.carousel-control-prev {
    left: 20px;
}

/* about-us section  */
.about-us {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.about-us img {
    border-radius: 6px;
    object-fit: cover;
}

.about-cnt h6 {
    color: var(--secondary);
    font-size: 17px;
    margin-bottom: 0;
    border-left: solid 2px var(--primary);
    padding-left: 8px;
}

.about-cnt h2 {
    margin-bottom: 10px;
    font-size: 30px;
}

.about-cnt h4 {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0px;
    line-height: 26px;
}


/* services section */

.heading {
    position: relative;
    padding-left: 0;
}

.heading::after {
    position: absolute;
    content: '';
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    background-color: var(--primary);
    height: 2px;
}

.services-btn {
    padding: 50px 0 35px;
}

.services-btn a.button{
    border: 1px solid var(--primary);
    padding: 8px 20px;
    background-color: #f7f7f7;
    font-size: 15px;
    transition: all .5s ease-out;
    border-radius: 4px;
    display: flex;
    align-items:center ;
    justify-content: center;
}
.services-btn  a.button:hover{
    background-color: var(--primary);
    color: #fff;
}
.services-btn .row{
    row-gap: 20px;
}

/* clients section  */
.clients{
    padding: 60px 0;
    background-color: #f9f9f9;
}
.clients .row{
    row-gap: 20px;
}
.about-clients {
    background: #fff;
    padding: 15px 8px;
    border: 1px solid #f963286e;
    border-radius: 4px;
    box-shadow: 0 0 12px 0px #e9e9e9;
    transition: all .3s ease-in-out;
}
.about-clients h5{
    transition: all .3s ease-in-out;
    font-size: 15px;
    margin: 5px 0;
}
.about-clients:hover{
    transform: translateY(-8px);
    transition: all .3s ease-in-out;
}
.about-clients:hover h5{
    color: var(--primary);
    transition: all .3s ease-in-out;
}



.services{
    padding: 60px 0;
}

.our-services figure img {
    height: 240px;
    object-fit: cover;
    object-position: top;
    transition: all 0.5s ease-in-out;
}

.our-services figure {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.our-services figure:hover img {
    transform: scale(1.1);
    rotate: 2deg;
    filter: brightness(0.8);
    transition: all 0.5s ease-in-out;
}

.our-services.slick-initialized.slick-slider {
    margin-bottom: 30px;
}

.contact-cnt {
    margin-bottom: 25px;
}

.left.slick-arrow,
.right.slick-arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 111;
    background: #fff;
    border-radius: 50%;
}

.left.slick-arrow {
    left: -50px;

}

.right.slick-arrow {
    right: -50px;
} 


/* .our-team section  */
/* 
.our-team {
    padding: 45px 0 10px;
    background: #f8f8f8;
}
.our-team .about-team{
    position: relative;
}
.our-team .team-social-icons{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    column-gap: 5px;
 opacity: 0;
 transition: all 0.4s ease-in-out;
}
.our-team .team-social-icons i{
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #fff;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
}
.our-team .team-content {
    background: var(--white);
    padding: 15px;
    transform: translateY(-50px);
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    display: block;
}
.our-team .team-content h3{
    font-weight: 600;
}
.our-team .team-content span{
    color: var(--primary);
}
.our-team .about-team figure{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.our-team .about-team figure::before{
        position: absolute;
        content: "";
        top: 100%;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,.4);
        -webkit-transition: all .4s ease;
        transition: all 0.4s ease-in-out;
        z-index: 1;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        opacity: 0;
        visibility: hidden;
}
.our-team .about-team figure:hover::before{
    top: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
}
.about-team:hover .team-social-icons{
    opacity: 1;
    z-index: 2;
    top: 40%;
    transition: all 0.4s ease-in-out;
} */
/*HOME CONTACT CSS*/

.contact-us {
    padding: 60px 0;
}

.message {
    padding: 60px 0px;
}

.message .form {
    padding: 53px 20px;
    background: #ededed61;
    border-radius: 6px;
}

a.send {
    text-decoration: none;
    padding: 11px 35px;
    background: var(--primary);
    color: #000;
    border-radius: 10px;
    font-weight: 500;
    display: inline-block;
    letter-spacing: .5px;
    vertical-align: middle;
    margin-top: 5px;
}

.message ul {
    flex-wrap: wrap;
}

.message .contact-details {
    width: 49%;
    border: 1px solid #00000047;
    padding: 25px;
    margin-bottom: 10px;
    border-radius: 6px;
    word-break: break-all;
}

.contact-details i {
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--primary);
    border-radius: 6px;
    color: #fff;
    font-size: 24px;
}

.contact-details h3 {
    text-align: center;
    font-size: 18px;
    letter-spacing: .5px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 5px !important;
}

.contact-details p {
    text-decoration: none;
    color: #484848;
    font-size: 15px;
    letter-spacing: .5px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}

/* table section  */
.map iframe {
    width: 100%;
}

/* Footer */
footer {
    background: #f1f1f1;
    padding: 50px 0px 0px;
}

footer .social-icons i {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    margin-left: 10px;
}

footer .col-sm-3,
footer .col-sm-2 {
    padding-top: 40px;
}

footer .headings {
    font-weight: 600;
    font-size: 20px;
    position: relative;
    padding-bottom: 20px;
}

footer .headings.blank {
    display: none;
}

footer .headings::after {
    position: absolute;
    bottom: 12px;
    left: 0;
    height: 2px;
    width: 60px;
    background: var(--primary);
    content: '';
}

footer ul li {
    margin-bottom: 6px;
}

footer ul li a {
    font-weight: 500;
    font-size: 15px;
}

footer .logo img {
    width: 170px;
    display: block;
    margin: 0 auto;
}

footer p {
    text-align: center;
    margin: 15px 0px 10px;
}

footer figure img {
    width: 100px;
}

.ftrlst h3.headings:after {
    display: none;
}

.ftrcontact {
    position: relative;
    padding: 20px;
    height: 100%;
    z-index: 1;
    background: #ffffff12;
    border-radius: 0 0 0 30px;
    text-align: center;
}

.ftrcontact ul {
    margin-top: 10px;
    column-gap: 7px;
    justify-content: center;
}

.ftrcontact li {
    line-height: 35px;
}

.ftrcontact li,
.ftrcontact li a {
    color: var(--white);
    transition: .5s;
    line-height: 25px;
}

.ftrcontact ul li {
    margin: 7px 0;
}

.ftrcontact li a i {
    padding-right: 10px;
    font-size: 15px;
}

.ftrmenu h3 {
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 22px;
    position: relative;
    padding-bottom: 15px;
}

.ftrmenu h3:after {
    position: absolute;
    content: "";
    background-color: #fffdfd57;
    padding: 0.5px;
    width: 75px;
    left: 0;
    bottom: 0;
}

.ftrmenu li a:before {
    content: '\f061' !important;
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    color: var(--white);
    left: 0;
    font-size: 11px;
    transition: .5s;
    font-weight: 600;
}

.ftrmenu li a {
    color: var(--white);
    transition: .5s;
    display: inline-block;
    line-height: 35px;
    position: relative;
    padding-left: 20px;
}

.ftrmenu li a:hover {
    padding-left: 22px;
    letter-spacing: 0.5px;
}

.ftrsmo li a {
    background: #ffffff17;
    height: 42px;
    display: inline-flex;
    width: 42px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: .5s;
}

.ftrsmo li a i {
    padding: 0;
    font-size: 15px;
}

.coppyright {
    padding: 15px 0;
    text-align: center;
    margin-top: 40px;
    border-top: solid 1px #ccc;
}

.coppyright p {
    margin: 0;
}

.coppyright p a {
    text-decoration: underline;
}


/* About Us */
.msnvsn {
    padding: 30px;
}

.msnvsn .row {
    row-gap: 20px;
}

.msnvsn-about {
    box-shadow: 0 0 60px 0px rgba(0, 0, 0, .2);
    border-radius: 6px;
    overflow: hidden;
    transition: all .5s ease-in-out;
    border-bottom: 4px solid #fff;
}

.msnvsn-about figure {
    overflow: hidden;
}

.msnvsn-about figure img {
    transition: all .5s ease-in-out;
    height: 235px;
    object-fit: cover;
}

.msnvsn-about:hover figure img {
    filter: brightness(0.8);
    transform: scale(1.1) rotate(2deg);
}

.msnvsn-about:hover {
    border-bottom: 4px solid var(--primary);
    transition: all .5s ease-in-out;
}

.msnvsn-about .msnvsn-cnt {
    padding: 16px;
    margin-top: -45px;
}

.msnvsn-icon {
    padding: 15px;
    height: 85px;
    width: 85px;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50px);
    margin-left: 15px;
    outline: 4px solid #c5c5c580;
    transition: all .3s ease-in-out;
}

.msnvsn-about:hover .msnvsn-icon {
    outline: 4px solid var(--primary);
    transition: all .3s ease-in-out;
}

.msnvsn-about:hover .msnvsn-icon img {
    transform: rotateY(180deg);
    transition: all .5s ease-in-out;
}

.msnvsn-icon img {
    width: 40px;
    transition: all .5s ease-in-out;
}

.msnvsn .btn-primary {
    background-color: var(--primary);
    margin: 0 15px 20px;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 15px;
}

/* Breadcrumbs */

.breadcrumbs {
    background: linear-gradient(#000000ba, #f96328d1), url(../img/breadcrumb-banner.webp) center / cover;
    padding: 75px 0;
    text-align: center;
}

.breadcrumbs ul {
    display: flex;
    justify-content: center;
}

.breadcrumbs h1,
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumbs ul li a,
.breadcrumb-item.active {
    color: var(--white);
}


/* Contact Us */

.contactaddr {
    margin-bottom: 25px;
}

.contactus .googlemap iframe {
    width: 100%;
    height: 350px;
}

.contactaddrbox {
    background: var(--white);
    height: 100%;
    border-radius: 6px;
    border: dotted 1px var(--primary);
    padding: 15px;
    text-align: center;
}

.contactaddrbox i {
    font-size: 23px;
    background: var(--secondary);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    outline: dotted 1px var(--primary);
    outline-offset: 3px;
}

.contactaddrbox p,
.contactaddrbox p a {
    font-weight: 500;
    font-size: 16px;
}


/* Products */

.about-product {
    padding: 60px 0px;
}

.about-product figure {
    overflow: hidden;
    border-radius: 8px;
}

.about-product .product-cnt span {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 600;
    font-family: "Bricolage Grotesque", sans-serif;
    margin: 20px 0px 8px;
    display: inline-block;
}

.product-cnt h2 {
    font-size: 35px;
    margin: 20px 0px 15px;
}

.product-cnt p {
    margin: 10px 0px;
}

/* enquiry form section  */

.sidebar {
    position: sticky;
    top: 0;
}

.enquiry-form form {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.enquiry-form .enquiry-btn a {
    background-color: var(--secondary);
    color: #fff;
    padding: 8px 30px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
}

/* all products section  */

.product-categories {
    padding: 20px;
    position: relative;
    border: 1px dotted var(--primary);
    border-radius: 6px;
}

.product-categories h3 {
    font-weight: bold;
    padding: 5px 20px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    border: dotted 1px var(--primary);
}

.product-categories span {
    font-weight: 500;
}

.product-categories small {
    font-weight: 500;
    color: var(--secondary);
}

.product-categories ul li {
    padding: 8px;
    border-bottom: 1px solid #00000038;
}

.product-categories ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}



#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 99999999;
    padding-top: 8px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 6px 9px rgb(0 0 0 / 5%), 0 4px 5px rgb(0 0 0 / 5%);
}

#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: whtsbtn 2s linear infinite forwards;
}

#whatsappbtn img {
    width: 110px;
}

@keyframes whtsbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

#whatsappbtn img {
    width: 30px;
    margin-top: 4px;
}

#GoToTop {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 20px;
    border-radius: 4px;
    z-index: 99;
    padding: 0;
    border: solid 1px var(--primary);
    background: var(--white);
    width: 46px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary);
    text-decoration: none;
    padding-top: 10px;
}

#GoToTop .fa {
    display: block;
    padding-bottom: 3px;
}

#GoToTop:hover {
    background: var(--primary);
    color: var(--white);
}

#GoToTop.show {
    display: block
}


/* service-details page  */

/* gallery section  */

.thumbs {
    padding: 60px 0px;
}

.thumbs img {
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.thumbs .row {
    row-gap: 25px;
}

.thumbs>a:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.lightbox {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 999;
}

.lightbox:has(div:target) {
    transform: translateY(0%);
    opacity: 1;
}

.lightbox a.nav {
    text-decoration: none;
    color:var(--black);
    opacity: 0.5;
    font-weight: 200;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
}

.lightbox a.nav:hover {
    opacity: 1;
}

.lightbox .target {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    transform: scale(0);
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
}

.lightbox .target *:first-child,
.lightbox .target *:last-child {
    text-align: center;
}

@media all and (max-width: 600px) {

    .lightbox .target *:first-child,
    .lightbox .target *:last-child {
        flex: 0 0 50px;
    }
}

.lightbox .target .content {
    transform: scale(0.9);
    opacity: 0;
    flex: 1 1 auto;
    align-self: center;
    max-height: 100%;
    min-height: 0;
    min-width: 0;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.lightbox .target .content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: calc(100vh - 40px);
    display: block;
    margin: 0;
}

.lightbox .target:target {
    transform: scale(1);
}

.lightbox .target:target .content {
    transform: scale(1);
    opacity: 1;
}

.lightbox .close {
    position: absolute;
    right: 10px;
    top: 10px;
}
.nav{
    height: 40px;
    width: 45px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}

.thumbs figure {
    overflow: hidden;
    border-radius: 8px;
}

.thumbs figure:hover img {
    filter: brightness(0.5);
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
































/* responsive design  */
/* about us page  */
@media (max-width:1199px) {

    .heading,
    .leftheading {
        font-size: 30px;
    }
    .services-btn a.button {
        font-size: 14px;
        text-align: center;
        height: 100%;
    }
    footer .headings {
        font-size: 17px;
    }
}

/* home page  */
@media (max-width:991px) {

    /* header section  */
    .top-bar {
        display: none;
    }
    .menu-bar ul li.active a {
        color: #fff;
    }
    .menu-bar .nav-links {
        position: fixed;
        top: 0;
        right: -220px;
        height: 100vh;
        width: 220px;
        background-color: var(--primary);
        color: #fff;
        text-align: left;
        z-index: 99;
        transition: 0.5s;
        padding: 10px;
    }

    .menu-bar .nav-links ul {
        flex-direction: column;
        padding-top: 30px;
    }

    .menu-bar .nav-links ul li {
        margin-bottom: 8px;
    }

    .menu-bar .nav-links li a {
        color: #fff;
    }

    .drop-down-cnt a {
        color: #000 !important;
    }

    .menu-bar nav i {
        display: block;
        font-size: 25px;
        color: #000;
    }

    .menu-bar nav i.fa-solid.fa-bars {
        float: right;
        height: 35px;
        width: 35px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: var(--white);
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }

    .menu-bar figure img {
        max-width: 265px;
    }

    .carousel-item img {
        height: 460px;
    }

    .carousel-cnt h2 {
        font-size: 30px;
        line-height: 45px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 8px 15px 9px;
    }

    /* about-us section  */
    .heading,
    .leftheading {
        font-size: 30px;
    }

    .about-us .row {
        row-gap: 20px;
    }

    /* whatwedo section  */
    .whatwedo .row {
        row-gap: 20px;
    }

    /* footer section  */
    footer h3 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .coppyright {
        margin: 10px 0px 0px;
    }

    /* about-us page  */
    .msnvsn .msnvsn-item figure img {
        width: 60px;
    }

    .heading,
    .leftheading {
        font-size: 24px;
    }

    .heading,
    .leftheading {
        font-size: 19px;
    }

    /* product inner page  */
    .product-categories h3 {
        padding: 5px 20px;
        font-size: 20px;
    }

    .heading,
    .leftheading {
        font-size: 26px;
    }

    .about-product .row {
        row-gap: 30px;
    }
    footer .row {
        row-gap: 20px;
    }
}

@media (max-width:767px) {
    /* .menu-bar figure img {
        max-width: 235px;
    } */
    .carousel-item img {
        height: auto;
    }
    footer h3[style="visibility:hidden;"] {
        display: none;
    }

    .carousel-cnt h2 {
        font-size: 24px;
        line-height: 37px;
        margin-bottom: 25px;
    }

    button.carousel-control-prev,
    button.carousel-control-next {
        height: 35px;
        width: 35px;
    }

    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    input[type="date"],
    textarea,
    select {
        font-size: 12px;
    }

    .form-details textarea {
        height: 75px;
    }

    .requirement-form input[type="submit"] {
        padding: 10px;
        font-size: 11px;
    }

.services-btn .col-sm-4 {
    width: 50%;
}

.clients .col-sm-2 {
    width: 50%;
}
.services-btn a.button {
    padding: 10px;
    font-size: 14px;
    text-align: center;
    height: 100%;
}
.about-clients img {
    width: 180px !important;
    display: block;
    margin: 0 auto;
}
footer .row {
    row-gap: 20px;
}
}

@media (max-width:667px) {
    .menu-bar figure img {
        max-width: 220px;
    }

    .carousel-cnt h2 {
        font-size: 21px;
        line-height: 35px;
        margin-bottom: 20px;
    }

    .carousel-cnt {
        width: 600px;
    }

    .menu-bar {
        padding: 11px 0px;
    }
}

@media (max-width:568px) {
    .carousel-cnt {
        width: 85%;
    }
    .services-btn .col-sm-4 {
        width: 100%;
        padding-right: 15px !important;
    }
    #carouselExample button.carousel-control-prev,
    #carouselExample button.carousel-control-next {
        height: 30px;
        width: 30px;
    }

    #carouselExample button.carousel-control-prev img,
    #carouselExample button.carousel-control-next img {
        width: 18px;
    }

    #carouselExample button.carousel-control-prev {
        left: 5px;
    }

    #carouselExample button.carousel-control-next {
        right: 5px;
    }

    .our-services figure img {
        height: 180px;
    }

    .menu-bar {
        padding: 11px 0px;
    }

    .menu-bar figure img {
        max-width: 220px;
    }

    .carousel-item img {
        height: 260px;
    }

    .carousel-cnt h2 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .btn-primary {
        font-size: 12px;
        padding: 8px 15px 9px;
    }

    footer .row {
        row-gap: 20px;
    }

    /* product-inner page  */
    .reachus h2 {
        font-size: 20px;
    }

    .ftrmenu li a {
        line-height: 26px;
    }

    .left.slick-arrow {
        left: 0;
    }

    .right.slick-arrow {
        right: 0;
    }
}

@media (max-width:479px) {

    .menu-bar {
        padding: 11px 0px;
    }

    .carousel-cnt {
        width: 90%;
    }

    .carousel-cnt h2 {
        line-height: 27px;
        margin-bottom: 14px;
    }

    .heading,
    .leftheading {
        font-size: 22px;
    }

    .our-services figure img {
        height: 160px;
    }
    .clients .col-sm-2 {
        width: 100%;
    }
    .about-clients h5 {
        font-size: 17px;
        margin: 10px 0;
    }
}

@media (max-width:414px) {
    .menu-bar figure img {
        max-width: 200px;
    }

    .menu-bar nav i.fa-solid.fa-bars {
        font-size: 23px;
    }

    /* about-us page  */

    .heading,
    .leftheading {
        font-size: 17px;
    }

    .msnvsn h3 {
        font-size: 18px;
    }
}

@media (max-width:375px) {
    .carousel-cnt {
        width: 75%;
    }

    .carousel-cnt h2 {
        line-height: 26px;
        margin-bottom: 14px;
    }

    .btn-primary {
        font-size: 11px;
        padding: 8px 10px 9px;
    }

    .productscptn h3 {
        font-size: 22px;
    }

    /* about-us page  */
    .heading,
    .leftheading {
        font-size: 15px;
        font-weight: 700;
    }

    /* product-inner page  */
    .reachus h2 {
        font-size: 18px;
    }

    .heading,
    .leftheading {
        font-size: 20px;
    }
}

@media (max-width:360px) {
    .menu-bar figure img {
        max-width: 180px;
    }

    .menu-bar nav i.fa-solid.fa-bars {
        font-size: 19px;
    }

    .carousel-cnt h2 {
        font-size: 19px;
    }

    .carousel-cnt {
        width: 90%;
    }

    /* product-inner page  */
    .product-categories h3 {
        padding: 5px 20px;
        font-size: 18px;
    }

    .reachus a {
        font-size: 16px;
    }

    .reachus h2 {
        font-size: 16px;
    }
}