:root {
    --main-color: #505328;
    --orange: #deac37;
    --white: #fff;
    --cyan: #20C0FF;
    --gray: #efefe5;
    --orange-light: #FBF6EE;
    --text-color: #374151;
    --green-color: #1d6255;
    --dark-color: #b6bec9;
    --focus-outline: 3px solid rgba(100,150,255,0.25);
    --border-color: #e0e1d7;
    --radius: 8px;
}

html {
    box-sizing: border-box;
    text-size-adjust: 100%;
}

*, ::after, ::before {
    box-sizing: inherit;
}

body {
    font-family: tajawalfont, Helvetica, Verdana, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    margin: 0px;
}

img, picture, video, canvas, iframe, embed {
    max-width: 100%;
    height: auto;
}

picture, video, canvas, iframe, embed {
    display: block;
}

a {
    color: rgb(12, 60, 51);
    background: transparent;
    text-decoration: none;
}

a:focus, a:hover {
    text-decoration: underline;
    outline-offset: 3px;
}

a:focus-visible {
    outline: var(--focus-outline);
    border-radius: 4px;
}

.gastheme-screen-reader {
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0px;
    padding: 0px;
    margin: -1px;
    color: #000;
    position: absolute !important;
}

.gastheme-screen-reader:focus, .gastheme-screen-reader:active {
    width: auto;
    height: auto;
    padding: 0.5rem;
    margin: 0px;
    background: var(--light-blue);
    color: var(--main-color);
    border-radius: 4px;
    clip: auto !important;
}

h1, h2, .h2, h3, .h3, h4, h5, h6 {
    font-weight: 900;
    margin: 0px 0px 24px;
}

h1 {
    font-size: 36px;
    line-height: 1.25;
}

h2, .h2 {
    font-size: 30px;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 24px;
    line-height: 1.5;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px 0px 24px;
}

.text-gray {
    color: rgb(75, 85, 99);
}

small {
    font-size: 80%;
}

strong, b {
    font-weight: 700;
}

::marker {
    color: var(--main-color);
    font-size: 16px;
}

button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: var(--focus-outline);
    border-radius: 4px;
}

.bg-main {
    background-color: var(--main-color);
    color: var(--white);
}

.bg-light-orang {
    background-color: var(--orange-light);
}

.gastheme-bg-gray {
    background-color: rgb(243, 244, 245);
}

.bg-gray {
    background-color: #efefe5;
}

.white-clr {
    color: var(--white);
}

.gastheme-content-box-white {
    box-shadow: rgba(235, 235, 235, 0.2) 1px 1px 4px 2px;
    border-radius: 24px;
    padding: 7px 14px;
    background-color: rgb(255, 255, 255);
    color: var(--text-color);
    border: 2px solid rgba(155, 155, 155, 0.08);
    margin-bottom: 17px;
}

.gastheme-content-box-white h3 {
    margin: 15px 0px;
    color: var(--main-color);
}

.gastheme-content-box-white p {
    color: rgb(78, 78, 78);
}

.gastheme-container {
    width: 100%;
    padding: 0px 15px;
    margin: 0px auto;
}

.gastheme-flex {
    display: flex;
    flex-wrap: wrap;
}

.gastheme-space-between {
    justify-content: space-between;
}

.gastheme-justify-center {
    justify-content: center;
}

.gastheme-align-center {
    align-items: center;
}

.gastheme-section-padding {
    padding: 25px 0px;
}

.gastheme-section-padding-40 {
    padding: 40px 0px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-80 {
    margin-bottom: 80px;
}

.gap-20-center {
    justify-content: center;
    gap: 20px;
}

.gastheme-txtcenter {
    text-align: center;
}

.gastheme-txtleft, .form-submit {
    text-align: left;
}

.gastheme-hideflow, .g-recaptcha {
    overflow: hidden;
}

.gastheme-col-30 {
    width: 100%;
}

legend, label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--main-color);
}

input, textarea, select, #gasthemedatetime {
    font-size: 18px;
    border-radius: var(--radius);
    padding: 12px 16px;
    width: 100%;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    transition: box-shadow 0.15s, border-color 0.15s;
    margin-bottom: 20px;
    background-color: var(--gray);
}

