body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
    color: inherit
}

a:hover {
    color: inherit
}

a:focus-visible {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0
}

.container {
    max-width: 1300px;
    padding: 0;
}

#wrap {
    float: left;
    width: 100%;
}

#middle {
    float: left;
    width: 100%;
}

/* Header Section */
header {
    width: 100%;
    padding: 20px 0;
    border-bottom: solid 1px #DEDEDE;
    background: rgb(255 255 255 / 80%);
    transition: all .3s ease-in-out;
}

header.sticky {
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: slide-down 0.7s;
}

header .main_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .main_header .logo {
    max-width: 200px;
    width: 100%;
}

header .main_header .logo img {
    width: 100%;
    height: auto;
}

header .main_header .menu_sec {
    width: auto;
}

header .main_header .menu_sec ul.menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

header .main_header .menu_sec ul.menu li a {
    position: relative;
    display: block;
    padding-bottom: 10px;
    background: transparent;
    font-family: "Poppins";
    font-size: 20px;
    line-height: 30px;
    color: #181818;
    font-weight: 400;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

header .main_header .menu_sec ul.menu>li>a:hover,
header .main_header .menu_sec ul.menu>li:hover>a,
header .main_header .menu_sec ul.menu>li.current_page a {
    color: #D72826;
}

header .main_header .menu_sec ul.menu li a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 0%;
    height: 2px;
    background-color: #F4F4F4;
    opacity: 0;
    transition: all .5s ease-in-out;
}

header .main_header .menu_sec ul.menu li a::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    content: '';
    width: 0%;
    height: 2px;
    background-color: #D72826;
    opacity: 0;
    transition: all .5s ease-in-out;
}

header .main_header .menu_sec ul.menu>li>a:hover::before,
header .main_header .menu_sec ul.menu>li.current_page a::before {
    width: 100%;
    opacity: 1;
}

header .main_header .menu_sec ul.menu>li>a:hover:after,
header .main_header .menu_sec ul.menu>li.current_page a:after {
    width: 50%;
    opacity: 1;
}

header .main_header .rightBtn a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 500;
    border-radius: 30px;
    padding: 15px 31px;
    background-image: linear-gradient(77deg, #E96424, #D72826, #D72826, #E96424);
    background-position: left;
    background-size: 200%;
    transition: all 0.3s ease-in-out;
}

header .main_header .rightBtn a:hover {
    background-position: right;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Hamburger Menu */
header .main_header .hamburger {
    display: none;
    position: relative;
    border: 0px solid #fff;
}

header .main_header .hamburger #nav-btn,
header .main_header .hamburger #nav-btn+label {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    z-index: 99;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    justify-content: center;
}

header .main_header .hamburger #nav-btn {
    position: relative;
    opacity: 0;
    z-index: 100;
}

header .main_header .hamburger #nav-btn+label span {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

header .main_header .hamburger #nav-btn+label span::before,
header .main_header .hamburger #nav-btn+label span::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

header .main_header .hamburger #nav-btn+label span::before {
    top: -8px;
}

header .main_header .hamburger #nav-btn+label span::after {
    bottom: -8px;
}

header .main_header .hamburger #nav-btn:checked+label span {
    transform: rotate(135deg);
    border-radius: 2px;
    width: 30px;
}

header .main_header .hamburger #nav-btn:checked+label span::before,
header .main_header .hamburger #nav-btn:checked+label span::after {
    width: 30px;
    top: 0;
    max-width: 100%;
    transform: rotate(90deg);
}

header .main_header .hamburger #nav-btn:checked+label span::after {
    opacity: 0;
}

header .main_header .hamburger #nav-btn:checked~nav {
    visibility: visible;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.7s;
    overflow: hidden;
}

header .main_header .hamburger nav {
    position: fixed;
    top: 0;
    padding: 100px 20px 60px 20px;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    opacity: 1;
    z-index: 98;
    align-items: self-start;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.7s, visibility 0s 0.7s;
    transition: transform 0.7s, visibility 0s 0.7s;
    overflow: hidden;
}

header .main_header .hamburger nav ul.menu {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: scroll;
}

header .main_header .hamburger nav ul.menu li {
    width: 100%;
    padding-bottom: 20px;
    margin-right: 0;
    list-style-type: none;
}

