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

@font-face {
    font-family: 'integral_cfbold';
    src: url('../fonts/integralcf-bold-webfont.eot');
    src: url('../fonts/integralcf-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/integralcf-bold-webfont.woff2') format('woff2'),
         url('../fonts/integralcf-bold-webfont.woff') format('woff'),
         url('../fonts/integralcf-bold-webfont.ttf') format('truetype'),
         url('../fonts/integralcf-bold-webfont.svg#integral_cfbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

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

*:focus,
*:focus-visible {
    outline: none;
}

:root {

    --transition-05s: all ease-in-out 0.5s;

    --main-color: 255, 110, 10; /* rgb(255, 110, 10); */
    --black-color: 0, 0, 0; /* rgb(0, 0, 0); */
    --white-color: 255, 255, 255; /* rgb(255, 255, 255); */
    
}

body {
    font-family: "Poppins", sans-serif;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

.common-section {
    padding: 40px 0px;
}
.common-lwr {
    padding: 40px 0px;
}

.common-btn{
    background-color: rgba(var(--main-color),1);
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 700;
    transition: var(--transition-05s);
    color: rgba(var(--white-color), 1);
    position: relative;
    border: 1px solid transparent;
    font-family: 'integral_cfbold';
    font-size: 20px;
}
.common-btn:before, .common-btn:after {
    content: "";
    position: absolute;
    z-index: -1;
}
.common-btn.--shine {
    overflow: hidden;
}
.common-btn.--shine:after {
    height: 100%;
    width: 0;
    left: -25%;
    top: 0;
    background-color: rgba(var(--black-color),1);
    color: rgba(var(--white-color), 1);
    transform: skew(40deg);
    transform-origin: top left;
    transition: 0.5s;
}
.common-btn.--shine:hover:after {
    width: 125%;
    color: rgba(var(--white-color), 1);
}
.common-btn:hover {
    color: rgba(var(--white-color), 1);
}


/************************************ Header Section **************************************/
header {
    width: 100%;
    height: max-content;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9999;
    width: 100%;
    /* box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75); */
    padding: 20px 0px;
}

.navbar.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.95);
    /* background: rgba(14, 13, 14, 0.8); */
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
}
.top-header {
    font-family: "Roboto", sans-serif;
    background: rgba(var(--main-color), 1);
    padding: 3px 0px;
}
.top-nav p {
    margin-bottom: 0px;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    color: rgba(var(--white-color), 1);
    letter-spacing: 0.4px;
}
.top-nav p a {
    color: rgba(var(--white-color), 1);
    text-decoration: underline;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
.navbar.navbar-expand-xl > * {
    width: 90%;
    flex-wrap: nowrap;
}
.navbar-brand {
    height: 100px;
    height: 60px;
}

.navbar-brand img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}

.navbar-nav {
    display: flex;
    gap: 10px;
}

.navbar-nav .nav-item a {
    font-weight: 600;
    font-size: 15px;
    color: rgba(var(--black-color), 1);
    text-transform: capitalize;
}
.navbar-nav .nav-item a:hover, .navbar-nav .nav-item .active, .navbar-nav .nav-item.dropdown:hover > a, .navbar-nav .nav-item.dropdown > a.active + a {
    color: rgba(var(--main-color),1);
}
.nav-item.dropdown {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}
.nav-item.dropdown a:nth-child(2) {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.nav-item.dropdown .DDMenu.dropdown-menu {
    top: 100%;
    margin-top: 0px;
    border: none;
    padding: 20px;
}
.nav-item.dropdown .DDMenu.dropdown-menu ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.nav-item.dropdown .DDMenu.dropdown-menu ul li a {
    padding: 0px;
    background: rgba(var(--main-color), 0);
}
.head-brand-menu {
    gap: 16px;
}
.head-brand-menu .common-btn {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 5px 20px;
}

.navbar-toggler-icon {
    filter: invert(0);
    border-color: #fff;
}
.nav-btns {
    display: flex;
    align-items: center;
    gap: 14px;
}
.head-brand-menu button.navbar-toggler {
    padding: 3px 6px;
}
.head-brand-menu .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
}
.btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.btn-cart:hover {
    color: #000;
}
.btn-cart p {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 400;
}
.cart-icon {
    position: relative;
    width: 50px;
    font-size: 40px;
    line-height: 1;
}
/* .cart-icon i {
    font-size: 30px;
} */
.cart-icon span {
    --ehw-bg: 20px; 
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    border-radius: 50%;
    background: rgba(var(--main-color), 1);
    position: absolute;
    top: -10%;
    right: -10%;
    top: 0px;
    right: 0px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--white-color), 1);
}

/******************************************* Banner Section ***********************************/
.banner-section {
    position: relative;
    background: no-repeat center center / cover;
    padding: 40px 0px;
}
.banner-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: block;
}
.banner-section > * {
    position: relative;
    z-index: 1;
}
.banner-side-img {
    position: absolute;
    left: -5%;
    bottom: 0%;
    height: 650px;
}
.banner-side-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inr-banner-section {
    position: relative;
    background: no-repeat center center / cover;
}
.inr-banner-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}
.banner-content > * , .inr-banner-section > *{
    position: relative;
    z-index: 1;
}
.banner-content {
    display: flex;
    width: 100%;
    min-height: 80vh;
    /* padding: 200px 0px 0px 0px; */
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}
.inr-banner-content {
    display: flex;
    width: 100%;
    min-height: 40vh;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.inr-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    color: rgba(var(--white-color), 1);
}
.banner-content h1 {
    font-family: 'integral_cfbold';
    font-weight: 600;
    font-size: 48px;
    color: rgba(var(--white-color), 1);
    line-height: 1;
}
.banner-content > span {
    font-weight: 400;
    font-size: 17px;
    color: rgba(var(--white-color), 1);
    font-weight: 600;
}
.banner-content > span > * {
    display: inline-flex;
    font-size: 16px;
    color: #f0ad4e;
    margin-right: 10px;
    gap: 4px;
}
.banner-content .bnr-list {
    margin-bottom: 20px;
}
.banner-content .bnr-list li {
    color: rgba(var(--white-color), 1);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}