textarea {
    max-height: 160px;
}

::placeholder {
    color: rgba(47, 47, 47, 0.6);
    font-size: 15px;
}

.gastheme-action-btns {
    padding: 10px 0px 24px;
    display: flex;
    gap: 10px;
}

.gastheme-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 5px 17px;
    border-radius: 27px;
    background: var(--main-color);
    color: var(--white);
    font-weight: 700;
    border: 1px solid var(--main-color);
    justify-content: space-around;
    cursor: pointer;
}

.btn-orang {
    background: var(--orange);
    color: var(--white);
    border: 1px solid var(--orange);
}

.gastheme-btn:hover {
    box-shadow: rgba(30, 58, 138, 0.11) 0px 0px 0px 7px;
}

.orang-color {
    color: var(--orange);
}
.green-color {
     color: var(--main-color);
}
.title-right h2, .title-center h2 {
    position: relative;
    color: var(--main-color);
    display: inline-block;
    margin-bottom: 45px;
}

.title-right h2::after, .title-center h2::after {
    content: "";
    position: absolute;
    left: 18%;
    display: inline-block;
    height: 1em;
    width: 61%;
    border-bottom: 4px solid;
    margin-top: 24px;
    color: var(--orange);
}

.gastheme-submit, .submit {
    font-weight: 900;
    font-size: 18px;
    padding: 10px 22px;
    border-radius: 25px;
    background: var(--main-color);
    color: var(--white);
    border: 0px;
    cursor: pointer;
    width: 40%;
}

.gastheme-submit:focus-visible, .submit:focus-visible {
    outline: var(--focus-outline);
}

.gastheme-search-container {
    display: none;
    position: fixed;
    inset: 0px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.78);
    align-items: center;
    justify-content: center;
}

.gastheme-search-form label {
    color: var(--white);
}

.gastheme-search-container.active {
    display: flex;
}

.gastheme-search-form {
    width: 100%;
    max-width: 700px;
    position: relative;
    padding: 20px;
}

.search-field-wrapp {
    position: relative;
}

.gastheme-search-field {
    padding-left: 56px;
    height: 50px;
    font-weight: 900;
    background: var(--white);
    color: var(--text-color);
    border-radius: 8px;
    border: 0px;
}

.gastheme-search-submit {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    padding: 0px 14px;
    background: var(--main-color);
    color: var(--white);
    border-radius: 8px 0px 0px 8px;
    height: 50px;
    border: 0px;
    font-weight: 900;
    font-size: 16px;
}

.gastheme-header {
    background-color: rgb(255, 255, 255);
    position: relative;
    z-index: 0;
}

.gastheme-header.sticky {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.gastheme-breadcrumbs ol, .gastheme-main-nav ul, .contact-list ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.gastheme-menu-items li {
    position: relative;
    display: block;
}

.gastheme-menu-items li a {
    display: block;
    padding: 10px 16px;
    font-weight: 900;
    color: var(--text-color);
    font-size: 15px;
}

.gastheme-menu-items li a:hover, .gastheme-menu-items li.current a {
}

.gastheme-menu-items li a:focus-visible {
    outline: var(--focus-outline);
    border-radius: 4px;
}

.gastheme-menu-items a .icon {
    margin-left: 7px;
}

.gastheme-submenu-toggle.active .icon::before {
    content: "";
}

.gastheme-submenu-toggle {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--main-color);
    color: var(--white);
    border: 0px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 12px;
}

.gastheme-sub-menu {
    display: none;
}

.gastheme-sub-menu.active {
    display: block;
}