header .main_header .hamburger nav ul.menu li:last-child {
    margin-right: 0;
}

header .main_header .hamburger nav ul.menu li a {
    font-family: "Nunito Sans", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
    text-decoration: none;
}

header .main_header .hamburger nav ul.menu li a:hover {
    color: #D72826;
}

/* Banner Section */
.bannerSec {
    position: relative;
    width: 100%;
    padding: 105px 0;
}

.bannerSec::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/banner-design.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.bannerSec::after {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    width: 40%;
    height: 100%;
    background: linear-gradient(180deg, #E65A25 0%, #D72826 100%);
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 5% 100%);
}

.bannerSec .leftCol {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bannerSec .leftCol h6 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: #D72826;
    margin-bottom: 10px;
}

.bannerSec .leftCol h1 {
    font-size: 49px;
    line-height: 65px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}

.bannerSec .leftCol h1 span {
    color: #D72826;
}

.bannerSec .leftCol p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 30px;
}

.bannerSec .leftCol .ctaBtnCol {
    display: flex;
    gap: 20px;
}

.bannerSec .leftCol .ctaBtnCol a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 30px;
    padding: 15px 31px;
    transition: all 0.3s ease-in-out;
}

.bannerSec .leftCol .ctaBtnCol a:not(.getQuoteBtn) {
    color: #FFFFFF;
    background-image: linear-gradient(77deg, #E96424, #D72826, #D72826, #E96424);
    background-size: 200%;
    background-position: left;
}

.bannerSec .leftCol .ctaBtnCol a:not(.getQuoteBtn):hover {
    background-position: right;
}

.bannerSec .leftCol .ctaBtnCol a.getQuoteBtn {
    background: transparent;
    border: 1px solid #D72826;
    color: #D72826;
    padding: 14px 30px;
}

.bannerSec .leftCol .ctaBtnCol a.getQuoteBtn:hover {
    background-image: linear-gradient(77deg, #E96424, #D72826, #D72826, #E96424);
    background-size: 200%;
    background-position: right;
    color: #FFFFFF;
    border-color: transparent;
}

.bannerSec .rightCol {
    position: relative;
    width: 100%;
    z-index: 1;
}

.bannerSec .rightCol img {
    width: 100%;
    height: auto;
}

/* About Section */
.aboutSec {
    width: 100%;
    padding: 70px 0;
    background-color: #F6F5F6;
}

.aboutSec h6 {
    font-size: 22px;
    line-height: 33px;
    font-weight: 500;
    color: #D72826;
    margin-bottom: 10px;
}

.aboutSec h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
}

.aboutSec .leftCol h4 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
    color: #000000;
}

.aboutSec .rightCol p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #000000;
}

/* Products Section */
.productsSec {
    width: 100%;
    padding: 70px 0;
}

.productsSec h6 {
    font-size: 22px;
    line-height: 33px;
    font-weight: 500;
    color: #D72826;
    text-align: center;
    margin-bottom: 10px;
}

.productsSec h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}

.productsSec h2 span {
    color: #D72826;
}

.productsSec p.info {
    max-width: 80%;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
    color: #000000;
    margin: 0 auto 50px;
}

.productsSec .row {
    gap: 30px 0;
}

.productsSec .productsBox {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
}

.productsSec .productsBox .productsImg {
    width: 100%;
}

.productsSec .productsBox .productsImg img {
    width: 100%;
    height: auto;
}

.productsSec .productsBox .productsInfo {
    width: 100%;
    padding: 20px;
}

.productsSec .productsBox .productsInfo h4 {
    font-size: 22px;
    line-height: 33px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.productsSec .productsBox .productsInfo p {
    font-size: 18px;
    line-height: 27px;
    font-weight: 300;
    color: #000000;
}

/* Why Choose Section */
.whyChooseSec {
    width: 100%;
    padding: 60px 0;
    background-color: #F6F5F6;
}

.whyChooseSec .leftCol {
    width: 100%;
}

.whyChooseSec .leftCol h6 {
    font-size: 22px;
    line-height: 33px;
    font-weight: 500;
    color: #D72826;
    margin-bottom: 10px;
}

.whyChooseSec .leftCol h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.whyChooseSec .leftCol p {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: #000000;
}

.whyChooseSec .rightCol {
    width: 100%;
    margin-top: 40px;
}

.whyChooseSec .rightCol .partnerInfoBox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px 10px;
}

