@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
 :root {
    --font-family: "Poppins", sans-serif;
    --green: #c9e027;
    --black: #000;
    --grey: #5a5a5a;
    --white: #ffff;
    --red: #ca2511;
}

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

body {
    font-size: 16px;
    font-family: "Rubik", sans-serif;
    line-height: 1.8rem;
    font-weight: 400;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.navbar {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 5px;
}


/* .navbar-nav {
        background: #f5e2e2;
        width: 100%;
        padding: 20px;
    } */

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    padding: 0px 50px;
    position: relative
}

.nav-link:hover {
    color: var(--black);
}

.nav-item .active {
    border-bottom: 2px solid #c9e027;
}

.nav-item .active:hover {
    border: 0;
}

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

.nav-link:hover:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #c9e027;
    transition: all 1ms ease;
}

.nav-link:before {
    transition: all 100ms ease;
}

.nav-item a {
    color: var(--black);
}

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

.dropdown-item:hover {
    color: var(--green);
    background: var(--black);
}

.btn {
    background: var(--black);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn:hover {
    background-color: var(--black);
    color: var(--green);
}

.button {
    font-size: 20px;
    font-weight: 600;
}

.collapse {
    flex-flow: column;
}

.main-nav {
    background: #f2f2f2;
    border-bottom: 1px solid rgb(207, 205, 205);
    display: flex;
    justify-content: space-between;
}

.nav-item {
    padding: 0 20px;
    text-transform: uppercase;
}


/*
Animation bar effect only use css3 proparty
*/

.wrap {
    width: 60%;
    margin-top: 20px;
}

.animated-bar {
    height: 3px;
    width: 250px;
    background: -o-linear-gradient(45deg, #c9e027 15%, #000 65%);
    background: linear-gradient(45deg, #000 15%, #c9e027 65%);
    border-radius: 30px;
    position: relative;
}

.animated-bar::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: -o-linear-gradient(45deg, #c9e027 15%, #c9e027 65%);
    background: linear-gradient(45deg, #000 15%, #c9e027 65%);
    animation-name: habibur;
    -webkit-animation-duration: 1s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes habibur {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(200px);
        transform: translateX(200px)
    }
}

@keyframes habibur {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(200px);
        transform: translateX(200px)
    }
}

.title-area h1 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
}

.title-area h1 strong {
    color: var(--green);
    font-weight: 800;
    font-size: 35px;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px var(--red);
}

.abt-li {
    color: var(--black);
}


/* .about {
    margin-top: 45px;
} */

.about {
    padding: 50px 0;
}

.about p {
    color: var(--black);
}

.since {
    position: relative;
    float: left;
    margin-left: 82px;
    margin-top: 10px;
}

.since:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0px;
    width: 80px;
    height: 80px;
    background: #e8e9e9;
    border-radius: 50%;
}

.since .txt {
    position: relative;
    display: block;
    padding: 21px 5px;
    width: 90px;
    height: 90px;
    line-height: 24px;
    text-align: center;
    background: var(--green);
    text-transform: uppercase;
    color: var(--black);
    border-radius: 50%;
    font-size: 22px;
    padding-top: 24px;
}

.since:after {
    content: "";
    position: absolute;
    left: -42px;
    top: 0px;
    bottom: 0px;
    border-left: 2px solid #c9e027;
}


/* inspired form gumroad website */

.button {
    color: var(--black);
    cursor: pointer;
    border: 1px solid var(--white);
    border-radius: 4px;
    padding: 7px 12px;
    background: var(--green);
    transition: 0.2s;
    font-size: 16px;
}

.button:hover {
    color: var(--black);
    transform: translate(-0.25rem, -0.25rem);
    background: var(--green);
    box-shadow: 0.25rem 0.25rem var(--black);
}

.button:active {
    transform: translate(0);
    box-shadow: none;
}

.products {
    background: url("../images/products-bg.jpg");
    object-fit: cover;
    background-repeat: no-repeat;
    padding: 50px 0px 60px;
    background-attachment: fixed;
}

.sector-we-serve {
    background-image: url("../images/pattern.jpg");
    /* object-fit: cover; */
    height: auto;
    padding: 50px 0px 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.card {
    position: relative;
    width: auto;
    height: 268px;
    background-color: #f2f2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 0 0 5px #cae027;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 30px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(202, 224, 39, 0.932);
}

.card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-image: linear-gradient(#e9e7e7c4, rgba(184, 202, 42, 0.815));
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card__content {
    transform: rotateX(0deg);
}

.card__title {
    margin-top: 70px;
    font-size: 25px;
    color: var(--black);
    font-weight: 800;
}

.card__content .read-more {
    position: relative;
    color: var(--white);
    font-size: 16px;
    line-height: 1.8em;
    margin-top: 5px;
    font-weight: 700;
    display: inline-block;
    text-decoration: underline;
}

.card:hover svg {
    scale: 0;
}

.card__title a {
    text-align: center;
}

@media (max-width:600px) {
    .card {
        width: auto;
    }
}

.p-title h2 {
    color: var(--white);
    font-weight: 600;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.p-title h2 strong {
    color: var(--green);
}

.p-title h3 strong {
    color: var(--green);
}

.p-title h3 {
    font-size: 35px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
}


/* form */

.our-client img {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    margin-top: 20px;
}

.clinet {
    padding: 50px 0;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/contact-form-bg.jpg");
    object-fit: cover;
    padding: 30px;
    border-radius: 10px;
    color: var(--white);
    position: relative;
    border-top: 5px solid var(--green);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.card-1 {
    width: 90%;
    cursor: default;
    padding: 1.25rem;
    border-radius: 0.25rem;
    background-color: var(--green);
    transition: transform 0.3s ease-in-out;
    border-radius: 11px;
}

.card-1:hover {
    transform: translateY(-0.5rem);
}

.card-1-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0.25rem;
}

.card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.title {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}


/* slider-dots */

.slider {
    width: 40rem;
}

.slide img {
    display: block;
    width: 100%;
    height: auto;
}

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

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

.slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: var(--green);
    text-indent: -9999px;
}

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


/* slider-dots-end */


/* tabs */

.tabs-sec {
    margin: 20px 0px 0px;
    background-image: url(../images/ELECTRICITY.jpg);
    height: 600px;
    background-repeat: no-repeat;
    background-position: left center;
    margin-bottom: 30px;
}

.tabs_wrapper {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    background: transparent;
}

ul.tabs {
    display: inline-block;
    vertical-align: top;
    /* position: relative; */
    z-index: 10;
    margin: 25px 0 0;
    padding: 0;
    width: 30%;
    /* min-width: 175px; */
    list-style: none;
    transition: all 0.3s ease;
    /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4); */
}

ul.tabs li {
    margin: 0;
    cursor: pointer;
    padding: 15px 21px;
    line-height: 31px;
    color: var(--black);
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    background-color: #666;
    background: var(--green);
    transition: all 0.3s ease;
    margin-top: 30px;
}

ul.tabs li:hover {
    background: var(--black);
    transition: all 0.3s ease;
    color: var(--white);
}

ul.tabs li.active {
    background: var(--black);
    color: #dddddd;
    transition: all 0.3s ease;
}

.tab_container {
    display: inline-block;
    vertical-align: top;
    /* position: relative; */
    z-index: 20;
    left: -2%;
    width: 50%;
    height: auto;
    /* min-height: auto; */
    min-width: 10px;
    text-align: left;
    background: #ffffff8a;
    /* border-radius: 12px; */
    /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); */
    padding: 20px;
    margin-top: 25px;
}

.tab_content {
    padding: 10px;
    height: 100%;
    display: none;
}

.tab_drawer_heading {
    display: none;
}

ul.tabs li:hover .icon-1 {
    content: url("../images/promise-white.png") !important;
}

ul.tabs li:hover .icon-2 {
    content: url("../images/goal-white.png") !important;
}

ul.tabs li:hover .icon-3 {
    content: url("../images/quality-white.png") !important;
}

ul.tabs li:hover .icon-4 {
    content: url("../images/green-white.png") !important;
}

@media screen and (max-width: 781px) {
    ul.tabs {
        display: none;
    }
    .tab_container {
        display: block;
        margin: 0 auto;
        width: 95%;
        height: auto;
        border-top: none;
        border-radius: 0;
        box-shadow: 0px 0px 10px black;
    }
    .tab_drawer_heading {
        background-color: var(--black);
        background: var(--green);
        color: #fff;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        user-select: none;
        text-align: center;
    }
    .tab_drawer_heading:hover {
        background: #ccc;
        background: var(--black);
        color: white;
    }
    .d_active {
        background: #fff;
        background: var(--black);
    }
}

.tabs-sec {
    padding: 70px 0;
}

.get-started {
    background-image: url('../images/get-startes-bg.jpg');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    padding: 30px 30px;
    margin: 20px;
    border-radius: 5px;
}

.get-started h2 {
    font-size: 30px;
}

@media (max-width:600px) {
    .get-started h2 {
        font-size: 20px;
        margin-top: 10px;
    }
    .button-2 {
        padding: 5px 10px;
        font-size: 13px;
    }
}

@media (max-width:480px) {
    .get-started h2 {
        font-size: 18px;
        margin-top: 10px;
    }
    .button-2 {
        padding: 5px 10px;
        font-size: 14px;
    }
}

.button-2 {
    color: var(--black);
    cursor: pointer;
    border: 1px solid var(--black);
    border-radius: 4px;
    padding: 0.5em 1.5em;
    background: var(--green);
    transition: 0.2s;
    font-weight: 700;
    font-size: 20px;
}

.button-2:hover {
    color: var(--black);
    transform: translate(-0.25rem, -0.25rem);
    background: var(--white);
    box-shadow: 0.25rem 0.25rem var(--green);
}

.button-2:active {
    transform: translate(0);
    box-shadow: none;
}


/* footer css start*/

.footer {
    background-image: linear-gradient(rgba(17, 17, 17, 0.575), rgba(53, 51, 51, 0.733)), url("../images/footer-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 20px;
}

.footer-about p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.links {
    margin: 20px 0px;
    font-weight: 700;
    color: var(--green);
    font-size: 18px;
}

.links1 {
    margin: 20px 30px 0px;
    font-weight: 600;
    color: #fff;
}

.links ul li {
    margin: 0px 50px;
    list-style-type: none;
    color: #fff;
}

.footer-li {
    color: rgb(255, 255, 255);
    font-weight: 400;
}

.footer-li:hover {
    color: var(--green);
}

.footer-social-icon {
    height: 25px;
    width: 25px;
    margin: 0px 10px;
}

.footer-icon {
    height: 20px;
    width: 20px;
    margin: 5px;
}

.info p {
    color: #fff;
    font-weight: 400;
}

.dot-clr {
    color: #fff;
    list-style-type: none;
}

.dot-clr:hover {
    color: #cf0303;
}

.icn1 {
    color: #316FF6;
    font-size: 25px!important;
}

.icn2 {
    color: #CD201F;
    font-size: 25px!important;
}

.icn3 {
    color: #fff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    font-size: 25px!important;
    border-radius: 10px;
}

.icn4 {
    color: #1DA1F2;
    font-size: 25px!important;
}


/*footer css end*/


/*copyright css*/

.copy {
    background-color: #000;
}


/* copyright css*/

.flow>*+* {
    margin-top: var(--flow-space, 1em);
}

.back-to-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 10px;
    background-color: var(--green);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.back-to-top .icon__arrow-up {
    height: 40px;
    width: 40px;
}

.card-title-1 img {
    width: 80px;
    border: 4px solid #000;
    border-radius: 50%;
    padding: 10px;
}

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

.card-p h4 span {
    font-size: 16 px;
    color: var(--black);
    font-weight: 600;
}

.small-desc-1 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--black);
    text-align: center;
    margin-top: 10px;
}