.contact-list li i, .gastheme-darkmode-switch, .gastheme-sidebar-open, .gastheme-search-open {
    color: var(--white);
    border-radius: 8px;
    background-color: var(--main-color);
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    font-size: 17px;
    border: 0px;
    margin-left: 13px;
    cursor: pointer;
    outline-offset: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.gastheme-breadcrumbs ol li {
    display: inline-block;
    font-weight: 600;
}

.gastheme-breadcrumbs li::after {
    content: "»";
    color: var(--main-color);
    padding: 0px 10px;
}

.gastheme-breadcrumbs li:last-of-type::after {
    display: none;
}

.gastheme-breadcrumbs .icon.icon-home {
    font-size: 22px;
}

.gastheme-content-thumbnail {
    margin-bottom: 35px;
}

.gastheme-content-thumbnail img {
    border-radius: 60px;
}

.entry-content {
    border-right: 1.5px solid var(--border-color);
    padding: 0px 22px 0px 5px;
}

.gastheme-post-content {
    padding-right: 10px;
}

.entry-content h2, .entry-content section > h2 {
    color: var(--main-color);
    position: relative;
}

.entry-content > h3 {
    position: relative;
}

.entry-content > h2::before, .entry-content section > h2::before {
    font-family: gasthemeicons;
    content: "";
    position: absolute;
    right: -32px;
    top: 10px;
    font-size: 22px;
}

.entry-content > h3::before {
    content: " ";
    position: absolute;
    top: 19px;
    height: 0px;
    width: 12px;
    border-bottom: 2px solid var(--border-color);
    background: transparent;
    right: -20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

table th, table td {
    padding: 8px 10px;
    border: 1px solid rgba(165, 207, 255, 0.6);
    vertical-align: middle;
}

table thead {
    background: var(--light-blue);
}

blockquote {
    border-right: 5px solid var(--main-color);
    padding: 10px 20px;
    margin: 0px 0px 1rem;
}

hr {
    width: 58%;
    border: 1px dashed var(--main-color);
}

.alignleft {
    float: left;
    margin: 0px 30px 30px 0px;
}

.alignright {
    float: right;
    margin: 0px 0px 20px 20px;
}

.aligncenter {
    display: block;
    margin: 0px auto 15px;
}

.wp-caption {
    max-width: 100%;
    background-color: var(--light-blue);
    border: 1px solid var(--border-color);
    padding: 8px;
    margin-bottom: 1em;
    text-align: center;
    box-sizing: border-box;
    border-radius: var(--radius);
}

.wp-caption img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0px auto;
}

.wp-block-image figcaption, .wp-caption-text {
    font-size: 0.9em;
    line-height: 1.4;
    margin-top: 5px;
}

.gastheme-callusnow, .gastheme-content-box {
    border-radius: var(--radius);
    padding: 35px 26px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    background-color: var(--light-blue);
}

.gastheme-content-box img {
    border-radius: 8px;
}

.gastheme-content-box h3 {
    margin: 15px 0px;
    font-size: 21px;
}

.gastheme-content-box p {
    font-size: 16px;
}

.gastheme-worksteps-box-number {
    display: block;
    width: 65px;
    height: 65px;
    line-height: 55px;
    margin: auto;
    background-color: var(--white);
    border-radius: 8px;
    color: #505224;
    font-weight: 900;
    font-size: 23px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
  0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--main-color);
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 9;
}

.gastheme-callusnow {
    background-color: var(--light-blue);
}

.gastheme-post-faq-box {
    margin-bottom: 24px;
    cursor: pointer;
    padding: 15px;
    border: 1px solid #e3e5cb;
    border-radius: var(--radius);
    background-color: var(--white);
    width: 100%;
    margin: auto;
    margin-bottom: 19px;
}
.gastheme-post-faq-box.active {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
.gastheme-faq-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: var(--radius);
    font-weight: 900;
}

.gastheme-faq-number {
    font-size: 25px;
}

.gastheme-faq-head h3 {
    margin: 0px 12px;
}

.gastheme-post-faq-box.active .icon, .gastheme-post-faq-box.active .gastheme-faq-head {
    color: var(--main-color);
}