.whyChooseSec .rightCol .partnerInfoBox::before {
    position: absolute;
    left: -16px;
    top: 0;
    content: '';
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 40%) 0%, rgb(215 40 38 / 60%) 50%, rgba(255, 255, 255, 40%) 100%);
}

.whyChooseSec .rightCol .partnerInfoBox .iconBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background: #FFFFFF;
    margin: 0 auto 15px;
}

.whyChooseSec .rightCol .partnerInfoBox .iconBox img {
    width: auto;
}

.whyChooseSec .rightCol .partnerInfoBox h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
    color: #000000;
}

/* Marquee Section */
.marqueeSec {
    width: 100%;
    padding: 35px 0;
    border-bottom: solid 2px #F6F5F6;
}

.marqueeSec .marquee {
    width: 100%;
    display: flex;
    gap: 60px;
    overflow: hidden;
}

.marqueeSec .marquee_group {
    display: flex;
    flex-shrink: 0;
    gap: 60px;
    min-width: 100%;
    align-items: center;
    justify-content: space-between;
    animation: scroll 15s linear infinite;
}

.marqueeSec .marquee p {
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
    text-align: center;
    color: #000000;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 60px));
    }
}

/* Contact Section */
.contactSec {
    width: 100%;
    padding: 70px 0;
}

.contactSec h6 {
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    color: #D72826;
}

.contactSec h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 10px;
}

.contactSec h2 span {
    color: #D72826;
}

.contactSec p {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 40px;
}

.contactSec .leftCol {
    width: 100%;
    border: 1px solid rgba(215, 40, 38, 15%);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 15%);
    border-radius: 15px;
    padding: 1px;
}

.contactSec .leftCol iframe {
    display: flex;
    width: 100%;
    height: 530px;
    border-radius: 15px;
}

.contactSec .rightCol {
    width: 100%;
    border: 1px solid rgba(215, 40, 38, 15%);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 15%);
    border-radius: 15px;
    padding: 30px;
}

.contactSec .rightCol form {
    width: 100%;
}

.contactSec .rightCol form .form-group {
    margin-bottom: 30px;
}

.contactSec .rightCol form .form-group .form-control {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 13px 20px;
    box-shadow: none;
    outline: none;
}

.contactSec .rightCol form .form-group .form-control::placeholder {
    color: rgba(0, 0, 0, 0.8);
}

.contactSec .rightCol form .form-group textarea.form-control {
    height: 120px;
    resize: none;
}

.contactSec .rightCol form .send-btn {
    width: 100%;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 500;
    border-radius: 30px;
    padding: 15px 31px;
    background-image: linear-gradient(77deg, #E96424, #D72826, #D72826, #E96424);
    background-position: left;
    background-size: 200%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
}

.contactSec .rightCol form .send-btn:hover {
    background-position: right;
}

/* Footer Section */
footer {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
    background: linear-gradient(259.61deg, rgba(215, 40, 38, 0.95) 4.27%, rgba(233, 100, 36, 0.95) 94.78%);
}

footer .footerLogo {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

footer .footerLogo img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

footer .contactDetails {
    width: 100%;
    margin-bottom: 40px;
}

footer .contactDetails ul {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

footer .contactDetails ul li {
    position: relative;
    line-height: 45px;
    padding-left: 55px;
}

footer .contactDetails ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: cover;
}

footer .contactDetails ul li.owner::before {
    background-image: url(../images/owner-icon.svg);
}

footer .contactDetails ul li.contact::before {
    background-image: url(../images/contact-icon.svg);
}

footer .contactDetails ul li.email::before {
    background-image: url(../images/email-icon.svg);
}

footer .contactDetails ul li.location::before {
    background-image: url(../images/location-icon.svg);
}

footer .contactDetails ul li a,
footer .contactDetails ul li p {
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

footer .contactDetails ul li a:hover {
    color: rgba(255, 255, 255, 60%);
}

footer .copyright {
    width: 100%;
}

footer .copyright p {
    color: #ffffff;
    text-align: center;
}

/* ---------- Thank You Page Css ---------- */
.thankBannerSec {
    width: 100%;
    padding: 70px 0;
}

.thankBannerSec h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.thankBannerSec h6 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #000000;
}