* {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

#home,
#products,
#solutions,
#about-us,
#partners,
#contact-us,
#news {
    scroll-margin-top: 86px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

::selection {
    background: var(--wn-green);
    color: #fff;
}

.animat {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.menuOpened #page {
    margin-left: -300px;
    width: 100%;
}

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

html {
    overflow-y: scroll;
    overflow-x: hidden;
}

.horizontalmenu {
    width: 100%;
    position: relative;
}

body {
    width: 100vw !important;
    overflow-x: hidden !important;
}

.header {
    width: 100vw;
    position: absolute;
    z-index: 999;
}

.fixedHeader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    -ms-transition: all ease 400ms;
    -o-transition: all ease 400ms;
}

.logo-main {
    display: none;
}

@media (min-width: 768px) {
.logo-main {
            display: block;
        }

.fixedHeader {
            background-color: rgba(232, 232, 232, .97);
            box-shadow: -1px 3px 20px 2px #f1f1f1e8;
        }

.fixedHeader .separator {
            display: block;
            height: 5rem;
            width: 1px;
            background: black;
            margin: 1rem 4rem;
            padding: 0 0rem;
            transition: all 0.3s ease-in-out;
            -moz-transition: all ease 400ms;
            -webkit-transition: all ease 400ms;
            -ms-transition: all ease 400ms;
            -o-transition: all ease 400ms;
        }

.headerRow {
            flex-direction: row;
            align-items: center;
            display: flex;
            transition: all 0.3s ease-in-out;
            -moz-transition: all ease 400ms;
            -webkit-transition: all ease 400ms;
            -ms-transition: all ease 400ms;
            -o-transition: all ease 400ms;
        }
}

.header-container {
    width: 100%;
}

body.menuOpened .fixedHeader {
    left: -300px;
}

.logo {
    width: 100%;
    text-align: left;
    transition: all ease 500ms;
    -moz-transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    -ms-transition: all ease 500ms;
    -o-transition: all ease 500ms;
}

.logo a {
    font-family: Roboto;
    font-size: 22px;
    color: #FFF;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: .8;
}

.menuButtons a.wn-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 22px;
}

.wn-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--wn-ink);
}

.logo a:hover {
    color: #ffd667;
}

.home2 .logo a:hover {
    color: #38b62f;
}

.mainMenu {
    width: 100%;
    position: relative;
    text-align: right;
    line-height: .8;
    transition: all ease 500ms;
    -moz-transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    -ms-transition: all ease 500ms;
    -o-transition: all ease 500ms;
}

.mainMenu ul {
    margin: 0px;
    padding: 0px;
    width: 100%;
    text-align: right;
    display: flex;
    transition: all ease 1000ms;
    -moz-transition: all ease 1000ms;
    -webkit-transition: all ease 1000ms;
    -ms-transition: all ease 1000ms;
    -o-transition: all ease 1000ms;
    justify-content: space-between;
}

.mainMenu ul li {
    list-style: none;
    display: inline-block;
    font-weight: bold;
    position: relative;
    opacity: 1;
    z-index: 99;
    transition: top 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
    -moz-transition: top 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
    -webkit-transition: top 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
    -ms-transition: top 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
    -o-transition: top 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
    top: 0;
}

.mainMenu>ul>li:nth-child(2) {
    transition: top 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
    -moz-transition: top 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
    -webkit-transition: top 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
    -ms-transition: top 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
    -o-transition: top 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
}

.mainMenu>ul>li:nth-child(3) {
    transition: top 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
    -moz-transition: top 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
    -webkit-transition: top 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
    -ms-transition: top 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
    -o-transition: top 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
}

.mainMenu>ul>li:nth-child(4) {
    transition: top 0.3s ease 0.4s, opacity 0.3s ease 0.4s;
    -moz-transition: top 0.3s ease 0.4s, opacity 0.3s ease 0.4s;
    -webkit-transition: top 0.3s ease 0.4s, opacity 0.3s ease 0.4s;
    -ms-transition: top 0.3s ease 0.4s, opacity 0.3s ease 0.4s;
    -o-transition: top 0.3s ease 0.4s, opacity 0.3s ease 0.4s;
}

.mainMenu>ul>li:nth-child(5) {
    transition: top 0.3s ease 0.5s, opacity 0.3s ease 0.5s;
    -moz-transition: top 0.3s ease 0.5s, opacity 0.3s ease 0.5s;
    -webkit-transition: top 0.3s ease 0.5s, opacity 0.3s ease 0.5s;
    -ms-transition: top 0.3s ease 0.5s, opacity 0.3s ease 0.5s;
    -o-transition: top 0.3s ease 0.5s, opacity 0.3s ease 0.5s;
}

.mainMenu>ul>li:nth-child(6) {
    transition: top 0.3s ease 0.6s, opacity 0.3s ease 0.6s;
    -moz-transition: top 0.3s ease 0.6s, opacity 0.3s ease 0.6s;
    -webkit-transition: top 0.3s ease 0.6s, opacity 0.3s ease 0.6s;
    -ms-transition: top 0.3s ease 0.6s, opacity 0.3s ease 0.6s;
    -o-transition: top 0.3s ease 0.6s, opacity 0.3s ease 0.6s;
}