.gastheme-faq-head .icon {
    color: var(--text-color);
    display: inline-block;
    margin-right: auto;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 13px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.comment-form, .gastheme-post-faq-box.active .icon {
    background-color: var(--white);
}

.gastheme-post-faq-box.active .icon::before {
    content: "";
}

.gastheme-faq-box-answer {
    display: none;
}

.comment-form.active, .gastheme-post-faq-box.active .gastheme-faq-box-answer {
    display: block;
}

.checked-list {
    list-style: none;
    padding: 0px;
    margin: 15px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.checked-list li {
    width: 50%;
    margin-bottom: 11px;
}

.checked-list li::before {
    font-family: gasthemeicons;
    content: "";
    padding-left: 6px;
    color: rgb(222, 166, 22);
    vertical-align: middle;
}

.gastheme-leave-comment-title, .gastheme-customers-comment-innr h2, .sub-title {
    color: var(--main-color);
    margin-bottom: 45px;
    border-right: 6px solid var(--secondary-color);
    padding-right: 16px;
}

.gastheme-customer-comment .gastheme-customer-comment {
    margin-right: 25px;
}

.gastheme-comment-avatar {
    width: 12%;
}

.gastheme-comment-avatar img {
    border-radius: 50%;
}

.comment-info {
    width: 84%;
    background-color: rgb(222, 237, 253);
    border-radius: var(--radius);
    margin-bottom: 15px;
    padding: 0px 18px 12px 15px;
    position: relative;
}

.comment-info::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -28px;
    border-width: 15px;
    border-style: solid;
    border-color: transparent transparent transparent rgb(222, 237, 253);
    border-image: initial;
    z-index: 1;
}

.customer-comment-date {
    font-size: 15px;
    color: rgb(87, 87, 87);
    margin-right: 6px;
}

.customer-rating-value {
    line-height: 10px;
    font-size: 12px;
}

.customer-rating-value .icon-star-filled {
    color: var(--secondary-color);
}

.comments-rating {
    background-color: var(--gray);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.rating-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
    align-items: center;
    width: 100%;
    max-width: 220px;
}

.rating-container input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.rating-container label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 32px;
    color: rgb(154, 154, 154);
    cursor: pointer;
    transition: color 0.15s;
}

.rating-container input:checked ~ label, .rating-container label:hover, .rating-container label:hover ~ label {
    color: var(--secondary-color);
}

.service-card {
    margin-bottom: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 20px 0px;
    border-radius: 19px;
}

