@charset "UTF-8";
@import url("https://use.typekit.net/fqw8ika.css");
@import url("../font/icomoon/style.css");

@font-face {
    font-family: 'noka';
    src: url(../font/noka-semibold.woff2) format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'noka';
    src: url(../font/noka-light.woff2) format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #8DFB4E;

    --white: #fff;
    --black1: #1A1C1B;
    --black2: #0F1010;
    --black3: #0A0A0A;
    --black4: #323732;

    --grey1: #E9E9E9;
    --grey2: #E6E6E6;

    /* Fonts */
    --h1: 128px;
    --h2: 96px;
    --h3: 64px;
    --h4: 48px;

    --font40: 40px;
    --font24: 24px;
    --font20: 20px;
    --font18: 18px;
    --font16: 16px;
    --font15: 15px;

    /**/
    --fwlight: 300;

    /* Font Family */
    --noka: 'noka';
    --space-grotesk: "space-grotesk-variable";
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

*,
*::before,
*::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    font-synthesis: none;
    color: var(--white);
    background-color: var(--black2);
    scroll-behavior: smooth;
    font-family: var(--noka), var(--space-grotesk), sans-serif;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

.wrapper {
    background-color: var(--black2);
    display: block;
    height: 100%;
}

button:focus {
    outline: none;
}

a {
    text-decoration: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--space-grotesk);
    font-weight: 500;
}

h1,
.h1 {
    color: var(--white);
    font-size: var(--h1);
    line-height: 0.93;
    letter-spacing: -5%;
}

h2,
.h2 {
    font-size: var(--h2);
    line-height: 1.12;
    letter-spacing: -5%;
}

h3,
.h3 {
    font-size: var(--h3);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -5%;
}

h4,
.h4 {
    font-size: var(--h4);
    line-height: 1.2;
    font-family: var(--noka);
}

h5,
.h5 {
    font-size: var(--font24);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

h6,
.h6 {
    font-size: var(--font16);
    font-weight: 300;
    line-height: normal;
    letter-spacing: 39%;
    color: var(--grey1);
    text-transform: uppercase;
}

p,
.text-20 {
    font-size: var(--font20);
    font-weight: 500;
    line-height: 1.12;
}

.img-fluid {
    max-width: 100%;
    object-fit: contain;
}

/* Header */
.container {
    max-width: 1582px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 2px solid #323732;
    background: var(--black3);
}

.main-middle-area {
    position: relative;
    padding-top: 105px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-div {
    position: relative;
}

.logo-div .logo_link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logo-div .logo_img {
    width: 211px;
    height: 57px;
    object-fit: contain;
    object-position: left;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    min-height: 46px;
    padding: 8px 24px;
    font-size: var(--font15);
    font-weight: 600;
    line-height: 1;
    border-radius: 4.5px;
    color: var(--black1);
    background: var(--white);
    transition: all 0.3s;
}

.btn i {
    font-size: 30px;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--primary);
    color: var(--black1);
}

.btn:hover i {
    transform: rotate(-45deg);
}

.btn.btn-primary {
    color: var(--black1);
    background: var(--primary);
}

.btn.btn-primary:hover {
    color: var(--black1);
    background: var(--white);
}

section {
    overflow: hidden;
}

/* Home page */

.banner-video {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.banner-video video {
    width: 100%;
    height: 429px;
    border-radius: 15px;
    object-fit: cover;
}

.banner-section {
    padding: 0;
    position: relative;
}

.banner-content {
    display: grid;
    align-items: flex-end;
    grid-template-columns: 1fr 437px;
    gap: 24px;
    padding: 70px 0;
    width: 100%;
}

.banner-content-text p {
    margin-bottom: 21px;
}

.banner-group p {
    margin-bottom: 17px;
}

.text-40-desc p {
    color: var(--grey2);
    font-size: var(--font40);
    line-height: 1.2;
    font-weight: var(--fwlight);
}

.text-40-desc p strong {
    font-weight: 500;
}

.why-dustwun-section {
    position: relative;
}

.why-dustwun-content {
    padding: 160px 80px;
    max-width: 1460px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.why-dustwun-content .text-40-desc {
    flex: 1;
}

.why-dustwun-root {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px 45px;
    padding-bottom: 50px;
}

.why-dustwun-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 90px;
    padding: 35px 43px 23px 29px;
    border-radius: 15px;
    background: #252626;
    box-shadow: 0 29px 44.7px 0 rgba(141, 251, 78, 0.08);
    margin-bottom: 23px;
    transition: all 0.3s;
}

.why-dustwun-card:hover {
    background-color: #1E2020;
    box-shadow: 0 29px 44.7px 0 rgba(141, 251, 78, 0.16);
}

.why-dustwun-card .h3 {
    font-family: var(--noka);
    font-weight: 500;
    letter-spacing: 3.2px;
}

.why-dustwun-card .h5 {
    font-weight: 600;
    font-family: var(--noka);
    letter-spacing: 1.2px;
    margin-bottom: 15px;
}

.why-dustwun-card p {
    /* font-weight: var(--fwlight);
    letter-spacing: 1px; */
    letter-spacing: 0;
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 500;
}

.protected-section {
    position: relative;
}

.protected-content {
    padding: 90px 200px 100px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    position: relative;
}

.protected-content h2 {
    color: var(--primary);
    margin-bottom: 29px;
    pointer-events: none;
}

.protected-content-text {
    position: relative;
}

.protected-content-text::before {
    content: "";
    position: absolute;
    top: -44px;
    right: -74px;
    width: 585px;
    height: 336px;
    border-radius: 585px;
    background: radial-gradient(50% 50% at 50% 50%, #0F1010 43.75%, rgba(15, 16, 16, 0.00) 100%);
    z-index: 2;
    pointer-events: none;
}

.protected-content .btn.btn-primary {
    min-height: 66px;
    padding: 12px 24px;
    font-size: 21px;
}

.protected-content .btn.btn-primary i {
    font-size: 41px;
}

.protected-content-text>* {
    position: relative;
    z-index: 3;
}

.protected-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
}

.protected-bg picture {
    width: 100%;
    height: 100%;
}

.protected-bg picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.protected-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.protected-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000075;
    z-index: 2;
    pointer-events: none;
}

.protected-overlay::before {
    content: "";
    position: absolute;
    top: 159px;
    left: -356px;
    width: 679px;
    height: 547px;
    border-radius: 679px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(141, 251, 78, 0.32) 0%, rgba(141, 251, 78, 0.00) 100%);
    z-index: 2;
    pointer-events: none;
}


