.main-header{
    background-color: #ffffff;
}
.main-header-info:before{
    background-color: #ffffff;
}

.copyright-area {
    font-size: 0;
}

.copyright-area .webora-footer-credit {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.copyright-area .webora-heart {
    color: #a066cb;
    margin: 0 4px;
    animation: webora-heart-beat 1.4s ease-in-out infinite;
}

.copyright-area .webora-credit {
    color: #a066cb;
    font-weight: 800;
    text-decoration: none;
}

.copyright-area .webora-credit:hover {
    color: #ffffff;
}

@keyframes webora-heart-beat {
    0%,
    100% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.18);
    }
}

/* Swaraj branded preloader */
#preloader-wrap {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98) 0%, rgba(246, 247, 244, 0.94) 36%, rgba(226, 235, 224, 0.96) 100%),
        linear-gradient(135deg, rgba(94, 121, 92, 0.24), rgba(180, 80, 80, 0.16));
}

#preloader-wrap svg {
    fill: #f7f8f5;
}

.swaraj-preloader {
    width: min(92vw, 640px);
    text-align: center;
}

.swaraj-loader-scene {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.swaraj-loader-scene:before,
.swaraj-loader-scene:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.swaraj-loader-scene:before {
    width: 520px;
    height: 520px;
    border: 1px solid rgba(94, 121, 92, .12);
    animation: swaraj-loader-pulse 2.8s ease-in-out infinite;
}

.swaraj-loader-scene:after {
    width: 370px;
    height: 370px;
    border: 1px dashed rgba(180, 80, 80, .22);
    animation: swaraj-loader-spin 14s linear infinite;
}

.swaraj-loader-globe {
    position: relative;
    width: 178px;
    height: 178px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    box-shadow: 0 22px 55px rgba(22, 36, 29, .14);
}

.swaraj-loader-globe img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    animation: swaraj-loader-float 2.4s ease-in-out infinite;
    z-index: 2;
}

.globe-line {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1px solid rgba(94, 121, 92, .36);
    transform: translate(-50%, -50%);
}

.line-one {
    width: 100%;
    height: 100%;
}

.line-two {
    width: 72%;
    height: 100%;
    transform: translate(-50%, -50%) rotate(36deg);
}

.line-three {
    width: 100%;
    height: 58%;
    transform: translate(-50%, -50%) rotate(-18deg);
}

.route-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #b45050;
    box-shadow: 0 0 0 7px rgba(180, 80, 80, .12);
    z-index: 3;
}

.dot-one {
    left: 26px;
    top: 88px;
    animation: swaraj-route-one 2.4s ease-in-out infinite;
}

.dot-two {
    right: 32px;
    top: 48px;
    animation: swaraj-route-two 2.4s ease-in-out infinite .35s;
}

.dot-three {
    right: 42px;
    bottom: 36px;
    animation: swaraj-route-three 2.4s ease-in-out infinite .7s;
}

.swaraj-preloader-logo {
    position: relative;
    z-index: 2;
    width: min(380px, 78vw);
    height: auto;
    margin-bottom: 12px;
    filter: drop-shadow(0 10px 20px rgba(22, 36, 29, .12));
}

.swaraj-preloader-text {
    position: relative;
    z-index: 2;
    color: #314d3d;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.swaraj-loader-track {
    position: relative;
    z-index: 2;
    width: min(300px, 68vw);
    height: 3px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(49, 77, 61, .16);
}

.swaraj-loader-track span {
    display: block;
    width: 38%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #5e795c, #b45050);
    animation: swaraj-loader-progress 1.35s ease-in-out infinite;
}

@keyframes swaraj-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes swaraj-loader-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-7px) scale(1.02);
    }
}

@keyframes swaraj-loader-progress {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(260%);
    }
}