/* 
.small-desc-1 {
    font-size: 1em;
} */

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 2em;
    height: 2em;
    overflow: hidden;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #c9e027, #000);
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

.card-p {
    display: block;
    position: relative;
    /* max-width: 300px; */
    max-height: 320px;
    background-color: #ece7e7;
    border-radius: 10px;
    padding: 2em 1.2em;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    font-family: Arial, Helvetica, sans-serif;
}

.card-p:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: var(--green);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.35s ease-out;
}

.card-p:hover:before {
    transform: scale(28);
}

.card-p:hover .small-desc {
    transition: all 0.5s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.card-p:hover .card-title-1 {
    transition: all 0.5s ease-out;
    color: var(--black);
}


/* about-us */

.section_all {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 100vh;
}

.section-title {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.section_title_all p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

.section-subtitle {
    letter-spacing: 0.4px;
    line-height: 28px;
    max-width: 550px;
    font-size: 16px;
}

.section-title-border {
    background-color: #000;
    height: 1 3px;
    width: 44px;
}

.section-title-border-white {
    background-color: #fff;
    height: 2px;
    width: 100px;
}

.text_custom {
    color: var(--green);
    font-size: 20px;
    font-weight: 700;
}

.about_header_main p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

.about_header_main .about_heading {
    max-width: 450px;
    font-size: 24px;
}

.about_icon span {
    position: relative;
    top: -10px;
}

.about_content_box_all {
    padding: 28px;
}

.card-container {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    /* background-color: #f5f5f5; */
}

.card-main {
    display: flex;
    /* width: 80%; */
    max-width: 800px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.card-img {
    flex-basis: 40%;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex-basis: 60%;
    padding: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.key-person {
    background: linear-gradient(rgba(0, 0, 0, 0.829), rgba(17, 16, 16, 0.767)), url("../images/about-bg.jpg");
    object-fit: cover;
    background-repeat: no-repeat;
    padding: 50px 0px 60px;
    background-attachment: fixed;
}

.key-person-content p {
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    text-align: justify;
}

.key-person-content p span {
    color: var(--green);
    font-size: 19px;
    font-weight: 600;
}

.key-person-content h3 {
    color: var(--green);
    font-size: 25px;
    font-weight: 700;
}

.leader-ship p {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}

.leader-ship-img img {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.leader-ship p span {
    color: var(--green);
    font-size: 19px;
    font-weight: 600;
}

.address-img img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.address-content {
    padding: 20px 5px;
}

.title-area h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
}

.title-area h2 strong {
    color: var(--green);
}

.product-in-img img {
    background: var(--green);
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 9px;
}

.product-i {
    padding: 50px 0;
}

.product-in-content h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--black);
}

.product-in-content h4 .fa-solid {
    color: var(--red);
    margin-right: 5px;
}

.fa-solid {
    color: var(--red);
    margin-right: 5px;
}

.product-in-content ul li {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-in-content ul li .fa-solid {
    font-size: 13px;
}

.product-in-content p {
    font-size: 17px;
    text-align: justify;
}

table {
    width: 100%;
    text-align: center;
    color: var(--black);
}

table,
th,
td {
    border: 1px solid #000;
    border-collapse: collapse;
}

table td {
    background: #ececec;
}

table td,
table th {
    padding: 15px;
    border: 1px solid hsla(0, 2%, 12%, 0.502);
}

.certificate-img {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.certificate-img img {
    border-radius: 9px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.certificate-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

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

.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.contact-info-icon {
    margin-bottom: 15px;
}

.contact-info-item {
    background: var(--black);
    padding: 30px 0px;
}

.contact-page-sec .contact-page-form h2 {
    color: var(--black);
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
}

.contact-page-form.contact-form input {
    margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
    height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
    background: #071c34;
    width: 150px;
    border-color: #071c34;
}

.contact-info-icon i {
    font-size: 48px;
    color: var(--green);
}

.contact-info-text p {
    margin-bottom: 0px;
}

.contact-info-text h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-text span {
    color: #999999;
    font-size: 16px;
    display: inline-block;
    width: 100%;
}

.contact-page-form input {
    background: #e0e0e0 none repeat scroll 0 0;
    border: 1px solid #c5c4c4;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}

.single-input-field textarea {
    background: #e0e0e0 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
    background: #fda40b none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
    background: #071c34;
    transition: all 0.4s ease-in-out 0s;
    border-color: #071c34
}

.single-input-field h4 {
    color: #464646;
    text-transform: capitalize;
    font-size: 14px;
}

.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.contact-page-map {
    margin-top: 36px;
}

.contact-page-form form {
    padding: 20px 15px 0;
}

.contact-info-text strong {
    color: var(--white);
}


/* .product-i {
        background-image: linear-gradient(rgba(252, 246, 246, 0.24), rgba(250, 245, 245, 0.836)), url("../images/product-bg-1.jpg");
        height: auto;
        background-position: center;
        background-repeat: no-repeat;
    } */

.card-title {
    color: var(--red);
}

@media (max-width:1920px) {
    .desptop-header {
        display: block;
    }
    .mobile-view {
        display: none;
    }
}

@media (max-width:1400px) {
    .desptop-header {
        display: block;
    }
    .mobile-view {
        display: none;
    }
}

@media (max-width:991.98px) {
    .desptop-header {
        display: none;
    }
    .mobile-view {
        display: block;
    }
}

@media (max-width:600px) {
    .main-nav .navbar-brand img {
        width: 50%;
    }
    .main-nav {
        display: flex;
        flex-flow: column;
    }
    .main-nav form {
        width: 50%;
    }
    .main-nav .form-control {
        width: 100px;
    }
}