.protected-overlay::after {
    content: "";
    position: absolute;
    top: -441px;
    left: -247px;
    width: 679px;
    height: 547px;
    border-radius: 679px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(141, 251, 78, 0.32) 0%, rgba(141, 251, 78, 0.00) 100%);
    z-index: 2;
    pointer-events: none;
}

.protected-bg::after {
    content: "";
    position: absolute;
    top: -273px;
    right: -240px;
    width: 679px;
    height: 547px;
    border-radius: 679px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(141, 251, 78, 0.32) 0%, rgba(141, 251, 78, 0.00) 100%);
    z-index: 2;
    pointer-events: none;
}

.protected-overlay p {
    font-weight: 500;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.12;
}

.protected-overlay div {
    background-image:
        repeating-linear-gradient(to right, #8DFB4E 0 1px, transparent 1px 8px),
        repeating-linear-gradient(to right, #8DFB4E 0 1px, transparent 1px 8px),
        repeating-linear-gradient(to bottom, #8DFB4E 0 1px, transparent 1px 8px),
        repeating-linear-gradient(to bottom, #8DFB4E 0 1px, transparent 1px 8px);
    background-size:
        100% 1px,
        100% 1px,
        1px 100%,
        1px 100%;
    background-repeat: no-repeat;
    min-height: 216px;
    position: relative;
    transition: all 0.6s;
}

.protected-overlay div:nth-child(1) {
    display: flex;
    justify-content: flex-end;
}

.protected-overlay div:nth-child(1) p {
    transform: rotate(-90deg);
    transform-origin: top right;
    margin: 9px 18px 0 0;
    pointer-events: none;
}

.protected-overlay div:nth-child(12) {
    padding: 10px 5px;
}

.protected-overlay div:hover {
    background-color: #8DFB4E57;
}

.protected-overlay .plus-span {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.protected-overlay .plus-span::before {
    content: "";
    width: 16px;
    height: 2px;
    background-color: var(--primary);
}

.protected-overlay .plus-span::after {
    content: "";
    width: 2px;
    height: 16px;
    background-color: var(--primary);
    position: absolute;
}

.protected-overlay div:nth-child(1) .plus-span {
    bottom: -8px;
    left: -8px;
}

.protected-overlay div:nth-child(2) .plus-span {
    bottom: -8px;
    right: -8px;
}

.protected-overlay div:nth-child(4) .plus-span {
    top: -7px;
    right: -8px;
}

.our-services-section {
    padding: 80px 0 60px;
    width: 100%;
    position: relative;
    background-color: var(--grey2);
}

.our-services-section h2 {
    color: black;
    margin-bottom: 28px;
}

.tab-container {
    max-width: 100%;
    margin: 0 auto;
}

/* =======================
   TABS (Desktop)
======================= */
.tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.tab-btn {
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
    max-width: calc(20% - 12px);
}

.tab-btn .img-dv {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 16px;
}

.tab-btn .img-dv picture {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.tab-btn .img-dv img {
    width: 100%;
    height: 313px;
    border-radius: 15px;
    object-fit: cover;
}

.accordion-header-inner h3,
.tab-btn h3 {
    color: black;
    font-family: var(--noka);
    letter-spacing: 0;
}

.tab-btn.inactive>*,
.tab-btn.inactive {
    opacity: 0.7;
}

.tab-btn.inactive .img-dv picture {
    filter: saturate(0);
}

.tab-content-card {
    margin-bottom: 10px;
}

.tab-content {
    display: none;
    padding: 40px 24px 30px;
    border: 1px solid #ddd;
    border-radius: 15px;
    background: #D9D9D9;
    color: black;
    text-align: center;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 0;
    font-family: var(--noka);
}

.tab-content .txt-dv {
    margin: 25px 0;
    /* min-height: 182px; */
}

.tab-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.tab-content p {
    font-size: var(--font18);
}

.tab-content-inner>* {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.tab-content.active .tab-content-inner>* {
    opacity: 1;
    transform: translateY(0);
}

.tab-content.active .tab-content-inner>*:nth-child(1) {
    transition-delay: 0.08s;
}

.tab-content.active .tab-content-inner>*:nth-child(2) {
    transition-delay: 0.16s;
}

.tab-content.active .tab-content-inner>*:nth-child(3) {
    transition-delay: 0.24s;
}

/* =======================
   ACCORDION (Mobile)
======================= */
.accordion-header {
    display: none;
    cursor: pointer;
    border-radius: 8px;
}

.accordion-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: black;
}

.tab-content-card {
    margin-bottom: 12px;
}

.accordion-header.active {
    background: transparent;
}

.accordion-header .icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.accordion-header.active .icon {
    transform: rotate(180deg);
}

.how-we-work-section {
    position: relative;
    padding: 60px 0;
    overflow: visible;
}

.how-we-work-inner {
    display: grid;
    grid-template-columns: 322px 20px auto;
    gap: 120px;
    align-items: flex-start;
    align-content: flex-start;
}

.how-we-work-left {
    position: sticky;
    top: 165px;
}

.how-we-work-left .h6 {
    margin-bottom: 15px;
    display: block;
}

.how-we-work-left p {
    font-size: var(--font18);
    line-height: 1.12;
}

.how-we-work-drawline {
    height: 100%;
    position: relative;
}

.draw-line {
    border-radius: 30px;
    background: rgba(141, 251, 78, 0.35);
    width: 1px;
    position: absolute;
    left: 0;
}

.draw-completed-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 0;
    background-color: #8DFB4E;
}

.draw-dot {
    background-color: #8DFB4E;
    filter: drop-shadow(0 0 11.8px #0F1010);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.how-we-work-right {
    position: relative;
}

.hww-list-row {
    padding: 50px 0;
    border-bottom: 1px solid rgba(217, 217, 217, 0.38);
    position: relative;
    display: grid;
    grid-template-columns: 38px auto;
    gap: 45px;
}

.hww-list-row .cnt-number {
    color: var(--primary);
    font-family: var(--space-grotesk);
    font-size: var(--font24);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 14%;
}

.hww-list-row .h5 {
    letter-spacing: -5%;
    margin-bottom: 7px;
}

.hww-btm-dv .desc-dv p,
.hww-list-row p {
    color: rgba(255, 255, 255, 0.50);
    font-size: var(--font18);
}

.hww-btm-dv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    gap: 30px;
}

.hww-btm-dv .desc-dv {
    flex: 1;
    max-width: 504px;
}

.contact-section {
    padding: 80px 0;
    scroll-margin-top: 80px;
    background-image: url(../images/messages-bg.svg);
    background-size: cover;
    background-position: center top;
    background-repeat: repeat-x;
    position: relative;
}

.contact-section::before {
    content: "";
    width: 100%;
    height: 100%;
    max-height: 282px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #0F1010 0%, rgba(15, 16, 16, 0.00) 100%);
    pointer-events: none;
}

.contact-inner {
    padding: 72px;
    border-radius: 6px;
    border: 1px solid #666;
    background: #0F1010;
    box-shadow: 0 0 10.4px 0 rgba(141, 251, 78, 0.18);
    gap: 100px;
    display: grid;
    grid-template-columns: 360px 1px auto;
    min-height: 540px;
    position: relative;
    z-index: 2;
}

.contact-section .container::after {
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 399px;
    background: rgba(141, 251, 78, 0.08);
    filter: blur(56px);
    display: flex;
    position: absolute;
    bottom: 0;
    left: -110px;
    z-index: 0;
}

.contact-left {
    padding: 40px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
}

.contact-left h2 {
    margin-bottom: 12px;
    letter-spacing: 0;
}

.contact-left p {
    font-weight: var(--fwlight);
    color: rgba(255, 255, 255, 0.78);
}

.cnt-list-ul a {
    color: var(--white);
    font-size: var(--font24);
    line-height: 1.12;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    transition: all 0.3s;
}

.cnt-list-ul a:hover {
    color: var(--primary);
}

ul.cnt-list-ul {
    display: grid;
    row-gap: 20px;
}

.contact-left a i.icon {
    font-size: var(--font24);
}

.hr-dv {
    width: 1px;
    height: 100%;
    background: linear-gradient(280deg, #666 1.92%, #000 50%, #666 98.08%);
    box-shadow: 0 0 10.4px 0 rgba(141, 251, 78, 0.18);
}

.footer {
    padding: 70px 0 40px;
    position: relative;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 0 0 24px;
}

.footer-top ul.cnt-list-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-top ul.cnt-list-ul li:first-child a {
    gap: 12px;
}

.footer-top .logo-div .logo_img {
    width: 268px;
    height: 77px;
}

.imng-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-btm {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-btm p {
    font-size: 13px;
    font-weight: var(--fwlight);
    color: rgba(255, 255, 255, 0.78);
}

.footer-btm-left {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-btm-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer-btm-right .img-sba {
    object-fit: contain;
    width: 36px;
}

.footer-btm-right p {
    font-size: 11px;
}

.ft-contact-dv {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.btn-back {
    display: flex;
    width: 52px;
    height: 52px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 68px;
    background: #141B11;
    box-shadow: 0 0 16.424px 0 rgba(141, 251, 78, 0.41);
    color: var(--white);
    font-size: 32px;
}

.btn-mail .icon-mail {
    display: none;
}

/* Conatct css */
body .gform-theme--framework input[type="text"],
body .gform-theme--framework input[type="email"],
body .gform-theme--framework input[type="email"],
body .gform-theme--framework input[type="tel"],
body .gform-theme--framework textarea {
    border-radius: 6px;
    border: 1px solid #666;
    background: rgba(255, 255, 255, 0.02);
    min-height: 55px;
    color: #E9E9E9;
    font-family: var(--noka);
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    padding: 15px;
    outline: none;
}

select option {
    background-color: #1e1e1e !important;
    color: #ffffff !important;
}

body .gform-theme--framework select {
    border-radius: 6px;
    border: 1px solid #666;
    background-color: rgba(255, 255, 255, 0.02);
    min-height: 55px;
    color: #E9E9E9;
    font-family: var(--noka);
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    padding: 15px;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4697 9.46967C16.7626 9.17678 17.2373 9.17678 17.5302 9.46967C17.8231 9.76256 17.8231 10.2373 17.5302 10.5302L12.5302 15.5302C12.2373 15.8231 11.7626 15.8231 11.4697 15.5302L6.46967 10.5302C6.17678 10.2373 6.17678 9.76256 6.46967 9.46967C6.76256 9.17678 7.23732 9.17678 7.53022 9.46967L11.9999 13.9394L16.4697 9.46967Z' fill='white'/%3E%3C/svg%3E%0A") !important;
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: calc(100% - 15px) 50%;
}

body .gform-theme--framework input[type="submit"] {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    min-height: 46px !important;
    padding: 8px 64px 8px 24px !important;
    font-size: var(--font15) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    border-radius: 4.5px !important;
    transition: all 0.3s !important;
    color: var(--black1) !important;
    position: relative;
    background-color: var(--primary) !important;
}

body .gform-theme--framework .gform-footer.gform_footer:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.335 14.8179L16.0527 21.1001L14.709 19.7563L18.6982 15.7671H7.69336V13.8677H18.6982L14.709 9.87842L16.0527 8.53467L22.335 14.8179Z' fill='%231A1C1B'/%3E%3C/svg%3E");
    background-size: 30px;
    background-repeat: no-repeat;
    transition: all 0.3s !important;
    position: absolute;
    top: 8px;
    right: 20px;
    width: 30px;
    height: 30px;
    z-index: 1;
    transform: rotate(0deg);
    transform-origin: center;
}

body .gform-theme--framework .gform-footer.gform_footer:has(input[type="submit"]:hover)::after {
    transform: rotate(-45deg);
}

.gform-footer.gform_footer.top_label {
    display: flex;
    justify-content: flex-end;
    position: relative;
}


body .gform-theme--foundation fieldset.gfield--type-checkbox {
    grid-column: span 6;
}

body .gform-theme--framework .gfield--type-choice .gfield_checkbox input.gfield-choice-input,
.gfield--type-checkbox>legend.gfield_label {
    display: none !important;
}

body .gform-theme--framework .gfield--type-choice .gfield_checkbox label.gform-field-label {
    color: #E9E9E9;
    font-family: var(--noka);
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    margin: 0;
    padding: 0 0 0 30px;
    cursor: pointer;
    position: relative;
}

body .gform-theme--framework .gfield--type-choice .gfield_checkbox label.gform-field-label::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 1px solid #666;
    display: flex;
    position: absolute;
    left: 0;
    border-radius: 100%;
}

body .gform-theme--framework .gfield--type-choice .gfield_checkbox label.gform-field-label::after {
    content: "";
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    border-radius: 100%;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3C!--!Font Awesome Free 7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--%3E%3Cpath d='M530.8 134.1C545.1 144.5 548.3 164.5 537.9 178.8L281.9 530.8C276.4 538.4 267.9 543.1 258.5 543.9C249.1 544.7 240 541.2 233.4 534.6L105.4 406.6C92.9 394.1 92.9 373.8 105.4 361.3C117.9 348.8 138.2 348.8 150.7 361.3L252.2 462.8L486.2 141.1C496.6 126.8 516.6 123.6 530.9 134z'/%3E%3C/svg%3E");
    background-color: #8dfb4e;
    background-position: center;
    background-size: 16px;
}

body .gform-theme--framework .gfield--type-choice .gfield_checkbox input.gfield-choice-input:checked+label.gform-field-label::after {
    opacity: 1;
}

/* End of Conatct css */

.contact-section::after {
    content: "";
    width: 100%;
    height: 100%;
    max-height: 182px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #0F1010 0%, rgba(15, 16, 16, 0.00) 100%);
    pointer-events: none;
}

@media (max-width:1440px) {
    :root {
        --h1: 104px;
        --h2: 78px;
        --h3: 56px;
        --h4: 42px;
        --font40: 34px;
    }

    .why-dustwun-content {
        padding: 120px 80px;
    }

    .protected-content {
        padding: 80px 200px 80px 0;
    }

    .protected-overlay div {
        min-height: 160px;
    }

    .protected-content .btn.btn-primary {
        min-height: 56px;
        padding: 7px 24px;
        font-size: 18px;
    }

    .protected-content .btn.btn-primary i {
        font-size: 35px;
    }

    .tab-btn .img-dv img {
        height: 270px;
    }
}

@media (max-width:1200px) {
    :root {
        --h1: 64px;
        --h2: 48px;
        --h3: 48px;
        --h4: 40px;
        --font40: 24px;
        --font20: 16px;
        --font18: 18px;
        --font16: 16px;
    }

    .tab-btn .img-dv img {
        height: 200px;
    }

    .tabs {
        gap: 16px;
    }

    .banner-content {
        padding: 60px 0;
    }

    .why-dustwun-content {
        padding: 60px 0px;
        gap: 60px;
    }

    .why-dustwun-root {
        gap: 23px;
    }

    .why-dustwun-card {
        gap: 70px;
        padding: 28px 22px 40px 22px;
    }

    .protected-content {
        padding: 80px 60px 80px 0;
    }

    .protected-content .btn.btn-primary {
        min-height: 50px;
        padding: 4px 24px;
        font-size: 15px;
    }

    .protected-content .btn.btn-primary i {
        font-size: 30px;
    }

    .tab-content .txt-dv {
        min-height: 160px;
    }

    .tab-content h3 {
        font-size: 30px;
    }

    .our-services-section {
        padding: 60px 0 40px;
    }

    .how-we-work-inner {
        grid-template-columns: 300px 20px auto;
        gap: 60px;
    }

    .hww-list-row {
        padding: 36px 0;
        grid-template-columns: 32px auto;
        gap: 24px;
    }

    .btn {
        padding: 8px 16px;
    }

    .contact-inner {
        padding: 48px 30px;
        min-height: 500px;
        gap: 60px;
        grid-template-columns: 300px 1px auto;
    }

    .ft-contact-dv {
        width: 100%;
        gap: 36px;
        justify-content: space-between;
    }

    .logo-div .logo_img {
        height: 45px;
    }

    .header {
        padding: 16px 0;
        min-height: 80px;
    }

    .main-middle-area {
        padding-top: 80px;
        overflow: hidden;
    }
}

@media (min-width:768px) and (max-width: 1200px) {
    :root {
        --font24: 21px;
        --font18: 16px;
    }

    .banner-video video {
        height: 360px;
    }
}

@media (min-width: 992px) {
    .desktop-none {
        display: none;
    }
}

@media (max-width: 992px) {
    .banner-content {
        grid-template-columns: 1fr 300px;
    }

    .container {
        padding: 0 20px;
    }

    .why-dustwun-root {
        padding-bottom: 30px;
    }

    .why-dustwun-card .h3 {
        font-size: 64px;
        letter-spacing: 5%;
    }

    .tab-content-card .img-dv {
        width: 100%;
        display: flex;
        border-radius: 15px;
        overflow: hidden;
    }

    .tab-content-card picture,
    .tab-content-card img {
        width: 100%;
        object-fit: cover;
        height: 240px;
    }

    .tabs {
        display: none;
    }

    .accordion-header {
        display: block;
    }

    .tab-content {
        display: none;
        padding: 0;
        background-color: transparent;
        border: none;
        text-align: left;
    }

    .tab-content.active {
        display: block;
    }

    .our-services-section h2 {
        margin-bottom: 26px;
    }

    .tab-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
        font-weight: 500;
        font-family: var(--noka);
        text-align: left;
    }

    .tab-content p {
        font-size: 18px;
        font-weight: 300;
    }

    .tab-content .txt-dv {
        min-height: auto;
        margin: 12px 0;
    }

    .tab-content-inner {
        border-radius: 15px;
        padding: 36px 28px 24px;
        text-align: left;
        background-color: #ddd;
        margin-bottom: 90px;
    }

    .tab-content-inner .btn.btn-primary {
        position: absolute;
        bottom: -70px;
        left: 0;
        min-height: 50px;
        width: 100%;
    }

    .tab-content-inner .btn.btn-primary i {
        position: absolute;
        right: 18px;
    }

    .accordion-header.inactive {
        opacity: 0.5;
    }

    .accordion-header.inactive picture,
    .accordion-header.inactive img {
        filter: saturate(0);
    }

    .our-services-section {
        padding: 60px 0 30px;
    }

    .mobile-none {
        display: none;
    }

    .how-we-work-mobile-inner {
        display: flex;
        flex-direction: column;
    }

    .hww-btm-dv {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .hww-btm-dv .desc-dv {
        max-width: 100%;
    }

    .hww-btm-dv .btn.btn-primary {
        width: 100%;
    }

    .hww-top h2 {
        margin-bottom: 24px;
        line-height: 93%;
    }

    .how-we-work-section {
        padding: 54px 0 40px;
    }

    .contact-inner {
        padding: 28px 30px;
        gap: 30px;
        grid-template-columns: 100%;
        min-height: auto;
    }

    .contact-left {
        padding: 0;
    }

    .contact-inner .hr-dv {
        display: none;
    }

    .contact-section {
        padding: 50px 0;
    }

    .footer {
        padding: 50px 0 28px;
    }

    .footer-top .logo-div {
        margin: 0 auto 25px;
    }

    .footer-top ul.cnt-list-ul {
        gap: 30px;
        justify-content: center;
        width: 100%;
    }

    .btn-back {
        margin: 0 auto 30px;
    }

    .ft-contact-dv {
        gap: 26px;
    }

    .footer-btm-left {
        gap: 40px;
    }

    .hww-list-row {
        padding: 23px 15px;
        grid-template-columns: 100%;
        gap: 12px;
        border-radius: 5px;
        min-height: 160px;
        border: 1px solid rgba(217, 217, 217, 0.39);
        align-items: flex-start;
        align-content: flex-start;
    }

    .hww-list-row .cnt-number {
        font-size: 16px;
    }

    .hww-top {
        margin-bottom: 36px;
    }

    .hww-slider-dv {
        position: relative;
        padding: 0 0 30px;
    }

    .hww-btm-dv {
        padding-top: 24px;
    }

    .hww-slider-dv span.swiper-pagination-bullet {
        opacity: 0.28;
        background: #D9D9D9;
        margin: 0 2px !important;
    }

    .hww-slider-dv span.swiper-pagination-bullet.swiper-pagination-bullet-active {
        opacity: 1;
    }

    .hww-btm-dv .desc-dv p,
    .hww-top p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.59);
    }

    .hww-slider-dv .swiper-horizontal>.swiper-pagination-bullets,
    .hww-slider-dv .swiper-pagination-bullets.swiper-pagination-horizontal,
    .hww-slider-dv .swiper-pagination-custom,
    .hww-slider-dv .swiper-pagination-fraction {
        bottom: 4px;
    }
}

@media (max-width:767px) {
    .banner-content {
        grid-template-columns: 100%;
        text-align: center;
        padding: 45px 0 50px;
    }

    .btn.btn-primary {
        width: 100%;
    }

    .btn.btn-primary i.icon {
        position: absolute;
        right: 10px;
    }

    .video-container {
        padding: 0;
    }

    .banner-video video {
        border-radius: 0;
    }

    .why-dustwun-card p,
    .banner-content p {
        color: #ffffff96;
    }

    .why-dustwun-card p {
        font-weight: 500;
        letter-spacing: 0;
    }

    .banner-group p {
        margin-bottom: 22px;
    }

    .why-dustwun-content {
        padding: 60px 0px;
        gap: 23px;
        flex-direction: column;
        text-align: center;
    }

    .why-dustwun-root {
        gap: 23px;
        grid-template-columns: 100%;
        padding-bottom: 54px;
    }

    .why-dustwun-card {
        gap: 17px;
        margin: 0;
        text-align: center;
    }

    .contact-section .container::after,
    .protected-bg::after,
    .protected-overlay {
        display: none;
    }

    .protected-content {
        padding: 128px 0;
        text-align: center;
    }

    .protected-content-text {
        width: 100%;
    }

    .tab-content-card picture,
    .tab-content-card img {
        height: 90px;
    }

    .contact-left {
        text-align: center;
    }

    ul.cnt-list-ul {
        row-gap: 15px;
        justify-content: center;
        text-align: center;
    }

    ul.cnt-list-ul li {
        display: flex;
        justify-content: center;
    }

    .footer-btm-left {
        gap: 20px 40px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-btm-right {
        width: 100%;
        justify-content: center;
    }

    .btn-mail .icon-mail {
        display: flex;
        font-size: 34px;
    }

    .btn.btn-mail {
        background: transparent;
        color: var(--white);
        padding: 0;
        gap: 0;
        font-size: 0;
    }

    .btn.btn-mail i.icon:not(.icon-mail) {
        display: none;
    }

    .btn.btn-mail:hover i {
        transform: rotate(0deg);
    }

    .contact-section::after,
    .contact-section::before {
        opacity: 0.75;
    }

    .contact-section {
        background-image: url(../images/messages-mobile-bg.svg);
    }

    body .gform-theme--foundation fieldset.gfield--type-checkbox {
        grid-column: span 12;
        margin-top: 12px;
    }

    body .gform-theme--foundation .gform_fields {
        gap: 8px !important;
    }

    body .gform-theme--framework input[type="submit"] {
        width: 100% !important;
    }

    .hww-list-row {
        min-height: 240px;
    }
}





@media (min-width:768px) {
    body .gform-theme--foundation fieldset.gfield--type-checkbox {
        position: relative;
        bottom: -14px;
        margin-bottom: -50px;
        z-index: 9;
    }

    .gform-footer.gform_footer.top_label {
        margin-top: 0 !important;
    }
}