@keyframes swaraj-loader-pulse {
    0%,
    100% {
        opacity: .32;
        transform: translate(-50%, -50%) scale(.92);
    }

    50% {
        opacity: .76;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes swaraj-route-one {
    0%,
    100% {
        transform: translate(0, 0) scale(.65);
        opacity: .45;
    }

    50% {
        transform: translate(36px, -38px) scale(1);
        opacity: 1;
    }
}

@keyframes swaraj-route-two {
    0%,
    100% {
        transform: translate(0, 0) scale(.65);
        opacity: .45;
    }

    50% {
        transform: translate(-42px, 44px) scale(1);
        opacity: 1;
    }
}

@keyframes swaraj-route-three {
    0%,
    100% {
        transform: translate(0, 0) scale(.65);
        opacity: .45;
    }

    50% {
        transform: translate(-55px, -18px) scale(1);
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .swaraj-loader-scene {
        min-height: 310px;
    }

    .swaraj-loader-scene:before {
        width: 360px;
        height: 360px;
    }

    .swaraj-loader-scene:after {
        width: 280px;
        height: 280px;
    }

    .swaraj-loader-globe {
        width: 140px;
        height: 140px;
    }

    .swaraj-loader-globe img {
        width: 78px;
        height: 78px;
    }

    .swaraj-preloader-logo {
        width: min(300px, 82vw);
    }

    .swaraj-preloader-text {
        max-width: 280px;
        font-size: 12px;
        line-height: 1.5;
        margin-left: auto;
        margin-right: auto;
    }
}


.site-logo img {
    width: 243px;
    margin-left: -43px;
}


.header-social-share li a {
    border-left: none;
}
.header-social-share li:last-child a {
    border-right: none;
}

.gal{
    margin: 30px 30px;
}

.gal .container {
	 display: grid;
	 grid-template-columns: repeat(3, 1fr);
	 grid-gap: 1rem;
	 justify-content: center;
	 align-items: center;
}
 .gal .card {
	 border-radius: 2px;
}
 .gal .card-image {
	 position: relative;
	 display: block;
	 width: 100%;
	 padding-top: 70%;
}
 .gal .card-image img {
	 display: block;
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
}
 @media only screen and (max-width: 600px) {
	 .gal .container {
		 display: grid;
		 grid-template-columns: 1fr;
		 grid-gap: 1rem;
	}
}

.default-btn:before{
	background-color: #5e795c;
}

.default-btn{
	background-color: #b45050;
}

.slider-truck {
    right: -170px;
    bottom: -49px;
}

.container-img {
right: 26%;
}

.promo-list li i {
    background-color: #662602;
}

.service-content i {
    color: #b45050;
}

.running-text {
    background-color: #ff8c39;
}

.sub-heading {
    color: #ff8c39;
}
.slider-caption.medium {
    color: #b45050;
}

.project-content .category:before {
content: none;
}


.project-content .category{
    background-color: #b45050;
    text-align: center;
    margin: 0px 0px;
    right: 0;
    left: 0;
 }
 .project-content h3 {
    text-align: center;
 }

 .counter-icon i {
    color: #b45050;
}


.quote-section {
    margin-bottom: 173px;
}

.cta-men.wow.fade-in-bottom {
	
    z-index: 9;
}

.cta-section {
    margin-top: 250px;
    margin-bottom: 50px;
}


.mc-fields{
    display:flex;
    gap:15px;
    align-items:center;
    flex-wrap:wrap;
}

.subscribe-form .form-control{
    height:50px;
    padding:0 15px;
    border:1px solid #ddd;
    outline:none;
    width: 100%;
}

.subscribe-form .submit{
    height:50px;
    padding:0 25px;
    border:none;
	width: 100%;
    cursor:pointer;
    background:#b45050;
    color:#fff;
    font-weight:600;
	position: static;
    transition:0.3s;
}

 .subscribe-form .submit:hover{
    opacity:0.9;
}

.subscribe-form .error-message{
    color:red;
    font-size:14px;
    margin-top:5px;
}

.page-header-info h2 span {
    color: #b45050;
}

.abt-girl{
	width: 459px !important;
    right: -100px !important;
    top: -81px !important;
}


.cate .project-content{
        margin-right: 0px;
        transform: matrix(1, 0, 0, 1, 0, 0);
        
}

.cate .project-item{
    -webkit-box-shadow: 5px 7px 16px 0px rgba(0,0,0,0.46); 
box-shadow: 5px 7px 16px 0px rgba(0,0,0,0.46);
}

.cate .project-content .category{
    background-color: #5e795c;
    text-align: center;
    margin: 0px 30px;
    border-radius: 50px;
    font-size: 19px;
    right: 0;
    left: 0;
}

.featured-products-empty {
    width: 100%;
    padding: 56px 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.featured-products-empty i {
    color: #b45050;
    font-size: 52px;
    margin-bottom: 14px;
}

.featured-products-empty h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.featured-products-empty p {
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

.project-section:has(.featured-products-empty) {
    padding-bottom: 90px;
}

.project-section:has(.featured-products-empty)+.content-features .counter-wrap {
    transform: translateY(-30px);
}


.product-deta .pd-wrap {
	 padding: 40px 0;
	 font-family: 'Poppins', sans-serif;
}
 .product-deta .heading-section {
	 text-align: center;
	 margin-bottom: 20px;
}
 .product-deta .sub-heading {
	 font-family: 'Poppins', sans-serif;
	 font-size: 12px;
	 display: block;
	 font-weight: 600;
	 color: #2e9ca1;
	 text-transform: uppercase;
	 letter-spacing: 2px;
}
 .product-deta .heading-section h2 {
	 font-size: 32px;
	 font-weight: 500;
	 padding-top: 10px;
	 padding-bottom: 15px;
	 font-family: 'Poppins', sans-serif;
}
 .product-deta .user-img {
	 width: 80px;
	 height: 80px;
	 border-radius: 50%;
	 position: relative;
	 min-width: 80px;
	 background-size: 100%;
}
 .product-deta .carousel-testimonial .item {
	 padding: 30px 10px;
}
 .product-deta .quote {
	 position: absolute;
	 top: -23px;
	 color: #2e9da1;
	 font-size: 27px;
}
 .product-deta .name {
	 margin-bottom: 0;
	 line-height: 14px;
	 font-size: 17px;
	 font-weight: 500;
}
 .product-deta .position {
	 color: #adadad;
	 font-size: 14px;
}
 .product-deta .owl-nav button {
	 position: absolute;
	 top: 50%;
	 transform: translate(0, -50%);
	 outline: none;
	 height: 25px;
}
 .product-deta .owl-nav button svg {
	 width: 25px;
	 height: 25px;
}
 .product-deta .owl-nav button.owl-prev {
	 left: 25px;
}
 .product-deta .owl-nav button.owl-next {
	 right: 25px;
}
 .product-deta .owl-nav button span {
	 font-size: 45px;
}
 .product-deta .product-thumb .item img {
	 height: 100px;
}
 .product-deta .product-name {
	 font-size: 22px;
	 font-weight: 500;
	 line-height: 22px;
	 margin-bottom: 4px;
}
 .product-deta .product-price-discount {
	 font-size: 22px;
	 font-weight: 400;
	 padding: 10px 0;
	 clear: both;
}
 .product-deta .product-price-discount span.line-through {
	 text-decoration: line-through;
	 margin-left: 10px;
	 font-size: 14px;
	 vertical-align: middle;
	 color: #a5a5a5;
}
 .product-deta .display-flex {
	 display: flex;
}
 .product-deta .align-center {
	 align-items: center;
}
 .product-deta .product-info {
	 width: 100%;
}
 .product-deta .reviews-counter {
	 font-size: 13px;
}
 .product-deta .reviews-counter span {
	 vertical-align: -2px;
}
 .product-deta .rate {
	 float: left;
	 padding: 0 10px 0 0;
}
 .product-deta .rate:not(:checked) > input {
	 position: absolute;
	 top: -9999px;
}
 .product-deta .rate:not(:checked) > label {
	 float: right;
	 width: 15px;
	 overflow: hidden;
	 white-space: nowrap;
	 cursor: pointer;
	 font-size: 21px;
	 color: #ccc;
	 margin-bottom: 0;
	 line-height: 21px;
}
 .product-deta .rate:not(:checked) > label:before {
	 content: '\2605';
}
 .product-deta .rate > input:checked ~ label {
	 color: #ffc700;
}
 .product-deta .rate:not(:checked) > label:hover, .product-deta .rate:not(:checked) > label:hover ~ label {
	 color: #deb217;
}
 .product-deta .rate > input:checked + label:hover, .product-deta .rate > input:checked + label:hover ~ label, .product-deta .rate > input:checked ~ label:hover, .product-deta .rate > input:checked ~ label:hover ~ label, .product-deta .rate > label:hover ~ input:checked ~ label {
	 color: #c59b08;
}
 .product-deta .product-dtl p {
	 font-size: 14px;
	 line-height: 24px;
	 color: #7a7a7a;
}
 .product-deta .product-dtl .form-control {
	 font-size: 15px;
}
 .product-deta .product-dtl label {
	 line-height: 16px;
	 font-size: 15px;
}
 .product-deta .form-control:focus {
	 outline: none;
	 box-shadow: none;
}
 .product-deta .product-count {
	 margin-top: 15px;
}
 .product-deta .product-count .qtyminus, .product-deta .product-count .qtyplus {
	 width: 34px;
	 height: 34px;
	 background: #212529;
	 text-align: center;
	 font-size: 19px;
	 line-height: 36px;
	 color: #fff;
	 cursor: pointer;
}
 .product-deta .product-count .qtyminus {
	 border-radius: 3px 0 0 3px;
}
 .product-deta .product-count .qtyplus {
	 border-radius: 0 3px 3px 0;
}
 .product-deta .product-count .qty {
	 width: 60px;
	 text-align: center;
}
 .product-deta .round-black-btn {
	 border-radius: 4px;
	 background: #212529;
	 color: #fff;
	 padding: 7px 45px;
	 display: inline-block;
	 margin-top: 20px;
	 border: solid 2px #212529;
	 transition: all 0.5s ease-in-out 0s;
}
 .product-deta .round-black-btn:hover, .product-deta .round-black-btn:focus {
	 background: transparent;
	 color: #212529;
	 text-decoration: none;
}
 .product-deta .product-info-tabs {
	 margin-top: 25px;
}
 .product-deta .product-info-tabs .nav-tabs {
	 border-bottom: 2px solid #d8d8d8;
}
 .product-deta .product-info-tabs .nav-tabs .nav-item {
	 margin-bottom: 0;
}
 .product-deta .product-info-tabs .nav-tabs .nav-link {
	 border: none;
	 border-bottom: 2px solid transparent;
	 color: #323232;
}
 .product-deta .product-info-tabs .nav-tabs .nav-item .nav-link:hover {
	 border: none;
}
 .product-deta .product-info-tabs .nav-tabs .nav-item.show .nav-link, .product-deta .product-info-tabs .nav-tabs .nav-link.active, .product-deta .product-info-tabs .nav-tabs .nav-link.active:hover {
	 border: none;
	 border-bottom: 2px solid #d8d8d8;
	 font-weight: bold;
}
 .product-deta .product-info-tabs .tab-content .tab-pane {
	 padding: 30px 20px;
	 font-size: 15px;
	 line-height: 24px;
	 color: #7a7a7a;
}
 .product-deta .review-form .form-group {
	 clear: both;
}
 .product-deta .mb-20 {
	 margin-bottom: 20px;
}
 .product-deta .review-form .rate {
	 float: none;
	 display: inline-block;
}
 .product-deta .review-heading {
	 font-size: 24px;
	 font-weight: 600;
	 line-height: 24px;
	 margin-bottom: 6px;
	 text-transform: uppercase;
	 color: #000;
}
 .product-deta .review-form .form-control {
	 font-size: 14px;
}
 .product-deta .review-form input.form-control {
	 height: 40px;
}
 .product-deta .review-form textarea.form-control {
	 resize: none;
}
 .product-deta .review-form .round-black-btn {
	 text-transform: uppercase;
	 cursor: pointer;
}
 


.product-deta {
    padding: 100px 0px;
}
#thumb {
    margin-top: 15px;
}

#thumb .item{
    margin-right: 5px;
}

.product-page-header .page-header-info h2 {
    text-transform: capitalize;
}

.product-detail-page {
    background: #f6f7f4;
    padding: 90px 0;
}

.product-detail-page .product-gallery-wrap {
    position: relative;
    background: #fff;
    border: 1px solid rgba(18, 38, 32, 0.08);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(24, 46, 35, 0.08);
}

.product-detail-page .product-badge {
    position: absolute;
    top: 34px;
    left: 34px;
    z-index: 2;
    background: #b45050;
    color: #fff;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

.product-detail-page .product-slider .item {
    border-radius: 8px;
    overflow: hidden;
    background: #eef1ea;
}

.product-detail-page .product-slider .item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.product-detail-page #thumb {
    margin-top: 14px;
}

.product-detail-page .product-thumb .item {
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #eef1ea;
    transition: all .25s ease;
}

.product-detail-page .product-thumb .owl-item.current .item {
    border-color: #b45050;
}

.product-detail-page .product-thumb .item img {
    width: 100%;
    height: 92px;
    object-fit: cover;
}

.product-detail-page .product-summary {
    background: #fff;
    border-radius: 8px;
    padding: 42px;
    border: 1px solid rgba(18, 38, 32, 0.08);
    box-shadow: 0 20px 50px rgba(24, 46, 35, 0.08);
}

.product-detail-page .product-kicker {
    display: inline-block;
    color: #b45050;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-detail-page .product-name {
    color: #16241d;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
}

.product-detail-page .product-lead,
.product-detail-page .product-dtl p {
    color: #65726b;
    font-size: 16px;
    line-height: 1.75;
}

.product-detail-page .product-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.product-detail-page .product-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 6px;
    background: #f4f7f1;
    color: #26372d;
    font-weight: 700;
}

.product-detail-page .product-meta-item i {
    color: #b45050;
    font-size: 18px;
}

.product-detail-page .product-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.product-detail-page .product-feature-list li {
    display: flex;
    gap: 10px;
    color: #4d5b53;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.product-detail-page .product-feature-list i {
    color: #b45050;
    margin-top: 5px;
}

.product-detail-page .product-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.product-detail-page .round-black-btn {
    background: #b45050;
    border-color: #b45050;
    border-radius: 4px;
    color: #fff;
    font-weight: 800;
    margin-top: 0;
    padding: 13px 28px;
}

.product-detail-page .round-black-btn:hover,
.product-detail-page .round-black-btn:focus {
    background: #16241d;
    border-color: #16241d;
    color: #fff;
}

.product-detail-page .product-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #16241d;
    font-weight: 800;
    text-decoration: none;
}

.product-detail-page .product-call-btn:hover {
    color: #b45050;
}

.product-detail-page .product-info-tabs {
    margin-top: 56px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(18, 38, 32, 0.08);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(24, 46, 35, 0.06);
}

.product-detail-page .product-info-tabs .nav-tabs {
    border: 0;
    background: #eef2ea;
    padding: 10px;
    gap: 8px;
}

.product-detail-page .product-info-tabs .nav-tabs .nav-link {
    border: 0;
    border-radius: 4px;
    color: #35443b;
    font-weight: 800;
    padding: 13px 22px;
}

.product-detail-page .product-info-tabs .nav-tabs .nav-link.active,
.product-detail-page .product-info-tabs .nav-tabs .nav-link:hover {
    background: #b45050;
    color: #fff;
}

.product-detail-page .product-info-tabs .tab-content .tab-pane {
    padding: 34px;
    color: #65726b;
}

.product-detail-page .product-info-tabs h3,
.product-detail-page .product-inquiry-panel h2 {
    color: #16241d;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-detail-page .product-note-box,
.product-detail-page .packaging-card {
    height: 100%;
    background: #f6f7f4;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid rgba(18, 38, 32, 0.08);
}

.product-detail-page .product-note-box {
    display: flex;
    gap: 18px;
}

.product-detail-page .product-note-box i,
.product-detail-page .packaging-card i {
    color: #b45050;
    font-size: 32px;
    margin-bottom: 14px;
}

.product-detail-page .product-note-box h4,
.product-detail-page .packaging-card h4 {
    color: #16241d;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-detail-page .product-spec-table {
    margin-bottom: 0;
}

.product-detail-page .product-spec-table th,
.product-detail-page .product-spec-table td {
    border-color: #e4e8df;
    padding: 16px 18px;
    vertical-align: middle;
}

.product-detail-page .product-spec-table th {
    width: 32%;
    color: #16241d;
    font-weight: 800;
    background: #f6f7f4;
}

.product-detail-page .product-inquiry-panel {
    margin-top: 44px;
    border-radius: 8px;
    padding: 38px;
    color: #fff;
    background: linear-gradient(135deg, #16241d 0%, #314d3d 58%, #b45050 100%);
}

.product-detail-page .product-inquiry-panel .product-kicker,
.product-detail-page .product-inquiry-panel h2,
.product-detail-page .product-inquiry-panel p {
    color: #fff;
}

.product-detail-page .product-inquiry-panel .form-control {
    min-height: 52px;
    border: 0;
    border-radius: 4px;
    padding: 12px 16px;
}

.product-detail-page .product-inquiry-panel textarea.form-control {
    min-height: 118px;
}

.product-detail-page .inquiry-submit {
    background: #fff;
    border-color: #fff;
    color: #16241d;
}

.product-detail-page .inquiry-submit:hover,
.product-detail-page .inquiry-submit:focus {
    background: #b45050;
    border-color: #b45050;
    color: #fff;
}

@media (max-width: 991px) {
    .product-detail-page {
        padding: 70px 0;
    }

    .product-detail-page .product-slider .item img {
        height: 430px;
    }

    .product-detail-page .product-summary {
        padding: 32px;
    }

    .product-detail-page .product-name {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .product-detail-page {
        padding: 52px 0;
    }

    .product-detail-page .product-gallery-wrap,
    .product-detail-page .product-summary,
    .product-detail-page .product-inquiry-panel {
        padding: 20px;
    }

    .product-detail-page .product-slider .item img {
        height: 300px;
    }

    .product-detail-page .product-thumb .item img {
        height: 72px;
    }

    .product-detail-page .product-badge {
        top: 28px;
        left: 28px;
    }

    .product-detail-page .product-name {
        font-size: 28px;
    }

    .product-detail-page .product-meta-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-page .product-info-tabs .nav-tabs {
        display: block;
    }

    .product-detail-page .product-info-tabs .nav-tabs .nav-item {
        margin-bottom: 8px;
    }

    .product-detail-page .product-info-tabs .nav-tabs .nav-link {
        width: 100%;
    }

    .product-detail-page .product-info-tabs .tab-content .tab-pane {
        padding: 22px;
    }

    .product-detail-page .product-spec-table th,
    .product-detail-page .product-spec-table td {
        display: block;
        width: 100%;
    }
}

/* Responsive polish for shared public pages */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

img,
iframe {
    max-width: 100%;
}

.page-header-info h2,
.section-heading h2,
.product-detail-page .product-name,
.contact-info-list h3,
.footer-contact-info p {
    overflow-wrap: anywhere;
}

.footer-logo img {
    max-width: 230px;
    width: 100%;
    height: auto;
}

.footer-contact-info span {
    display: inline-block;
}

@media (max-width: 1199px) {
    .site-logo img {
        width: 210px;
        margin-left: -28px;
    }

    .header-menu-wrap ul li {
        margin-right: 20px;
    }

    .header-menu-wrap ul li>a {
        font-size: 15px;
    }

    .menu-right-item .default-btn {
        padding: 15px 22px;
    }
}

@media (max-width: 991px) {
    .main-header-wapper {
        grid-template-columns: 190px 1fr;
        min-height: 82px;
    }

    .site-logo img {
        width: 190px;
        margin-left: 0;
    }

    .main-header-info:before,
    .main-header-info:after {
        display: none;
    }

    .header-menu-wrap {
        background: #fff;
    }

    .padding,
    .product-detail-page,
    .contact-section.padding {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .quote-section {
        margin-bottom: 70px;
    }

    .running-text {
        display: none;
    }

    .cta-section {
        margin-top: 80px;
    }

    .quote-form {
        margin-top: 34px;
    }

    .gal {
        margin: 26px 16px;
    }

    .gal .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-page .product-action-row .round-black-btn,
    .product-detail-page .product-call-btn {
        justify-content: center;
    }

    .contact-form-wrap {
        margin-bottom: 42px;
    }

    .footer-widget {
        height: 100%;
    }
}

@media (max-width: 767px) {
    .main-header {
        position: relative;
        z-index: 20;
    }

    .main-header-wapper {
        grid-template-columns: 170px 1fr;
        min-height: 76px;
    }

    .site-logo img {
        width: 168px;
    }

    .mobile-navigation-menu {
        width: min(88vw, 340px);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .page-header {
        padding: 70px 0;
    }

    .page-header-info h2 {
        font-size: 34px;
        line-height: 1.15;
    }

    .section-heading h2 {
        font-size: 34px;
        line-height: 1.18;
    }

    .section-heading p br,
    .slider-caption br,
    .cta-section br,
    .contact-section br {
        display: none;
    }

    .slider-truck,
    .container-img,
    .cargo-container,
    .cta-men,
    .running-truck {
        display: none !important;
    }

    .about-section .abt-girl,
    img.abt-girl {
        position: static !important;
        width: min(100%, 320px) !important;
        height: auto !important;
        margin: 18px auto 0 !important;
        display: block;
        inset: auto !important;
        transform: none !important;
        max-width: 100% !important;
    }

    .running-text,
    .running-text .container,
    .running-text .scroller,
    .project-section,
    .project-carousel,
    .swiper-outside {
        max-width: 100%;
        overflow: hidden;
    }

    .running-text .scroller__inner {
        max-width: none;
    }

    .quote-section {
        margin-bottom: 40px;
    }

    .quote-form {
        padding: 26px 20px;
    }

    .quote-form-group {
        display: block;
    }

    .quote-form .form-field {
        margin-bottom: 14px;
    }

    .quote-form .form-control,
    .quote-form .nice-select {
        min-height: 52px;
    }

    .call-info {
        align-items: flex-start;
    }

    .cta-section {
        margin-top: 48px;
        margin-bottom: 34px;
    }

    .promo-item-wrapper .promo-item,
    .service-item,
    .project-item {
        height: auto;
    }

    .project-content {
        margin-left: 14px;
        margin-right: 14px;
    }

    .cate .project-content .category {
        margin: 0 14px;
        font-size: 16px;
    }

    .gal {
        margin: 22px 12px;
    }

    .gal .container {
        grid-template-columns: 1fr;
    }

    .product-empty-state,
    .certificate-gallery .certificate-empty-state,
    .dynamic-gallery .gallery-empty-state,
    .featured-products-empty {
        padding: 36px 18px;
    }

    .product-detail-page .product-action-row,
    .product-detail-page .product-note-box {
        flex-direction: column;
        align-items: stretch;
    }

    .product-detail-page .round-black-btn,
    .product-detail-page .product-call-btn,
    .product-detail-page .inquiry-submit {
        width: 100%;
        text-align: center;
    }

    .product-detail-page .product-call-btn {
        justify-content: center;
        min-height: 48px;
    }

    .contact-info-list li {
        align-items: flex-start;
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .contact-info-list li i {
        flex: 0 0 auto;
    }

    .contact-info-list h3 span {
        display: block;
        max-width: 100%;
        line-height: 1.45;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .mc-fields {
        display: block;
    }

    .subscribe-form .form-control {
        margin-bottom: 12px;
    }

    .footer-section {
        overflow: hidden;
    }

    .copyright-area {
        padding-left: 16px;
        padding-right: 16px;
        line-height: 1.6;
        text-align: center;
    }
    .abt-girl {
    display: none !important;
}
}

@media (max-width: 575px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-header-wapper {
        grid-template-columns: 148px 1fr;
    }

    .site-logo img {
        width: 148px;
    }

    .menu-right-item .mobile-menu-icon {
        width: 38px;
        height: 38px;
    }

    .page-header-info h2,
    .section-heading h2 {
        font-size: 30px;
    }

    .product-detail-page .product-name {
        font-size: 26px;
    }

    .product-detail-page .product-slider .item img {
        height: 260px;
    }

    .product-detail-page .product-badge {
        top: 18px;
        left: 18px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .product-detail-page .product-meta-item {
        min-height: auto;
    }

    .contact-form-group {
        display: block;
    }

    .contact-form .form-field {
        margin-bottom: 14px;
    }

    .footer-logo img {
        max-width: 190px;
    }
    .abt-girl {
    display: none !important;
}
}

@media (max-width: 380px) {
    .site-logo img {
        width: 136px;
    }

    .main-header-wapper {
        grid-template-columns: 136px 1fr;
    }

    .page-header-info h2,
    .section-heading h2 {
        font-size: 27px;
    }

    .default-btn,
    .round-black-btn {
        padding-left: 18px;
        padding-right: 18px;
    }
    .abt-girl {
    display: none !important;
}
}
