@import url('https://fonts.googleapis.com/css2?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&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed: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&amp;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&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&amp;family=Noto+Sans+Mono:wght@100..900&amp;family=Oswald:wght@200..700&amp;family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;family=Raleway:ital,wght@0,100..900;1,100..900&amp;family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&amp;family=Noto+Sans+Mono:wght@100..900&amp;family=Oswald:wght@200..700&amp;family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&amp;family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;family=Raleway:ital,wght@0,100..900;1,100..900&amp;family=Rubik:ital,wght@0,300..900;1,300..900&amp;family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&amp;display=swap');
@import url("font-awesome.css");
@import url("flaticon.css");
:root {
    --orange: #f15a24;
    --blue: #0071bc;
    --purple: #242951;
    --white: #fff;
    --black-grey: #191a1b;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.8em;
    background: var(--white) !important;
    color: var(--black-grey);
    font-weight: 500;
}

p {
    color: #5c5c5c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "PT Sans", sans-serif;
    color: #262b3e;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.fw-3 {
    font-weight: 300;
}

.fw-5 {
    font-weight: 500;
}

.fw-7 {
    font-weight: 700;
}

.fw-8 {
    font-weight: 800;
}

.navbar-nav .nav-item .nav-link {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
        padding: 7px 18px;
    color: #000; 
}

.navbar-nav .nav-item .nav-link:hover {
    color: #e33d4b;
}

.nav-middle {
    margin-right: 20px;
}

.navbar {
    /* z-index: 999; */
    background-color:#ffffff99;
}

.nav-item:hover>.dropdown-menu {
    display: block !important;
}

.dropdown-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-grey);
}

.dropdown-item:hover {
    color: var(--white);
    background: #e33d4b;
}

.header-search-form-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 16px;
    background-color: #242e457e;
    padding: 5px 10px;
    border-radius: 50%;
}

.search-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.header-search-form {
    position: absolute;
    top: 180%;
    right: 0;
    width: 250px;
    background-color: #ffffff9f;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.header-search-form-wrapper button .fa {
    color: var(--white);
}

.header-search-form.open {
    display: block;
}

.form {
    padding: 10px;
}