.mainMenu ul.inactive li {
    top: -5px;
    opacity: 0;
}

.mainMenu ul.active li {
    top: 0;
    opacity: 1;
}

.mainMenu ul li:last-child {
    padding-right: 0px;
}

.mainMenu ul li a {
    letter-spacing: 0px;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
}

.mainMenu ul li a:hover,
.mainMenu ul li.active>a {
    color: #38b62f
}

.home2 .mainMenu ul li a:hover,
.home2 .mainMenu ul li.active>a {
    color: #38b62f;
    cursor: pointer;
}

.mainMenu ul li ul {
    position: absolute;
    left: 0%;
    top: 150%;
    background: rgba(0, 0, 0, .9);
    width: 230px;
    transition: all ease 500ms;
    -moz-transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    -ms-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    opacity: 0;
    visibility: hidden;
}

.mainMenu>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    left: 0;
    top: 100%;
}

.mainMenu ul li ul li {
    width: 100%;
    text-align: left;
    border-bottom: 1px dotted #111;
    padding: 0;
}

.mainMenu ul li ul li a {
    color: #fff;
    font-size: 11px;
    padding: 25px 20px;
    position: relative;
    text-transform: uppercase;
}

.menuButtons {
    display: none;
    margin-left: 12px;
}

.menuButtons a {
    display: inline-block;
    line-height: .8;
    position: relative;
}


.menuButtons2 {
    display: inline-block;
    margin-left: 12px;
}

.menuButtons2 a {
    display: inline-block;
    line-height: .8;
    position: relative;
}


a {
    text-decoration: none;
    color: #38b62f;
    transition: 0.5s ease;
}

a:hover {
    color: #179b77;
}


h1 {
    text-align: center;
    color: #fff;
    font-weight: 300;
    margin: 0 0 40px;
}

input,
textarea {
    font-size: 22px;
    display: block;
    width: 100%;
    height: 100%;
    background: none;
    background-image: none;
    border: 1px solid #a0b3b0;
    color: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    border-radius: 15px;
    padding: 0.5rem 1rem;
}

input:focus,
textarea:focus,
input:hover,
textarea:hover {
    outline: 0;
    border-color: #38b62f;
}

textarea {
    border: 2px solid #a0b3b0;
    resize: vertical;
}

body.menuOpened .sideMenuArea {
    right: 0px;
}

.sideMenuArea {
    background: rgb(255 255 255 / 97%);
    box-shadow: -3px -1px 20px 8px #b7a6a657;
    height: 100%;
    left: auto;
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    padding-left: 40px;
    padding-top: 47px;
    z-index: 1000;
    transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    -ms-transition: all ease 400ms;
    -o-transition: all ease 400ms;
}

.sideMenuArea .logo {
    padding-bottom: 0;
    padding-top: 45px;
}

.sideMenuArea .mainMenu {
    padding-top: 40px !important;
}

.sideMenuArea .mainMenu ul {
    display: block;
    text-align: left;
    background: transparent;
}

.sideMenuArea .mainMenu ul li {
    display: block;
    padding-bottom: 30px;
    padding-right: 0;
}

.sideMenuArea .mainMenu ul li ul {
    opacity: 1;
    top: 0;
    visibility: visible;
    width: 230px;
    position: relative;
    padding-left: 20px;
    display: none;
    transition: none !important;
    margin-top: 10px;
}

.sideMenuArea .mainMenu ul li ul li {
    padding: 0;
}

.sideMenuArea .mainMenu ul li ul li a {
    margin: 20px 0;
    padding: 0;
}

.closeBtn {
    color: var(--wn-ink);
    font-size: 30px;
    position: absolute;
    right: 30px;
    top: 90px;
}

.closeBtn:hover,
.closeBtn:focus {
    color: #38b62f;
}

