:root {
    /* Colors from design */
    --color-dark: #131316;
    --color-light: #eff2f1;
    --color-accent: #67ff56;
    --color-teal: #426a5a;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-overlay: #20252352;
    --color-border: rgba(239, 238, 236, 0.08);
    --color-blur-bg: rgba(239, 238, 236, 0.1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Roboto Flex', sans-serif;
    color: #eff2f1;
    background: #131316;
}
main {
    overflow: hidden;
}

/* Global hero background */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img,
.hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.hero-bg-img--mobile { display: none !important; }
.hero-bg-img--desktop { display: block !important; }

@media (max-width: 767px) {
    .hero-bg-img--mobile { display: block !important; }
    .hero-bg-img--desktop { display: none !important; }
}
.hero-content {
    position: relative;
    z-index: 1;
}

/* Form select custom arrow */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 6.5L13 1.5' stroke='%23131316' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}
h1,
h2,h3 {
    font-weight: 1000!important;
		font-style: italic!important;
		text-transform: uppercase!important;
}

@layer base {
    html,
    body {
        height: 100%;
        margin: 0;
        padding: 0;
    }

    /* Font family utilities */
    .font-brodaers {
        font-family: 'Roboto Flex', sans-serif;
    }

    .font-roboto {
        font-family: 'Roboto Flex', sans-serif;
    }

    .font-manrope {
        font-family: 'Manrope', sans-serif;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 12px 0;
    transition: all 0.3s ease 0s;
}

.header.sticky {
    background: rgba(12, 14, 22, 0.72);
    backdrop-filter: blur(12px);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}
.header .logo {
    position: relative;
    z-index: 3;
}
.header .logo img {
    max-height: 74px;
    object-fit: contain;
    width: fit-content;
}
.header-box {
    background: rgba(239, 238, 236, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(239, 238, 236, 0.08);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.header nav {
    display: flex;
    align-items: center;
    gap: 50px;
}


.mobile-menu-btn {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.mobile-menu-btn:hover {
    border-color: rgba(103, 255, 86, 0.6);
    background: rgba(255, 255, 255, 0.07);
}

.mobile-menu-btn svg path {
    stroke: #eff2f1;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 14, 0.96);
    backdrop-filter: blur(14px);
    padding: 24px 22px 32px;
    display: none;
    flex-direction: column;
    z-index: 300;
}

.mobile-menu-overlay.active {
    display: flex;
}

/* Generic nav (header.php markup) */
.header nav ul {
    display: flex;
    align-items: center;
    gap: 70px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header nav ul li {
    position: relative;
}

.header nav ul li a {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #eff2f1;
    text-decoration: none;
    padding: 12px 6px;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.header nav ul li a:hover {
    color: #67ff56;
}

/* .header nav ul li.menu-item-has-children > a:after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
} */

.header nav ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 28px;
    padding: 10px 0;
    background: rgba(15, 18, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
    z-index: 210;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header nav ul li:hover > .sub-menu,
.header nav ul li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header nav ul li .sub-menu li {
    width: 100%;
}

.header nav ul li .sub-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 16px;
    letter-spacing: 0.2px;
    text-transform: none;
    color: #eff2f1;
    opacity: 0.9;
}

.header nav ul li .sub-menu a:hover {
    color: #67ff56;
    opacity: 1;
    background: rgba(103, 255, 86, 0.06);
}

.header nav ul li .sub-menu li + li a {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-toggle-box {
    display: none;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;

    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle small {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #eff2f1;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle::before {
    top: 14px;
}
.menu-toggle small {
    top: 21px;
}
.menu-toggle::after {
    top: 28px;
}

.menu-toggle.is-active::before {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active::after {
    transform: translateY(-7px) rotate(-45deg);
}
.menu-toggle.is-active small {
    opacity: 0;
}

.header nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header nav.is-active {
    display: flex;
}

/* Unified primary button */
.btn-primary,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: #67ff56;
    color: #131316;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        opacity 0.2s ease;
    box-shadow: 0 8px 24px rgba(103, 255, 86, 0.25);
    min-height: 60px;
    position: relative;
    z-index: 2;
}

.btn-primary svg {
    flex-shrink: 0;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(103, 255, 86, 0.35);
    opacity: 0.95;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(103, 255, 86, 0.25);
}

/* Footer */
.footer {
    padding: 120px 46px 60px;
}

.footer-container {
    max-width: 1512px;
    width: 100%;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    gap: 223px;
    max-width: 1412px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 47px;
}

.footer-logo {
    max-width: 390px;
    width: 100%;
    height: 79px;
}

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

.footer-left-content {
    display: flex;
    flex-direction: column;
    gap: 23px;
    max-width: 340px;
    width: 100%;
}

.footer-description {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.192px;
}

.footer-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    filter: brightness(0.1);
}

.footer-contact-item p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.192px;
}

.footer-right {
    display: flex;
    gap: 189px;
    max-width: 849px;
    width: 100%;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-column:first-child {
    max-width: 211px;
    width: 100%;
}

.footer-column:last-child {
    max-width: 404px;
    width: 100%;

}
.footer-column:last-child a{
	text-transform: none;
}

.footer-column-title {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.6;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a,
.footer-nav p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    letter-spacing: -0.192px;
    color: rgba(19, 19, 22, 1);

    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-divider {
    max-width: 1420px;
    width: 100%;
    height: 1px;
    background: #131316;
    margin: 0 auto 40px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
}

.footer-bottom p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.192px;
    opacity: 0.6;
    max-width: 365px;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom a {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.192px;
    color: #454546;
    text-decoration: none;

    transition: opacity 0.2s;
}

/* Contact Section */
.contact-section {
    position: relative;
    width: 100%;
    padding: 140px 0;
}

.contact-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: #67ff56;
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 100px;
    align-items: center;
}

.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 481px;
}

.contact-left h2 {
    margin-bottom: 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-item svg {
    flex-shrink: 0;
}

.contact-info-item p {
    font-size: 18px;
}

/* Contact Form */
.contact-form {
    flex: 1;
    width: 100%;
    background: #67ff56;
    border: 1px solid #426a5a;
    border-radius: 4px;
    padding: 32px 18px;
}

.contact-form h3 {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: -0.022px;
    line-height: 1.3;
color: rgba(19, 19, 22, 1);

}

.form-group input,
.form-group select {
    width: 100%;
    height: 42px;
    padding: 12px 12px 10px 12px;
    background-color: transparent;
    border: 1px solid #426a5a;
    border-radius: 3px;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 14px;
    color: #426a5a;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input::placeholder {
    color: rgba(66, 106, 90, 0.5);
}

.form-group input:focus,
.form-group select:focus {
    border-color: #426a5a;
}

/* ensure custom arrow persists */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 6.5L13 1.5' stroke='%23131316' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
    background-color: #fff0;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 62px;
    padding: 14px 30px;
    background: #131316;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #eff2f1;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 16px;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Layout */
.container {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
    padding: 0 46px;
}

/* Typography */
.heading-xl {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 62px;
    font-weight: 1000;
    line-height: 1.1;
    letter-spacing: 2px;
		text-transform: uppercase;
		font-style: italic;
}

.heading-lg {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 62px;
    font-weight: 1000;
				text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 2px;
				font-style: italic;
}

.heading-md {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 48px;
    font-weight: normal;
    line-height: 1.1;
				font-style: italic;
}

.heading-sm {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.1;
}

.body-lg {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
    letter-spacing: -0.192px;
}

.body-md {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.4;
    letter-spacing: -0.192px;
}

.body-sm {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
}

.label {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 0.72px;
    line-height: 1.03;
    text-transform: uppercase;
}

/* Utility Classes */
.bg-dark {
    background-color: #131316;
}
.bg-light {
    background-color: #eff2f1;
}
.bg-accent {
    background-color: #67ff56;
}
.bg-teal {
    background-color: #426a5a;
}
.bg-white {
    background-color: #ffffff;
}

.text-dark {
    color: #131316;
			

}
.text-light {
    color: #eff2f1;
	
	
}
.text-accent {
    color: #67ff56;
}
a.text-light,
a.text-dark {
		text-decoration: none;
	font-size:18px;
	
}

/* =====================================================
   MOBILE STYLES - Shared Components
   ===================================================== */

/* Mobile-only elements - hidden by default */
.mobile-menu-btn {
    display: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #131316;
    z-index: 1001;
    flex-direction: column;
    padding: 16px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu-nav a {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #eff2f1;
    text-decoration: none;
}

.mobile-menu-cta {
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 30px;
    background: #67ff56;
    border-radius: 4px;
    text-decoration: none;
    height: 60px;
    width: fit-content;
}

.mobile-menu-cta .btn-text {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #131316;
}

h2 span {
    color: #000;

    position: relative;
    z-index: 2;
    line-height: 1.4;
}
h1 span {
    color: rgba(103, 255, 86, 1);
}

h2 span::after {
    content: '';
    background: rgba(103, 255, 86, 1);
    width: 100%;
    position: absolute;
    transform: skewX(-15deg);
    width: 104%;
    height: 100%;
    left: -1.5%;
    top: 0;
    z-index: -1;
}

.testimonials-section h2 span,
.com-construction h2 span,
.res-category-light h2 span {
    color: #fff;
}
.testimonials-section h2 span::after,
.com-construction h2 span::after,
.res-category-light h2 span::after {
    background: black;
}

@media (max-width: 767px) {
	.footer-logo img {
    width: fit-content;
  
		
}
    .contact-section {
        padding: 70px 0;
    }
    .contact-bg-shape {
        display: none;
    }
    .contact-content {
        flex-direction: column;
        gap: 32px;
 align-items: flex-start;
    }
    .contact-info-list {
        gap: 18px;
    }
    .form-row {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .btn-primary {
        padding: 12px 20px;
        min-height: fit-content;
    }
    .btn-primary .btn-icon {
        width: 30px;
        height: 30px;
    }
    .container {
        padding: 0 16px;
    }

    .heading-xl {
        font-size: 30px;
    }

    .heading-lg {
        font-size: 32px;
    }

    .heading-md {
font-size: 24px !important;
    }

    .heading-sm {
        font-size: 22px;
    }

    .body-lg {
        font-size: 18px;
    }
    .header .logo img {
        max-height: 46px;
    }
    .header-box {
        position: absolute;
        right: 0;
        top: -12px;
        width: 100%;
        backdrop-filter: blur(0px);
        border: none;
        justify-content: space-between;
        gap: 12px;
        background: none;
        padding: 0;
    }

    .header nav {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        padding: 100px 24px 32px;
        background: rgba(8, 10, 14, 0.96);
        backdrop-filter: blur(14px);
        display: none;
        overflow-y: auto;
        z-index: 250;
        align-items: flex-start;
    }

    .header nav.is-active {
        display: flex;
    }

    .header nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .header nav ul li {
        width: 100%;
display: flex;
    }
    .menu-item-has-children > a {
        display: none;
    }
    .header nav ul li .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
				gap: 0;
    }

    .header nav ul li .sub-menu a {
        padding: 12px 6px;
        text-transform: uppercase;
        font-size: 16px;
    }

    .header .header__right {
        width: 100%;
    }

    .menu-toggle-box {
        display: inline-flex;
    }

    body.is-active {
        overflow: hidden;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .footer {
        padding: 60px 16px 60px;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-left {
        gap: 16px;
    }
    .footer-right {
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

.default-page__box {
    padding: 150px 0 70px;
}

.testimonials-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.default-page__box h1 {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 50px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.testimonials-left {
}
.testimonials-form {
    margin-bottom: 24px;
    border: 1px solid rgba(239, 242, 241, 1);
    padding: 24px;
    color: rgba(93, 93, 93, 1);
}
.testimonials-summary,
.testimonials-reviews {
}
.glsr-star,
form.glsr-form .glsr-star-rating--stars {
    filter: contrast(0.55);
}
.glsr-summary .glsr-bar-background-percent {
    background-color: #cfa068 !important;
}
.glsr-default form.glsr-form .glsr-field-toggle input[type='checkbox']:checked + .glsr-toggle-track:before {
    background-color: #283e33 !important;
}

.glsr-default form.glsr-form input.glsr-input,
.glsr-default form.glsr-form select.glsr-select,
.glsr-default form.glsr-form textarea.glsr-textarea {
    background-color: transparent !important;

    color: #fff !important;
}

.glsr-default form.glsr-form label.glsr-label {
    color: #fff !important;
}
.page-id-812 .default-page__box ,
.page-id-444 .default-page__box ,
.page-id-513 .default-page__box {
    max-width: 680px;
    margin: auto;
    line-height: 1.4;
}

.page-id-444 .default-page__box h2 {
    text-transform: uppercase;
    margin: 15px 0;
}
.page-id-444 .default-page__box ul {
    margin: 10px 0 10px 20px;
}



.menu-item.wpml-ls-slot-2.menu-item-has-children {
    border: 1px solid rgba(239, 242, 241, 0.5);
    border-radius: 6px;
}

.menu-item.wpml-ls-slot-2.menu-item-has-children > a {
    padding: 12px;
}
.main-nav .current_page_item a{
				color:#67ff56!important;
}
.value-number {
	font-weight: 1000!important;
}
.footer-contact-wrapper.mob{
	display: none;
}
.wp-block-button{
	width: 100%;
}
@media (max-width: 767px) {
    .testimonials-box {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .default-page__box h1 {
        font-size: 32px;
        margin-bottom: 32px;
    }
    .default-page__box {
        padding: 80px 0 70px;
    }
		.testimonials-form{
padding: 16px;
		}
		.menu-item.wpml-ls-slot-2.menu-item-has-children{
			    border: 0px solid rgba(239, 242, 241, 0.5);
		}
		.menu-item.wpml-ls-slot-2.menu-item-has-children .current-ref{
			padding: 8px 6px;
			color:#67ff56;
		}
		.stars {gap: 4px;}

.author-name {
    font-size: 20px!important;
}

.footer-left-content {
    gap: 40px;
}



.footer-contact-wrapper.desc{
	display: none;
}
.footer-contact-wrapper.mob{
	display: flex;
}
#preloader lottie-player{
	max-width: 260px;
}
}

.gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 434px;
    background: linear-gradient(to bottom, rgba(19, 19, 22, 0) 0%, #131316 100%);
    z-index: 2;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {

    color: black;
}