.banner-content .bnr-list li > i {
    font-size: 24px;
    color: rgba(var(--main-color), 1);
    margin-right: 15px;
}
.banner-btn {
    display: flex;
    align-items: center;
    gap: 15px;
}

/******************************* Service Section ******************************/
.service-head {
    text-align: center;
    padding: 20px 0px;
}
.service-head h3 {
    font-family: 'integral_cfbold';
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
}
.servicePage-head {
    padding: 20px 0px;
}
.servicePage-head h3 {
    font-family: 'integral_cfbold';
    font-size: 30px;
    font-weight: 900;
}
.service-head p {
    font-size: 24px;
    font-weight: 400;
}
.service-card {
    border: 1px solid #D1D1D1;
    border-radius: 20px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.service-name {
    text-align: center;
    padding: 30px 20px;
}
.service-name p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(var(--black-color), 1);
}
.price-txt, .service-name div {
    text-align: left;
    font-size: 15px;
    font-weight: 300;
    color: rgba(var(--black-color), 1);
}
.price-txt span, .service-name div span {
    color: #c36;
}
.service-img {
    height: 300px;
    overflow: hidden;
}
.service-img img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: var(--transition-05s);
}
.service-card:hover .service-img img {
    transform: scale(1.1);
}
.service-btn {
    text-align: center;
    padding-top: 20px;
}

.service-dtls-text h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
}
.service-dtls-text p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}
.review-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.review-content .review-starts i {
    color: #FDDA0D;
}
.service-dtls-text .price {
    display: flex;
    align-items: center;
    gap: 20px;
}
.service-dtls-text .price h5 {
    font-size: 38px;
    font-weight: 600;
    color: rgba(var(--main-color), 1);
}
.service-dtls-text .price p {
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-dtls-text .price p > i {
    color: #209608;
    font-size: 20px;
}
.service-feat-list {
    margin-bottom: 20px;
}
.service-feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}
.service-feat-list li > i {
    color: rgba(var(--main-color), 1);
}
.service-steps {
    margin-bottom: 20px;
}
.service-steps h5 {
    font-size: 16px;
    font-weight: 500;
}
.service-steps h5 i {
    color: rgba(var(--main-color), 1);
}
.check-modal .modal-body .loc-pin {
    padding: 10px 20px;
}
.check-modal .modal-body .loc-pin h4 {
    font-size: 18px;
    font-weight: 600;
}
.check-modal .modal-body .loc-pin p {
    font-size: 14px;
    font-weight: 300;
}
.check-modal .modal-body .loc-pin form {
    display: flex;
    flex-direction: column;
}
.check-modal .modal-body .loc-pin form button.check-btn {
    margin-top: 14px;
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
}
.service-dtl-info h3 {
    font-family: 'integral_cfbold';
    font-size: 28px;
    font-weight: 700;
    color: rgba(var(--black-color), 1);
    margin-bottom: 10px;
}
.service-dtl-info .service-dtl-box h5 {
    font-size: 20px;
    font-weight: 500;
    color: rgba(var(--black-color), 1);
}
.service-dtl-info p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--black-color), 1);
    margin-bottom: 0px;
}
.service-dtl-info p > strong {
    color: rgba(var(--black-color), 1);
}
.service-dtl-info .service-dtl-box .service-dtl-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.service-dtl-info .service-dtl-box .service-dtl-list li::before {
    --ehw-dot: 10px;
    content: '';
    position: relative;
    width: var(--ehw-dot);
    height: var(--ehw-dot);
    border-radius: 50%;
    background: rgba(var(--main-color), 1);
}

/****************************** How It Work Section ***************************/
.hiw-head {
    text-align: center;
    padding: 20px 0px;
}
.hiw-head h3 {
    font-family: 'integral_cfbold';
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
}
.hiw-head span {
    color: rgba(var(--main-color), 1);
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
}
/* ================ The Timeline ================ */

.timeline {
    position: relative;
    width: 1050px;
    margin: 0 auto;
    margin-top: 20px;
    list-style-type: none;
    margin-bottom: 40px;
}
  
.timeline::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
    content: ' ';
    display: block;
    width: 20px;
    width: 10px;
    height: 100%;
    background-color: rgba(var(--main-color), 1);
    z-index: -1;
}
  
.timeline li {
    padding: 40px 0px;
}

.timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.timeline li > * {
    position: relative;
    width: 425px;
}
.timeline li:nth-child(odd) > * {
    float: right;
}

/*##########*/
  
.timeline-list{
    position: relative;
    width: 100%;
}
.timeline-list h4{
    position: relative;
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}
.timeline-list p{
    position: relative;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.timeline-content {
    font-family: 'integral_cfbold';
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.95);
    padding: 20px;
    border-radius: 20px;
}
.timeline-content p {
    font-size: 32px;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: 1;
    color: rgba(var(--main-color), 1);
}
.timeline li > * .timeline-list .icon {
    position: absolute;
    top: 0px;
    width: 90px;
    height: 90px;
    background-color: rgba(var(--white-color), 1);
    font-size: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 10px solid rgba(var(--main-color), 1);
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
    /* box-shadow: 4px 2px 12px -4px rgba(0,0,0,0.75); */
    z-index: 9;
}
.timeline li:nth-child(even) > * .timeline-list .icon{
    right: -145px;
}
.timeline li:nth-child(odd) > * .timeline-list .icon{
    left: -145px;
}
/*#########*/
  
