@font-face {
    font-family: Nexa;
    src:
        url("../fonts/Nexa-Bold.woff") format("woff"),
        url("../fonts/Nexa-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Nexa;
    src:
        url("../fonts/Nexa-Regular.woff") format("woff"),
        url("../fonts/Nexa-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --noetiq-cinder: #0d1117;
    --black: #000;
    --light-gray: #f4f4f4;
    --noetiq-merino: #f3f0eb;
    --noetiq-driftwood: #b28842;
    --dark-gray: #707070;
    --white: #fff;
    --noetiq-blue-dianne: #224955;
}

.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

@media screen and (max-width: 991px) {
    .w-layout-blockcontainer {
        max-width: 728px;
    }
}

@media screen and (max-width: 767px) {
    .w-layout-blockcontainer {
        max-width: none;
    }
}

body {
    color: var(--noetiq-cinder);
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    line-height: 24px;
}

h1 {
    color: var(--noetiq-cinder);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Nexa, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 54px;
}

h2 {
    color: var(--noetiq-cinder);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Nexa, Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 40px;
}

h3 {
    color: var(--noetiq-cinder);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Nexa, Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 32px;
}

h4 {
    color: var(--noetiq-cinder);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Nexa, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 24px;
}

h5 {
    color: var(--noetiq-cinder);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 20px;
}

h6 {
    color: var(--noetiq-cinder);
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 18px;
}

p {
    color: var(--noetiq-cinder);
    margin-bottom: 10px;
    line-height: 30px;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 1rem;
}

a {
    color: var(--noetiq-driftwood);
}

.padding_global {
    padding-left: 2rem;
    padding-right: 2rem;
}

.padding_global.padding_nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.container {
    max-width: 1280px;
}

.container.padding_medium {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.container.padding_medium.padding_top_extra {
    padding-top: 16rem;
}

.container.padding_small {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.container.padding_xs {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.container.padding_xs.border_top {
    border-style: solid none none;
    border-color: #00000080;
    border-top-width: 1px;
}

.form_container {
    font-size: 16pt;
    font-family: Nexa, Arial, sans-serif;
}

.form_container button {
    display: block;
    margin: 0 auto;
    padding: 10px;
    background: var(--noetiq-blue-dianne);
    color: white;
    border-radius: 5px;
}

.form_container input {
    width: 100%;
    height: 50px;
    padding: 5px;
    border-radius: none;
    margin-bottom: 20px;
}

.form_container input:focus {
    outline: none;
    border: none;
    box-shadow: 0 0 0 2px var(--noetiq-blue-dianne);
    transition: 0.1s;
}

.lgnerror {
    background: salmon;
    color: white;
    font-size: 12pt;
    padding: 5px;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10px;
    font-weight: 600;
}

.loader {
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid var(--noetiq-blue-dianne); /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
    opacity: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-container {
    align-items: center;
    background: rgba(100, 100, 100, 0.7);
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s linear;
    width: 100%;
    z-index: 9999;
}

.hidden {
    display: none;
}

.display {
    font-family: Nexa, Arial, sans-serif;
    font-size: 16pt;
    font-weight: 500;
    color: var(--noetiq-blue-dianne) !important;
}

.display span {
    color: var(--noetiq-driftwood);
    font-weight: 600;
}

.spacer_50 {
    height: 50px;
}

.container_style {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text_size_small {
    color: var(--black);
    font-size: 0.85rem;
    line-height: 140%;
}

.text_size_small:hover {
    text-decoration: none;
}

.text_size_small.w--current {
    text-align: left;
}

.text_size_small.w--current:hover {
    text-decoration: underline;
}

.color_block {
    width: 100px;
    height: 100px;
}

.color_block.color_light_gray {
    background-color: var(--light-gray);
}

.color_block.color_merino {
    background-color: var(--noetiq-merino);
}

.color_block.color_driftwood {
    background-color: var(--noetiq-driftwood);
}

.color_block.color_middle_gray {
    background-color: var(--dark-gray);
}

.color_block.color_cinder {
    background-color: var(--noetiq-cinder);
}

.color_block.color_navy {
    background-color: #111;
}

.color_block.color_white {
    background-color: var(--white);
}

.color_block.color_black {
    background-color: var(--black);
}

.color_block.color_blue_dianne {
    background-color: var(--noetiq-blue-dianne);
}

.color {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: flex-start;
    display: flex;
}

.text_size_large {
    color: var(--noetiq-cinder);
    font-size: 1.2rem;
    line-height: 120%;
}

.text_size_large.text_bold {
    font-weight: 700;
}

.text_size_medium {
    color: var(--noetiq-cinder);
    font-size: 1rem;
    line-height: 120%;
}

.text_size_medium.text_bold {
    font-weight: 700;
}

.section_hero.position_relative {
    position: relative;
}

.section_nav.position_sticky {
    z-index: 1;
    position: sticky;
    top: 0;
}

.section_nav.bg_white {
    background-color: var(--white);
}

.section_nav.bg_white.position_fixed {
    z-index: 10;
    position: fixed;
    inset: 0% 0% auto;
}

.bg_wrap.position_absolute {
    z-index: 0;
    background-image:
        linear-gradient(#00000040, #00000040),
        url("../images/noetiq-edge-hero-bg.jpeg");
    background-position:
        0 0,
        0%;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    width: 100%;
    position: absolute;
    inset: 0%;
}

.nav_wrap {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.nav_right {
    z-index: 1;
    justify-content: flex-end;
    align-items: center;
    display: flex;
    position: relative;
}

.nav_logo_wrap {
    width: 190px;
}

.nav_menu_wrap {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.nav_menu_with_dropdown {
    grid-column-gap: 0.1rem;
    grid-row-gap: 0.1rem;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.text_nav_menu {
    color: var(--noetiq-cinder);
    text-decoration: none;
    transition: all 0.2s;
}

.text_nav_menu:hover {
    color: var(--noetiq-driftwood);
}

.hero_wrap {
    z-index: 1;
    position: relative;
}

.hero_content_wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    width: 70%;
    display: flex;
}

.button_wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.button {
    border-radius: 5px;
    padding: 1rem 2rem;
}

.button.white {
    color: var(--noetiq-cinder);
    background-color: #fff;
    transition: all 0.2s;
}

.button.white:hover {
    background-color: var(--noetiq-blue-dianne);
    color: var(--noetiq-merino);
}

.button.white.border {
    color: var(--white);
    background-color: #fff0;
    border: 1px solid #fff;
}

.button.white.border:hover {
    background-color: var(--white);
    color: var(--noetiq-blue-dianne);
}

.button.color {
    background-color: var(--noetiq-blue-dianne);
}

.button.blue_dianne {
    background-color: var(--noetiq-blue-dianne);
    transition: all 0.2s;
}

.button.blue_dianne:hover {
    background-color: var(--noetiq-driftwood);
}

.hero_bg_img {
    width: 100%;
}

.color_white {
    color: var(--white);
    mix-blend-mode: normal;
}

.section_intro.bg_black {
    background-color: var(--noetiq-cinder);
}

.section_intro.bg_black.display_none {
    display: none;
}

.intro_wrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.h2_heading_style_large {
    font-size: 3.5rem;
    line-height: 100%;
}

.section_header_wrap {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.services_contens_wrap {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.grid_2-1 {
    grid-template-rows: auto;
}

.grid_2-1.offset_stretch {
    align-items: start;
}

.grid_2-1.gap_10 {
    grid-column-gap: 4.4rem;
    grid-row-gap: 8rem;
    grid-template-columns: 1fr 0.5fr;
    place-items: center stretch;
}

.grid_2-1.gap_10.column_reverce {
    grid-column-gap: 4.4rem;
    grid-template-columns: 0.5fr 1fr;
}

.grid_2-1.gap_10.column_even {
    grid-template-columns: 1fr 1fr;
}

.grid_2-1.gap_2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.grid_inner_wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
}

.grid_inner_wrap.height_640 {
    border-radius: 2rem;
    overflow: hidden;
}

.grid_inner_wrap.card {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    background-color: var(--noetiq-blue-dianne);
    border-radius: 1rem;
    padding: 1.5rem;
}

.grid_inner_wrap.card.bg_img_feature {
    background-color: #22495500;
    background-image: url("../images/noetiq-edge-feature-copilot.jpg");
    background-position: 50%;
    background-size: cover;
}

.grid_inner_wrap.be_img_approach {
    background-image: url("../images/noetiq-edge-illustration-1.svg");
    background-position: 50% 100%;
    background-size: cover;
    border-radius: 30px;
    justify-content: space-between;
}

.learn_more_wrap {
    grid-column-gap: 0.25rem;
    grid-row-gap: 0.25rem;
    color: var(--noetiq-cinder);
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.grid_inner_bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.grid_inner_bottom.gap_small {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
}

.grid_inner_bottom.align_center {
    justify-content: flex-start;
    align-items: center;
}

.grid_inner_top {
    overflow: hidden;
}

.h3_heading_style_small {
    font-size: 1.25rem;
}

.h3_heading_style_small.align_center {
    text-align: center;
    display: flex;
}

.section_industry.display_none {
    display: none;
}

.grid_4-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.section_testimonials.display_none {
    display: none;
}

.cta_wrap {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta_bg_wrap {
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: absolute;
    inset: 0%;
    overflow: hidden;
}

.cta_content_wrap {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

.cta_content_wrap.padding_small {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.spacer_30 {
    height: 30px;
}

.section_footer.bg_merino {
    background-color: var(--noetiq-merino);
}

.footer_wrap {
    justify-content: space-between;
    align-items: stretch;
    display: flex;
}

.footer_left {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 25%;
    display: flex;
}

.footer_right {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
}

.footer_logo_wrap {
    width: 200px;
}

.text_footer_menu {
    color: var(--noetiq-cinder);
    text-decoration: none;
    transition: all 0.2s;
}

.text_footer_menu:hover,
.text_footer_menu.w--current {
    color: var(--noetiq-driftwood);
}

.footer_social_media_wrap {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.social_media_icon_wrap {
    width: 25px;
    transition: all 0.2s;
}

.social_media_icon_wrap:hover {
    opacity: 0.8;
}

.social_media_icon_wrap.display_none {
    display: none;
}

.copyright_wrap {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.section_copyright.bg_merino {
    background-color: var(--noetiq-merino);
}

.copyright_right {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.section_heading.color_merino {
    background-color: var(--noetiq-merino);
}

.section_heading.color_merino.margin_top {
    margin-top: 80px;
}

.ratio_2-3 {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.ratio_2-3.position_74 {
    object-position: 74% 50%;
}

.grid_inner_text_wrap {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.spacer_10 {
    height: 10px;
}

.grid_3-2 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid_3-2.column_width_custom {
    grid-template-columns: 0.75fr 1fr 0.75fr;
}

.grid_3-2.column_width_custom.gap_3 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
}

.card_icon_wrap {
    width: 50px;
}

.cta_bg_strategy {
    background-image:
        linear-gradient(#00000040, #00000040),
        url("../images/noetiq-edge-cta-background-strategy.jpeg");
    background-position:
        0 0,
        50%;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    border-radius: 2rem;
    position: absolute;
    inset: 0%;
}

.spacer_200 {
    height: 100px;
}

.cta_bg_hiring {
    background-image:
        linear-gradient(#00000040, #00000040),
        url("../images/noetiq-edge-cta-background-hiring-1.jpg");
    background-position:
        0 0,
        50% 70%;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    border-radius: 2rem;
    position: absolute;
    inset: 0%;
}

.section_approach.bg_merino {
    background-color: var(--noetiq-merino);
}

.section_approach.display_none {
    display: none;
}

.approach_wrap {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    position: relative;
}

.approach_left {
    width: 40%;
    position: sticky;
    top: 120px;
}

.approach_right {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    width: 40%;
    display: flex;
}

.approach_inner_text_wrap {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.approach_card_wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
}

.approach_card_wrap.height_640 {
    height: 640px;
    overflow: hidden;
}

.approach_card_wrap.card {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    background-color: var(--noetiq-blue-dianne);
    border-radius: 1rem;
    padding: 1.5rem;
}

.approach_card_wrap.card.bg_img {
    background-color: #22495500;
    background-image: url("../images/noetiq-edge-feature-copilot.jpg");
    background-position: 50%;
    background-size: cover;
}

.profile_img_wrap {
    border-radius: 2rem;
    overflow: hidden;
}

.profile_info_wrap {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.legal_wrap {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.nav_dropdown_wrap {
    flex-flow: column;
    display: none;
    position: absolute;
    top: 53px;
    left: 14.5%;
}

.nav_dropdown_item_wrap {
    background-color: var(--white);
    text-align: left;
    padding: 1rem 1.5rem;
    text-decoration: none;
}

.nav_dropdown_item_wrap.border_top {
    border-top: 1px solid #00000040;
}

.swiper {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    overflow: visible;
}

.swiper_slide_item {
    border-radius: 30px;
    flex: none;
    width: 100%;
    padding: 15rem 3rem 3rem;
    position: relative;
}

.swiper_slide_item.bg_it {
    background-image:
        linear-gradient(#00000040, #00000040),
        url("../images/noetiq-edge-case-study-it-1.jpg");
    background-position:
        0 0,
        50%;
    background-size: auto, cover;
}

.swiper_slide_item.bg_healthcare {
    background-image:
        linear-gradient(#00000040, #00000040),
        url("../images/noetiq-edge-case-study-helthcare-1.jpg");
    background-position:
        0 0,
        50%;
    background-size: auto, cover;
}

.swiper_slide_item.bg_logistics {
    background-image:
        linear-gradient(#00000040, #00000040),
        url("../images/noetiq-edge-case-study-logistics-1.jpg");
    background-position:
        0 0,
        50%;
    background-size: auto, cover;
}

.swiper_contents_inner_wrap {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 40%;
    display: flex;
}

.swiper_button_wrap {
    justify-content: space-between;
    align-items: center;
    height: 100px;
    display: flex;
}

.swiper_button {
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 75px;
    height: 75px;
    transition: all 0.2s;
    display: flex;
}

.swiper_button:hover {
    opacity: 0.8;
}

.swiper-button-prev {
    background-image: url("../images/noetiq-edge-swiper-button-prev.svg");
    background-position: 50%;
    background-size: cover;
    width: 75px;
    height: 75px;
}

.swiper-button-next {
    background-image: url("../images/noetiq-edge-swiper-button-next.svg");
    background-position: 50%;
    background-size: cover;
    width: 75px;
    height: 75px;
}

.swiper-slide {
    flex: none;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    display: flex;
    overflow: visible;
}

.ratio_3-2 {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.nav_responsive_icon {
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    display: none;
    position: relative;
}

.nav_responsive_middle {
    background-color: var(--noetiq-cinder);
    width: 1.5rem;
    height: 1px;
    position: absolute;
}

.nav_responsive_top {
    background-color: var(--noetiq-cinder);
    width: 1.5rem;
    height: 1px;
    margin-top: -1rem;
    padding-top: 0;
    position: absolute;
}

.nav_responsive_bottom {
    background-color: var(--noetiq-cinder);
    width: 1.5rem;
    height: 1px;
    margin-bottom: -1rem;
    position: absolute;
}

.cta_bg_about {
    background-image:
        linear-gradient(#00000040, #00000040),
        url("../images/noetiq-edge-cta-background-about-1.png");
    background-position:
        0 0,
        50% 30%;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    border-radius: 2rem;
    position: absolute;
    inset: 0%;
}

.loading {
    display: none;
}

.loading_wrap {
    z-index: 11;
    background-color: var(--noetiq-cinder);
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    inset: 0%;
}

.loading_logo_wrap {
    mix-blend-mode: normal;
    width: 25%;
}

.cta_bg_home {
    background-image:
        linear-gradient(#00000040, #00000040),
        url("../images/noetiq-edge-cta-background-home-1.jpeg");
    background-position:
        0 0,
        50%;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    width: 100%;
    height: 100%;
}

.nav_responsive_menu_inner {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    display: flex;
    overflow: hidden;
}

.nav_responsive_menu_text {
    color: var(--noetiq-cinder);
    font-size: 3rem;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
}

.nav_responsive_menu {
    display: none;
}

.nav_responsive_menu_wrap {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    text-decoration: none;
    display: flex;
}

.scroll_wrap {
    width: 200px;
    position: absolute;
    inset: auto 5% -13.4% auto;
}

.img_wrap {
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.scroll_deco {
    mix-blend-mode: normal;
}

.list_nest_offset {
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
}

.list_margin_bottom_offset {
    margin-bottom: 0;
    list-style-type: square;
}

.p_margin_bottom_offset {
    margin-bottom: 0;
}

.paragraph {
    position: static;
}

.bold-text {
    mix-blend-mode: normal;
}

.li_margin_bottom {
    margin-bottom: 1rem;
}

.bold-text-2 {
    line-height: 24px;
}

.utility-page-wrap {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    display: flex;
}

.utility-page-content {
    text-align: center;
    flex-direction: column;
    width: 260px;
    display: flex;
}

.utility-page-form {
    flex-direction: column;
    align-items: stretch;
    display: flex;
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .container.padding_medium {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .container.padding_medium.padding_top_extra {
        padding-top: 10rem;
    }

    .text_size_large {
        font-size: 1.1rem;
    }

    .hero_content_wrap,
    .intro_wrap {
        width: 100%;
    }

    .h2_heading_style_large {
        font-size: 2.75rem;
    }

    .section_header_wrap {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        width: 100%;
    }

    .services_contens_wrap {
        width: 85%;
    }

    .grid_2-1.gap_10 {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
    }

    .grid_inner_wrap.height_640 {
        height: auto;
    }

    .grid_inner_wrap.be_img_approach {
        aspect-ratio: 3 / 2;
        border-radius: 2rem;
    }

    .grid_4-2 {
        grid-template-rows: auto auto auto auto;
        grid-template-columns: 1fr 1fr;
    }

    .cta_wrap {
        width: 100%;
    }

    .cta_content_wrap.padding_small {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        width: 80%;
    }

    .grid_3-2 {
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr 1fr;
    }

    .grid_3-2.column_width_custom {
        grid-template-columns: 1fr 1fr;
    }

    .approach_left,
    .approach_right {
        width: 45%;
    }

    .profile_img_wrap {
        height: auto;
    }

    .profile_info_wrap {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-flow: column;
    }

    .legal_wrap {
        width: 80%;
    }

    .swiper_slide_item {
        padding: 12rem 2rem 2rem;
    }

    .swiper_contents_inner_wrap {
        width: 70%;
    }

    .loading_logo_wrap {
        width: 35%;
    }

    .scroll_wrap {
        width: 150px;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.25rem;
        line-height: 48px;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .container.padding_medium {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .container.padding_medium.padding_top_extra {
        padding-top: 8rem;
    }

    .container.padding_small {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .nav_left,
    .nav_logo_wrap {
        width: 175px;
    }

    .nav_menu_wrap {
        display: none;
    }

    .h2_heading_style_large {
        font-size: 2.25rem;
    }

    .section_header_wrap {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
    }

    .services_contens_wrap {
        width: 100%;
    }

    .grid_2-1.gap_10 {
        grid-template-columns: 1fr;
    }

    .grid_2-1.gap_10.column_reverce,
    .grid_2-1.gap_10.column_even {
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
    }

    .grid_inner_wrap {
        grid-column-gap: 0.5rem;
        grid-row-gap: 0.5rem;
    }

    .grid_inner_wrap.height_640 {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .grid_inner_bottom {
        grid-column-gap: 0.75rem;
        grid-row-gap: 0.75rem;
    }

    .h3_heading_style_small {
        font-size: 1.1rem;
    }

    .cta_bg_wrap {
        width: 100%;
    }

    .cta_content_wrap.padding_small {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        width: 90%;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .footer_wrap {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        flex-flow: column;
    }

    .footer_left {
        width: 100%;
    }

    .footer_right {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .approach_wrap {
        flex-flow: column;
    }

    .approach_left {
        width: 100%;
        position: static;
    }

    .approach_right {
        width: 100%;
    }

    .profile_img_wrap {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .profile_info_wrap {
        flex-flow: row;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .legal_wrap,
    .swiper_contents_inner_wrap {
        width: 100%;
    }

    .swiper_button_wrap {
        height: 75px;
    }

    .swiper_button,
    .swiper-button-prev,
    .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .nav_responsive_icon {
        display: flex;
    }

    .loading_logo_wrap {
        width: 40%;
    }

    .nav_responsive_menu_text {
        font-size: 2.5rem;
    }

    .scroll_wrap {
        width: 120px;
        bottom: -12.3%;
    }

    .img_wrap {
        width: 100%;
    }
}

@media screen and (max-width: 479px) {
    h1 {
        font-size: 2rem;
        line-height: 38px;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 28px;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 28px;
    }

    .padding_global {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .container.padding_medium.padding_top_extra {
        padding-top: 8rem;
    }

    .bg_wrap.position_absolute {
        background-image:
            linear-gradient(#00000040, #00000040),
            url("../images/AdobeStock_546043045_Preview.jpeg");
        background-position:
            0 0,
            50%;
    }

    .nav_logo_wrap {
        width: 150px;
    }

    .button_wrap {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .h2_heading_style_large {
        font-size: 1.5rem;
    }

    .h2_heading_style_large.color_white {
        line-height: 115%;
    }

    .grid_2-1.gap_2 {
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
    }

    .grid_inner_wrap.height_640 {
        width: 80%;
    }

    .grid_inner_wrap.card.bg_img_feature {
        justify-content: space-between;
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .h3_heading_style_small {
        font-size: 1rem;
        line-height: 20px;
    }

    .footer_right {
        flex-flow: column;
    }

    .copyright_wrap {
        grid-column-gap: 0.5rem;
        grid-row-gap: 0.5rem;
        flex-flow: column;
    }

    .copyright_right {
        order: -1;
    }

    .grid_3-2 {
        grid-template-rows: auto auto auto auto auto auto;
        grid-template-columns: 1fr;
    }

    .grid_3-2.column_width_custom {
        grid-template-rows: auto auto auto auto auto;
        grid-template-columns: 1fr;
    }

    .profile_img_wrap,
    .profile_info_wrap {
        width: 100%;
    }

    .swiper_button {
        width: 50px;
        height: 50px;
    }

    .loading_logo_wrap {
        width: 45%;
    }

    .nav_responsive_menu_text {
        font-size: 1.5rem;
        line-height: 125%;
    }

    .nav_responsive_menu_wrap {
        height: 60px;
    }

    .nav_responsive_menu_wrap.w--current {
        height: 80px;
    }

    .scroll_wrap {
        bottom: -9.6%;
    }
}

#w-node-_7db76e90-0169-d451-83aa-6ece8a0863ba-59dea290,
#w-node-ceba27b1-e55f-bbe0-06a4-73bd3ab15d38-44f47690,
#w-node-_61ad9f2e-98b9-aa55-4c9e-5d680377de73-44f47690 {
    align-self: start;
}

#w-node-d6839987-4941-6231-e480-ef50a7e227af-acbe1209 {
    grid-area: 1 / 1 / 2 / 2;
}

#w-node-_8623db76-4991-b044-ebd5-181cc96251e6-acbe1209 {
    grid-area: 1 / 3 / 2 / 4;
}

#w-node-_26e76ba6-5772-0c25-b30b-c41d89f18c12-acbe1209 {
    grid-area: 2 / 1 / 3 / 2;
}

#w-node-_1462086c-8780-156b-2451-1d503ff64e89-acbe1209 {
    grid-area: 2 / 3 / 3 / 4;
}

#w-node-_8187a5c0-fcb9-3d81-ab01-a686b2ffe481-acbe1209 {
    grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_8af79f73-f074-1128-b634-eb484fe9a546-acbe1209 {
    align-self: center;
}

@media screen and (max-width: 991px) {
    #w-node-d6839987-4941-6231-e480-ef50a7e227af-acbe1209 {
        grid-row: 2 / 3;
    }

    #w-node-_8623db76-4991-b044-ebd5-181cc96251e6-acbe1209 {
        grid-area: 2 / 2 / 3 / 3;
    }

    #w-node-_26e76ba6-5772-0c25-b30b-c41d89f18c12-acbe1209 {
        grid-area: 3 / 1 / 4 / 2;
    }

    #w-node-_1462086c-8780-156b-2451-1d503ff64e89-acbe1209 {
        grid-area: 3 / 2 / 4 / 3;
    }

    #w-node-_8187a5c0-fcb9-3d81-ab01-a686b2ffe481-acbe1209 {
        grid-area: 1 / 1 / 2 / 3;
    }
}

@media screen and (max-width: 767px) {
    #w-node-_61ad9f2e-98b9-aa55-4c9e-5d680377de8e-44f47690 {
        order: 9999;
        grid-area: span 2 / span 1 / span 2 / span 1;
    }

    #w-node-_61ad9f2e-98b9-aa55-4c9e-5d680377de73-44f47690 {
        grid-area: span 1 / span 1 / span 1 / span 1;
        align-self: start;
    }
}

@media screen and (max-width: 479px) {
    #w-node-_8623db76-4991-b044-ebd5-181cc96251e6-acbe1209 {
        grid-area: 3 / 1 / 4 / 2;
    }

    #w-node-_26e76ba6-5772-0c25-b30b-c41d89f18c12-acbe1209 {
        grid-row: 4 / 5;
    }

    #w-node-_1462086c-8780-156b-2451-1d503ff64e89-acbe1209 {
        grid-area: 5 / 1 / 6 / 2;
    }

    #w-node-_8187a5c0-fcb9-3d81-ab01-a686b2ffe481-acbe1209 {
        grid-area: 1 / 1 / 2 / 2;
    }
}

@font-face {
    font-family: "Nexa";
    src:
        url("../fonts/Nexa-Bold.woff") format("woff"),
        url("../fonts/Nexa-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Nexa";
    src:
        url("../fonts/Nexa-Regular.woff") format("woff"),
        url("../fonts/Nexa-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