.headerSocial {
    width: 100%;
    text-align: left;
    position: absolute;
    padding: 0 2rem;
    bottom: 30px;
    left: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.language_change:hover,
.language_change:focus-visible {
    color: #38b62f;
}

.language_change {
    font-size: 1.3rem;
    color: #000;
    letter-spacing: 0px;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 500;
    padding: 0 .5rem;
    cursor: pointer;
}

.headerSocial a {
    width: 25px;
    height: 25px;
    background: #000;
    color: #ffff;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    margin-right: 6px;
}

.headerSocial a:last-child {
    margin-right: 0px;
}


.page-container {
    background: white;
}

.hidden {
    display: none;
}

.contact-us-section {
    position: relative;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    overflow: hidden;
    flex-direction: column;
    padding: 2rem clamp(20px, 5vw, 76px);
    padding-top: calc(86px + 2rem);
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .contact-us-section {
        padding-top: calc(76px + 2rem);
    }

    .contact-us-section .contact-us-left .bottom-left .contact-us form {
        grid-template-columns: 1fr;
    }
}

.contact-us-section > .contact-us-left,
.contact-us-section > .right {
    position: relative;
    z-index: 1;
}

.contact-us-section .contact-us-left {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-us-section .contact-us-left .contact-us-top-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-us-section .contact-us-left .contact-us-top-left h1 {
    color: black;
    text-align: start;
    font-weight: 700;
    font-size: clamp(28px, 8vw, 56px);
    padding: 1rem 0;
    margin-top: 20px;
    margin-bottom: 10px;
}

.contact-us-section .contact-us-left .contact-us-top-left p {
    width: 100%;
    font-size: 1.3rem;
    text-align: start;
    padding: 0.6rem 0;
}

.contact-us-section .contact-us-left .bottom-left {
    width: 100%;
}

.contact-us-section .contact-us-left .bottom-left .contact-us {
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 24px 60px rgba(5, 11, 12, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.demo-form-title {
    margin: 0 0 24px;
    color: var(--wn-ink);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.5rem;
    padding: 0;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-group-wide {
    grid-column: span 2;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form label.field-label {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--wn-ink) !important;
}

.field-label.required::after {
    content: " *";
    color: #d9534f;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form .input-field {
    position: relative;
    height: fit-content;
    background: #f4f5f8;
    border: 1px solid transparent;
    box-shadow: none;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--wn-ink);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form .input-field:focus {
    outline: none;
    background: #fff;
    border-color: var(--wn-green);
    box-shadow: 0 0 0 3px rgba(56, 182, 47, 0.15);
}

.contact-us-section .contact-us-left .bottom-left .contact-us form label input {
    display: none;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form .text-area-input {
    height: 9rem;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form .submit-button {
    grid-column: span 2;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.2rem 0;
    border: none;
    border-radius: 999px;
    background: var(--wn-green);
    color: #ffffff;
    box-shadow: 0 0 3px 0.5px #38b62f;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form .submit-button:hover {
    background: var(--wn-green-dark);
    transform: translateY(-1px);
}

.contact-us-section .right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-section .right .support-div {
    height: 70vh;
    width: 80%;
    background: #ffffff;
    border: 1px #38b62f solid;
    box-shadow: 1px 1px 1px 1px #38b62f;
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.contact-us-section .right img {
    width: 70%;
    height: auto;
    margin-top: 3rem;
}

@media (min-width:768px) {
.contact-us-section {
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem;

        }

.contact-us-section .contact-us-left {
            width: 55%;
            
        }

.contact-us-section .right img {
            margin-top: 0;
            width: auto !important;
            max-width: 100%;
            height: auto;
            max-height: 350px;
            flex-grow: 1;
            object-fit: contain;
            object-position: bottom;
            margin-bottom: 2.7rem; 
            align-self: center;
        }

.contact-us-section .right {
            justify-content: flex-start;
            width: 40%;
            padding-left: 0;
            margin-top: 36px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

.company-info-container {
            margin-top: 0;
            flex-shrink: 0;
            height: 14.4rem; 
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.5rem;
            padding: 0 2rem;
        }
}

.contactFailed,
.contactEmpty,
.contactSuccess {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .9);
    display: none;
}

.consNotice {
    width: 100%;
    height: 190px;
    background: none;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    border-radius: 5px 5px 0 0;
    text-align: center;
}

.consNotice i {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    color: #38b62f;
    font-size: 60px;
    height: 109px;
    text-align: center;
    width: 110px;
    padding: 27px 0;
}

.consNotice p {
    color: #fff;
    font-family: Georgia;
    font-size: 30px;
    margin: 40px 0 0;
    text-transform: capitalize;
    line-height: 40px;
    display: inline-block;
}

.footer {
    width: 100%;
    position: relative;
    background: #fafafa;
}

.footer .fa {
    font: normal normal normal 20px/2 FontAwesome;
}

.copyRight {
    text-transform: uppercase;
    line-height: .8;
    font-weight: 300;
    letter-spacing: 1.68px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    width: 100%;
    margin-top: 4px;
}

.copyRight span {
    display: inline-block;
    padding: 0 8px;
}

#page[aria-busy="true"] [data-translate-id]:empty:not(img):not(iframe):not(input):not(textarea):not(.wn-btn):not(.wn-demo-link):not(.wn-partners-link):not(.wn-news-tag):not(.submit-button) {
    display: inline-block;
    position: relative;
    min-width: 6ch;
    min-height: 1em;
    overflow: hidden;
    vertical-align: middle;
    border-radius: 6px;
    background: #e7ece6;
}

#page[aria-busy="true"] h1[data-translate-id]:empty,
#page[aria-busy="true"] h2[data-translate-id]:empty,
#page[aria-busy="true"] h3[data-translate-id]:empty,
#page[aria-busy="true"] p[data-translate-id]:empty {
    display: block;
    width: 100%;
    min-width: 0;
}

#page[aria-busy="true"] p[data-translate-id]:empty {
    min-height: 4.8em;
}

#page[aria-busy="true"] [data-translate-id]:empty:not(img):not(iframe):not(input):not(textarea):not(.wn-btn):not(.wn-demo-link):not(.wn-partners-link):not(.wn-news-tag):not(.submit-button)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: wnSkeleton 1.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
#page[aria-busy="true"] [data-translate-id]:empty:not(img):not(iframe):not(input):not(textarea):not(.wn-btn):not(.wn-demo-link):not(.wn-partners-link):not(.wn-news-tag):not(.submit-button) {
            background: #ececec;
        }

#page[aria-busy="true"] [data-translate-id]:empty:not(img):not(iframe):not(input):not(textarea):not(.wn-btn):not(.wn-demo-link):not(.wn-partners-link):not(.wn-news-tag):not(.submit-button)::after {
            animation: none;
            display: none;
        }
}

button:disabled,
.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-us-section .right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-info-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(160deg, #ffffff, #f6f9f7);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.company-info-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #38b62f;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    color: #4a4a4a;
    font-weight: 500;
}

.info-row a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-row a:hover {
    color: #38b62f;
}

.info-row i {
    color: #38b62f;
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 182, 47, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-row:hover i {
    background: #38b62f;
    color: #fff;
}

:root {
    --wn-green: #38b62f;
    --wn-green-dark: #168c30;
    --wn-ink: #050b0c;
    --wn-ink-soft: #101919;
    --wn-text: #14191a;
    --wn-muted: #5d6668;
    --wn-line: #dfe6e1;
    --wn-paper: #f7f8f6;
}

body {
    background: #fff;
}

.section-width {
    width: 100%;
    margin: 0 auto;
}

.fixedHeader {
    height: 86px;
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 1px 18px rgba(0, 0, 0, 0.08);
}

.header .section-width {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px;
}

.headerRow {
    height: 86px;
}

.headerRow .col-lg-1 {
    width: auto;
    min-width: 190px;
    padding: 0;
}

.fixedHeader .logo,
.logo {
    padding: 0;
}

.fixedHeader .separator {
    display: none !important;
}

.wn-brand {
    display: inline-grid;
    grid-template-columns: 50px auto;
    grid-template-rows: 25px 20px;
    column-gap: 10px;
    align-items: center;
    min-width: 176px;
    color: var(--wn-ink) !important;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

.wn-brand span {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--wn-green);
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.wn-brand strong,
.wn-brand em {
    display: block;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0;
}

.wn-brand strong {
    align-self: end;
    font-size: 22px;
}

.wn-brand em {
    align-self: start;
    color: var(--wn-green);
    font-size: 20px;
}

.wn-brand-img {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.wn-brand-img img {
    display: block;
    height: 36px;
    width: auto;
}

.horizontalmenu {
    display: flex;
    align-items: center;
    min-width: 0;
}

.mainMenu,
.fixedHeader .mainMenu {
    padding-top: 0;
}

.mainMenu ul {
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    padding-right: 0;
}

.mainMenu ul li,
.fixedHeader .mainMenu>ul>li {
    padding: 0;
}

.mainMenu ul li a,
.language_change {
    color: var(--wn-ink);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-switch .language_change {
    appearance: none;
    padding: 8px;
    border: 0;
    background: transparent;
    font-family: inherit;
    text-transform: uppercase;
    cursor: pointer;
}

.lang-switch::before {
    content: "";
    width: 1px;
    height: 14px;
    margin-right: 12px;
    background: var(--wn-line);
}

.mainMenu ul li a:hover,
.home2 .mainMenu ul li a:hover,
.language_change:hover,
.language_change:focus-visible {
    color: var(--wn-green);
}

.wn-demo-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 144px;
    min-height: 52px;
    padding: 16px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--wn-green), var(--wn-green-dark));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    border: 0;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.wn-demo-link:hover {
    background: linear-gradient(135deg, var(--wn-green), var(--wn-green-dark));
    filter: brightness(0.92);
    transform: translateY(-1px);
}

.wn-site {
    overflow: hidden;
    background: #fff;
}

.wn-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 86px;
    background: radial-gradient(1200px circle at 15% 10%, rgba(56, 182, 47, 0.14), transparent 55%), linear-gradient(160deg, #ffffff, #f6f9f7);
}

.wn-hero-top {
    flex: 1 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.25fr);
    align-items: stretch;
}

.wn-hero-trust {
    padding: 32px clamp(22px, 5vw, 76px) 40px;
    overflow: hidden;
}

.wn-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px clamp(28px, 5vw, 78px);
    color: var(--wn-ink);
}

.wn-hero-copy:after {
    content: "";
    position: absolute;
    right: -180px;
    top: 0;
    bottom: 0;
    width: 360px;
    border-radius: 0 50% 50% 0;
    background: var(--wn-ink);
    z-index: -1;
}

.wn-hero h1 {
    max-width: 710px;
    margin: 0 0 18px;
    color: #141f31;
    text-align: left;
    font-size: clamp(32px, 3.825vw, 58px);
    font-weight: 900;
    line-height: 1.04;
}

.wn-hero h1 span {
    color: var(--wn-green);
}

.wn-hero p {
    max-width: 640px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.65;
}

.wn-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.wn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px 32px;
    border-radius: 999px;
    border: 2px solid var(--wn-green);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #fff;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.wn-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.wn-btn-primary {
    border: 0;
    background: linear-gradient(135deg, var(--wn-green), var(--wn-green-dark));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.wn-btn-secondary {
    border: 0;
    background: linear-gradient(135deg, var(--wn-green), var(--wn-green-dark));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    color: #fff;
}

.wn-btn-light {
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    backdrop-filter: blur(14px) saturate(180%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 20px rgba(5, 11, 12, 0.12);
    color: var(--wn-ink);
}

.wn-btn-light:hover {
    color: var(--wn-green-dark);
}

.wn-btn,
.wn-demo-link,
.submit-button {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.wn-btn::before,
.wn-demo-link::before,
.submit-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(120px circle at var(--wn-mx, 50%) var(--wn-my, 50%), rgba(255, 255, 255, 0.35), transparent 70%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.wn-btn:hover::before,
.wn-demo-link:hover::before,
.submit-button:hover::before {
    opacity: 1;
}

.wn-btn-light::before {
    background: radial-gradient(120px circle at var(--wn-mx, 50%) var(--wn-my, 50%), rgba(56, 182, 47, 0.28), transparent 70%);
}

.wn-hero-media {
    min-width: 0;
    overflow: hidden;
    transform: translateX(-66px);
}

.wn-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 12%;
    display: block;
}

.wn-section {
    padding: 62px clamp(22px, 5vw, 76px);
    background: linear-gradient(160deg, #ffffff, #f6f9f7);
}

.wn-section-head {
    max-width: 920px;
    margin: 0 auto 34px;
    text-align: center;
}

.wn-section-head h2,
.wn-proof-copy h2,
.wn-cta h2 {
    margin: 0;
    color: var(--wn-ink);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.05;
}

.wn-hero-trust .wn-section-head {
    margin: 0 auto 18px;
}

.wn-hero-trust .wn-section-head h2 {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wn-muted);
}

.wn-industries {
    padding: 72px clamp(22px, 5vw, 76px);
    background: #141f31;
    color: #fff;
}

.wn-glow-host {
    position: relative;
    overflow: hidden;
}

.wn-hover-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.wn-glow-host:hover .wn-hover-glow {
    opacity: 1;
}

.wn-industries .wn-section-head,
.wn-industries .wn-industry-grid {
    position: relative;
    z-index: 1;
}

.wn-industries .wn-section-head h2 {
    color: #fff;
}

.wn-industry-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    max-width: 1220px;
    margin: 0 auto;
}

.wn-industry-grid .wn-industry-item {
    display: grid;
    gap: 14px;
    justify-items: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.wn-industry-grid .wn-industry-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(56, 182, 47, 0.4);
    transform: translateY(-2px);
}

.wn-industry-grid i {
    color: var(--wn-green);
    font-size: 38px;
}

.wn-proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    align-items: center;
    background: radial-gradient(900px circle at 92% 8%, rgba(56, 182, 47, 0.1), transparent 55%), linear-gradient(160deg, #ffffff, #eef4f0);
}

.wn-proof-image {
    padding: 28px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 28px;
}

.map-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 36px rgba(5, 11, 12, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.wn-proof-copy {
    padding: 36px clamp(24px, 5vw, 82px);
}

.wn-proof-copy h2 {
    text-align: center;
}

.wn-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.wn-stats div {
    display: grid;
    gap: 7px;
    justify-items: center;
    text-align: center;
}

.wn-stats i {
    color: var(--wn-green);
    font-size: 30px;
}

.wn-stats strong {
    color: var(--wn-ink);
    font-size: 34px;
    font-weight: 700;
}

.wn-stats span {
    color: var(--wn-muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.wn-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 52px clamp(22px, 7vw, 120px);
    background: linear-gradient(90deg, var(--wn-green-dark), var(--wn-green));
    color: #fff;
}

.wn-cta h2 {
    color: #fff;
    font-size: clamp(26px, 3vw, 42px);
}

.wn-cta p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

.footer3 {
    padding: 0;
    background: #141f31;
}

.footer3 .wn-footer-inner {
    position: relative;
    z-index: 1;
}


.wn-footer-inner h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.wn-footer-inner a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.wn-footer-inner a:hover {
    color: var(--wn-green);
}

.footer3 .wn-brand-img img {
    filter: brightness(0) invert(1);
}


@media (max-width: 1180px) {
.mainMenu ul {
            gap: 12px;
        }

.mainMenu ul li a,
        .language_change {
            font-size: 14px;
        }

.wn-card-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

.wn-industry-grid,
        .wn-stats {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
}

@media (max-width: 900px) {
.fixedHeader,
        .headerRow {
            height: 76px;
        }

.header .section-width {
            padding: 0 18px;
        }

.header .headerRow {
            margin-left: 0;
            margin-right: 0;
            display: flex;
            flex-direction: row;
            align-items: center;
        }

.menuButtons {
            display: block;
        }

.mainMenu>ul {
            display: none;
        }

.sideMenuArea .mainMenu>ul {
            display: block;
        }

.wn-hero {
            min-height: auto;
            display: block;
            padding-top: 76px;
        }

.wn-legal-page {
            padding-top: 76px;
        }

.wn-hero-top {
            grid-template-columns: 1fr;
            gap: 8px;
            min-height: auto;
        }

.wn-hero-copy {
            order: 1;
            padding: 40px 24px 8px;
        }

.wn-hero-copy:after {
            display: none;
        }

.wn-actions {
            width: 100%;
        }

.wn-btn {
            width: 100%;
        }

.wn-hero-media {
            order: 2;
            height: 260px;
            transform: none;
        }

.wn-proof {
            grid-template-columns: 1fr;
        }

.map-container {
            height: 260px;
        }

.wn-footer-inner {
            grid-template-columns: 1fr;
        }

.wn-cta {
            align-items: flex-start;
            flex-direction: column;
        }
}

@media (max-width: 640px) {
.wn-brand {
            grid-template-columns: 42px auto;
            min-width: 154px;
        }

.wn-brand span {
            width: 40px;
            height: 40px;
            font-size: 24px;
        }

.wn-brand strong {
            font-size: 19px;
        }

.wn-brand em {
            font-size: 17px;
        }

.wn-brand-img img {
            height: 29px;
        }

.wn-card-grid,
.wn-industry-grid,
.wn-stats,
.wn-news-grid {
            grid-template-columns: 1fr;
        }
}

.wn-partners-link,
.wn-demo-link {
    white-space: nowrap;
}

.wn-partners-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 104px;
    min-height: 52px;
    padding: 16px 32px;
    border: 1px solid rgba(56, 182, 47, 0.55);
    border-radius: 999px;
    background: rgba(56, 182, 47, 0.08);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    backdrop-filter: blur(10px) saturate(180%);
    color: var(--wn-green) !important;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.wn-partners-link:hover {
    background: rgba(56, 182, 47, 0.16);
    transform: translateY(-1px);
}

.wn-products {
    padding-top: 96px;
    padding-bottom: 96px;
    background: linear-gradient(160deg, #fbfcfa, #f4f7f4);
}

.wn-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .wn-card-grid {
        grid-template-columns: 1fr;
    }
}

.wn-product-card {
    appearance: none;
    position: relative;
    width: 100%;
    min-height: 220px;
    border: 0;
    padding: 0;
    perspective: 1200px;
    background: transparent;
    box-shadow: none;
    color: var(--wn-text);
    cursor: pointer;
}

.wn-product-card:focus {
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
html:not(.wn-touch-active) .wn-product-card:hover {
    transform: translateY(-4px);
}
}

.wn-card-head,
.wn-card-drop {
    display: flex;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    box-shadow: 0 15px 36px rgba(5, 11, 12, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    text-align: center;
    backface-visibility: hidden;
    transition: transform 0.5s ease;
}

.wn-card-head strong {
    color: var(--wn-ink);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

.wn-card-drop small {
    color: var(--wn-muted);
    font-size: 14px;
    line-height: 1.7;
}

.wn-card-drop {
    background: linear-gradient(160deg, #1a2740, #141f31 55%, #0f1826);
    transform: rotateY(180deg);
}

.wn-card-drop small {
    color: #fff;
}

@media (hover: hover) and (pointer: fine) {
html:not(.wn-touch-active) .wn-product-card:hover .wn-card-head {
    transform: rotateY(180deg);
}

html:not(.wn-touch-active) .wn-product-card:hover .wn-card-drop {
    transform: rotateY(360deg);
}
}

.wn-product-card.is-expanded .wn-card-head {
    transform: rotateY(180deg);
}

.wn-product-card.is-expanded .wn-card-drop {
    transform: rotateY(360deg);
}

.wn-logo-rail {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
    border-top: 1px solid var(--wn-line);
    border-bottom: 1px solid var(--wn-line);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.wn-logo-track {
    display: flex;
    align-items: center;
    height: 86px;
    width: max-content;
    animation: wnLogoRotate 52s linear infinite;
}

.wn-logo-track img {
    display: block;
    flex-shrink: 0;
    height: 40px;
    width: auto;
    margin: 0 32px;
    object-fit: contain;
    opacity: 0.72;
    transition: opacity 0.2s ease;
}

.wn-logo-track img:hover {
    opacity: 1;
}

.wn-logo-track img.wn-logo-lg {
    height: 46px;
}

.wn-logo-track img.wn-logo-sm {
    height: 30px;
}

.wn-logo-rail:hover .wn-logo-track {
    animation-play-state: paused;
}

.wn-news {
    background: linear-gradient(160deg, #fbfcfa, #f4f7f4);
}

.wn-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .wn-news-grid {
        grid-template-columns: 1fr;
    }
}

.wn-news-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    box-shadow: 0 15px 36px rgba(5, 11, 12, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    text-align: left;
}

.wn-news-tag {
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(56, 182, 47, 0.14);
    color: var(--wn-green-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.wn-news-card h3 {
    margin: 0;
    color: var(--wn-ink);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

.wn-news-card p {
    margin: 0;
    color: var(--wn-muted);
    font-size: 14px;
    line-height: 1.7;
}

.wn-partners {
    background: linear-gradient(160deg, #fbfcfa, #f2f6f2);
    text-align: center;
}

.wn-partners-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
}

.wn-partners-logo {
    height: 32px;
    width: auto;
}

.wn-partners-body .wn-partners-tagline {
    margin: 0;
    max-width: 560px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 6px 8px;
    color: var(--wn-green-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wn-partners-tagline-logo {
    height: 24px;
    width: auto;
    position: relative;
    top: 4px;
}

.wn-partners-body p {
    margin: 0;
    max-width: 560px;
    color: var(--wn-muted);
    font-size: 16px;
    line-height: 1.75;
}

.wn-integrations-title {
    margin: 8px 0 0;
    color: var(--wn-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wn-integrations-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 0;
    border-top: 1px solid var(--wn-line);
    border-bottom: 1px solid var(--wn-line);
}

.wn-integrations-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 32px;
}

.wn-integrations-row img {
    width: 130px;
    height: 40px;
    object-fit: contain;
    opacity: 0.72;
    transition: opacity 0.2s ease;
}

.wn-integrations-row img:hover {
    opacity: 1;
}

.wn-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    max-width: 620px;
    margin: 0 auto;
    padding: 36px 28px 24px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.wn-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wn-footer-brand p {
    max-width: 440px;
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.8;
}

.wn-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
}

.wn-footer-links a,
.wn-footer-inner a {
    margin-bottom: 0;
}


@media (max-width: 1180px) {
.wn-industry-grid,
        .wn-stats {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
}

@media (max-width: 900px) {
.wn-industry-grid,
        .wn-stats {
            grid-template-columns: 1fr;
        }

.wn-footer-inner {
            grid-template-columns: 1fr;
        }

.wn-footer-links {
            justify-content: flex-start;
        }
}

.wn-hero {
    background: radial-gradient(1200px circle at 15% 10%, rgba(56, 182, 47, 0.14), transparent 55%), linear-gradient(160deg, #ffffff, #f6f9f7);
}

.wn-hero-copy {
    color: var(--wn-ink);
}

.wn-hero-copy:after {
    display: none;
}

.wn-hero h1 {
    color: #141f31;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.wn-hero p {
    color: rgba(13, 27, 29, 0.78);
}

.wn-btn-secondary:hover,
.wn-btn-primary:hover {
    background: linear-gradient(135deg, var(--wn-green), var(--wn-green-dark));
    filter: brightness(0.92);
}

.wn-legal-page {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 86px;
}

.wn-legal-page h1 {
    margin: 0 0 24px;
    color: var(--wn-ink);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
}

.wn-legal-page h2 {
    margin: 36px 0 10px;
    color: var(--wn-ink);
    font-size: 20px;
    font-weight: 600;
}

.wn-legal-page p {
    margin: 0;
    color: var(--wn-muted);
    font-size: 15px;
    line-height: 1.75;
}

.wn-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(5, 11, 12, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.wn-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.wn-modal {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px 40px;
    box-shadow: 0 30px 80px rgba(5, 11, 12, 0.35);
}

.wn-modal .wn-legal-page {
    max-width: none;
    padding-top: 0;
    margin: 0;
}

.wn-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f4f5f8;
    color: var(--wn-ink);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.wn-modal-close:hover {
    background: var(--wn-line);
}

body.wn-modal-open {
    overflow: hidden;
}

.consent-row {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 18px;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form .consent-row label.consent-text {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--wn-muted) !important;
}

.wn-toggle {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form .consent-row label.wn-toggle {
    width: 22px !important;
    height: 22px !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 6px !important;
    padding: 0 !important;
}

.wn-toggle input {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    opacity: 0;
    cursor: pointer;
}

.wn-toggle-track {
    position: absolute;
    inset: 0;
    background: #fff;
    border: 2px solid #d5dbd6;
    border-radius: 6px;
    transition: background .2s ease, border-color .2s ease;
}

.wn-toggle-track::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform .15s ease;
}

.wn-toggle input:checked ~ .wn-toggle-track {
    background: var(--wn-green);
    border-color: var(--wn-green);
}

.wn-toggle input:checked ~ .wn-toggle-track::before {
    transform: rotate(45deg) scale(1);
}

.wn-toggle input:focus-visible ~ .wn-toggle-track {
    outline: 2px solid var(--wn-green);
    outline-offset: 2px;
}

.consent-text {
    line-height: 1.6;
}

.consent-text a {
    color: var(--wn-green);
    text-decoration: underline;
}

.input-field.reqError {
    border-color: #d9534f !important;
}

.consent-row.reqError .wn-toggle-track {
    outline: 2px solid #d9534f;
    outline-offset: 2px;
}

.contact-us-section .contact-us-left .bottom-left .contact-us form .consent-row.reqError .consent-text {
    color: #d9534f !important;
}

body,
html {
    font-family: 'Roboto';
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    position: relative;
}

a {
    transition: all ease 500ms;
    -moz-transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    -ms-transition: all ease 500ms;
    -o-transition: all ease 500ms;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

p {
    font-size: 16px;
    line-height: 28px;
    color: #757575;
    letter-spacing: .6px;
    font-weight: 300;
}

@media (min-width: 992px) and (max-width: 1199px) {
.mainMenu ul li {
            padding-right: 10px;
        }

.mainMenu ul li ul {
            width: 210px;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
.mainMenu ul li {
            padding-right: 10px;
        }

.mainMenu ul li ul {
            width: 190px;
        }
}

@media (min-width: 481px) and (max-width: 767px) {
.mainMenu ul {
            position: absolute;
            width: 100%;
            background: rgba(0, 0, 0, 95);
            left: 0;
            top: 35px;
            transition: none;
            -moz-transition: none;
            -webkit-transition: none;
            -ms-transition: none;
            -o-transition: none;
        }

.horizontalmenu .mainMenu>ul {
            display: none;
            height: 300px;
            overflow: scroll;
        }

.mainMenu ul li {
            padding: 0;
            text-align: center;
            width: 100%;
            padding: 20px 0;
        }

.fixedHeader .mainMenu>ul>li {
            padding-bottom: 20px;
        }

.fixedHeader .mainMenu>ul {
            top: 51px;
        }

.mainMenu>ul>li>ul {
            opacity: 1;
            position: relative;
            visibility: visible;
            top: 0;
            width: 100%;
            margin-top: 20px;
        }

.mainMenu>ul>li>ul>li {
            text-align: center;
        }

.mainMenu>ul>li:hover ul {
            top: 0;
        }

.mainMenu {
            position: absolute;
            right: 0;
            top: -20px;
            padding: 0;
        }

.menuButtons {
            margin-left: 0;
            margin-right: 15px;
            display: inline-block;
            position: fixed;
            top: 2rem;
            right: 1rem;
        }

.fixedHeader .mainMenu {
            padding-top: 0;
            top: -50px;
            position: absolute;
        }

.fixedHeader .verticalMenu .mainMenu {
            position: relative;
            top: auto;
        }

.verticalMenu .mainMenu {
            position: relative;
            top: auto;
        }


.copyRight {
            text-align: center;
            line-height: 25px;
        }

.sideMenuArea {
            padding: 0px;
            overflow: scroll;
        }

.sideMenuArea .logo {
            text-align: center;
        }

.closeBtn {
            top: 42px;
        }

.sideMenuArea .mainMenu ul li ul {
            padding: 0 20px;
            width: 100%;
        }

.sideMenuArea .mainMenu {
            padding-top: 0px !important;
        }

.menuButtons2 {
            position: absolute;
            right: 50px;
            top: -27px;
            z-index: 2;
        }

.fixedHeader .menuButtons2 {
            top: -57px;
        }

.horizontalmenu .mainMenu>ul>li>ul {
            display: none;
            transition: none;
            -moz-transition: none;
            -webkit-transition: none;
            -ms-transition: none;
            -o-transition: none;
        }

.horizontalmenu .mainMenu>ul>li ul {
            background: none;
        }

.sideMenuArea .mainMenu ul {
            position: relative;
        }

.headerSocial {
            padding: 75px 0 30px;
            text-align: center;
            position: relative;
            bottom: auto;
        }
}

@media (min-width: 320px) and (max-width: 480px) {
.mainMenu ul {
            position: absolute;
            width: 100%;
            background: rgba(0, 0, 0, 95);
            left: 0;
            top: 35px;
            transition: none;
            -moz-transition: none;
            -webkit-transition: none;
            -ms-transition: none;
            -o-transition: none;
        }

.mainMenu>ul {
            display: none;
            height: 260px;
            overflow: scroll;
        }

.mainMenu ul li {
            padding: 0;
            text-align: center;
            width: 100%;
            padding: 20px 0;
        }

.fixedHeader .mainMenu>ul>li {
            padding-bottom: 20px;
        }

.fixedHeader .mainMenu>ul {
            top: 51px;
        }

.mainMenu>ul>li>ul {
            background: #272727 none repeat scroll 0 0;
            opacity: 1;
            position: relative;
            visibility: visible;
            top: 0;
            width: 100%;
            margin-top: 20px;
        }

.mainMenu>ul>li>ul>li {
            text-align: center;
        }

.mainMenu>ul>li:hover ul {
            top: 0;
        }

.horizontalmenu .mainMenu {
            position: static;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 0;
        }

.menuButtons {
            margin-left: 0;
            margin-right: 0;
            display: inline-block;
        }

.fixedHeader .mainMenu {
            padding-top: 0;
            position: static;
        }


.copyRight {
            text-align: center;
            line-height: 25px;
        }

.sideMenuArea .mainMenu {
            position: relative;
            right: 0;
            top: 0;
        }

.sideMenuArea .mainMenu>ul {
            display: block !important;
            height: inherit;
            overflow: inherit;
            position: relative;
        }

.sideMenuArea {
            padding: 0px;
            overflow: scroll;
        }

.sideMenuArea .logo {
            text-align: center;
        }

.closeBtn {
            top: 42px;
        }

.sideMenuArea .mainMenu ul li ul {
            padding: 0 20px;
            width: 100%;
        }

.sideMenuArea .mainMenu {
            padding-top: 0px !important;
        }

.menuButtons2 {
            position: absolute;
            right: 50px;
            top: -27px;
            z-index: 2;
        }

.fixedHeader .menuButtons2 {
            top: -57px;
        }

.horizontalmenu .mainMenu>ul>li>ul {
            display: none;
            transition: none;
            -moz-transition: none;
            -webkit-transition: none;
            -ms-transition: none;
            -o-transition: none;
        }

.horizontalmenu .mainMenu>ul>li ul {
            background: none;
        }

.headerSocial {
            padding: 75px 0 30px;
            text-align: center;
            position: relative;
            bottom: auto;
        }

.logo a {
            position: relative;
            z-index: 2;
        }
}

.sideMenuArea .mainMenu ul {
    position: relative;
    width: auto;
    background: transparent;
    top: 0;
    left: 0;
}

.horizontalmenu .menuButtons {
    position: static;
}

@keyframes wnSkeleton {
    100% {
        transform: translateX(100%);
    }
}

@keyframes wnLogoRotate {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
