/* Font-Family */
@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&display=swap');



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

:root {
    --primary-font: "Poppins", sans-serif;
    --primary-color: #6CB0F7;
    --secondary-color: #B10026;
}

body {
    /* overflow-x: hidden; */
    font-family: var(--primary-font);
}

html {
    overflow-x: hidden !important;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 30px;
}

p {
    font-size: 15px;
}


/* navbar section start */

.header-scrolled {
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 91px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    top: -80px !important;
    left: 0;
    width: 100% !important;
    transform: translateY(80px) !important;
    transition: transform 500ms ease, background 500ms ease !important;
    z-index: 99;
}


.nav-item a {
    font-size: 19px;
    font-weight: 500;
    color: #000;
    margin: 9px;
    text-transform: uppercase;
}

.nav-item a:hover {
    color: var(--primary-color) !important;
}

a#mobileServicesDropdown {
    color: #000;
}

.nav-btn a {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.callbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-left: 27px;
    border-radius: 10px 0 10px 0;
    background-color: #ffffff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 15px 25px 15px 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    transition: 0.5s;
    text-transform: uppercase;
    box-shadow: 0px 4px 6px 0px #00000033;
    width: 214px;
}

.callbtn i {
    rotate: 90deg;
}

.callbtn a {
    text-decoration: none;
    color: var(--primary-color);
}

.nav-btn a:hover {
    color: #fff;
    transform: scale(1.05);
}

.logo img {
    width: 95%;
    /* height: 100px; */
}

.navbar {
    height: 100px;
}

.navbar svg {
    margin-right: 20px;
}

.offcanvas-header img {
    width: 100px;
}

.navbar .container {
    padding: 0;
}

/* Menu haver star */

.nav-item .dropdown {
    position: relative;
}

.drop_down {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, 10%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
    padding: 10px 20px;
    z-index: 99;
    width: 233px;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s linear;
    list-style: none;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
}

.nav-item.dropdown:hover>.drop_down {
    visibility: visible;
    opacity: 1;
}

.drop_down li a {
    text-decoration: none;
    transition: all .5s;
}

.drop_down li a:hover {
    color: var(--primary-color);
}

.drop_down li {
    list-style: none;
}

/* Menu haver end */

/* navbar section end */



/* Banner-section-start */

.banner_wrapper .content_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 9;
}

.banner_wrapper .banner_imag::after {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90.08deg, rgba(0, 0, 0, 0.8) 1.03%, rgba(102, 102, 102, 0) 99.92%);
}

.banner_wrapper .content_wrapper .title_bx h6 {
    color: #fff;
    background: #00000054;
    display: inline-block;
    padding: 4px 7px;
    border-left: 2px solid var(--primary-color);
}

.banner_wrapper .content_wrapper h1 {
    color: #fff;
    font-weight: 600;

}

.banner_wrapper .content_wrapper p {
    color: #fff;
}


/* About-wrapper-start */

.about_wrapper .title h3 {
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.about_wrapper .content p {
    font-size: 18px;
}

.about_wrapper .content ul {
    padding: 0;
}

.about_wrapper .content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about_wrapper .featured_img img {
    border-radius: 5px 20px;
    border: 2px solid var(--primary-color);
}

.about_wrapper .featured_img p img {
    border: unset;
    border-radius: unset;
    width: 21px;
}

.about_wrapper .featured_img p {
    font-weight: 600;
}

/* About-wrapper-end */

/* Product-wrapper-start */
.product_wrapper {
    background: #f5f5f5;
}

.product_wrapper .product_bx img {
    height: 148px;
    object-fit: cover;
}

.product_wrapper .product_bx p {
    font-weight: 600;
    padding-top: 10px;
}

/* Product-wrapper-end */

/* Footer-start */
.footer_wrapper {
    background: #000;
}

.footer_wrapper .logo_bx img {
    width: 80%;
}

.footer_wrapper .footer_des p {
    color: #fff;
    margin-bottom: 0;
}

.footer_wrapper .btn_wrapper a {
    text-decoration: none;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    color: #fff;
    font-weight: 600;
}

.footer_wrapper .conatct_info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_wrapper .conatct_info .icon a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    text-decoration: none;
    border-radius: 50%;
    color: #fff;
}

.footer_wrapper .conatct_info .content p {
    color: #fff;
    margin-bottom: 0;
}

.footer_wrapper .conatct_info .content a {
    text-decoration: none;
    color: #fff;
}

.footer_wrapper {
    padding-bottom: 0 !important;
}

.footer_wrapper .bottom_bar {
    border-top: 1px solid #fff;
    padding: 20px 0;
}

.footer_wrapper .bottom_bar p {
    color: #fff;
}

.footer_wrapper .bottom_bar p a {
    text-decoration: none;
    color: #fff;
}

/* Footer-end */


/* Contact-page-start */
.inner_banner .banner_wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: bottom;
}

.inner_banner .banner_wrap::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000069;
    content: "";
}

.inner_banner .banner_wrap .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 9;
}

.inner_banner .banner_wrap .title h2 {
    color: #fff;
    font-weight: 600;
}

.contact_info_wrapper .contact_info {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact_info_wrapper .contact_content p {
    color: #000;
    font-weight: 600;
    position: relative;
}

/* .contact_info_wrapper .contact_content p::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 150px;
    height: 2px;
    background: var(--primary-color);
} */

.contact_info_wrapper .contact_info .icon_bx {

    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
}

.contact_info_wrapper .contact_info .icon_bx i {
    font-size: 25px;
    color: #fff;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .contact_info_wrapper .contact_info .contact_content a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
} */

.contact_info_wrapper .contact_info .contact_content a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    word-break: break-all;
}




.map_wrapper .pq-section-main-title {
    font-weight: 600;
    font-size: 45px;
    line-height: 56px;
    z-index: 9;
    padding: 0;
    margin: 0 0;
    position: relative;
    display: block;
}


.map iframe {
    width: 100% !important;
    border: 0;
    height: 300px;
}




.form .pq-form-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

.pq-form-title {
    margin-bottom: 30px;
}

.pq-applyform input,
.pq-applyform select,
.pq-applyform textarea {
    background-color: var(--white-color);
    margin-bottom: 15px;
}

.pq-applyform textarea {
    height: 100px;
}

.map_wrapper .btn-primary {
    background: var(--primary-color) !important;
}

/* Contact-page-end */


.pq-applyform .wpcf7-submit {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    height: 44px;
    height: 52px;
    margin: 0;
    padding: 0;
}

.pq-applyform p {
    margin-bottom: 0 !important;
}

.pq-applyform input {
    padding: 1rem .75rem;
}