.service-card__title {
    font-weight: 900;
    display: block;
    margin: 5px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.service-card__excerpt {
    font-size: 15px;
}

.service-card__more {
    color: var(--main-color);
    font-weight: 900;
}

.service-card__image img {
    height: 250px;
    width: 100%;
}

.service-card__content {
    background-color: rgb(255, 255, 255);
    position: relative;
    padding: 3px 20px;
}

.gastheme-page-hero {
    background-color: var(--gray);
    padding: 31px 0px;
}

.contact-form {
    width: 60%;
    margin: auto;
}

.page-title-404 {
    color: var(--main-color);
    font: 839 133px Consolas;
    letter-spacing: 5vmin;
    display: block;
}

.gastheme-pagination .page-numbers {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 35px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: var(--radius);
    margin: 16px 2px;
    text-align: center;
    font-weight: 600;
}

.gastheme-pagination .next, .gastheme-pagination .prev {
    float: left;
    padding: 0px 1.5em;
    width: auto;
    height: auto;
    line-height: revert;
}

.gastheme-pagination .prev {
    float: right;
    text-align: right;
}

.gastheme-pagination .current, .gastheme-pagination .page-numbers:hover {
    color: rgb(255, 255, 255);
    background-color: var(--main-color);
    outline: none;
}

.gastheme-pagination .page-numbers:focus-visible {
    outline: 2px dashed var(--main-color);
    outline-offset: 3px;
}

.contact-list li {
    margin-bottom: 10px;
}

.gastheme-scrollUp {
    display: none;
    position: fixed;
    left: 8px;
    bottom: 0px;
    width: 42px;
    height: 42px;
    border-radius: 50px 50px 0px 0px;
    background: var(--main-color);
    color: var(--white);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.gastheme-scrollUp.active {
    display: flex;
}

.gastheme-whats-button, .gastheme-call-button {
    position: fixed;
    bottom: 0.3em;
    right: 6px;
    z-index: 9999;
    border-radius: var(--radius);
    padding: 8px 10px 5px 4px;
    height: 50px;
    width: 143px;
    line-height: 16px;
    color: var(--white);
    background: var(--orange);
}
 .gastheme-call-button {
 
    color:#000;
}
.gastheme-call-button {
    bottom: 74px;
}

.gastheme-call-number {
    display: inline-block;
    font-size: 13px;
    width: 79px;
}

.gastheme-whats-txt, .gastheme-call-txt {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.gastheme-call-icon, .gastheme-whats-icon {
    display: inline-block;
    position: relative;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 8px;
    background: var(--white);
    color: var(--main-color);
    font-size: 21px;
    line-height: 37px;
    margin-top: -17px;
    margin-right: 6px;
}

.gastheme-btn.whatsapp-btn, .gastheme-whats-button {
    background-color: var(--green-color);
    border-color: var(--green-color);
}

.gastheme-call-button .icon {
    animation: 5s ease-in-out 0s infinite normal none running callrotate;
    color: #deac37;
}

@keyframes callrotate {
    0%, 50%, 100% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    10%, 30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20%, 40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gastheme-call-button .icon {
        animation: auto ease 0s 1 normal none running none;
    }
}

.gastheme-follow-us a {
    display: inline-block;
    font-size: 15px;
    margin: 5px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--light-blue);
    text-decoration: none;
    padding: 2px 20px 6px;
    font-weight: 700;
    color: var(--main-color);
}

.gastheme-follow-us a:focus-visible {
    outline: var(--focus-outline);
}

.site-footer {
    background-color: rgb(14, 14, 6);
    padding: 40px 0px;
    color: #a7a7a7;
}

.footer-widgets {
    padding: 50px 0px;
}

.footer-widgets p, .footer-widgets li, .footer-widgets a {
    color: var(--white);
}

.site-footer ul {
    padding: 0px;
    margin: 30px 0px;
    list-style: none;
}

.footer-contacts i {
    color: rgb(255, 255, 255);
}

.footeritems li a {
    display: block;
    color: var(--white);
    font-weight: 900;
}

.gastheme-social-links a {
    display: inline-block;
    color: var(--gray);
    font-size: 24px;
    margin: 5px;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background-color: rgb(255 255 255 / 0.2);
    line-height: 48px;
    text-align: center;
}

.site-footer .h3 {
    position: relative;
    padding-bottom: 17px;
    color: var(--orange-light);
}

.site-footer .h3::after {
    content: " ";
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    bottom: 0px;
    right: 35px;
}

.site-footer .h3::before {
    content: " ";
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    position: absolute;
    bottom: 0px;
    right: 0px;
}



.gastheme-copyright a {
    text-decoration: underline;
}

.gastheme-copyright p {
    margin: 0px;
}

.icon {
    font-family: gasthemeicons;
    speak: none;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    vertical-align: middle;
}

.icon-star-filled::before {
    content: "";
}

.icon-star-solid::before {
    content: "";
}

.icon-shield::before {
    content: "";
}

.icon-dot::before {
    content: "";
}

.icon-map::before {
    content: "";
}

.icon-help::before {
    content: "";
}

.icon-close::before {
    content: "";
}

.icon-up::before {
    content: "";
}

.icon-right::before {
    content: "";
}

.icon-left::before {
    content: "";
}

.icon-down::before {
    content: "";
}

.icon-vacuum::before {
    content: "";
}

.icon-arrow-left::before {
    content: "";
}

.icon-clock::before {
    content: "";
}

.icon-youtube::before {
    content: "";
}

.icon-smiley::before {
    content: "";
}

.icon-navicon::before {
    content: "";
}

.icon-home::before {
    content: "";
}

.icon-tools::before {
    content: "";
}

.icon-messenger::before {
    content: "";
}

.icon-telegram::before {
    content: "";
}

.icon-email::before {
    content: "";
}

.icon-x::before {
    content: "";
}

.icon-headset::before {
    content: "";
}

.icon-phonesolid::before {
    content: "";
}

.icon-phone::before {
    content: "";
}

.icon-callus::before {
    content: "";
}

.icon-callsolid::before {
    content: "";
}

.icon-search::before {
    content: "";
}

.icon-at::before {
    content: "";
}

.icon-images::before {
    content: "";
}

.icon-hand-like::before {
    content: "";
}

.icon-hand-left::before {
    content: "";
}

.icon-facebook::before {
    content: "";
}

.icon-instagrem::before {
    content: "";
}

.icon-snapchat::before {
    content: "";
}

.icon-tiktok::before {
    content: "";
}

.icon-pinterest::before {
    content: "";
}

.icon-iphone::before {
    content: "";
}

.icon-check-square::before {
    content: "";
}

.icon-check::before {
    content: "";
}

.icon-info-circled::before {
    content: "";
}

.icon-info::before {
    content: "";
}

.icon-shipping::before {
    content: "";
}

.icon-whatsapp::before {
    content: "";
}

.icon-droplet::before {
    content: "";
}

.icon-paper-plane::before {
    content: "";
}

.icon-linkedin::before {
    content: "";
}

.icon-dark::before {
    content: "";
}

.icon-light::before {
    content: "";
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2, .h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    .gastheme-faq-head h3, h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 14px;
    }

    .customer-comment-date {
        font-size: 10px;
    }

    .gastheme-content-box, .entry-content img, .entry-content ol, .entry-content p, .entry-content ul, h1, h2, h3, h4, h5, h6 {
        margin: 0px 0px 24px;
    }
    .site-footer{
        padding-bottom: 150px;
    }
}

@media (max-width: 991px) {
    .gastheme-search-form {
        width: 80%;
    }

    .gastheme-main-nav {
        position: fixed;
        height: 100%;
        top: 59px;
        right: 0px;
        overflow-x: hidden;
        width: 0px;
        transition: 0.5s;
        visibility: hidden;
        opacity: 0;
        z-index: 999;
        background: var(--white);
        padding: 25px;
    }

    .gastheme-main-nav.active {
        width: 100%;
        visibility: visible;
        opacity: 1;
    }

    .gastheme-menu-items ul {
        padding-right: 15px;
    }

    .gastheme-menu-items li a {
        background-color: var(--gray);
        border-radius: var(--radius);
        margin-bottom: 7px;
    }

    .gastheme-sidebar-open.active .icon::before {
        content: "";
        color: var(--orange);
    }

    .dark-mode .gastheme-submenu-toggle, .dark-mode .gastheme-main-nav {
        background-color: rgb(30, 31, 39);
    }

    .dark-mode .gastheme-menu-items li a {
        background-color: rgb(48, 49, 56);
    }
}

.gastheme-site-logo {
    display: block;
}

.gastheme-col-50 {
    width: 100%;
}

@media (min-width: 576px) {
    .gastheme-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .gastheme-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .gastheme-container {
        max-width: 960px;
    }

    .gastheme-col-10 {
        width: 10%;
    }

    .title-center {
        width: 56%;
        margin: auto;
    }

    .gastheme-col-20 {
        width: 20%;
    }
   .gastheme-col-80 {
        width: 80%;
    }

    .gastheme-col-25 {
        width: 23%;
    }

    .gastheme-col-30 {
        width: 29%;
    }

    .gastheme-col-40 {
        width: 40%;
    }

    .gastheme-col-50 {
        width: 49%;
    }

    .gastheme-col-60 {
        width: 60%;
    }

    .gastheme-col-70 {
        width: 69%;
    }

    .gastheme-section-padding {
        padding: 80px 0px;
    }

    .gastheme-section-padding-40 {
        padding: 40px 0px;
    }

    .gastheme-sidebar-open, .gastheme-submenu-toggle {
        display: none;
    }

    .gastheme-main-nav {
        width: 78%;
        text-align: center;
    }

    .gastheme-menu-items > li {
        display: inline-block;
    }

    .gastheme-menu-items li a {
        padding: 15px 21px;
    }

    .gastheme-menu-items li:first-child a {
        border-right: 0px;
    }

    .gastheme-menu-items li.has-children > a::after {
        font-family: gasthemeicons;
        content: "";
        position: relative;
        top: 1px;
        right: 4px;
        font-size: 11px;
    }

    .dark-mode .gastheme-sub-menu, .gastheme-menu-items .gastheme-sub-menu .has-children > a::after {
        content: "";
        position: absolute;
        top: 30%;
        left: 10px;
        right: auto;
    }

    .gastheme-menu-items .gastheme-sub-menu {
        position: absolute;
        top: 100%;
        right: 0px;
        min-width: 201px;
        box-shadow: rgba(0, 0, 0, 0.11) 0px 16px 20px 0px;
        border-radius: 0px 0px 10px 10px;
        background: rgb(255, 255, 255);
        text-align: right;
    }

    .gastheme-menu-items .has-children:hover > .gastheme-sub-menu {
        display: block;
    }

    .gastheme-menu-items .gastheme-sub-menu .has-children .gastheme-sub-menu {
        right: 100%;
        top: 0px;
    }

    .dark-mode .gastheme-sub-menu {
        background-color: rgb(48, 49, 56);
    }

    .dark-mode .gastheme-menu-items li a {
        border-color: rgb(65, 65, 69);
    }

    .gastheme-site-branding {
        width: 14%;
    }

    .gastheme-comment-avatar {
        width: 4%;
        margin-left: 12px;
    }

    .comment-info {
        width: 95%;
    }
}

@media (min-width: 1200px) {
    .gastheme-container {
        max-width: 1150px;
    }
}

@media (min-width: 1400px) {
    .gastheme-container {
        max-width: 1450px;
    }
}

@media print {
    #contact-form, .gastheme-customers-comment-area, .gastheme-action-btns, .gastheme-scroll-up, .gastheme-whats-button, .gastheme-call-button, .gastheme-header, nav, footer {
        display: none;
        height: 0px;
        margin: 0px;
        padding: 0px;
        overflow: hidden;
    }

    body {
        background: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        font-size: 14pt;
        line-height: 1.6;
    }

    * {
        & .hero strong {
            background-color: rgb(238, 239, 224);
            padding: 4px 18px;
            border-radius: 22px;
            border: 1px solid rgb(225, 227, 201);
        }

        & .gastheme-hero-img {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 52%;
        }

        & .contact-info-box {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            border-radius: 28px;
            padding: 19px 30px;
            background-color: rgb(255, 255, 255);
            text-align: center;
            margin-bottom: 27px;
            width: 32%;
            font-size: 18px;
        }

        & .contact-info-box a {
            display: block;
        }

        & h3.price-box-title {
            background-color: rgb(255, 201, 60);
            padding: 8px 22px;
            margin: auto;
            display: inline;
            border-radius: 15px;
            text-align: center;
        }

        & .price-box ul {
            text-align: right;
            list-style: none;
            padding: 0px;
            margin: 0px 0px 26px 10px;
        }

        & .price-box ul li {
            position: relative;
        }

        & .price-box-body {
            padding: 23px 19px;
            box-shadow: rgba(0, 0, 0, 0.14) 0px 12px 12px;
            margin: 0px 31px;
        }

        & span.price-box-price {
            background-color: rgb(231, 240, 249);
            padding: 30px 0px;
            border-radius: 23px;
            display: block;
            margin-top: -19px;
            font-weight: 900;
            font-size: 27px;
            text-align: center;
        }

        & .steps, & .features {
            position: relative;
        }

        & .gallery {
            background-color: rgb(247, 255, 254);
        }

        & .home-contact .gastheme-flex {
            padding: 34px;
            border-radius: 33px;
            box-shadow: rgb(29, 98, 85) 0px 0px 0px 2px, rgb(255, 255, 255) 0px 0px 0px 10px, rgba(11, 100, 84, 0.34) 0px 0px 0px 12px, rgb(255, 255, 255) 0px 0px 0px 20px, rgba(6, 135, 110, 0.11) 0px 0px 0px 22px;
        }

        & .home-contact-info {
            list-style: none;
            padding: 0px;
        }

        & .home-contact-info li {
            margin-bottom: 14px;
        }

        & .home-contact-info .icon {
            display: inline-block;
            width: 37px;
            height: 37px;
            background-color: var(--main-color);
            text-align: center;
            line-height: 39px;
            border-radius: 50%;
            margin-left: 13px;
            color: rgb(255, 255, 255);
            font-size: 20px;
        }

        & .gastheme-service-box {
            border-radius: 22px;
            overflow: hidden;
            box-shadow: rgba(0, 0, 0, 0.17) 0px 1px 8px 0px;
            padding: 25px 15px;
            background-color: rgb(255, 255, 255);
            margin-bottom: 45px;
            color: rgb(75, 85, 99);
        }

        & .img-box {
            width: 85px;
            height: 85px;
            background-color: rgb(239, 239, 229);
            border-radius: 50%;
            line-height: 135px;
            text-align: center;
        }

        & .gastheme-service-box img {
            border-radius: 15px;
        }

        & .gastheme-service-box h3 {
            margin-bottom: 8px;
        }

        & .about-img img {
            border-radius: 24px;
            border: 4px solid rgb(255, 255, 255);
            box-shadow: rgb(226, 227, 217) -20px 20px 0px 0px;
        }

        & .contact-info-box h3 {
            color: var(--main-color);
        }

        & .step-box-num {
            font-size: 37px;
            background-color: rgb(222, 237, 253);
            width: 70px;
            height: 70px;
            margin: auto auto 15px;
            line-height: 69px;
            border-radius: 38px;
            font-weight: 700;
            color: var(--main-color);
        }

        & .step-box {
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            border-radius: 24px;
            padding: 20px 19px;
            background-color: var(--white);
            text-align: center;
            color: var(--text-color);
        }

        & section.contact-info {
            margin-top: -100px;
            position: relative;
            z-index: 9;
        }

        & .bg-section {
            position: absolute;
            top: 6%;
        }

        & img.bg-section.bg-section-right {
            right: 0px;
        }

        & img.bg-section.bg-section-left {
            left: 0px;
        }

        & .gastheme-feature-box {
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            border-radius: 24px;
            border-bottom: 5px solid var(--orange);
            padding: 20px 19px;
        }

        & .gastheme-feature-box h3 {
            margin: 15px 0px;
        }

        & .orang-clr {
            color: var(--orange);
        }

        & .second-clr {
            color: var(--cyan);
        }

        & .gastheme-service-city {
            border: 1px solid var(--main-color);
            margin-bottom: 79px;
            border-radius: 17px;
            padding: 22px 40px;
        }

        & .city-header a {
            box-shadow: rgba(3, 85, 167, 0.12) 0px 0px 10px 5px;
            margin: -61px auto 0px;
            background-color: rgb(255, 255, 255);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 5px;
        }

        & .city-header h3 {
            margin: 0px;
        }

        & .contact-info-box i {
            margin-left: 8px;
            color: rgb(239, 178, 16);
        }

        & .memo-gallery {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: center;
        }

        & .memo-gallery img {
            width: 47%;
            height: auto;
            display: block;
            cursor: pointer;
            border-radius: 8px;
            object-fit: cover;
            transition: transform 0.15s, box-shadow 0.15s;
        }

        & .memo-lightbox {
            position: fixed;
            inset: 0px;
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        & .memo-lightbox.is-visible {
            display: flex;
        }

        & .memo-lightbox-backdrop {
            position: absolute;
            inset: 0px;
            background: rgba(0, 0, 0, 0.75);
        }

        & .memo-lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            z-index: 1;
        }

        & .memo-lightbox-content img {
            max-width: 100%;
            max-height: 100%;
            display: block;
            border-radius: 10px;
        }

        & .memo-lightbox-close {
            position: absolute;
            top: -12px;
            right: -12px;
            width: 32px;
            height: 32px;
            border-radius: 999px;
            border: none;
            background: rgb(255, 255, 255);
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 950px) {
            & .gastheme-col-25, & .contact-info-box {
                width: 100%;
            }

            & .bg-section {
                display: none;
            }

            & .gastheme-col-25, & .price-box, & .gastheme-service-box, & .gastheme-content-box-white {
                margin-bottom: 25px;
            }
        }

        @media (min-width: 950px) {
            & .memo-gallery img {
                width: 23%;
            }
        }

        color: rgb(0, 0, 0);
        box-shadow: none;
        text-shadow: none;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }
}