.form-control-s {
    width: calc(100% - 60px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

button[type="submit"] {
    background: #e33d4b;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 0 4px 4px 0;
}

button[type="submit"]:hover {
    background-color: #e33d4b;
} 

.fixed-top.is-scrolling {
    background-color: #efefef; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
} 

.slider {
    margin-top: -2px;
}

.slider .image-wrap {
    position: relative;
}

.slider .image-wrap .overlay-slider {
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #1a1818;
    opacity: 0.5;
}

.slider .item img {
    width: 100vw;
    height: 120vh;
    object-fit: cover;
}

.slider .item .text-block {
    position: absolute;
    top: 50%;
    transform: translateY(-45%);
    left: 10%;
    right: 0;
    width: 100%;
    direction: ltr;
    line-height: 1;
}

.slider .item .text-block h3 {
    font-size: 35px;
    font-weight: 700;
    color: #e33d4b;
}

.slider .item .text-block p {
    font-family: "PT Sans", sans-serif;
    font-size:40px;
    font-weight: 600;
    color: #fff;
    line-height: 44px;
    max-width: 700px;
    text-transform: capitalize;
    line-height: 1.25em;
}

.slider .item .button {
    margin-top: 20px;
}

.slider .item {
    position: relative;
}


/* slider-end */


/* contact-sec */

.hero-address:first-child {
    background: #e33d4b;
}

.industry-hero-address {
    display: flex;
    justify-content: flex-end;
    margin-top: -136px;
    position: relative;
    z-index: 99;
    margin-right: 170px;
}

.hero-address {
    background: #fff;
    max-width: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 15px;
}

.hero-address:first-child .icon {
    background: #000;
    display: flex;
}

.hero-address:first-child .icon i {
    text-align: center;
    line-height: 50px;
    margin: auto;
}

.hero-address:first-child .content p,
.hero-address:first-child .content h5 {
    color: #fff;
    font-size: 22px;
}

.hero-address .icon {
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: #eeeded;
    font-size: 30px;
    color: #e33d4b;
    margin-right: 10px;
} 

.section-title {
    margin-bottom: 0;
    position: relative;
}

.section-title span::after {
    content: '';
    display: inline-block;
    width: 30%;
    height: 4px;
    background: #e33d4b;
    transition: width .3s;
    top: -15px!important;
    position: relative;
}

.section-title span:hover::after {
    width: 45%;
    transition: width .3s;
    margin: 0 auto;
}

.section-title>span {
    display: inline-block;
    padding: 0 80px;
    margin-bottom: 15px;
    font-size: 25px;
    color: #e33d4b;
    font-weight: 800;
}

.section-title h2 {
    font-size:30px;
    font-weight: 600;
    margin: 0 0 0.69em;
    line-height: 1.19em;
    color: #262b3e;
    position: relative;
}

.product {
    padding:30px 0;
    background-image: url("../images/BUILDING_LINE_ART.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    /* padding: 110px 0px 110px 0px; */
}

.product-2 {
    padding: 70px 0;
    background-image: url("../images/p2-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    /* padding: 110px 0px 110px 0px; */
}

.card {
    height:245px;
    background: #fff;
    border-top-right-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-out;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11), 0 24px 46px var(--box-shadow-color);
}

.card:hover .overlay {
    transform: scale(4) translateZ(0);
}

.card:hover .circle {
    border-color: var(--white);
    background: #e33d4b;
}

.card:hover .circle:after {
    background: #e33d4b;
}

.card:hover p {
    color: var(--white);
}

.card p {
    font-size: 23px;
    margin-top: 30px;
    font-weight: 600;
    z-index: 1000;
    transition: color 0.3s ease-out;
    text-align: center;
    line-height: 28px;
    padding: 0px 20px;
}

.circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e33d4b;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
}

.circle:after {
    content: "";
    width: 114px;
    height: 111px;
    display: block;
    position: absolute;
    background: #e33d4b;
    border-radius: 50%;
    top: 7px;
    left: 7px;
    transition: opacity 0.3s ease-out;
    z-index: -1;
}

.circle img {
    z-index: 10000;
    transform: translateZ(0);
    width: 70px;
}

.overlay {
    width: 150px;
    position: absolute;
    height: 150px;
    border-radius: 50%;
    background: #090909;
    top: 9px;
    z-index: 0;
    transition: transform 0.3s ease-out;
}


/* products-end */


/* counter */

.count {
    font-size: 40px;
    font-weight: bold;
}

.counter-wrapper {
    /* background: rgba(0, 0, 0, 0.712); */
    background-image: linear-gradient(rgb(10 102 206 / 80%), rgb(183 83 9 / 79%)), url('../images/products/counter-bg.jpg');
    background-position: center center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.count-img {
    width: 60px;
    margin-inline: auto;
}

.counter-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
}

.counter-inner {
    position: relative;
    z-index: 2;
}

.count-info {
    font-size: 18px;
    font-weight: 600;
}


/* counter-end */


/* contact-us */

.form-control {
    display: block;
    width: 100%;
    padding: 15px 0.75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--black-grey);
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #f3f6f8dc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-contact::placeholder {
    padding: 20px;
    font-weight: 600;
}


/* contact-us-end */


/* testomonial */

.creative-testimonial--slider {
    background-image: linear-gradient(to bottom, #bfd5f0, #f4f8fb, #f7fafc, #fbfcfe, #ffffff);
    padding: 30px 0px;
}

.creative-testimonial--slider .testimonial-inner {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-detail h5 {
    font-size: 23px;
    font-weight: 600;
    color: var(--white);
    background: #e33d4b;
    padding: 12px 5px;
    text-align: center;
}

.testimonial-inner .testimonial-heading {
    text-align: center;
    max-width: 60%;
    margin: auto;
    font-size: 2.813rem;
    line-height: 3.125rem;
    letter-spacing: -1px;
    margin-top: 0px;
    margin-bottom: 50px;
}

.testimonial-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 6%;
}

.swiper-slide .swiper-slide--inner {
    padding-left: 15%;
    padding-right: 15%;
    display: flex;
    align-items: center;
    column-gap: 50px;
    position: relative;
    overflow-x: hidden;
}

.swiper-slide--inner .testimonial-detail img {
    height: 35px;
}

.swiper-slide--inner .testimonial-detail p {
    margin: 0px;
    color: #242e45;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 5px;
}

.swiper-slide--inner .testimonial-detail span {
    color: #e33d4b;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    line-height: normal;
    margin-top: 10px;
}


/* Responsive Ipad */

@media only screen and (max-width: 981px) {
    body {
        background-color: lightblue;
    }
    .creative-testimonial--slider {
        padding-left: 10px;
        padding-right: 10px;
    }
    .testimonial-inner .testimonial-heading {
        max-width: 100%;
    }
    .swiper-slide .swiper-slide--inner {
        padding-left: 0%;
        padding-right: 0%;
    }
    .swiper-button-next.slide-btns,
    .swiper-button-prev.slide-btns {
        display: none;
    }
    .company-details--row .company-box {
        padding: 0px 5px;
    }
}


/* Responsive Ipad */

@media only screen and (max-width: 460px) {
    .testimonial-inner .testimonial-heading {
        font-size: 1.813rem;
        line-height: 2.125rem;
    }
    .swiper-slide .swiper-slide--inner {
        flex-direction: column;
        text-align: center;
    }
    .company-details--row {
        justify-content: center;
        flex-direction: column;
    }
    .company-details--row .company-box {
        padding: 0px 0px;
        margin-bottom: 20px;
        width: 100%;
    }
} 

.footer {
    color: var(--white);
    padding: 80px 0px 0px;
    background-image: linear-gradient(rgb(12 12 12 / 90%), rgb(0 0 0 / 90%)), url(../images/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.footer .footer-logo {
    margin-bottom: 30px;
}

.footer .peragraph {
    /* line-height: 2em; */
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 14px;
}

.footer .peragraph p {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
}

.footer ul li span {
    font-size: 18px;
    color: #e33d4b;
    margin-right: 10px;
}

.footer ul li {
    margin-bottom: 13px;
    /* line-height: 24px; */
    font-weight: 400;
    color: var(--white);
    font-size: 15px;
}

.footer .useful h2 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 18px;
    color: var(--white);
    margin-bottom: 37px;
}

.footer .useful h2::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 45px;
    height: 3px;
    background-color: #e33d4b;
}

.footer .list span {
    font-size: 10px;
    margin-right: 10px;
}

.footer .list ul li {
    margin-bottom: 10px;
}

.footer .images img {
    padding: 5px 5px;
}

.footer .last-footer {
    border-top: 1px solid rgba(233, 229, 227, 0.925);
    padding: 15px 0px;
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
}

.footer .last-footer li span {
    color: #e33d4b;
    font-size: 16px;
}

.second-footer p {
    font-size: 16px;
}


/* owl-slider */

.owl-slider {
    background-image: url("../images/product-slider-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.industry-portfolio-note {
    display: flex;
    /* background: #000; */
    border-radius: 5px;
    min-height: 142px;
    align-items: center;
    justify-content: center;
    /* padding: 30px; */
    color: var(--white);
}
.section-title-2 h2 {
    font-size: 44px;
    font-weight: 600;
    margin: 0 0 0.69em;
    line-height: 1.19em;
    color: #262b3e;
    position: relative;
}

.industry-portfolio-note .note-content h3 {
    font-size: 25px;
    font-weight: 700;
    font-family: "PT Sans", sans-serif;
    line-height: 45px;
    margin: 0;
    width: 23ch;
    color: var(--white);
}

.product-slider {
    position: relative;
    padding:5px 0px 5px; 
}

.heading h2 {
    color: #e33d4b;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    font-family: "Mulish", sans-serif;
    text-transform: uppercase;
}

.heading hr {
    width: 65px;
    margin: 0 auto;
    height: 3px;
    background: #222;
    opacity: 1;
}

.heading {
    margin-bottom: 25px;
}

.services-one__single {
    position: relative;
    display: block;
    margin-bottom: 25px;
    border: 1px #b3b3b3 solid;
    width: 95%;
}

.services-one__img-box {
    position: relative;
    display: block;
}

.services-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.services-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: rgba(19, 34, 60, .30);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    background-position: center center;
    z-index: 1;
}

.services-one__img img {
    width: 100%;
    transform: scale(1);
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.services-one__arrow {
    position: absolute;
    right: 20px;
    bottom: -24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #e33d4b;
    font-size: 21px;
    color: #fff;
    transition: all 500ms ease;
    z-index: 1;
    text-decoration: none;
}

.services-one__arrow:before {
    position: absolute;
    top: 0;
    left: -20px;
    content: "";
    border-left: 20px solid transparent;
    border-bottom: 26px solid #e33d4b;
    transition: all 500ms ease;
}

.services-one__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
        padding: 18px 13px 16px;
}

.services-one__title {
        font-size: 16px;
    font-weight: 600;
    line-height: 10px;
}

.services-one__title a {
    color: #222222;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-decoration: none;
}

.services-one__single:hover .services-one__img:before {
    transform: scale(1, 1);
    transform-origin: left center;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
}

.slick-dots li {
    margin: 0 0.25rem;
}

.slick-dots button {
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #e33d4b;
    text-indent: -9999px;
}

.slick-dots li.slick-active button {
    background-color: var(--white);
}


/* button */

.button {
    text-decoration: none;
    line-height: 1;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .05);
    background-color: #fff;
    color: #121212;
    border: none;
    cursor: pointer;
    /* padding: 7px 7px; */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.button-decor {
    position: absolute;
    inset: 0;
    background-color: #e33d4b;
    transform: translateX(-100%);
    transition: transform .3s;
    z-index: 0;
}

.button-content {
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.button__icon {
    width: 48px;
    height: 40px;
    background-color: #e33d4b;
    display: grid;
    place-items: center;
}

.button__text {
    display: inline-block;
    transition: color .2s;
    padding: 2px 1.5rem 2px;
    padding-left: .75rem;
    overflow: hidden;
    white-space: nowrap;
    /* text-overflow: ellipsis; */
    max-width: 150px;
}

.button:hover .button__text {
    color: #fff;
}

.button:hover .button-decor {
    transform: translate(0);
}


/* about-us */

.about-us {
    padding: 70px 0;
    background: var(--white);
}

.icons {
    /* width: 128px; */
    /* height: 95px; */
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons>div {
    width: 70px;
    height: 70px;
}

.right-side h3 {
    font-size: 25px;
    font-weight: 700;
    color: #282828;
    margin-bottom: 18px;
}

.block .right-side p {
    font-size: 15px;
    color: #5c5c5c;
    line-height: 1.8em;
    padding-right: 27px;
    margin-bottom: 20px;
}

.right-side {
    position: relative;
    padding-left: 30px;
    margin-left: 30px;
}

.block .right-side::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 3px;
    background: #000;
    top: 0;
    left: 0;
}

.block ul {
    row-gap: 30px;
}

.sec-contact {
    background-image: url("../images/sec-contact-bg.jpg");
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
    background-attachment: fixed;
}

.industry-relationship-banner {
    position: relative;
    z-index: 1;
}

.relationship-inner {
    background: #e33d4b;
    border-radius: 5px;
    padding: 50px;
    position: relative;
    z-index: 1;
}

.relationship-inner h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: "PT Sans", sans-serif;
    color: #ffffff;
    line-height: 60px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 35px;
    margin-top: 0;
}

.relationship-inner p {
    font-size: 38px;
    font-weight: 700;
    font-family: 'Barlow Condensed';
    line-height: 1;
    margin-top: 25px;
    color: #fff;
    margin-bottom: 0;
    position: relative;
}

.relationship-inner::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: #000;
    top: 10px;
    left: 10px;
    border-radius: 5px;
    z-index: -1;
}

.relationship-inner::after {
    position: absolute;
    content: url(../../index.html);
    right: 20px;
    top: 55%;
}


/* Slider */

.client-sec {
    padding: 80px 0;
    background-color: var(--white);
}

.slide {
    margin: 0 5px;
}

.slick-slide- {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
    border: 1px solid #7a787863;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/* header */


/* Responsive columns */

@media screen and (max-width: 600px) {
    .column {
        width: 30%;
        display: block;
        margin-bottom: 10px;
    }
}


/* Style the counter cards */

.card-c {
    box-shadow: 0 4px 8px 0 rgba(248, 247, 247, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #e33d4b;
    color: white;
    height: 200px;
    width: 250px;
    border-radius: 9px;
}

.card-c h4 {
    font-size: 25px;
    color: var(--white);
    font-weight: 700;
}

.card-c h3 {
    font-size: 18px;
    margin-top: 10px;
    color: var(--white);
    font-weight: 600;
}

.internal-bg {
    background-image: url("../images/inner-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-a {
    background-image: url("../images/products/about-us-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-a::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-v {
    background-image: url("../images/video-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-v::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-m {
    background-image: url("../images/video-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-m::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-d {
    background-image: url("../images/data-center-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-d::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}

.internal-bg-cs {
    background-image: url("../images/cold-storage-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-cs::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-r {
    background-image: url("../images/roofing-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-r::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-me {
    background-image: url("../images/mezzanine-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-me::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-ah {
    background-image: url("../images/aircraft-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-ah::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-pf {
    background-image: url("../images/prefabricated-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-pf::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-ms {
    background-image: url("../images/metro-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-ms::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-pe {
    background-image: url("../images/pre-engineered-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-pe::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-is {
    background-image: url("../images/inmdustrial-shed-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-is::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-cz {
    background-image: url("../images/cz-purline-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-cz::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.internal-bg-md {
    background-image: url("../images/cz-purline-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-md::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}

.internal-bg-mds {
    background-image: url("../images/metal-deck-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.internal-bg-mds::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}

.bread-c {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 999;
}

.title h2 {
    color: var(--white);
}

.breadcrumb {
    color: var(--white);
}

.title {
    content: "";
    position: absolute;
    top: 40%;
}

.title h2 {
    font-size: 56px;
    font-weight: 800;
}

.title .breadcrumb {
    position: absolute;
    left: 44%;
    color: var(--white);
    z-index: 999;
}

.breadcrumb .breadcrumb-item {
    font-size: 17px;
    color: var(--white);
}

.breadcrumb .breadcrumb-item a {
    color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

.about-heading h3 {
    font-size: 45px;
    line-height: 54px;
    font-weight: 700;
    color: #e33d4b;
}

.about-heading p {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.8em;
}

.about-s-h p {
    font-size: 15px;
    font-weight: 600;
    line-height: 2em;
    letter-spacing: 0.3px;
    text-align: justify;
}


/* about-card */

.mission {
    background-image: linear-gradient(173deg, rgba(30, 22, 51, 0.637) 21%, rgba(45, 22, 66, 0.473) 66%), url("../images/mission.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.a-card {
    background: var(--white);
    padding: 30px;
    min-height: 260px;
    border-radius: 15px;
    border: 1px solid #181717a2;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.a-card img {
    width: 100px;
    margin-bottom: 30px;
    border-radius: 50%;
    border: 3px solid #e33d4b;
    padding: 12px;
}

.a-card h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: #e33d4b;
}

.a-card p {
    font-size: 15px;
    margin-top: 10px;
}


/* about-card-end */


/* contact */

.sec-title {
    position: relative;
    padding-bottom: 40px;
}

.sec-title .title {
    position: relative;
    color: #e33d4b;
    font-size: 20px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}

.sec-title .title:before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbb;
}

.sec-title h2 {
    position: relative;
    color: #252525;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5em;
    display: block;
}

.sec-title.light h2 {
    color: #fff;
}

.map {
    background-image: url("../images/back-g.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} 

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    grid-gap: 2rem;
    padding: 50px 0;
    background-image: url("../images/contact-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery__item {
    box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.gallery__image {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    height: 100%;
    width: 100%;
}

.gallery__image:hover {
    cursor: pointer;
    opacity: 0.8;
    /* transform: scale(1.15); */
}

.gallery__image:hover+.gallery__image__caption {
    display: block;
}

.gallery__image__caption {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    /* background: #222; */
    border-radius: 0.375rem;
    color: #fefefe;
    font-weight: 600;
    margin-top: 1.25rem;
    padding: 1rem;
    white-space: nowrap;
    z-index: 1;
}

.gallery__navigation--next,
.gallery__navigation--prev,
.gallery__navigation--close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0;
    height: 42px;
    opacity: 0.5;
    overflow: hidden;
    padding: 0;
    transition: opacity 0.2s ease-in-out;
    width: 42px;
}

.gallery__navigation--next:hover,
.gallery__navigation--prev:hover,
.gallery__navigation--close:hover {
    opacity: 1;
}

.gallery__navigation--next::before,
.gallery__navigation--prev::before {
    display: flex;
    content: "";
    border: solid #fff;
    border-width: 0 0.25rem 0.25rem 0;
    padding: 0.5rem;
}

.gallery__navigation--next {
    right: 1.5rem;
    transform: rotate(-45deg);
}

.gallery__navigation--prev {
    left: 1.5rem;
    transform: rotate(135deg);
}

.gallery__navigation--close {
    top: 2rem;
    right: 2rem;
}

.gallery__navigation--close::before {
    position: absolute;
    left: 1rem;
    background-color: #fff;
    content: " ";
    height: 33px;
    transform: rotate(45deg);
    width: 2px;
}

.gallery__navigation--close::after {
    position: absolute;
    left: 1rem;
    background-color: #fff;
    content: " ";
    height: 33px;
    transform: rotate(-45deg);
    width: 2px;
}

.gallery__modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    inset: 0;
    overflow-y: scroll;
    width: 100%;
    z-index: 9999;
}

.gallery__modal img {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
}

.gallery__modal[aria-hidden=true] {
    display: none;
}

.gallery__modal[aria-hidden=false] {
    display: flex;
}

.noscroll {
    overflow: hidden;
}


/* Content */

@media only screen and (max-width: 575px) {
    .footer__container {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer__column {
        border-left: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 1023px) {
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__column:nth-child(odd) {
        border-left: none;
    }
}

@media only screen and (min-width: 1024px) {
    .footer__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-heading {
    font-size: 45px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px #e33d4b;
}

.about-content p {
    font-size: 15px;
    color: #5c5c5c;
    line-height: 1.8em;
    padding-right: 27px;
    margin-bottom: 20px;
}


/* gallery-end */

.single-post .sidebar,
.single-service .sidebar,
.sidebar.sidebar-full {
    border: none;
    padding: 0 15px;
}

.sidebar {
    width: 100%;
    /* padding: 30px; */
    border: 1px solid #ececec;
}

.sidebar .widget {
    margin-bottom: 30px;
}

.widget-categories li.active {
    background-color: #e33d4b;
}

.widget-categories li {
    background-color: #f4f4f4;
    padding: 10px;
    margin-bottom: 5px;
}

.widget-categories li.active a {
    color: #fff;
}

.widget-categories li a {
    color: #5e5e5e;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.product-p {
    margin: 50px 0 10px 0;
}

.widget-categories li:hover {
    background-color: #e33d4b;
}

.widget-categories li:hover a {
    color: #fff;
}

.widget-categories li a:before {
    content: "\f054";
    font-family: fontawesome;
    margin-right: 8px;
}

.sidebar .download {
    background-color: #e33d4b;
    padding: 24px;
    position: relative;
    height: 74px;
}

.sidebar .download .download-desc {
    position: absolute;
    top: 25;
   
}

.sidebar .download .download-icon {
    float: right;
}

.sidebar .download .download-icon i {
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    border-left: 2px solid #e33d4b;
    padding-left: 24px;
}

.sidebar .download .download-desc h6 {
    
    font-weight: 700;
    
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--white);
}

.sidebar .widget .widget-title {
    position: relative;
    margin-bottom: 30px;
}

.sidebar .widget .widget-title h3 {
    font-size: 16px;
    /* font-family: 'Raleway', sans-serif; */
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.sidebar .widget .widget-title:after {
    content: "";
    height: 3px;
    width: 30px;
    position: absolute;
    bottom: 0;
    display: inline-block;
    background-color: #e33d4b;
}

.sec-title1 h1 {
    position: relative;
    color: #222222;
    font-size: 40px;
    font-weight: 700;
    /* text-transform: uppercase; */
    line-height: 1.4em;
    padding-bottom: 20px;
}

.theme_color {
    color: #e33d4b;
}

.sec-title1 h1:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 60px;
    height: 3px;
    background-color: #e33d4b;
}

.sec-title1 h1:after {
    left: 50%;
    margin-left: -30px;
}

.artical img {
    margin-inline: auto;
}

.artical p {
    font-size: 15px;
    font-weight: 500;
}

.designed-by p {
    font-size: 15px;
}

.designed-by h2 {
    font-weight: 700;
    color: #222222;
    font-size: 30px;
    /* text-transform: uppercase; */
    margin-bottom: 10px;
}

.designed-by h2 span {
    color: #e33d4b;
}

.why-choose-us ul img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.why-choose-us ul li {
    font-size: 16px;
    margin-bottom: 10px;
}


/* tabs */

.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    background: #e33d4b;
    border-bottom: 5px #e33d4b solid;
}

.tabs li {
    display: inline-block;
    margin: 0;
    padding: 10px 20px 5px 20px;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 2em;
    color: #FFF;
}

.tabs li:hover {
    background: #e33d4b;
}

.tabs li.current {
    background: #e33d4b;
    color: #FFF;
}

.tab-content {
    display: none;
    /* background: #f1f3fa; */
    padding: 15px;
    line-height: 1.4;
}

.tab-content.current {
    display: inherit;
}

.tab-sec {
    background-color: #f1f3fa;
    padding: 40px 0;
}

.designed-by h3 {
    font-size: 22px;
    font-weight: 700;
}

.table tr td {
    border: 1px solid #bebfc094!important;
    background: transparent;
    color: var(--black-grey);
    letter-spacing: 1px;
    font-size: 15px;
    text-align: center;
    line-height: 22px!important;
}

.roofing-img {
    box-shadow: rgba(12, 12, 12, 0.438) 0px 3px 8px;
    border: 1px solid #e33d4b;
    border-radius: 11px;
    background: #e33d4b;
}

.roofing-img img {
    border-radius: 11px;
    padding: 3px;
    width: 100%;
}


/* tabs-ensd */


/* From Uiverse.io by alexruix */

.card-p {
    border-radius: 20px;
    background: #f5f5f5;
    position: relative;
    padding: 3px;
    border: 2px solid #c3c6ce;
    transition: 0.5s ease-out;
    overflow: visible;
}

.card-details {
    color: black;
    height: 100%;
    gap: .5em;
    display: grid;
    place-content: center;
}

.card-details img {
    border-radius: 20px;
}

.card-button {
    transform: translate(-50%, 125%);
    width: 90%;
    border-radius: 10px;
    border: none;
    background-color: #e33d4b;
    color: #fff;
    font-size: 16px;
    padding: 7px;
    position: absolute;
    left: 50%;
    bottom: 0;
    opacity: 0;
    transition: 0.3s ease-out;
}

.text-body {
    color: rgb(134, 134, 134);
}


/*Text*/

.text-title {
    font-size: 1.5em;
    font-weight: bold;
}


/*Hover*/

.card-p:hover {
    border-color: #e33d4b;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.card-p:hover .card-button {
    transform: translate(-50%, 50%);
    opacity: 1;
}

.metal img {
    border: 1px solid #cfcecead;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.buillder {
    padding: 70px;
    background-image: url("../images/buillder-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* contact */

.frm-cntct {
    background-image: url('../images/buillder-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 15px 240px 50px 30px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.contact-heading {
    padding-bottom: 25px;
}

.detail {
    background-image: linear-gradient(#e33d4b, rgba(5, 52, 182, 0.315)), url(../images/detail-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, 
}

.detail h1 {
    color: #fff;
    padding: 20px 30px 10px;    font-size: 30px;
}

.detail-flex {
    display: flex;
    align-items: flex-start;
}

.d-icon {
    height: 30px;
    width: 30px;
    margin-left: 20px;
    margin-top: 10px;
}

.detail-flex p {
    color: #fff;
    font-size: 17px;
    padding: 12px 20px;
    margin-bottom: 1px;
}

.detail h5 {
    color: #fff;
    padding: 10px 30px;
}

.fab-w {
    color: #fff;
}

.contact-form {
    padding: 50px 0;
}

.contact-form-sec {
    width: 900px;
    width: 1000px;
    z-index: 0;
    position: relative;
}

.contact-info-sec {
    width: 400px;
    width: 492px;
    z-index: 0;
    margin-top: 40px;
    margin-left: -200px;
    /* position: absolute;*/
}

.detail-flex-icon {
    display: flex;
    align-items: flex-start;
    margin: 10px 25px;
    padding-bottom: 30px;
}

.social-icon {
    height: 27px;
    width: 27px;
    margin-left: 10px;
}

.form-flex {
    display: flex;
}

.details {
    background-color: #e33d4b;
}

.detail-flex {
    display: flex;
    color: #fff;
}

.detail-flex i {
    font-size: 40px;
    padding: 10px 0px;
    margin: 30px 10px;
}

.detail-p1 {
    padding: 30px 10px;
    font-size: 18px;
    word-break: break-all;
}

.detail-p2 {
    padding: 30px 10px;
}

.mid-color {
    background-color: #e33d4b;
}

.footer-detail-icon {
    height: 40px;
    width: 40px;
    margin-top: 25px;
    transition: transform .10s;
}

.detail-flex:hover .footer-detail-icon {
    transform: scale(1.1);
    rotate: 5deg;
}

.frm-enquiry {
    background-image: url('../images/enquiry-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 5px;
}

.contact-heading1 {
    padding-bottom: 30px;
}

.frm-enquiry .form-control {
    box-shadow: 1px 1px 1px var(--);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff!important;
}

.section-header h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.second-footer p {
    color: var(--white) !important;
}

footer ul li p {
    color: var(--white) !important;
}

.contact-bg {
    background-image: linear-gradient(rgba(4, 84, 189, 0.205), rgba(5, 52, 182, 0.219)), url("../images/products/contact-us-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.our-certificate {
    background-image: linear-gradient(rgba(21, 22, 24, 0.205), rgba(14, 15, 15, 0.466)), url("../images/products/certificate.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}

.roffing {
    padding: 50px 0;
}

footer ul li a {
    color: var(--white);
}

footer ul li a:hover {
    color: #e33d4b;
}
.Mywhatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.my-float {
    margin-top: 16px;
}
.Mywhatsapp:hover{
    color: var(--white);
}

/*key benefits*/
.benefits-card{
    border: 1px solid #e4e4e4;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 20px;
    margin: 10px 0px;
    height: 280px;
}
.benefits-card-1{
    border: 1px solid #e4e4e4;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 20px;
    margin: 10px 0px;
    height: 350px;
}
.benefits-card-title{
    font-size: 20px!important;
    font-weight: 700px!important;
    color: var(--black-grey)!important;
}
.img-icon{
    height: 50px;
    width:50px;
}
.benefits-card-title{
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0px;
}
.benefits-card-text{
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
/*gallery */

.gallery-location h3{
    font-size: 35px;
    font-weight: 700;
    margin: 20px 0px;
}

@media screen and (min-width: 300px) and (max-width: 320px) {
    .title .breadcrumb {
        position: absolute;
        left: 13%;
        color: var(--white);
        z-index: 999;
    }
    .title h2 {
        font-size: 45px;
        font-weight: 800;
    }
}

@media screen and (min-width: 1020px) and (max-width: 1024px) {
    .benefits-card{
        padding: 10px;
    }
    .benefits-card-1{
        padding: 10px;
        height:355px
    }
}
marquee a{
    color: var(--white);
    font-weight: 400;
}
.goog-logo-link {
    display:none !important;
    font-size:10px !important;
  } 
    
  .goog-te-gadget{
    color: transparent !important;
    font-size:0px !important;
    display: flex;
  }
  
  .VIpgJd-ZVi9od-l4eHX-hSRGPd, .VIpgJd-ZVi9od-l4eHX-hSRGPd:link, .VIpgJd-ZVi9od-l4eHX-hSRGPd:visited, .VIpgJd-ZVi9od-l4eHX-hSRGPd:hover, .VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    display: none;
  }
  .goog-te-gadget .goog-te-combo{
    margin-bottom: 30px;
  }
  .goog-te-gadget .goog-te-combo {
    padding: 7px;
  }
  .internal-bg-s {
    background-image: url("../images/friction-banner.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}
.internal-bg-s::before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.press-bg{
      background-image: url("../images/gallery/press-media.jpg");
    height: 430px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;  
}
.press-bg::before{
       content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* background: #000000ab; */
    background: linear-gradient(173deg, rgba(11, 11, 14, 0.98) 21%, rgba(37, 23, 7, 0.596) 66%);
    opacity: .80;
    position: absolute;
}
.comming{
    padding: 90px 0px;
}
.service-box-2 {
    padding: 5px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
}
.service-box-2 h3
 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size:17px;
    color: #000000; margin-top: 10px;
}

.service-box-2 img{
    width:100%;
}