/*######## Timeline responsive css start #####*/
  
  
@media(min-width: 768px) and (max-width: 991px){
    .timeline {
        width: 700px;
    }
    .timeline li> * {
        width: 280px;
    }
}
  
@media(max-width: 767px){
    .timeline{
        width: 100%;
    }
    .timeline::before{
        left: 26px;
        transform: translateX(0%);
    }
    .timeline:after{
        left: 22px;
        transform: translateX(0%);
    }
    .timeline li > * {
        float: none;
        width: 100%;
        text-align: left;
        padding-left: 85px;
    }
    .timeline li:nth-child(odd) > * .timeline-list .icon{
        left: -85px;
    }
    .timeline li:nth-child(even) > * .timeline-list .icon{
        right: auto;
        left: -80px;
    }
}
/*######## Timeline responsive css end #####*/
/************************************* Benifit Section ***************************/
.bft-section {
    background: rgba(var(--main-color), 1);
    padding: 100px 0px;
}
.bft-head {
    text-align: center;
}
.bft-head  span {
    color: rgba(var(--white-color), 1);
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
}
.bft-head h3 {
    font-family: 'integral_cfbold';
    color: rgba(var(--white-color), 1);
    font-weight: 900;
    font-size: 40px;
    text-transform: uppercase;
}
.bft-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.bft-logo {
    height: 64px;
}
.bft-logo img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}
.bft-card > h4 {
    font-family: 'integral_cfbold';
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 0px;
    color: rgba(var(--white-color), 1);
    text-transform: uppercase;
}

/*********************************** Review Section *************************/
.review-section {
    padding: 80px 0px;
}
.review-head {
    text-align: center;
    padding: 20px 0px;
}
.review-head span {
    color: rgba(var(--main-color), 1);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}
.review-head h3 {
    font-family: 'integral_cfbold';
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
}
.review-card {
    border: 1px solid #D2D2D2;
    border-radius: 10px;
    padding: 20px;
}
.review-card-upr {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.review-card-upr .review-name h4 {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 400;
}
.review-card-upr .review-name .review-stars i {
    color: #FFA200;
}
.review-img {
    --ehw-img: 60px;
    width: var(--ehw-img);
    height: var(--ehw-img);
    
}
.review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.review-card p {
    font-size: 16px;
    font-weight: 400;
}

/******************************** One Purchase Project Section ************************/
.opp-content {
    background: no-repeat center center / cover;
    position: relative;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 30px;
}
.opp-content > * {
    position: relative;
    z-index: 1;
}
.opp-content::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background: rgba(0, 0, 0, 0.5);
    display: block;
}
.opp-content h2 {
    font-family: 'integral_cfbold';
    font-size: 55px;
    font-weight: 900;
    color: rgba(var(--white-color), 1);
    text-transform: uppercase;
    width: 70%;
}

/********************************** About Section ************************/
.about-left {
    height: auto;
}
.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-right h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}
.about-right p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}
.about-right p > a, .about-right p > a:visited {
    color: rgba(var(--main-color), 1);
    font-weight: 400;
}
.about-pageTxt {
    text-align: center;
}
.about-pageTxt.about-right h3 {
    margin-bottom: 40px;
}
.about-pageTxt.about-right p {
    margin-bottom: 30px;
}

/***************************************** Contact Us Page *******************************/
.contact-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    gap: 20px;
    min-height: 180px;
    padding: 40px;
    transition: var(--transition-05s);
    /* padding: 60px 20px; */
}
.contact-card:hover {
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
}
.contact-card:hover i {
    color: rgba(var(--white-color), 1);
}
.contact-card i {
    --ehw-bg: 60px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    font-size: 30px;
    background: rgba(var(--main-color), 0.5);
    color: rgba(var(--main-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.contact-card .contact-name h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.contact-card .contact-name p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}
/* New start */

.contact-TitleBox span {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(var(--main-color), 1);
}
.contact-TitleBox h3 {
    color: rgba(var(--black-color), 1);
    font-family: 'integral_cfbold';
    font-size: 42px;
    font-weight: 500;
    /* line-height: 53px; */
    line-height: 1;
}
.contact-TitleBox p {
    margin-top: -10px;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
}
.contact-ParaBox {
    margin-top: 50px;
    font-size: 16px;
    font-weight: 400;
}
.contact-ListMain {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-ListCard, .contact-ListCard:visited {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    gap: 18px;
    transition: var(--transition-05s);
}
.contact-ListCard:hover {
    color: rgba(var(--black-color), 1);
}
.contact-ListCard i {
    --ehw-bg: 54px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    font-size: 20px;
    background: rgba(var(--main-color), 0.15);
    color: rgba(var(--main-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.contact-ListCard .contact-name h4 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.contact-ListCard .contact-name p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0px;
}
/* New end */


.iframe-box {
    width: 100%;
    height: 480px;
    border: 1px solid rgba(var(--second-color), 1);
    padding: 5px;
    
}
.iframe-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.contact-form-head {
    text-align: center;
    padding: 20px 0px;
}
.contact-form-head h3 {
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
}
.contact-form-head p {
    font-size: 24px;
    font-weight: 400;
}
.contact-form .row {
    gap: 16px 0px;
    --bs-gutter-x: 1rem;
}
.contact-form {
    /* box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.75); */
    border: 1px solid #D1D1D1;
    padding: 20px;
    border-radius: 20px;
    min-height: 100%;
}
.form-contact-box .form-control {
    font-size: 15px;
}
.form-contact-box label {
    font-weight: 500;
    color: rgba(var(--black-color), 1);
    font-size: 15px;
    padding-bottom: 10px;
}
.form-contact-box input::placeholder, .form-contact-box textarea::placeholder {
    font-weight: 400;
}
.form-contact-box button {
    width: 100%;
    padding: 8px 20px;
    font-size: 16px;
}

/************************************* FAQ Section **************************************/
.faq-section{
    position: relative;
}
.faq-section::after {
    /* content: ""; */
    position: absolute;
    top: 0%;
    left: 0%;
    width: 40%;
    height: 100%;
    display: inline-block;
    background: #8AD459;
    z-index: -1;
}
.faq-img{
    height: 600px;
    margin-left: 120px;
}
.faq-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.faq-heading {
    padding: 20px 0px;
    text-align: center;
}
.faq-heading h3{
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
}
.faq-heading span {
    color: rgba(var(--main-color), 1);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}
.faq-accordion-box {
    margin-top: 20px;
}
.accordion-header {
    font-family: 'integral_cfbold';
}
.faq-accordion-box .accordion-header button {
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
    box-shadow: none;
    padding-top: 0px;
    padding-bottom: 20px;
}
.faq-accordion-box .accordion-body {
    font-size: 15px;
    font-weight: 400;
    color: #747474;
}
.faq-accordion-box .accordion-body p:last-child {
    margin-bottom: 0px;
}
.faq-accordion-box .accordion-item {
    border: none;
    /* box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3); */
    margin-bottom: 20px;
    border-radius: 0px;
    overflow: hidden;
    border-bottom: 1px solid #d9d9d9;
}
.faq-section .faq-accordion-box .accordion-item {
    border: none;
    margin-bottom: -3px;
}
.faq-section .faq-accordion-box .accordion-header {
    /* box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3); */
    margin: 6px;
    border-radius: 10px !important;
}
.faq-section .faq-accordion-box .accordion-header button {
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px !important;
    padding: 20px;
    border: 1px solid #d9d9d9;
}
.faq-section .faq-accordion-box .accordion-header button:not(.collapsed) {
    border-color: rgba(var(--main-color), 1);
}
.faq-section .faq-accordion-box .accordion-collapse {
    margin: 6px;
    border: 1px solid #d9d9d9;
    /* box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3); */
    border-radius: 10px;
}
.faq-accordion-box .accordion-button:not(.collapsed) {
    color: rgba(var(--black-color), 1);
    background: rgba(var(--main-color), 0);
}
.faq-accordion-box .accordion-button:not(.collapsed)::after {
    content: "\f068";
}
.faq-accordion-box .accordion-button::after {
    content: "\2b";
    font-weight: 600;
    font-family: 'font awesome 6 free';
    background-image: none;
    transform: none;
}

/******************************** Footer Section *********************************************/
.footer-section {
    background: rgba(var(--black-color), 1);
}

.footer-logo {
    height: 70px;
    display: inline-block;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* margin-top: 20px; */
}

.footer-top {
    padding: 40px 0px;
}
.footer-box .footer-box-para {
    width: 80%;
}
.footer-box .footer-box-para p {
    font-size: 15px;
    font-weight: 400;
    color: var(--footer-link-color);
}
.footer-box .footer-follow {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-box .footer-follow li a i {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--main-color),1);
    transition: all ease-in-out 0.5s;
}
.footer-box .footer-follow li a i:hover {
    color: rgba(var(--white-color),1);
    transform: scale(1.1) rotate(-360deg);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-box-head h5 {
    font-family: 'integral_cfbold';
    font-size: 18px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
}
.footer-list li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    transition: var(--transition-05s);
}
.footer-list li a:hover {
    color: rgba(var(--main-color),1);
}
.footer-list li a i {
    color: rgba(var(--main-color),1);
    font-size: 24px;
}
.footer-copyright {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    gap: 20px;
    /* border-top: 1px solid #606163; */
    /* text-align: center; */
}
.footer-copyright .copy-list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-copyright .copy-list li a {
    font-weight: 400;
    font-size: 14px;
    color: rgba(var(--white-color), 1);
}
.footer-copyright p {
    font-weight: 400;
    font-size: 14px;
    color: rgba(var(--white-color), 1);
    margin-bottom: 0px;
}
.common-section.ac-section .row .row:nth-child(odd) > *:last-child {
    order: -1;
}
.marginBottom {
    margin-bottom: 40px;
}

/*#### calculator page css start ###*/
.calculator-section{
    position: relative;
    width: 100%;
    padding: 60px 0px;
}

.calculator-wrap{
    position: relative;
    width: 100%;
    padding: 30px 30px;
    background-color: #FF6801;
    border-radius: 10px;
}
.calculator-wrap .title{
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.calculator-wrap .title h3{
    position: relative;
    width: 100%;
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
}
.calculator-wrap .form-group{
    position: relative;
    width: 100%;
}
.calculator-wrap .form-group label{
    position: relative;
    width: 100%;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.calculator-wrap .form-select,.calculator-wrap .form-control{
    position: relative;
    width: 100%;
    padding: 10px 12px;
}
.calculator-wrap h4{
    position: relative;
    width: 100%;
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px;
}
.calculator-wrap ul{
    position: relative;
    width: 100%;
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.calculator-wrap ul li{
    position: relative;
    width: 100%;
    color: #fff;
    font-size: 16px;
    list-style: disc;
    padding: 5px 0px;
}
.calculator-wrap h5{
    position: relative;
    width: 100%;
    color: #fff;
    text-align: center;
}
.calculator-wrap .btn-dark{    
    font-family: 'integral_cfbold';
    padding: 10px 25px;
    background-color: #000;
    border-color: #000;
}
.amount-needed-wrap{
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px 15px;
    background-color: #fff;
    border-radius: 10px;
}
.amount-needed-wrap h4{
    position: relative;
    width: 100%;
    font-size: 25px;
    color: #000;
    margin-bottom: 10px;
}
.amount-needed-wrap h3{
    position: relative;
    width: 100%;
    font-size: 30px;
    color: #FF6801;
    font-weight: 600;
    margin-bottom: 5px;
}
.amount-needed-wrap h5{
    position: relative;
    width: 100%;
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.single-product-wraper .review-section {
    padding: 80px 0px;
    float: left;
    width: 100%;
}

#reviews .commentlist {
  display: none;
}

.single-product-wraper .product_meta {
  display: none;
}

.single_add_to_cart_button.button.alt {
  background-color: rgba(var(--main-color),1) !important;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 700;
  transition: var(--transition-05s);
  color: rgba(var(--white-color), 1);
  position: relative;
  border: 1px solid transparent;
  font-family: 'integral_cfbold';
  font-size: 20px;
}

#pincheck_wrapper #check_pin {
  background-color: rgba(var(--main-color),1) !important;
  font-weight: 700 !important;
  font-family: 'integral_cfbold' !important;
}

/*#### calculator page css end ###*/

/********************************************** Media query ***********************************/

/********************* Min width Section *****************************/

.NEAS-section {
    position: relative;
}
.NEAS-section > * {
    position: relative;
    z-index: 1;
}
.NEAS-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
}
.NEAS-bg::before {
    content: '';
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: rgba(var(--black-color), 0.5);
}
.NEAS-bg > * {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.NEAS-TitleBox > h1 {
    font-size: 42px;
    color: rgba(var(--main-color), 1);
    margin-bottom: 20px;
    text-align: center;
}
.NEAS-SubBox {
    color: rgba(var(--white-color), 1);
}
.NEAS-SubBox h3 {
    margin-bottom: 40px;
    font-size: 38px;
    text-align: center;
}
.NEAS-SubBox h5 {
    margin-bottom: 40px;
    font-size: 28px;
    text-transform: uppercase;
}
.NEAS-list {
    display: grid;
	gap: 6px;
}
.NEAS-list li {
    position: relative;
	font-size: 15px;
	padding-left: 14px;
}
.NEAS-list li::before {
    content: '';
    position: absolute;
    inset: 0px;
    display: inline-block;
    width: var(--ehw-cul);
    height: var(--ehw-cul);
    border-radius: 50%;
    background: rgba(var(--white-color), 0.8);
	--ehw-cul: 6px;
    margin-top: 8px;
}
.NEAS-list li:first-child {
	font-size: 18px;
	padding-left: 0px;
}
.NEAS-list li:first-child::before {
    display: none;
}
.contact-form.NEAS-form {
    background: rgba(var(--white-color), 1);
}
.NEAS-form h5 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}
.NEAS-form .form-contact-box > h5:first-child {
    margin-bottom: 0px;
}
.SYASOP-section {
    padding: 60px 0px;
}
.SYASOP-TitleBox {
    text-align: center;
}
.SYASOP-TitleBox h2 {
    color: rgba(var(--main-color), 1);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 0px;
}
.SYASOP-TitleBox .common-para {
    color: rgba(var(--black-color), 1);
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
}
.SYASOP-TitleBox .common-para p {
    margin-bottom: 10px;
}
.SYASOP-TitleBox .common-para p:last-child {
    margin-bottom: 0px;
}
.FWW-box {
    background: rgba(var(--white-color), 1);
    box-shadow: 0px 0px 20px -5px rgba(var(--black-color), 0.2);
    display: flex;
    gap: 12px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    min-height: 300px;
    border-radius: 10px;
}
.FWW-TitleBox h4 {
    margin-bottom: 0px;
    font-size: 26px;
    font-weight: 600;
    color: rgba(var(--black-color), 1);
}
.FWW-noBox {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
    --ehw-fwnb: 80px;
    width: var(--ehw-fwnb);
    height: var(--ehw-fwnb);
    border-radius: 50%;
    padding: 10px;
    font-size: 26px;
    line-height: 1;
}
.FWW-para {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(var(--black-color), 1);
}
.FWW-para p {
    margin-bottom: 10px;
}
.FWW-para p:last-child {
    margin-bottom: 0px;
}
.HDWGBP-section {
    background: #F5F5F5;
    padding: 60px 0px;
}
.HDWGBP-TitleBox {
    text-align: center;
}
.HDWGBP-TitleBox h2 {
    color: rgba(var(--main-color), 1);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 0px;
}
.HDWGBP-TitleBox .common-para {
    color: rgba(var(--black-color), 1);
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
}
.HDWGBP-TitleBox .common-para p {
    margin-bottom: 10px;
}
.HDWGBP-TitleBox .common-para p:last-child {
    margin-bottom: 0px;
}
.HDWGBP-row {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}
.HDWGBP-row li {
    background: rgba(var(--white-color), 1);
    box-shadow: 0px 0px 20px -5px rgba(var(--black-color), 0.2);
    padding: 20px;
    min-height: 150px;
    border-radius: 10px;
}
.HDWGBP-row h4 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
    color: rgba(var(--black-color), 1);
}
.HDWGBP-row h4 span {
    font-weight: 700;
    color: rgba(var(--main-color), 1);
}
.HDWGBP-row p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(var(--black-color), 1);
}

.product-dtl-img .gc-display-area {
    border: none;
    padding: 0px;
    background-color: transparent;
}
.product-dtl-img {
    position: sticky;
    top: 30px;
}
.service-dtls-text .AddCart-box .common-btn {
    width: 100%;
}
.card-img {
    margin-top: 14px;
    text-align: center;
}
.notNeed-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.notNeed-box > * {
    background: rgba(var(--white-color), 1);
    box-shadow: 0px 0px 14px -5px rgba(var(--black-color), 0.2);
    text-align: center;
    padding: 20px;
    border-radius: 16px;
}
.notNeed-box h5 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}
.notNeed-Innbox .common-btn.--shine:after {
    z-index: 1;
}
.notNeed-Innbox .common-btn.--shine span {
    position: relative;
    z-index: 2;
}
.PSF-ListBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.PSF-ListBox {
    text-align: center;
    margin: 20px 0px;
}
.PSF-ListBox span {
    display: inline-block;
    color: rgba(var(--main-color), 1);
    font-size: 30px;
    margin-bottom: 6px;
    line-height: 1;
}
.PSF-ListBox p {
    font-family: 'integral_cfbold';
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 800;
    line-height: 0.8;
}
.delivery-time {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    padding: 20px 10px;
    margin: 20px 0px;
    color: rgba(var(--black-color), 0.8);
    font-weight: 700;
    font-size: 17px;
}
.delivery-time span {
    color: #007a00;
}
.service-steps .common-btn {
    font-size: 16px;
}
.testi-section {
    position: relative;
    min-height: 750px;
    align-content: center;
    text-align: center;
}
.testi-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
}
.testi-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.testi-bg::before {
    content: '';
    position: absolute;
    display: inline-block;
    inset: 0px;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), 0.6);
}
.testi-slider.owl-carousel {
    padding: 0px 50px;
}
.testi-box {
    color: rgba(var(--white-color), 1);
    padding: 20px;
}
.testi-para {
    color: rgba(var(--white-color), 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
}
.testi-para p {
    margin-bottom: 0px;
}
.testi-para p:not(:last-child) {
    margin-bottom: 10px;
}
.testi-user h6 {
    color: rgba(var(--white-color), 1);
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.testi-slider.owl-carousel .owl-nav button.owl-prev, .testi-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    width: var(--ewh-tsnp);
    height: var(--ewh-tsnp);
    background: rgba(var(--white-color), 1);
    color: rgba(var(--black-color), 1);
    border-radius: 50%;
    --elr-tsnp: 0px;
    --ewh-tsnp: 50px;
    font-size: 25px;
}
.testi-slider.owl-carousel .owl-nav button.owl-prev {
    left: var(--elr-tsnp);
}
.testi-slider.owl-carousel .owl-nav button.owl-next {
    right: var(--elr-tsnp);
}
.testi-slider.owl-carousel .owl-dots {
    display: flex;
    margin-top: 10px;
    gap: 8px;
    justify-content: center;
}
.testi-slider.owl-carousel button.owl-dot {
    --ehw-tsod: 8px;
    width: var(--ehw-tsod);
    height: var(--ehw-tsod);
    border-radius: 50%;
    background: rgba(var(--white-color), 0.3);
}
.testi-slider.owl-carousel button.owl-dot.active {
    background: rgba(var(--white-color), 1);
}

.footer-list li.current_page_item a {
  color: rgba(var(--main-color),1);
}
.custom-qty, .custom-qty .quantity {
    display: flex;
}
.comment-form input:not([type="checkbox"]) {
    width: 100%;
}
.pswp--open {
    z-index: 999999 !important;
}
.contact-form.NEAS-form .form-contact-box .common-btn::after {
    z-index: 0;
}
.contact-form.NEAS-form .form-contact-box .common-btn > span {
    position: relative;
    z-index: 1;
}

/************************************* Max Width Section ******************************/

@media (min-width: 992px) {
	.nav-item.dropdown .dropdown-menu {
		opacity: 0;
		visibility: hidden;
	}
	.nav-item.dropdown:hover > .dropdown-menu, .nav-item.dropdown .dropdown-menu.show, .dropdown-menu ul li:hover > .dropdown-menu.dropdown-submenu {
		opacity: 1;
		display: block;
		visibility: visible;
	}
	.navbar-expand-lg .navbar-collapse {
		width: max-content;
		max-width: max-content;
	}
}

@media (max-width: 1400px) {
    .banner-content h1 {
        font-size: 64px;
    }
    .banner-content span {
        font-size: 18px;
    }
    .banner-content .bnr-list li {
        font-size: 20px;
    }
    .top-nav p {
        font-size: 15px;
    }
    .service-head h3 {
        font-size: 48px;
    }
    .service-head p {
        font-size: 20px;
    }
    .service-name p {
        font-size: 14px;
    }
    .service-name {
        padding: 20px 20px;
    }
    .hiw-head span {
        font-size: 20px;
    }
    .hiw-head h3 {
        font-size: 48px;
    }
    .timeline-content-r p {
        font-size: 26px;
    }
    .timeline-content-l p {
        font-size: 26px;
    }
    .timeline::before {
        top: -30px;
    }
    .bft-head span {
        font-size: 20px;
    }
    .bft-head h3 {
        font-size: 48px;
    }
    .bft-card > h4 {
        font-size: 30px;
    }
    .review-head span {
        font-size: 20px;
    }
    .review-head h3 {
        font-size: 48px;
    }
    .opp-content h2 {
        font-size: 52px;
    }
    .navbar-nav .nav-item a {
        font-size: 14px;
    }
    .navbar-nav .nav-item > a {
        padding: 6px !important;
    }
    .cart-icon {
        width: 40px;
    }
    .navbar-brand {
        height: 46px;
        width: 150px;
    }
}

@media (max-width: 1200px) {
    .nav-item.dropdown .DDMenu.dropdown-menu {
        width: 100%;
    }
    .navbar-collapse {
        position: absolute;
        background: rgba(255, 255, 255, 1);
        width: 100%;
        left: 0;
        top: 90%;
        padding: 5px;
        overflow: scroll;
    }
    .timeline {
        width: 950px;
        margin-bottom: 20px;
    }
    .timeline li > * .timeline-list .icon {
        width: 80px;
        height: 80px;
    }
    .timeline li:nth-child(odd) > * .timeline-list .icon {
        left: -90px;
    }
    .timeline li:nth-child(even) > * .timeline-list .icon {
        right: -90px;
    }
    .review-card {
        padding: 14px;
    }
    .opp-content h2 {
        font-size: 44px;
    }
    .service-img {
        height: 250px;
    }
    .banner-content h1 {
        font-size: 54px;
    }
    .bft-card > h4 {
        font-size: 24px;
    }
    .about-left {
        height: 400px;
    }
    .contact-card {
        flex-direction: column;
        text-align: center;
        min-height: 190px;
        padding: 20px;
    }
    .contact-card .contact-name h4 {
        font-size: 18px;
    }
    .contact-card .contact-name p {
        font-size: 14px;
    }
    .notNeed-box h5 {
        font-size: 22px;
    }
    .FWW-TitleBox h4 {
        font-size: 22px;
    }    
    .testi-section {
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    .timeline {
        width: 700px;
    }
    .timeline li > * .timeline-list .icon {
        width: 70px;
        height: 70px;
    }
    .timeline li:nth-child(odd) > * .timeline-list .icon {
        left: -105px;
    }
    .timeline li:nth-child(even) > * .timeline-list .icon {
        right: -105px;
    }
    .timeline li {
        padding: 20px 0px;
    }
    .common-lwr {
        padding: 20px 0px;
    }
    .service-head h3, .hiw-head h3, .bft-head h3, .review-head h3, .faq-heading h3 {
        font-size: 38px;
    }
    .service-head p, .hiw-head span, .bft-head span, .review-head span, .faq-heading span {
        font-size: 18px;
    }
    .timeline-content-l p, .timeline-content-r p {
        font-size: 24px;
    }
    .opp-content {
        height: 440px;
    }
    .opp-content h2 {
        font-size: 36px;
        width: 80%;
    }
    .bft-logo {
        height: 60px;
    }
    .review-section {
        padding: 40px 0px;
    }
    .banner-content {
        min-height: 60vh;
    }
    .contact-form-head h3 {
        font-size: 34px;
    }
    .product-dtl-img > * {
        width: 100%;
    }
    .HDWGBP-row {
        grid-template-columns: repeat(1, 1fr);
    }
    .NEAS-TitleBox > h1 {
        font-size: 32px;
    }
    .NEAS-SubBox h3 {
        margin-bottom: 26px;
        font-size: 28px;
    }
    .NEAS-SubBox h5 {
        margin-bottom: 30px;
        font-size: 24px;
    }
    .SYASOP-TitleBox .common-para, .HDWGBP-TitleBox .common-para {
        font-size: 17px;
    }
    .HDWGBP-row h4 {
        font-size: 24px;
    }
    .HDWGBP-row p {
        font-size: 16px;
    }
    .product-dtl-img > * {
        margin: auto;
    }
}

@media (max-width: 768px) {
    .common-btn {
        font-size: 15px;
    }
    .navbar-collapse {
        max-height: 350px;
    }
    .navbar.navbar-expand-xl > * {
        width: 100%;
    }
    .timeline {
        width: 100%;
    }
    .timeline-content-l p, .timeline-content-r p {
        font-size: 20px;
    }
    .timeline li > * .timeline-list .icon {
        width: 60px;
        height: 60px;
        border: 3px solid rgba(var(--main-color), 1);
    }
    .timeline li:nth-child(odd) > * .timeline-list .icon {
        left: -80px;
    }
    .timeline li:nth-child(even) > * .timeline-list .icon {
        right: -80px;
    }
    .service-img {
        height: auto;
    }
    .banner-content h1 {
        font-size: 34px;
    }
    .banner-content span {
        font-size: 16px;
    }
    .banner-content .bnr-list li {
        font-size: 15px;
    }
    .top-nav p {
        font-size: 13px;
    }
    .service-head h3, .hiw-head h3, .bft-head h3, .review-head h3 {
        font-size: 28px;
    }
    .service-head p, .hiw-head span, .bft-head span, .review-head span {
        font-size: 16px;
    }
    .bft-head {
        padding-bottom: 20px;
    }
    .inr-banner-content {
        min-height: 20vh;
    }
    .inr-banner-content h1 {
        font-size: 30px;
    }
    
    .about-right h3 {
        font-size: 24px;
    }
    .about-right p {
        font-size: 15px;
    }
    .bft-logo {
        height: 50px;
    }
    .faq-heading h3 {
        font-size: 24px;
    }
    .faq-heading span {
        font-size: 18px;
    }
    .faq-heading {
        padding: 10px 0px;
    }
    .faq-accordion-box .accordion-header button {
        font-size: 15px;
    }
    .contact-form-head h3 {
        font-size: 28px;
    }
    .contact-form-head p {
        font-size: 18px;
    }
    .NEAS-TitleBox > h1 {
        font-size: 26px;
    }
    .NEAS-SubBox h3 {
        margin-bottom: 26px;
        font-size: 22px;
    }
    .NEAS-SubBox h5 {
        margin-bottom: 30px;
        font-size: 20px;
    }
    .SYASOP-TitleBox .common-para, .HDWGBP-TitleBox .common-para {
        font-size: 16px;
    }
    .HDWGBP-row h4 {
        font-size: 22px;
    }
    .NEAS-form h5 {
        margin-bottom: 16px;
        font-size: 16px;
    }
    .SYASOP-TitleBox h2, .HDWGBP-TitleBox h2 {
        font-size: 26px;
    }
    .HDWGBP-row p {
        font-size: 15px;
    }
    .FWW-TitleBox h4 {
        font-size: 22px;
    }
    .notNeed-box h5 {
        font-size: 19px;
        margin-bottom: 16px;
    }
    .notNeed-box {
        grid-template-columns: repeat(1, 1fr);
    }
    .delivery-time {
        padding: 20px 0px;
        font-size: 16px;
    }
    .PSF-ListBox span {
        font-size: 22px;
    }
    .PSF-ListBox p {
        font-size: 12px;
        line-height: 0.9;
    }
    .service-steps .common-btn {
        font-size: 14px;
    }
    .nav-item.dropdown .DDMenu.dropdown-menu ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-TitleBox h3 {
        font-size: 28px;
    }
    .contact-ParaBox {
        margin-top: 30px;
        font-size: 14px;
    }
    .contact-TitleBox p {
        font-size: 14px;
    }
    .form-contact-box label {
        font-size: 14px;
        padding-bottom: 6px;
    }    
    .testi-para {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    .testi-user h6 {
        font-size: 14px;
    }
    .testi-section {
        min-height: auto;
    }
    .footer-section {
        padding-bottom: 70px;
      }
}

@media (max-width: 580px) {
    .timeline {
        margin-top: 0px;
    }
    .timeline li > * {
        padding-left: 50px;
    }
    .timeline::before {
        /* display: none; */
        top: 0px;
        width: 6px;
        left: 18px;
    }
    .timeline li > * .timeline-list .icon {
        top: 5px;
        width: 40px;
        height: 40px;
        border: 0px solid rgba(var(--main-color), 1);
    }
    .timeline-content-l,.timeline-content-r {
        box-shadow: 0px 0px 14px -8px rgba(0, 0, 0, 0.95);
    }
    .timeline li:nth-child(odd) > * .timeline-list .icon, .timeline li:nth-child(even) > * .timeline-list .icon {
        left: -50px;
        font-size: 30px;
    }
    .timeline li:nth-child(even) > * .timeline-list .icon {
        right: auto;
    }
    .common-lwr {
        padding: 0px 0px;
    }
    .service-name p {
        font-size: 20px;
    }
    .banner-content .bnr-list li > i {
        font-size: 16px;
        margin-right: 10px;
    }
    .bft-section .common-lwr .row {
        gap: 40px 0px;
    }
    .bft-head h3 {
        margin-bottom: 30px;
    }
    .bft-card {
        gap: 30px;
    }
    .bft-logo {
        height: 60px;
    }
    .bft-card > h4 {
        font-size: 22px;
    }
    .opp-content h2 {
        font-size: 28px;
        width: 80%;
    }
    .common-section {
        padding: 20px 0px;
    }
    .service-head h3, .hiw-head h3, .bft-head h3, .review-head h3 {
        font-size: 24px;
    }
    .footer-copyright {
        flex-direction: column-reverse;
    }
    .banner-content .bnr-list li {
        font-size: 12px;
    }
    .banner-content h1 {
        font-size: 28px;
    }
    .banner-content {
        min-height: 45vh;
    }
    .head-brand-menu .common-btn {
        font-size: 13px;
        padding: 5px 5px;
    }
    .service-head p, .hiw-head span, .bft-head span, .review-head span {
        font-size: 15px;
    }
    .btn-cart p {
        font-size: 12px;
        /* display: none; */
        margin-left: 6px;
    }
    .contact-form-head h3 {
        font-size: 24px;
    }
    .contact-form-head p {
        font-size: 15px;
    }
    .contact-card i {
        --ehw-bg: 40px;
        width: var(--ehw-bg);
        height: var(--ehw-bg);
        font-size: 24px;
    }
    .contact-card {
        min-height: 140px;
    }
    .review-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-dtl-info h3 {
        font-size: 20px;
    }
    .service-dtl-info .service-dtl-box h5 {
        font-size: 16px;
    }
    .SYASOP-TitleBox h2, .HDWGBP-TitleBox h2 {
        font-size: 22px;
    }
    .FWW-noBox {
        --ehw-fwnb: 60px;
        font-size: 22px;
    }
    .FWW-para {
        font-size: 15px;
    }
    .FWW-TitleBox h4 {
        font-size: 20px;
    }
    .NEAS-list li:first-child {
        font-size: 16px;
        font-weight: 500;
    }
    .nav-item.dropdown .DDMenu.dropdown-menu {
        padding: 10px 20px;
    }
    .nav-item.dropdown .DDMenu.dropdown-menu ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}

@media (max-width: 410px) {
    .contact-form {
        padding: 10px;
        border-radius: 10px;
    }
    .cart-icon img {
        width: 40px;
    }
    .btn-cart {
        gap: 5px;
    }
    .nav-btns {
        gap: 8px;
    }
    .head-brand-menu {
        gap: 8px;
    }
    .head-brand-menu .common-btn {
        font-size: 10px;
    }
    .cart-icon {
        width: 30px;
    }
    .cart-icon span {
        --ehw-bg: 17px;
        font-size: 13px;
    }
    .navbar-brand {
        height: 40px;
        width: 110px;
    }
}

 form.cart .quantity {
  display: none !important;
}

.woocommerce div.product form.cart .variations tr{
    display: flex;
   flex-direction: column;
}
.delivery_input_container{
      width: 100%;
    border-color: #00b800 !important;
    background-color: #F7F7F7 !important;
    padding: .5rem 1rem;
    border: 1px solid #ccc;
}
#choose-quantity-for-price {
    width: 100%;
    border-color: #00b800 !important;
    background-color: #F7F7F7 !important;
    padding: .5rem 1rem;
    border: 1px solid #ccc;
}
.about-pageTxt{
    text-align: left;
}
.about-pageTxt .about-left {
	max-width:500px;
	display: inline-block;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.about-left.singlepage {
	max-width: 500px;
	display: inline-block;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
