/* ========== Reset ========== */
html {
    box-sizing: border-box;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

img,
picture {
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
}

button,
h1,
h2,
h3,
h4,
input,
label {
    line-height: 1.1;
}

textarea:not([rows]) {
    min-height: 10em;
}

:target {
    scroll-margin-block: 5ex;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: var(--say9-default-line-height);
}

/* ========== Global Colors ========== */
:root {
    --say9-main-blue: rgb(80, 162, 200);
    --say9-main-orange: rgb(255, 138, 59);
    --say9-light-orange: rgb(247, 138, 73);

    --say9-background-dark-blue: rgba(80, 162, 200, 0.2);
    --say9-background-light-blue: rgb(237, 245, 249);
    --say9-bg-light: rgba(255, 255, 255, 1);

    --say9-step-gray: rgb(241, 246, 250);
    --say9-step-orange: rgb(252, 118, 38);

    --say9-text-blue: rgb(7, 72, 98);
    --say9-text-blue-2: rgb(3, 90, 159);

    --say9-default-font-size: 16px;
    --say9-default-line-height: 24px;

    --say9-hero-font-size: 40px;
    --say9-hero-line-height: 60px;

    --say9-hero-mobile-font-size: 22px;
    --say9-hero-mobile-line-height: 33px;

    --swiper-theme-color: rgb(7, 72, 98) !important;
    --swiper-pagination-bullet-inactive-color: rgb(7, 72, 98) !important;

    /* v2 palette */

    --say9-primary-blue: #031D3D;
    --say9-secondary-blue: #077DFD;
    --say9-default-text-blue: #181F35;

    /* Other variables */

    --scrollbar-width: 15px;

    --White: #FFF;
    --Gray-200: #EFF1F5;
    --Gray-300: #DCDFEA;
    --Gray-500: #7F88A2;
    --Gray-400: #B9C0D4;
    --Gray-700: #4A5578;
    --Gray-900: #181F35;


    --Main-Blue-100: #F6FAFF;
    --Main-Blue-200: #E5F1FF;
    --Main-Blue-300: #C6E1FF;
    --Main-Blue-400: #99CAFF;
    --Main-Blue-500: #63AEFF;
    --Main-Blue-600: #077DFD;
    --Main-Blue-700: #0E44B0;
    --Main-Blue-800: #10335F;
    --Main-Blue-900: #031D3D;

    --Other-Green-2-700: #16B364;
    --Other-Green-1-300: #ECFBC3;
    --Secondary-Yellow-400: #FFF6B4;
    --Secondary-Turquoise-300: #DCF6FF;
    --Secondary-Turquoise-400: #AAE9FF;
    --Other-Green-1-400: #CBE389;
    --Secondary-Terracotta-500: #FB936F;
    --Secondary-Turquoise-500: #74D8FA;
    --Small: 12px;
    --Large: 32px;
    --Large-BG: 60px;
    --Middle: 24px;
    --Extra-large: 200px;
}

.os-mac {
    /* --say9-primary-blue: #022047; */
}

.os-ios {
    --say9-primary-blue: #031D3E;
}

/* ========== Fonts ========== */
@font-face {
    font-family: "League Spartan";
    src: url("../assets/fonts/new_fonts/LeagueSpartan-VariableFont_wght.woff2") format("woff2"),
        url("../assets/fonts/new_fonts/LeagueSpartan-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: 'League Spartan', "Helvetica Neue", Arial, sans-serif !important;
}

/* ========== Utilities / Globals ========== */
.section_title {
    font-size: 72px;
}

.cmplz-cookiebanner .cmplz-message p {
    font-size: var(--cmplz_text_font_size) !important;
    line-height: var(--cmplz_text_line_height) !important;
    color: var(--cmplz_text_color) !important;
}

.cky-consent-container {
    visibility: hidden;
}

.inner_wrapper {
    width: 100%;
    max-width: 1640px;
    margin: auto;
}

/* ========== Layout / Body ========== */
body {
    background-color: var(--say9-primary-blue);
    padding-top: 0;
    transition: padding-top 0.3s ease-in-out;
    -webkit-transition: padding-top 0.3s ease-in-out;
    -o-transition: padding-top 0.3s ease-in-out;
    -moz-transition: padding-top 0.3s ease-in-out;
}

html.chat-open {
    --header-z: 1000000000;
}

html.chat-open,
body.chat-open {
    overscroll-behavior: none;
    touch-action: none;
}

body.show-loom {
    overflow: hidden !important;
}

html.show-menu {
    overscroll-behavior: none;
    touch-action: none;
}

body.show-menu {
    position: fixed;
    overflow: hidden;
    width: 100%;
}

/* Lock scroll by fixing the page container when menu is open */
#page-root.show-menu {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    /* `top` is set inline by JS to the negative scrollY */
    overscroll-behavior: none;
    touch-action: none;
    z-index: 2147483645;
}

/* html.no-scroll-animate,
html.no-scroll-animate * {
    scroll-behavior: auto !important;
} */

/* ========== Header ========== */
header {
    padding: 0 80px;
    height: 88px;
    background-color: var(--say9-primary-blue);
    --submenu-top-margin: 96px;
    width: 100%;
    z-index: var(--header-z, 2147483645);
    position: relative;
    /* top: 0; */
    left: 0;
    transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out,
        backdrop-filter 0.3s ease-in-out, top 0.3s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translateY(0);
    margin-bottom: -1px;
}

html.meun-open header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000000001;
    transform: none !important;
    -webkit-transform: none !important;
}

header.sticky {
    background-color: rgba(3, 29, 61, 0.7) !important;
    box-shadow: 4px -1px 10px 3px rgba(92, 90, 90, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    --submenu-top-margin: 96px;
    top: 0;
    width: 100%;
    position: fixed;
    left: 0;
    transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out,
        backdrop-filter 0.3s ease-in-out, top 0.3s ease-in-out;
    animation: stickyheader 0.3s ease-in-out;
}

header.nosticky {
    animation: stickyheaderhide 0.3s ease-in-out;
}

body.show-menu header.sticky,
body:has(.show-menu) header.sticky {
    border-bottom: none;
}

@keyframes stickyheader {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes stickyheaderhide {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}

#wpadminbar {
    z-index: 9999999999;
}

#mobile-blur-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    pointer-events: none;
    opacity: 0;
    transition: 0.2s ease;
    z-index: 10000000000;
}

#mobile-blur-overlay.show-menu {
    opacity: 1;
    transition: 0.4s ease;
    pointer-events: auto;
}

#header-inner {
    max-width: 1760px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

#header-logo,
#header-logo svg,
#header-logo a {
    width: 132px;
    height: 38px;
}

#header-logo a {
    display: inline-block;
}

/* White Header */

html.white-header header {
    background-color: #FFFFFF;
}

html.white-header #header-navlist li a,
html.white-header #header-navlist li.dropdown-menu>span {
    color: var(--say9-primary-blue);
}

html.white-header #header-navlist>li:not(.current-menu-ancestor):not(:hover)>span .da svg path,
html.white-header #header-navlist>li.dropdown-menu:not(.current-menu-ancestor):not(:hover)>span .da svg path {
    fill: var(--say9-primary-blue) !important;
}

html.white-header #header-navlist ul.sub-menu {
    background-color: #FFFFFF !important;
    box-shadow: 4px -1px 10px 3px rgba(92, 90, 90, 0.03) !important;
}

html.white-header header.sticky {
    background-color: rgba(255, 255, 255, 1) !important;
}

html.white-header header #mobile-menu-switch span {
    background-color: #077DFD;
}

/* ========== Mobile Menu Icon ========== */
#mobile-menu-switch {
    display: none;
    cursor: pointer;
    position: relative;
    width: 26px;
    height: 20px;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

#mobile-menu-switch span {
    display: block;
    position: absolute;
    height: 2px;
    width: 26px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

#mobile-menu-switch span:first-child {
    top: 0;
}

#mobile-menu-switch span:nth-child(2) {
    top: 10px;
}

#mobile-menu-switch span:nth-child(3) {
    top: 20px;
}

#mobile-menu-switch.open span:first-child {
    transform: rotate(45deg) translate(7px, 7px);
}

#mobile-menu-switch.open span:nth-child(2) {
    transform: rotate(45deg);
}

#mobile-menu-switch.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== Nav ========== */
#header-navigation {
    display: flex;
    align-items: center;
    height: 100%;
}

#header-navlist {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

#header-navlist li {
    display: flex;
    position: relative;
    align-items: center;
    height: 100%;
    color: var(--say9-text-blue);
}

#header-navlist li a,
#header-navlist li span {
    font-size: 22px;
    line-height: 1em;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    padding: 12px 16px;
    transition: color 0.3s ease-in-out;
}

#header-navlist .current_page_item>a,
#header-navlist .current-menu-ancestor span,
#header-navlist>li:not(.custom-offer).active>span {
    color: #63AEFF !important;
}

#header-navlist>li:not(.custom-offer):not(.current-menu-ancestor):hover>span,
#header-navlist>li:hover>a,
#header-navlist li.dropdown-menu ul.sub-menu li:hover a {
    color: #99CAFF !important;
}

#header-navlist>li>span .da svg path,
#header-navlist>li.dropdown-menu>span .da svg path {
    fill: rgba(255, 255, 255, 1);
    transition: fill 0.3s ease-in-out;
}

#header-navlist>li:not(.current-menu-ancestor):hover>span .da svg path {
    fill: #99CAFF !important;
}

#header-navlist .current-menu-ancestor .da svg path,
#header-navlist>li.dropdown-menu.active>span .da svg path {
    fill: #63AEFF !important;
}

#header-navlist li.custom-offer {
    margin-left: 36px;
}

#header-navlist li.custom-offer>span {
    display: flex;
    align-items: center;
    column-gap: 18px;
    padding: 10px 10px 10px 20px;
    border-radius: 200px;
    height: auto;
    line-height: 1em;
    font-weight: 500;
    background-color: #077DFD;
    color: #FCFCFC;
    cursor: pointer;
    transition: box-shadow 0.3s ease-out, background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

#header-navlist li.custom-offer>span>span:first-child {
    padding: 4px 0 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
}

#header-navlist li.custom-offer>span>span:last-child {
    width: 32px;
    height: 32px;
    background-image: url("../assets/images/brand_mention/btn_icon.svg");
    background-size: contain;
}

#header-navlist li.custom-offer>span:hover,
#header-navlist li.custom-offer>span:active {
    box-shadow: none;
}

.primary_btn {
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.primary_btn span {
    transition: color 0.3s ease-in-out;
}

html.os-ios .primary_btn,
html.os-ios .primary_btn span {
    transition: none;
}

#header-navlist li.custom-offer>span:hover,
.primary_btn:hover {
    background-color: #63AEFF;
}

#header-navlist li.custom-offer>span:active,
.primary_btn:active {
    padding: 8px 8px 8px 18px;
}

.sec_btn:hover {
    background-color: #10335F;
}

.sec_btn:hover span {
    color: #FFFFFF;
}

#header-navlist .da {
    width: 24px;
    height: 24px;
}

#header-navlist .dropdown_arrow {
    border: solid rgba(7, 72, 98, 1);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    pointer-events: none;
    transform: rotate(45deg) translateY(-40%);
}

#header-navlist li.header-hidden {
    display: none;
}

/* Dropdown */
#header-navlist li.dropdown-menu {
    cursor: pointer;
}

#header-navlist li.dropdown-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -26px;
    height: 0;
}

#header-navlist li.dropdown-menu:hover::after {
    height: 26px;
}

#header-navlist li.dropdown-menu>span {
    display: flex;
    align-items: center;
    gap: 6px;
}

#header-navlist li.dropdown-menu svg {
    transform: rotate(0deg);
    transition: transform 0.3s ease-out;
}

#header-navlist .dropdown-menu:hover svg,
#header-navlist li.dropdown-menu.active svg {
    transform: rotate(180deg);
}

#header-navlist ul.sub-menu {
    position: absolute;
    top: 100px;
    margin-left: 16px;
    width: max-content;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    background-color: var(--say9-primary-blue) !important;
    box-shadow: 4px 4px 8.6px rgba(0, 15, 40, 0.2), -4px -4px 8.6px rgba(0, 15, 40, 0.2) !important;
    border-radius: 24px;
    border: none !important;
    transition: opacity 0.3s ease, background-color 0.3s ease-in-out, border 0.3s ease-in-out, height 0.3s ease-in-out;
}

#header-navlist .dropdown-menu:hover ul.sub-menu {
    opacity: 1;
    pointer-events: all;
}

#header-navlist li.dropdown-menu ul.sub-menu a {
    width: 100%;
    margin: 0;
    padding: 4px 0 0;
    line-height: 1em;
    font-weight: 600;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in;
}

#header-navlist li.dropdown-menu ul.sub-menu a:hover {
    background: none;
}

/* ========== Z-index helpers ========== */
#mobile-blur-overlay.show-menu {
    z-index: 10;
}

/* Trusted Partners */

#trusted_partners {
    margin-bottom: 140px;
}

#trusted_partners_inner {
    padding: 0;
    max-width: 100%;
}

.swiper-trusted-companies {
    opacity: 0;
    width: 100%;
    cursor: default;
    transition: opacity .3s ease;
}

.swiper-trusted-companies:last-child {
    margin-top: 24px;
}

.swiper-trusted-companies .swiper-wrapper {
    transition-timing-function: linear !important;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.swiper-trusted-companies .swiper-slide {
    width: 156px;
    height: 48px;
    margin: 0;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.your_logo {
    background-color: #E5F1FF;
    border-radius: 200px;
    color: var(--say9-primary-blue);
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    max-width: 156px;
    max-height: 48px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.swiper-trusted-companies * {
    transition-timing-function: linear !important;
}

.swiper-trusted-companies .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Clients Feedback */

#clients_feedback {
    margin-bottom: 0;
    overflow: hidden;
    padding: 190px 0 110px;
    position: relative;
    background-color: #C6E1FF;
    border-radius: 0 0 60px 60px;
    margin-top: -60px;
}

#feedback_inner {
    position: relative;
    max-width: 100%;
    padding: 0 0 110px 0;
    background-color: transparent !important;
    border-radius: 0;
}

.feedback_web {
    position: absolute;
    bottom: 278px;
    left: -1150px;
    width: 1703px;
    height: 1027px;
}

.feedback_subtitle {
    background-color: var(--say9-default-text-blue);
    padding: 6px 14px 4px;
    border-radius: 200px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1em;
    width: fit-content;
    margin: 0 auto 14px;
}

.feedback_title {
    max-width: 1050px;
    color: var(--say9-default-text-blue);
    line-height: 1.1em;
    padding: 0 16px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 11;
    text-align: center;
}

.feedbacks_swiper {
    width: 100%;
    height: auto;
}

#clients_feedback .feedbacks_swiper {
    padding-right: 20px;
}

#feedback_container {
    padding-left: 0;
    position: relative;
}

#feedback_container .feedback {
    background-color: #FFFFFF !important;
    border-radius: 24px;
    padding: 32px;
    height: auto !important;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    transition-property: transform, background-color;
}

.feedback_head {
    display: flex;
    column-gap: 16px;
    align-items: center;
    margin-bottom: 0;
}

.feedback_image {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    position: relative;
}

.feedback_image img {
    position: absolute;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feedback_info {
    width: 100%;
}

.feedback_name {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4em;
    margin-bottom: 4px;
    transition: color 0.3s ease-in-out;
    color: var(--say9-default-text-blue);
}

.feedback_position {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4em;
    transition: color 0.3s ease-in-out;
    color: #4A5578;
}

.feedback_content {
    user-select: none;
    -webkit-user-drag: none;
}

.feedback_content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.6em;
    color: #4A5578;
    margin-bottom: 14px;
    transition: color 0.3s ease-in-out;
}

.feedback_hr {
    width: 100%;
    height: 1px;
    background-color: #E5F1FF;
    border-radius: 50%;
    margin: 16px 0;
}

.feedback_hr+.feedback_rating {
    margin-bottom: 16px;
}

.feedback_rating {
    display: flex;
    align-items: center;
    column-gap: 5px;
    flex-shrink: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.feedback_rating span {
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.feedback_btn_wrapper {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
}

.feedback_btn {
    border: none;
    outline: none;
    border-radius: 20px;
    background-color: var(--say9-secondary-blue);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 9px 11.5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.feedback_btn span {
    font-weight: 500;
    font-size: 16px;
    line-height: 1em;
    padding-top: 4px;
    color: rgba(252, 252, 252, 1);
}

.video_play {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    background: none;
    z-index: 10;
    cursor: pointer;
}

.video_play.visible {
    display: grid;
}

.video_play img {
    height: fit-content;
}

.feedbacks_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) scale(0);
    width: 0;
    height: 0;
    overflow: hidden;
    border-radius: 13px;
    background-color: #000;
    transition: transform 0.5s ease, width 0.5s ease, height 0.5s ease;
    z-index: 10;
}

.feedbacks_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ffffff;
    display: block;
    -webkit-appearance: none;
    appearance: none;
    transition: background-color 0.3s ease-in-out;
}

.feedbacks_video video::-webkit-media-controls,
.feedbacks_video video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.feedback.active .feedbacks_video {
    transform: translate(-50%, -50%) scale(1);
    width: calc(100% - 28px);
    height: calc(100% - 28px);
}

.feedback_pagination {
    bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback_pagination .swiper-pagination-bullet {
    width: 26px;
    height: 6px;
    border-radius: 43px;
    opacity: 0.4;
    margin: 0 2px !important;
    background-color: var(--say9-main-blue);
    transition: opacity 0.3s ease-out, width 0.3s ease-out, height 0.3s ease-out, background-color 0.3s ease-in-out;
}

.feedback_pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 36px;
    height: 8px;
}

.feedback_nav_wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    column-gap: 27px;
    width: fit-content;
    height: fit-content;
}

.feedback_nav_wrapper .feedback_nav_btn {
    width: 52px;
    height: 52px;
    padding: 14px;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: none;
    transition: background-color 0.3s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.feedback_nav_wrapper .feedback_nav_btn:hover {
    background-color: #FFFFFF;
}

.feedback_nav_wrapper .feedback_nav_btn:active {
    border-color: var(--say9-secondary-blue);
}

.feedback_nav_wrapper .feedback_nav_btn::after {
    content: none;
}

.feedback_nav_wrapper .feedback_btn_prev {
    background-color: var(--say9-primary-blue);
    transform: rotate(180deg);
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

.feedback_nav_wrapper .feedback_btn_next {
    background-color: var(--say9-secondary-blue);
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.feedback_nav_wrapper .feedback_nav_btn.swiper-button-disabled {
    opacity: 1;
    background-color: #DCDFEA;
}

.feedback_nav_wrapper .feedback_nav_btn svg path {
    transition: stroke 0.3s ease-in-out;
}

.feedback_nav_wrapper .feedback_nav_btn:hover svg path {
    stroke: var(--say9-secondary-blue);
}

.feedback_icon1 {
    width: 202px;
    height: 150px;
    position: absolute;
    top: 148px;
    right: 123px;
    z-index: 10;
    transform: rotate(-153deg);
}

.feedback_icon2 {
    position: absolute;
    transform-origin: center;
    width: 354px;
    height: 262px;
    top: -285px;
    left: 65px;
    transform: rotate(-25deg);
}

/* Work */

#work {
    padding: 200px 100px 200px;
    overflow: hidden;
}

#work_inner,
#work .work_right {
    overflow: visible;
}

.work_right {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    clip-path: inset(0 -9999px 0 0);
}

#work_inner {
    display: flex;
    gap: 160px;
    position: relative;
}

#work_inner>* {
    min-width: 0;
}

.work_left {
    max-width: 390px;
    width: 100%;
}

.work_subtitle {
    background-color: #10335F;
    color: #FFFFFF;
    line-height: 1.1em;
    font-weight: 500;
    font-size: 18px;
    border-radius: 200px;
    padding: 6px 14px 4px;
    margin-bottom: 14px;
    display: inline-block;
}

.work_title {
    font-weight: 700;
    font-size: 72px;
    line-height: 1.1em;
    margin-bottom: 14px;
    color: #FFFFFF;
}

.work_txt {
    color: #B9C0D4;
    font-size: 22px;
    line-height: 1.4em;
    margin-bottom: 60px;
    font-weight: 400;
}

.work_btn_wrapper {
    height: 52px;
}

.work_btn {
    background-color: var(--say9-secondary-blue);
    border-radius: 200px;
    padding: 10px 10px 10px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.work_btn:hover {
    background-color: #63AEFF;
}

.work_btn:active {
    padding: 8px 8px 8px 18px;
}

.work_btn span {
    padding-top: 4px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 22px;
    line-height: 1em;
    transition: color 0.3s ease-in-out;
}

.work_btn img {
    width: 32px;
    height: 32px;
}

/* Case Study */

#work_slider {
    padding-bottom: 40px;
}

#work_slider.swiper,
#work_slider .swiper-wrapper {
    overflow: visible;
}

.case_study {
    border-radius: 32px;
    padding: 18px 24px;
    display: block;
}

.work_slide:first-child .case_study {
    background-color: #AAE9FF;
}

.work_slide:nth-child(2) .case_study {
    background-color: #CBE389;
}

.work_slide:nth-child(3) .case_study {
    background-color: #EFF1F5;
}

.work_slide:nth-child(4) .case_study {
    background-color: #FFD4C5;
}

.case_study_top {
    display: flex;
    padding: 0 18px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.case_study_dr {
    display: flex;
    align-items: center;
    gap: 14px;
}

.case_study_dr_left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.case_study_dr_left img {
    width: 23px;
    height: 23px;
}

.case_study_top_txt {
    color: var(--say9-default-text-blue);
    font-size: 24px;
    font-weight: 600;
}

.case_study_dr_right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.case_study_dr_right img {
    width: 17px;
    height: 17px;
}

.case_study_traffic {
    display: flex;
    align-items: center;
    gap: 8px;
}

.case_study_traffic img {
    width: 24px;
    height: 24px;
}

.case_study_traffic>.case_study_top_txt {
    margin-right: 6px;
}

.case_study_traffic_per {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 100px;
    gap: 4px;
}

.case_study_traffic_per img {
    width: 14px;
    height: 14px;
}

.case_study_traffic_per span {
    color: #16B364;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2em;
    padding-top: 4px;
}

.work_slider_pagination {
    bottom: 0 !important;
    top: unset !important;
}

.work_slider_pagination .swiper-pagination-bullet {
    background-color: #10335F;
    width: 12px;
    height: 8px;
    border-radius: 50px;
    margin: 0 2px !important;
    opacity: 1;
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.work_slider_pagination .swiper-pagination-bullet-active {
    background-color: var(--say9-secondary-blue);
    width: 14px;
}

/* Viewport */

.viewport {
    background-color: #FFFFFF;
    border-radius: 27px;
    padding: 18px 20px;
    max-width: 483px;
    max-height: 405px;
    height: 100%;
    margin-bottom: 20px;
    cursor: default;
}

.viewport_inner {
    position: relative;
    height: 368px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.viewport_top {
    max-height: 337px;
    height: 100%;
}

.viewport_lines {
    max-height: 337px;
    height: 100%;
    width: calc(100% - 13px);
    position: absolute;
    left: 6px;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.viewport_line {
    width: 100%;
    height: 1px;
    background-color: #C6E1FF;
}

.viewport_line-last {
    opacity: 0;
    pointer-events: none;
}

.viewport_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.viewport_bottom_item {
    color: #7F88A2;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
}

/*  */

.chart_container {
    position: relative;
    width: 100%;
    max-width: 444px;
    height: 100%;
    aspect-ratio: 444 / 337;
}

.chart_container#yourContainer {
    padding-top: 0;
}

.chart_container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chart_tooltip {
    position: absolute;
    display: none;
    pointer-events: none;
    flex-direction: column;
    will-change: transform, opacity;
    background-color: #10335F;
    border-radius: 13px;
    border: none;
    padding: 10px;
}

.chart_tooltip#yourTooltip {
    width: 117px;
    height: 70px;
    align-items: center;
    justify-content: center;
}

.chart_title {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    margin-bottom: 10px;
}

.chart_tooltip#yourTooltip .chart_title {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(7, 72, 98, 0.5);
}

.chart_label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
}

.chart_label.domain {
    margin-bottom: 7px;
}

.chart_label_left {
    display: flex;
    align-items: center;
    column-gap: 7px;
}

.chart_circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.chart_circle.domain {
    background-color: #0CC5E1;
}

.chart_circle.traffic {
    background-color: #077DFD;
}

.chart_label_txt,
.chart_label_right {
    font-size: 15px;
    line-height: 1em;
    font-weight: 500;
    padding-top: 2px;
}

.chart_label_txt {
    color: #FFFFFF;
}

.chart_label.domain .chart_label_right {
    color: #0CC5E1;
}

.chart_label.traffic .chart_label_right {
    color: #077DFD;
}

.case_study_bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.case_study_title {
    color: var(--say9-default-text-blue);
    font-size: 30px;
    font-weight: 700;
    line-height: 1em;
    max-height: 60px;
    overflow: hidden;
}

.case_study_btn {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 18px;
}

.case_study_btn span {
    color: #031D3D;
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    padding-top: 4px;
}

.case_study_btn img {
    width: 32px;
    height: 32px;
}

/* Team */

#team {
    margin-bottom: 160px;
    padding: 140px 100px 0;
}

.team_subtitle {
    background-color: #10335F;
    width: fit-content;
    margin: 0 auto;
    border-radius: 200px;
    padding: 6px 14px 4px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1em;
    margin-bottom: 14px;
}

.team_title {
    font-size: 82px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 40px;
    text-align: center;
    color: #FFFFFF;
}

.team_stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-bottom: 36px;
}

.team_stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.team_stat_title {
    color: #63AEFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2em;
}

.team_stat_desc {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4em;
}

.team_video_wrap {
    border-radius: 60px;
    overflow: hidden;
    max-height: 535px;
    height: auto;
    line-height: 0;
    position: relative;
}

.team_video {
    display: block;
    height: auto;
    max-width: 100%;
    border-radius: 60px;
    width: 100%;
}

.team_watermark {
    position: absolute;
    bottom: 20px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.9;
}

.team_logo {
    width: 30px;
}

.team_content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team_content_top {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.team_content_bottom {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
}

/* Elephant Slider */

.elephant-slide {
    margin: 140px 0;
    width: 100%;
}

.elephant-slide .swiper-wrapper {
    will-change: transform;
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.elephant-slide .swiper-slide {
    opacity: .5;
    width: 26px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elephant-slide .swiper-slide img {
    display: block;
    width: 26px;
    height: 39px;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

/* FAQ */

#faq {
    margin-bottom: 140px;
    padding: 0 100px;
}

#faq_inner {
    max-width: 100%;
}

.faq_title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 72px;
    line-height: 1.1em;
    margin-bottom: 40px;
    text-align: center;
}

.faq_wrapper {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.faq_entry,
#rank-math-faq .rank-math-list-item {
    background-color: #10335F;
    border-radius: 24px;
    border: none !important;
}

.faq_question,
.rank-math-question {
    padding: 24px 32px;
    gap: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq_question .content {
    font-size: 22px;
    line-height: 1.4em;
    font-weight: 700;
    color: #FFFFFF;
}

.faq_entry .icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    user-select: none;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    transform-origin: center center;
}

.faq_answer,
.rank-math-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.faq_entry.active .faq_answer,
.rank-math-list-item.active .rank-math-answer {
    padding: 12px 32px 24px;
}

.faq_entry.active .icon,
.rank-math-list-item.active .icon {
    transform: rotate(180deg);
    position: relative;
}

.faq_answer_inner {
    color: #B9C0D4;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4em;
}

.arrow_reveal {
    border: solid var(--say9-text-blue);
    opacity: 1;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    pointer-events: none;
    transform: rotate(45deg);
    transition: border-color 0.3s ease-in-out;
}

/* Result */

#result {
    padding: 0 100px;
}

#result_inner {
    padding: 0 100px;
    background-color: #077DFD;
    border-radius: 60px 60px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    background-image: url("../assets/images/result_bg.svg");
    background-size: 910px 579px;
    background-position: center right;
}

.result_content {
    max-width: 682px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

.result_title {
    color: #FFFFFF;
    font-size: 82px;
    font-weight: 700;
    line-height: 1.1em;
}

.result_desc {
    color: #DCDFEA;
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 400;
    margin-bottom: 60px;
}

.result_btn_wrapper {
    height: 52px;
}

.result_btn {
    background-color: var(--say9-primary-blue);
    border-radius: 200px;
    padding: 10px 10px 10px 20px;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.result_btn:hover {
    background-color: #10335F;
}

.result_btn:active {
    padding: 8px 8px 8px 18px;
}

.result_btn span {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    padding-top: 4px;
}

.result_btn img {
    width: 32px;
    height: 32px;
}

.result_img {
    max-width: 480px;
    width: 100%;
    margin-right: 130px;
    display: flex;
}

.to_pricing {
    cursor: pointer;
}

/* ========== Footer ========== */

footer {
    background-color: #FFFFFF !important;
    border-radius: 60px 60px 0 0;
    border: none !important;
    padding: 120px 100px 0;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

#footer-inner {
    max-width: 1640px;
    width: 100%;
    margin: auto;
}

#footer-inner-container {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    max-width: 1020px;
    width: 100%;
    flex: 1 1 auto;
}

#footer-left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
    flex: 0 0 auto;
}

#footer-logo {
    width: 204px;
    height: 58px;
    margin-bottom: 24px;
}

#footer-txt {
    color: #646E8C;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
    text-align: center;
}

#footer-address {
    text-align: center;
    margin-bottom: 24px;
}

#footer-address a {
    color: #646E8C;
    font-size: 16px;
    line-height: 1em;
}

#social-icons {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

#social-icons a {
    display: flex;
}

#social-icons a rect {
    stroke: var(--say9-secondary-blue);
    transition: stroke 0.3s ease-in-out, fill 0.3s ease-in-out;
}

#social-icons a path {
    fill: var(--say9-secondary-blue);
    transition: fill 0.3s ease-in-out;
}

#social-icons a:hover path {
    fill: var(--say9-secondary-blue);
}

#social-icons a:hover rect {
    stroke: transparent;
}

#footer-navlist {
    display: flex;
    justify-content: space-between;
    row-gap: 40px;
    column-gap: 20px;
}

#footer-navlist li span {
    display: inline-block;
    color: #7F88A2;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4em;
    margin-bottom: 24px;
}

#footer-navlist li ul.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#footer-navlist li ul.sub-menu a {
    margin-bottom: 0;
    color: var(--say9-primary-blue);
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    transition: color 0.3s ease-out;
}

#footer-navlist li ul.sub-menu .current-menu-item a,
#footer-navlist li ul.sub-menu a:hover {
    color: #63AEFF;
}

.doc_links {
    margin-top: 12px;
}

.doc_links a {
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}

#footer_totop {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 8px 12px 18px;
    border: 2px solid var(--say9-primary-blue);
    border-radius: 200px;
    cursor: pointer;
    margin-left: auto;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

#footer_totop span {
    color: var(--say9-primary-blue);
    font-size: 22px;
    font-weight: 600;
    padding-top: 4px;
    line-height: 1em;
    transition: color 0.3s ease-in-out;
}

#footer_totop svg {
    width: 32px;
    height: 32px;
}

#footer_totop svg rect {
    transition: fill 0.3s ease-in-out;
}

#footer_totop svg path {
    transition: stroke 0.3s ease-in-out;
}

#footer_totop:hover {
    background-color: var(--say9-primary-blue);
}

#footer_totop:hover span {
    color: #FFFFFF;
}

#footer_totop:hover svg rect {
    fill: #FFFFFF;
}

#footer_totop:hover svg path {
    stroke: var(--say9-primary-blue);
}

#footer-copyright {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    border-top: 1px solid #CED7E2;
}

#footer-info {
    color: #181F35;
    font-size: 13px;
    line-height: 1em;
    font-weight: 500;
}

/* Color Footer */

html.color-footer footer {
    background-color: var(--say9-primary-blue) !important;
}

html.color-footer #footer-txt,
html.color-footer #footer-address a,
html.color-footer #footer-navlist li span,
html.color-footer #footer-navlist li ul.sub-menu a,
html.color-footer #footer_totop span {
    color: #FFFFFF;
}

html.color-footer #social-icons a rect {
    stroke: #FFFFFF;
}

html.color-footer #social-icons a path {
    fill: #FFFFFF;
}

html.color-footer #footer_totop {
    border-color: #FFFFFF;
}

html.color-footer #footer_totop:hover {
    background-color: #FFFFFF;
}

html.color-footer #footer_totop:hover span {
    color: var(--say9-primary-blue);
}

html.color-footer #footer_totop svg path {
    stroke: var(--say9-primary-blue);
}

html.color-footer #footer_totop svg rect {
    fill: #FFFFFF;
}

html.color-footer #footer_totop:hover svg path {
    stroke: #FFFFFF;
}

html.color-footer #footer_totop:hover svg rect {
    fill: var(--say9-primary-blue);
}

html.color-footer #footer-info {
    color: #DCDFEA;
}

html.color-footer #footer-copyright {
    border-color: #DCDFEA;
}

/* Free custom offer popup */

#exit_intent_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10999999999999000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    pointer-events: none;
}

#exit_intent_popup.show_exit_popup {
    pointer-events: all;
}

#exit_intent_popup.show_exit_popup #exit_blur {
    opacity: 1;
}

#exit_intent_popup.show_exit_popup #exit_popup_wrapper {
    transform: translateX(0%);
    opacity: 1;
    max-width: 350px;
    width: 100%;
}

#exit_blur {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    background-color: rgba(217, 217, 217, 0.14);
    z-index: 0;
    opacity: 0;
    cursor: pointer;
    transition: opacity .3s ease;
}

#exit_popup_wrapper {
    z-index: 2;
    background-color: var(--say9-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    transition: opacity .3s ease, transform .4s ease;
    transform: translateY(20%);
    opacity: 0;
    transition: background-color 0.3s ease-in-out;
}

#exit_popup_close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

#exit_popup_close svg path:first-child {
    transition: fill 0.3s ease-in-out;
    fill: transparent;
}

#exit_popup_close svg:hover path:first-child {
    fill: var(--say9-main-blue);
}

/* Custom Offer Form */

#exit_form {
    height: 100%;
    padding: 75px 20px 30px;
    max-width: 350px;
}

.exit_title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Livvic", "Helvetica Neue", Arial, sans-serif;
}

.exit_content {
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: 25px;
}

#exit_form .custom_offer_input {
    margin-bottom: 30px;
}

#exit_form .custom_offer_input label::after,
#exit_form .custom_offer_service label:after {
    display: none;
}

#exit_form .custom_offer_input label {
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 600;
}

#exit_form .custom_offer_service label {
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 600;
}

#exit_form .custom_offer_service label.ff-el-form-check-label {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    user-select: none;
}

#exit_form .custom_offer_service label.ff-el-form-check-label::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 1px solid var(--say9-text-blue);
    border-radius: 50%;
    background-color: transparent;
}

#exit_form .custom_offer_service input:checked+span::before {
    content: "";
    position: absolute;
    left: 3.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--say9-text-blue);
    border-radius: 50%;
}

#exit_form .custom_offer_service label span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
}

#exit_form .custom_offer_service label input {
    display: none;
}

#exit_form .custom_offer_input .ff-el-input--label,
#exit_form .custom_offer_service .ff-el-input--label {
    margin-bottom: 10px;
}

#exit_form .custom_offer_input .ff-el-input--content {
    position: relative;
}

#exit_form .custom_offer_input input {
    border: 1px solid var(--say9-text-blue);
    padding: 12px 12px 12px 32px;
    font-size: 15px;
    line-height: 1em;
    color: var(--say9-text-blue);
    border-radius: 11px;
    background-color: transparent;
    font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
    transition: border-color 0.3s ease-in-out;
}

#exit_form .custom_offer_input input:-webkit-autofill {
    -webkit-text-fill-color: #1B1B1C !important;
    color: #1B1B1C !important;
    background-color: transparent !important;
    background-clip: content-box !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    border: 1px solid #434346 !important;
    appearance: none;
    -webkit-appearance: none;
}

#exit_form .custom_offer_input input::placeholder {
    color: rgba(7, 72, 98, 0.8);
}

#exit_form .custom_offer_input input:focus {
    border: 1px solid var(--say9-text-blue);
}

#exit_form svg {
    width: 18px;
    height: 18px;
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 10px;
    z-index: 1;
    pointer-events: none;
}

#exit_form svg path {
    transition: stroke-opacity 0.3s ease-out;
}

#exit_form svg.active path {
    stroke-opacity: 1;
}

#exit_form .ff_submit_btn_wrapper {
    margin: 0;
}

#exit_form button[type="submit"] {
    width: 100%;
    border-radius: 20px;
    padding: 10px;
    font-size: 16px;
    line-height: 1.2em;
    background-color: var(--say9-main-orange);
    transition: box-shadow 0.3s ease-out;
}

#exit_form button[type="submit"]:hover {
    opacity: 1;
    box-shadow: 0 0 5.2px rgba(255, 138, 59, 0.6);
}

#exit_form button[type="submit"]:focus {
    opacity: 1;
    box-shadow: 0 0 7.5px rgba(255, 138, 59, 0.7);
}

#exit_form .ff-el-is-error input {
    border-color: #EC4747;
    color: #EC4747;
}

#exit_form .ff-el-is-error .text-danger {
    margin: 0;
}

#exit_form .ff-el-is-error label,
#exit_form .ff-el-is-error input::placeholder {
    color: #EC4747 !important;
}

#exit_form .ff-el-is-error svg path {
    stroke: #EC4747 !important;
}

#exit_form.thank_you {
    padding: 150px 20px 20px;
    display: block;
    height: unset;
    max-width: unset;
}

#exit_form .ff-message-success {
    border: none;
    box-shadow: none;
    margin: 0 auto;
    max-width: 480px;
    text-align: center;
    width: 100%;
}

#exit_form .ff-message-success .title.thank_you {
    text-transform: none;
    color: var(--say9-main-blue);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2em;
    margin-bottom: 12px;
    font-family: "Livvic", "Helvetica Neue", Arial, sans-serif;
}

#exit_form .ff-message-success p {
    margin-bottom: 26px;
}

#exit_form .ff-message-success button {
    width: 100%;
    max-width: 264px;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 40px;
    margin: auto;
    padding: 12px 0;
    background-color: var(--say9-main-orange);
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: box-shadow 0.3s ease-out;
}

#exit_form .ff-message-success button:hover {
    box-shadow: 0 0 5.2px #FF8A3B;
}

#exit_form .ff-message-success button:active {
    box-shadow: 0 0 7.5px #FF8A3BB2;
}

#exit_form .ff-message-success .thank_you_bottom {
    margin-top: 100px;
}

#exit_form .ff-message-success .thank_you_bottom span {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 300;
}

#exit_form .ff-message-success .thank_you_links {
    margin-top: 10px;
    display: flex;
    column-gap: 8px;
    align-items: center;
    justify-content: center;
}

.thank_you_icon {
    display: inline-block;
    width: 26px;
    height: 26px;
}

.thank_you_icon img {
    display: none;
}

.hide {
    display: none;
}

/* Forms button loader */

.fluentform button.ff-btn-submit::after {
    display: none !important;
}

.loader-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    justify-content: center;
    max-width: 310px;
}

.lds-ring,
.lds-ring div {
    box-sizing: border-box;
}

.lds-ring {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 3px;
    border: 3px solid rgba(252, 252, 252, 1);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: rgba(252, 252, 252, 1) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#clients_feedback .loader-wrapper {
    max-width: 100%;
}

#clients_feedback .lds-ring {
    width: 40px;
    height: 40px;
    right: unset;
    transform: translate(-50%, -50%);
    left: 50%;
}

#clients_feedback .lds-ring div {
    width: 40px;
    height: 40px;
}

/* Other Global Styles */


[class*=__container] {
    max-width: 1640px;
    margin: 0 auto;
    /* padding: 0 70px; */
}

/* 
@media (max-width: 991.98px) {
    [class*=__container] {
        padding: 0 40px;
    }
}

@media (max-width: 767.98px) {
    [class*=__container] {
        padding: 0 16px;
    }
} */

.paragraph-body-regular {
    color: var(--Gray-700);
    font-family: "League Spartan";
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .paragraph-body-regular {
        font-size: 19px;
        line-height: 1.4;
    }
}

.label {
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 6px 14px 4px 14px;
    border-radius: var(--Extra-large);
    font-size: 18px;
    display: inline-flex;
    font-weight: 700;
    line-height: 1.1;
}

.label.blue-300 {
    color: var(--Main-Blue-900);
    background: var(--Main-Blue-300);
}

.label.blue-800 {
    color: var(--White);
    background: var(--Main-Blue-800);
}

.label.blue-900 {
    color: var(--White);
    background: var(--Main-Blue-900);
}

.label.gray-900 {
    color: var(--White);
    background: var(--Gray-900);
}

.button-wrapper {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.button-wrapper-start {
    justify-content: start;
}

@media (max-width: 767.98px) {
    .button-wrapper {
        height: 40px;
        min-height: 40px;
        width: 100% !important;
        max-width: 340px;
    }
}

@media (max-width: 487.98px) {
    .button-wrapper-start {
        width: 100%;
        justify-content: center;
    }
}

.button {
    transition: all 0.3s ease-in;
    padding: 10px 8px;
    display: inline-flex;
    height: 52px;
    position: relative;
    z-index: 10;
    justify-content: center;
    align-items: center;
    gap: 8px;
    line-height: 1;
    border: 2px solid transparent;
}

.button:disabled {
    opacity: 0.5;
}

.button:active {
    padding: 8px 6px;
    height: 48px;
}

@media (max-width: 767.98px) {
    .button {
        height: 40px;
        padding: 4px;
        width: 100%;
    }

    .button:active {
        padding: 4px 2px !important;
        height: 36px;
        width: calc(100% - 4px) !important;
    }

    .button-active-fixed:active {
        width: 307px;
    }
}

@media (max-width: 487.98px) {
    .button-active-fixed:active {
        width: calc(100% - 4px);
    }
}

.button__text {
    padding: 7px 10px 3px 10px;
    font-size: 22px;
    transition: color 0.3s ease-in;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .button__text {
        font-size: 18px;
    }
}

.button__arrow {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--Extra-large);
}

@media (max-width: 767.98px) {
    .button__arrow {
        display: none;
    }
}

/**********Primary**********/
.button.main-blue-button {
    border-radius: var(--Extra-large);
    border: 2px solid var(--Main-Blue-600);
    background: var(--Main-Blue-600);
}

.button.main-blue-button .button__text {
    color: var(--White);
}

@media (hover: hover) {
    .button.main-blue-button:hover {
        border-color: var(--Main-Blue-500);
        background: var(--Main-Blue-500);
    }
}

.button.sec-blue-button {
    border-radius: var(--Extra-large);
    border: 2px solid var(--Main-Blue-900);
    background: var(--Main-Blue-900);
}

.button.sec-blue-button .button__text {
    color: var(--White);
}

@media (hover: hover) {
    .button.sec-blue-button:hover {
        border-color: var(--Main-Blue-800);
        background: var(--Main-Blue-800);
    }
}

.button.main-white-button {
    border-radius: var(--Extra-large, 200px);
    border: 2px solid var(--White);
    background: var(--White);
}

.button.main-white-button .button__text {
    color: var(--Main-Blue-600);
}

.button.main-white-button .button__arrow {
    background: var(--Main-Blue-600);
}

@media (hover: hover) {
    .button.main-white-button:hover {
        border-color: var(--Main-Blue-800);
        background: var(--Main-Blue-800);
    }

    .button.main-white-button:hover .button__text {
        color: var(--White);
    }
}

/* Gray CTA Button Primary */
.button.main-gray-button {
    border-radius: var(--Extra-large, 200px);
    border: 2px solid var(--Main-Blue-900);
    background: var(--Main-Blue-900);
    transition: all 0.3s ease-in;
}

.button.main-gray-button .button__text {
    color: var(--White);
}

.button.main-gray-button .button__arrow {
    background: var(--White);
    transition: all 0.3s ease-in;
}

.button.main-gray-button .button__arrow svg path {
    transition: all 0.3s ease-in;
}

@media (hover: hover) {
    .button.main-gray-button:hover {
        border-color: var(--Main-Blue-800);
        background: var(--Main-Blue-800);
    }
}

/**********Gray CTA Button Secondary**********/
.button.main-gray-button.secondary {
    border-radius: var(--Extra-large);
    border: 2px solid var(--Main-Blue-900);
    color: var(--Main-Blue-900);
    background-color: transparent;
}

.button.main-gray-button.secondary .button__text {
    color: var(--Main-Blue-900);
}

.button.main-gray-button.secondary .button__arrow {
    background: var(--Main-Blue-900);
}

@media (hover: hover) {
    .button.main-gray-button.secondary:hover {
        border-color: var(--Main-Blue-900);
        background: var(--Main-Blue-900);
    }

    .button.main-gray-button.secondary:hover .button__text {
        color: var(--White);
    }

    .button.main-gray-button.secondary:hover .button__arrow {
        background-color: var(--White);
    }

    .button.main-gray-button.secondary:hover .button__arrow svg path {
        stroke: var(--Main-Blue-900);
    }

}

.button.main-gray-button.secondary-reverse {
    border-radius: var(--Extra-large);
    border: 2px solid var(--White);
    color: var(--Main-Blue-900);
    background-color: transparent;
}

.button.main-gray-button.secondary-reverse .button__text {
    color: var(--White);
}

.button.main-gray-button.secondary-reverse .button__arrow {
    background: var(--White);
}

@media (hover: hover) {
    .button.main-gray-button.secondary-reverse:hover {
        border-color: var(--White);
        background: var(--White);
    }

    .button.main-gray-button.secondary-reverse:hover .button__text {
        color: var(--Main-Blue-900);
    }
}




/********************/

.link-button {
    display: inline-flex;
    height: 40px;
    border-radius: var(--Extra-large);
    background: transparent;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in;
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
}

.link-button span {
    padding: 4px 10px 0px 10px;
}

.link-button:active {
    padding: 4px 8px !important;
}

.link-dark-button {
    color: var(--Main-Blue-900);
}

.link-dark-button .button__arrow {
    border-radius: 200px;
    background: var(--Main-Blue-900);
    display: flex !important;
}

.link-button-wrapper {
    min-height: 40px !important;
    height: 40px !important;
    width: fit-content !important;
}

.remove-hover {
    pointer-events: none !important;
}

/************************/

.slider-button {
    display: flex;
    height: 52px;
    padding: 10px;
    width: 52px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in;
    outline: none !important;
}

.slider-button svg path {
    transition: all 0.3s ease-in;
}

@media (hover: hover) {
    .slider-button:hover {
        border-radius: var(--Extra-large, 200px);
        border: 2px solid var(--White, #FFF);
        background: var(--White, #FFF);
    }

    .slider-button:hover svg path {
        stroke: #077DFD;
    }
}

.slider-button:disabled {
    border-radius: var(--Extra-large, 200px);
    border: 2px solid var(--Gray-300, #DCDFEA);
    background: var(--Gray-300, #DCDFEA);
}

.slider-button:disabled svg path {
    stroke: var(--White);
}

.slider-button:focus {
    border-radius: var(--Extra-large, 200px);
    border: 2px solid var(--Main-Blue-600, #077DFD);
    background: var(--White, #FFF);
}

.slider-button:focus svg path {
    stroke: #077DFD;
}

.slider-button-left {
    border-radius: var(--Extra-large, 200px);
    border: 2px solid var(--Main-Blue-900, #031D3D);
    background: var(--Main-Blue-900, #031D3D);
}

.slider-button-right {
    border-radius: var(--Extra-large, 200px);
    border: 2px solid var(--Main-Blue-600, #077DFD);
    background: var(--Main-Blue-600, #077DFD);
}



.reviews-pagination,
.our-work-pagination {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

@media (max-width: 537.98px) {

    .reviews-pagination,
    .our-work-pagination {
        visibility: visible;
        position: relative !important;
        height: 8px !important;
        overflow: visible;
        display: flex;
        justify-content: center;
    }

}

.reviews__swiper .swiper-pagination-bullet,
.our-work-slider__swiper .swiper-pagination-bullet {
    width: 12px;
    height: 8px;
    scale: 1;
    opacity: 1 !important;
    margin: 0px 2px !important;
    border-radius: 50px;
    background: var(--Main-Blue-800);
}

.reviews__swiper .swiper-pagination-bullet-active,
.our-work-slider__swiper .swiper-pagination-bullet-active {
    background: var(--Main-Blue-600);
}

/*  */

/* Media */

@media screen and (max-width: 1720px) {
    #work_inner {
        gap: 60px;
    }
}

@media screen and (max-width: 1620px) {
    .section_title {
        font-size: 66px;
    }

    .result_img {
        max-width: 350px;
        margin-right: 60px;
    }
}

@media screen and (max-width: 1440px) {
    /* Header */

    header {
        height: 80px;
    }

    #header-navlist {
        gap: 23px;
    }

    #header-navlist li a,
    #header-navlist li span {
        padding: 9px 4px;
    }

    #header-navlist li.custom-offer {
        margin-left: 40px;
    }

    #header-navlist ul.sub-menu {
        margin-left: 0;
    }

    /* Free custom offer popup */

    .exit_title {
        font-size: 26px;
        line-height: 1.2em;
    }

    .exit_content {
        font-size: 15px;
    }

    #exit_form .ff-message-success .title.thank_you {
        font-size: 40px;
    }

    #exit_form .custom_offer_service input:checked+span::before {
        left: 4.5px;
    }

    /* Trusted Partners */

    /* .swiper-trusted-companies .swiper-slide {
        height: 80px;
    } */

    .swiper-trusted-companies.second {
        margin-top: 24px;
    }

    /* Case Study */

    #work_inner {
        flex-direction: column;
    }

    .work_left {
        max-width: 100%;
    }

    .work_title {
        max-width: 650px;
    }

    .work_txt {
        max-width: 550px;
        margin-bottom: 40px;
    }

    /* Team */

    #team {
        padding: 140px 100px 0;
    }

    /* Result */

    #result_inner {
        padding: 0 60px;
    }

    .result_content {
        gap: 20px;
    }

    .result_title {
        font-size: 60px;
    }

    .result_img {
        max-width: 320px;
    }

    /* FAQ */

    #faq {
        margin-bottom: 60px;
    }

    .faq_wrapper {
        row-gap: 20px;
    }

    /* Footer */

    #footer-inner-container {
        column-gap: 100px;
    }

    #footer-logo {
        width: 157px;
        height: 54px;
    }

    #footer-txt {
        font-size: 16px;
    }

    #footer-address a {
        font-size: 15px;
    }

    #footer-navlist li span {
        font-size: 16px;
        margin-bottom: 18px;
    }

    #footer-navlist li ul.sub-menu a {
        font-size: 15px;
    }

    #footer-navlist li ul.sub-menu {
        row-gap: 18px;
    }

    #footer-copyright {
        margin-top: 80px;
    }

    #footer-navlist li span {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 1350px) {
    /* Header */

    header {
        padding: 0 60px;
    }

    #header-navlist {
        gap: 10px;
    }

    #header-navlist li a,
    #header-navlist li span {
        padding: 8px 5px;
    }

    #header-navlist ul.sub-menu {
        margin-left: 10px;
    }

    #header-navlist li.custom-offer {
        margin-left: 24px;
    }

    /* Footer */

    #footer-inner-container {
        column-gap: 40px;
    }
}

@media screen and (max-width: 1280px) {
    .section_title {
        font-size: 60px;
    }
}

@media screen and (max-width: 1200px) {
    /* Header */

    header {
        padding: 0 24px;
    }

    #header-navlist {
        gap: 5px;
    }

    #header-navlist li.custom-offer {
        margin-left: 6px;
    }

    /* Clients Feedback */

    /* #clients_feedback {
        padding: 0 60px 30px;
    } */

    .feedback_icon1 {
        display: none;
    }

    /* Case Study */

    #work {
        padding: 160px 70px 120px;
    }

    /* Team */

    #team {
        padding: 140px 70px 0;
    }

    .team_video,
    .team_video_wrap {
        border-radius: 32px;
    }

    /* FAQ */

    #faq {
        padding: 0 70px;
    }

    /* Result */

    #result {
        padding: 0 70px;
    }

    /* Footer */

    footer {
        padding: 80px 70px 0;
    }

    #footer-inner-container {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 80px;
    }

    #footer-left-column {
        display: grid;
        grid-template-columns: 310px minmax(0, 200px);
        justify-content: space-between;
    }

    #footer-logo {
        grid-row: 1;
        grid-column: 1;
    }

    #footer-txt {
        grid-row: 2;
        grid-column: 1;
        text-align: left;
    }

    #footer-address {
        grid-row: 3;
        grid-column: 1;
        text-align: left;
    }

    #social-icons {
        grid-row: 1;
        grid-column: 2;
    }

    #footer-navlist {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    #footer-navlist>li {
        max-width: 240px;
    }

    #footer-navlist>li:nth-child(2),
    #footer-navlist>li:nth-child(5) {
        margin: 0 auto;
    }

    #footer-navlist>li:nth-child(5) {
        padding-left: 30px;
    }

    #footer-navlist>li:nth-child(3) {
        margin-left: auto;
    }
}

@media screen and (max-width: 1024px) {
    /* Header */

    header {
        padding: 0 20px;
    }

    html:not(.white-header) body.show-menu header.sticky,
    html:not(.white-header) body:has(.show-menu) header.sticky {
        background-color: var(--say9-primary-blue) !important;
        backdrop-filter: blur(0px);
    }

    

    body.show-menu header.sticky,
    body:has(.show-menu) header.sticky {
        backdrop-filter: blur(0px);
    }

    #mobile-menu-switch {
        display: block;
    }

    #header-navigation {
        display: block;
        position: absolute;
        top: 79px;
        left: 0;
        width: 100%;
        padding: 20px 40px;
        height: calc(100vh - 79px);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        background-color: var(--say9-primary-blue) !important;
        transition: opacity 0.3s ease, background-color 0.3s ease-in-out;
    }

    html.white-header #header-navigation {
        background-color: #fff !important
    }

    #header-navigation.show-menu {
        position: fixed;
        opacity: 1;
        pointer-events: auto;
        overscroll-behavior: contain;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #header-navigation .menu__scroll {
        max-height: 100%;
        overflow: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    #header-navlist {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    #header-navlist li {
        width: 100%;
        height: unset;
        align-items: flex-start;
    }

    #header-navlist li.header-hidden {
        display: block;
        opacity: 0;
        visibility: hidden;
    }

    #header-navlist li.dropdown-menu {
        flex-direction: column;
        width: 100%;
        border-bottom: none;
    }

    #header-navlist li.dropdown-menu::after {
        display: none;
    }

    #header-navlist>li>a,
    #header-navlist>li>span {
        padding: 0;
        font-family: "Livvic", "Helvetica Neue", Arial, sans-serif;
        text-align: left;
    }

    #header-navlist ul.sub-menu {
        position: relative;
        top: 0;
        width: 100%;
        background-color: transparent !important;
        box-shadow: none !important;
        border-radius: 0;
        gap: 14px;
        padding: 0 0 0 8px;
        display: flex;
        flex-direction: column;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-out;
    }

    html.white-header #header-navlist ul.sub-menu {
        box-shadow: none !important;
    }

    #header-navigation.show-menu ul.sub-menu {
        pointer-events: auto;
    }

    #header-navlist li.dropdown-menu.active ul.sub-menu {
        padding-bottom: 5px;
    }

    #header-navlist .dropdown-menu ul.sub-menu {
        opacity: 1 !important;
        pointer-events: all !important;
    }

    #header-navlist ul.sub-menu li {
        justify-content: center;
    }

    #header-navlist ul.sub-menu a {
        padding: 8px 16px;
        font-weight: 500;
        transition: color 0.3s ease-in-out;
    }

    #header-navlist li.dropdown-menu a,
    #header-navlist li.dropdown-menu span {
        justify-content: flex-start;
        margin: 0;
        transition: margin-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
    }

    #header-navlist li.dropdown-menu.active span {
        margin-bottom: 20px;
    }

    #header-navlist li.custom-offer {
        margin-left: 0;
        margin-top: 40px;
    }

    #header-navlist li.custom-offer>span {
        max-width: 340px;
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }

    #header-navlist li.custom-offer>span>span:last-child {
        display: none;
    }

    html:not(.white-header) #header-navlist>li:not(.custom-offer):not(.current-menu-ancestor).active>span,
    html:not(.white-header) #header-navlist>li:not(.custom-offer):not(.current-menu-ancestor):hover>span {
        color: rgba(255, 255, 255, 1) !important;
    }

    html:not(.white-header) #header-navlist>li.dropdown-menu.active:not(.current-menu-ancestor)>span .da svg path,
    html:not(.white-header) #header-navlist>li.dropdown-menu:not(.active):not(.current-menu-ancestor):hover>span .da svg path {
        fill: rgba(255, 255, 255, 1) !important;
    }

    #header-navlist>li:not(.custom-offer):not(.current-menu-ancestor).active:hover>span {
        color: #63AEFF !important;
    }

    #header-navlist>li.dropdown-menu.active:hover>span .da svg path {
        fill: #63AEFF !important;
    }

    #header-navlist .dropdown-menu:hover svg {
        transform: rotate(0deg);
    }

    #header-navlist>li:not(.current-menu-ancestor):hover>span .da svg path {
        fill:  var(--say9-primary-blue) !important;
    }

    html.white-header #header-navlist>li:not(.current-menu-ancestor):not(:hover).active>span .da svg path,
    html.white-header #header-navlist>li.dropdown-menu:not(.current-menu-ancestor):not(:hover).active>span .da svg path {
        fill: #63AEFF !important;
    }

    #header-navlist>li:not(.custom-offer):not(.current-menu-ancestor):hover>span,
    #header-navlist>li:hover>a,
    html.white-header #header-navlist li.dropdown-menu ul.sub-menu li:hover a {
        color: var(--say9-primary-blue) !important;
    }

    /* Trusted Partners */

    #trusted_partners {
        margin-bottom: 80px;
    }

    #trusted_partners h2 {
        font-size: 32px;
        line-height: 1.2em;
    }

    .swiper-trusted-partners {
        margin-top: 30px;
    }

    /* Clients Feedback */

    #clients_feedback {
        padding: 180px 0 100px;
        border-radius: 32px;
        margin-top: -80px;
    }

    .feedback_nav_wrapper {
        column-gap: 24px;
    }

    .feedback_icon2 {
        top: unset;
        bottom: 20px;
        left: 50px;
    }

    /* Team */

    #team {
        margin-bottom: 140px;
    }

    .team_video_wrap {
        height: 330px;
    }

    .team_video {
        height: 100%;
        max-width: unset;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Elephant Slider */

    .elephant-slide {
        padding-top: 120px
    }

    /* FAQ */

    #faq {
        padding: 16px;
    }

    #faq_inner {
        border-radius: 0;
    }

    #faq h2.title {
        font-size: 28px;
    }

    /* Result */

    #result_inner {
        padding: 60px 70px 0;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .result_content {
        margin: 0;
    }

    .result_desc {
        margin-bottom: 0;
    }

    .result_btn_wrapper {
        margin-top: 40px;
    }

    .result_img {
        max-width: 400px;
        margin-left: auto;
        margin-top: 0;
    }

    .result_img img {
        max-height: 260px;
    }

    /* Free custom offer popup */

    #exit_form {
        margin: 0 auto;
    }

    /* Footer */

    #footer-inner-container {
        flex-direction: column;
        row-gap: 50px;
    }

    .footer-column {
        max-width: 100%;
    }

    #footer-copyright {
        margin-top: 50px;
    }

    #loom_video {
        max-width: 200px;
    }

    #footer-socials>a {
        font-size: 12px;
        line-height: 1.2em;
        color: rgba(252, 252, 252, 1);
    }

    #footer-left-column {
        row-gap: 16px;
    }

    #footer-logo {
        width: 213px;
        height: 73px;
    }

    #footer-address a {
        font-size: 14px;
    }

    #footer-navlist {
        flex-direction: column;
        row-gap: 36px;
    }

    #footer-navlist li {
        display: block;
    }

    #footer-navlist li ul.sub-menu {
        row-gap: 20px;
    }

    #footer-socials>a {
        font-size: 11px;
    }

    #footer-navlist li span,
    #footer-navlist li ul.sub-menu a {
        font-size: 16px;
    }

    /*  */

    .section_title,
    h2.feedback_title {
        font-size: 48px;
    }
}

@media screen and (max-width: 850px) {
    /* Clients Feedback */

    .feedback_title {
        font-size: 60px;
    }
}

@media screen and (max-width: 768px) {
    /* Header */

    header {
        height: 54px;
        padding: 0 20px;
    }

    #header-navigation {
        padding: 30px 20px;
    }

    #header-navigation {
        padding: 40px;
        top: 53px;
        height: calc(100vh - 53px);
    }

    #header-navlist li a,
    #header-navlist li span {
        font-size: 20px;
        line-height: 22px;
        font-weight: 700;
    }

    #header-navlist li.dropdown-menu a {
        margin-bottom: 20px;
    }

    #header-navlist li.custom-offer>span {
        font-size: 14px;
        line-height: 1.2em;
        margin-bottom: 100px;
    }

    #header-navigation ul.sub-menu {
        row-gap: 14px;
    }

    #header-logo,
    #header-logo svg,
    #header-logo a {
        width: 103px;
        height: 29px;
    }

    /* Trusted Partners */

    #trusted_partners {
        margin-bottom: 60px;
    }

    #trusted_partners h2 {
        padding: 0 16px;
        font-size: 22px;
    }

    .trusted_partners_subtitle {
        font-size: 14px;
    }

    .swiper-trusted-partners,
    .swiper-trusted-partners.second {
        margin-top: 16px;
    }

    .swiper-trusted-partners .swiper-slide {
        height: 60px;
        padding: 0 20px;
    }

    .swiper-trusted-companies.second {
        margin-top: 14px;
    }

    .swiper-trusted-companies .swiper-slide {
        width: 116px;
        height: 36px;
    }

    .swiper-trusted-companies .swiper-slide img {
        height: 100% !important;
    }

    .your_logo {
        max-height: 36px;
        max-width: 116px;
        font-size: 15px;
    }

    /* Clients Feedback */

    #clients_feedback {
        margin-bottom: 40px;
        border-radius: 24px;
        padding: 110px 0 80px;
        margin-top: -40px;
    }

    #feedback_inner {
        padding: 34px 0 42px;
    }

    #feedback_inner>p {
        margin-bottom: 16px;
    }

    h2.feedback_title {
        font-size: 22px;
        line-height: 1.5em;
        margin-bottom: 40px;
    }

    #feedback_container {
        padding: 0;
    }

    #clients_feedback .feedbacks_swiper {
        padding: 0 16px;
    }

    #clients_feedback .feedback_swiper {
        padding-right: 0;
    }

    #feedback_slides {
        transform: translate3d(0, 0, 0);
    }

    .feedback {
        padding: 14px 6px;
        row-gap: 18px;
        border-radius: 16px;
    }

    #feedback_container .feedback {
        padding: 24px 16px;
    }

    .feedback_head {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .feedback_info {
        width: 100%;
        order: 3;
    }

    .feedback_name {
        font-size: 14px;
    }

    .feedback_position {
        font-size: 18px;
    }

    .feedback_image {
        width: 52px;
        height: 52px;
    }

    .feedback_content {
        padding: 0;
        row-gap: 8px;
    }

    .feedback_content p {
        font-size: 18px;
        line-height: 1.4em;
    }

    .video_play img {
        width: 60px;
        height: 60px;
    }

    .feedback_btn_wrapper {
        height: calc(100% - 70px);
    }

    .feedback_nav_wrapper {
        display: none;
    }

    .feedback_pagination {
        bottom: 10px !important;
    }

    .feedback_pagination .swiper-pagination-bullet {
        background-color: #10335F;
        width: 12px;
        height: 8px;
        border-radius: 50px;
        opacity: 1;
    }

    .feedback_pagination .swiper-pagination-bullet-active {
        background-color: var(--say9-secondary-blue);
        width: 14px;
    }

    .feedback_icon2 {
        display: none;
    }


    /* Case Study */

    #work {
        padding: 70px 16px;
    }

    .work_title {
        font-size: 60px;
    }

    .case_study {
        padding: 18px;
    }

    .case_study_top {
        padding: 0;
    }

    .work_btn_wrapper {
        height: 40px;
    }

    .work_btn {
        padding: 4px 4px 4px 14px;
    }

    .work_btn:active {
        padding: 2px 2px 2px 12px;
    }

    /* Team */

    #team {
        margin-bottom: 100px;
        padding: 100px 16px 0;
    }

    .team_title {
        font-size: 28px;
    }

    .team_video_wrap {
        height: 350px;
    }

    .team_video,
    .team_video_wrap {
        border-radius: 24px;
    }

    .team_stats {
        gap: 40px;
    }

    /* FAQ */

    #faq {
        padding: 0 16px;
        margin-bottom: 100px;
    }

    #faq h2.title {
        font-size: 20px;
        line-height: 1.5em;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .faq_wrapper {
        row-gap: 10px;
    }

    .faq_entry {
        border-radius: 12px;
    }

    .faq_entry .icon {
        transform: scale(1);
    }

    .faq_entry.active .icon {
        transform: rotate(180deg) scale(1);
    }

    .rank-math-list-item .icon {
        transform: scale(0.6);
    }

    .rank-math-list-item.active .icon {
        transform: rotate(180deg) scale(0.6);
    }

    .faq_question {
        padding: 12px 14px;
        align-items: center;
    }

    .faq_entry.active .faq_question {
        border-radius: 8px 8px 0 0;
    }

    .faq_question .content {
        font-size: 19px;
        line-height: 1.4em;
    }

    .faq_entry .faq_answer {
        padding: 0 14px;
    }

    .faq_entry.active .faq_answer {
        padding: 8px 14px 12px;
    }

    .faq_answer .faq_answer_inner {
        font-size: 16px;
        line-height: 1.4em;
    }

    .rank-math-list-item .rank-math-answer {
        padding: 0 10px;
        font-size: 14px;
        line-height: 17px;
    }

    #faq .rank-math-answer p {
        font-size: 16px;
        line-height: 1.4em;
    }

    /* Result */

    #result {
        padding: 0;
        margin-bottom: -60px;
    }

    #result_inner {
        border-radius: 24px 24px 0 0;
        padding: 40px 32px 60px;
        gap: 50px;
    }

    .result_content {
        gap: 10px;
    }

    .result_title {
        font-size: 48px;
    }

    .result_img {
        max-width: 310px;
    }

    .result_btn_wrapper {
        height: 40px;
        margin-top: 14px;
        display: flex;
        justify-content: center;
    }

    .result_btn {
        max-width: 310px;
        width: 100%;
        justify-content: center;
        padding: 13px 14px 9px;
        height: fit-content;
    }

    .result_btn:hover {
        background-color: var(--say9-primary-blue);
    }

    .result_btn:active {
        padding: 11px 14px 7px;
        background-color: #10335F;
    }

    .result_btn span {
        font-size: 18px;
        padding-top: 0;
    }

    .result_btn img {
        display: none;
    }

    /* Footer */

    footer {
        padding: 60px 20px 0;
        border-radius: 32px 32px 0 0;
    }

    #footer-inner-container {
        gap: 40px;
        margin-bottom: 32px;
    }

    #footer-left-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 12px;
    }

    #footer-logo,
    #footer-address {
        margin-bottom: 18px;
    }

    #footer-logo {
        width: 168px;
        height: 48px;
    }

    #footer-address a {
        font-size: 14px;
    }

    #footer-navlist {
        flex-direction: column;
        row-gap: 36px;
        display: flex;
        align-items: center;
    }

    #footer-navlist>li {
        margin: 0 !important;
        padding-left: 0 !important;
    }

    #footer-navlist li {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #footer-navlist li ul.sub-menu {
        row-gap: 20px;
    }

    #footer-socials>a {
        font-size: 11px;
    }

    #footer_totop {
        margin: 0 auto;
        padding: 4px 4px 4px 14px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    #footer_totop:hover,
    html.color-footer #footer_totop:hover {
        background-color: transparent;
    }

    #footer_totop:active {
        background-color: var(--say9-primary-blue);
    }

    html.color-footer #footer_totop:active {
        background-color: #FFFFFF;
    }

    #footer_totop:hover span {
        color: var(--say9-primary-blue);
    }

    html.color-footer #footer_totop:hover span {
        color: #FFFFFF;
    }

    #footer_totop:active span {
        color: #FFFFFF;
    }

    html.color-footer #footer_totop:active span {
        color: var(--say9-primary-blue);
    }

    #footer_totop:hover svg rect {
        fill: var(--say9-primary-blue);
    }

    html.color-footer #footer_totop:hover svg rect {
        fill: #FFFFFF;
    }

    #footer_totop:active svg rect {
        fill: #FFFFFF;
    }

    html.color-footer #footer_totop:active svg rect {
        fill: var(--say9-primary-blue);
    }

    #footer_totop:hover svg path {
        stroke: #FFFFFF;
    }

    html.color-footer #footer_totop:hover svg path {
        stroke: var(--say9-primary-blue);
    }

    #footer_totop:active svg path {
        stroke: var(--say9-primary-blue);
    }

    html.color-footer #footer_totop:active svg path {
        stroke: #FFFFFF;
    }

    #footer-copyright {
        margin-top: 50px;
    }

    /* Free custom offer popup */

    #exit_intent_popup {
        padding: 16px;
    }

    #exit_popup_wrapper {
        flex-direction: column-reverse;
        height: unset;
        max-height: unset;
        max-width: 500px;
    }

    #exit_popup_close svg {
        height: 28px;
        height: 28px;
    }

    #exit_form {
        padding: 60px 20px 30px;
    }

    #exit_form .custom_offer_input {
        margin-bottom: 15px;
    }

    #exit_form.thank_you {
        padding: 170px 20px 30px;
    }

    #exit_form button[type="submit"] {
        max-width: 320px;
    }

    #exit_form .ff-el-form-check div {
        font-size: 10px;
    }

    #exit_form .ff-message-success .title.thank_you {
        font-size: 26px;
        line-height: 1.2em;
    }

    #exit_form .ff-message-success p {
        margin-bottom: 200px;
        font-size: 14px;
        line-height: 1.2em;
    }

    #exit_form .ff-message-success button {
        max-width: 320px;
    }

    #exit_form .ff-message-success .thank_you_bottom {
        margin-top: 20px;
        font-size: 14px;
    }

    /*  */

    .section_title,
    h2.feedback_title {
        font-size: 40px;
    }
}

@media screen and (max-width: 600px) {
    /* Clients Feedback */

    h2.feedback_title {
        line-height: 1.2em;
    }

    /* Case Study */

    #work_inner {
        gap: 40px;
    }

    .work_title {
        font-size: 48px;
    }

    #work_slider {
        padding-bottom: 42px;
    }

    /* Team */

    .team_stats {
        flex-direction: column;
    }

    .team_video,
    .team_video_wrap {
        border-radius: 12px;
    }

    .team_video_wrap {
        height: 270px;
    }

    .team_watermark {
        bottom: 8px;
        left: 7px;
    }

    .team_content {
        gap: 2px;
    }

    .team_content_top {
        font-size: 8px;
        line-height: 1.2em;
    }

    .team_content_bottom {
        font-size: 10px;
        line-height: 1.2em;
    }

    .team_logo {
        width: 18px;
    }

    /* Free custom offer popup */

    #exit_popup_wrapper {
        max-width: 360px;
    }

    /*  */

    .section_title,
    h2.feedback_title {
        font-size: 34px;
    }
}

@media screen and (max-width: 460px) {
    /* Header */

    #header-navlist li.custom-offer {
        width: 100%;
    }

    #header-navlist li.custom-offer>span {
        width: 100%;
        text-align: center;
    }

    /* Case Study */

    .work_title {
        font-size: 34px;
    }

    .case_study {
        border-radius: 12px;
        padding: 18px 14px;
    }

    .case_study_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .viewport {
        max-height: 290px;
        border-radius: 12px;
        padding: 16px 4px;
    }

    .viewport_top {
        max-height: 232px;
    }

    .viewport_lines {
        max-height: 232px;
    }

    .viewport_inner {
        height: 250px;
    }

    .viewport_bottom_item {
        font-size: 11px;
    }

    .chart_tooltip {
        border-radius: 9px;
        padding: 7px;
    }

    .chart_title {
        margin-bottom: 7px;
        font-size: 12px;
    }

    .chart_label.domain {
        margin-bottom: 5px;
    }

    .chart_label {
        gap: 5px;
    }

    .chart_label_left {
        gap: 3.5px;
    }

    .chart_circle {
        width: 7px;
        height: 7px;
    }

    .chart_label_txt,
    .chart_label_right {
        font-size: 12px;
    }

    .case_study_title {
        font-size: 20px;
        max-height: 40px;
    }

    .case_study_btn span {
        font-size: 18px;
    }

    /* Result */

    .result_btn {
        max-width: 100%;
    }
}

@media screen and (max-width: 390px) {
    /* Free custom offer popup */

    #exit_form {
        padding: 40px 15px 20px;
    }

    .exit_content {
        font-size: 14px;
        margin-bottom: 15px;
    }

    #exit_popup_close {
        top: 15px;
        right: 15px;
    }

    #exit_form .custom_offer_input.ff-el-is-error {
        margin-bottom: 5px;
    }
}


/* Buttons */

.icon_btn_wrapper,
.book_a_call_wrapper {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.icon_btn {
    display: flex;
    align-items: center;
    border-radius: 200px;
    padding: 10px 10px 10px 20px;
    height: 52px;
    gap: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out, height 0.3s ease-in-out;
}

.icon_btn:active {
    padding: 8px 8px 8px 18px;
    height: 48px;
}

.icon_btn span {
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    padding-top: 4px;
}

.icon_btn img {
    width: 32px;
    height: 32px;
}

.blue_btn {
    background-color: var(--Main-Blue-600);
}

.blue_btn:hover {
    background-color: var(--Main-Blue-500);
}

.blue_btn span {
    color: #FFFFFF;
}

.book_a_call {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    padding: 11px 20px;
    display: flex;
    height: 52px;
    border-radius: 200px;
    transition: background-color 0.2s ease-in-out, padding 0.2s ease-in-out, height 0.2s ease-in-out;
}

html.os-ios .book_a_call {
    transition: none;
}

.book_a_call:hover {
    background-color: #FFFFFF;
}

.book_a_call span {
    font-size: 22px;
    line-height: 1em;
    font-weight: 600;
    padding-top: 4px;
    color: #FFFFFF;
    transition: color 0.3s ease-in-out;
}

.book_a_call:hover span {
    color: #031D3D;
}

.book_a_call:not(.noactive):active {
    padding: 9px 8px;
    height: 48px;
}

@media screen and (max-width: 1024px) {

    .icon_btn_wrapper,
    .book_a_call_wrapper {
        height: 44px;
        min-height: 44px;
    }

    .icon_btn {
        padding: 6px 6px 6px 16px;
        height: 44px;
    }

    .icon_btn:active {
        padding: 4px 4px 4px 14px;
        height: 40px;
    }

    .book_a_call {
        padding: 7px 16px;
        height: 44px;
    }

    .book_a_call:not(.noactive):active {
        padding: 5px 14px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {

    .icon_btn_wrapper,
    .book_a_call_wrapper {
        height: 40px;
        min-height: 40px;
    }

    .icon_btn img {
        display: none;
    }

    .icon_btn,
    .book_a_call {
        height: 40px;
        max-width: 303px;
        width: 100%;
        padding: 9px 20px;
        justify-content: center;
        height: 40px;
    }

    .book_a_call {
        padding: 7px 20px;
    }

    .icon_btn:active,
    .book_a_call:not(.noactive):active {
        padding: 7px 20px;
        height: 36px;
    }

    .book_a_call:not(.noactive):active {
        padding: 5px 20px;
    }

    .icon_btn span,
    .book_a_call span {
        font-size: 18px;
    }
}

/*****************************/
.watch {
    margin-bottom: 140px;
}

@media (max-width: 1280.98px) {
    .watch {
        margin-bottom: 120px;
    }
}

@media (max-width: 767.98px) {
    .watch {
        margin-bottom: 70px;
    }
}

@media (max-width: 767.98px) {
    .watch__container {
        padding: 0px !important;
    }
}

.watch__content {
    max-width: 1362px;
    margin: 0px auto;
    display: flex;
    padding: 60px;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    border-radius: var(--Large);
    background: var(--Other-Green-1-400);
    position: relative;
}

.watch__content-glass {
    position: absolute;
    bottom: -152px;
    left: 68px;
    transform: rotate(1.522deg);
}

.watch__content-glass img {
    width: 244px;
    height: 265px;
}

.watch__content-glass_blur {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 78px;
    left: 64px;
    border-radius: 200px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 1280.98px) {
    .watch__content-glass {
        bottom: -82px;
    }
}

@media (max-width: 767.98px) {
    .watch__content-glass {
        left: 26.001px;
        bottom: -65.133px;
    }

    .watch__content-glass img {
        width: 100.189px;
        height: 108.51px;
    }

    .watch__content-glass_blur {
        width: 29px;
        height: 29px;
        top: 32px;
        left: 26px;
    }
}

.watch__content::before {
    right: 108px;
    display: flex;
    width: 130.125px;
    height: 111.707px;
    top: -43px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: contain;
    flex-shrink: 0;
    content: "";
    background-image: url("../assets/images/ai-seo-services/decor-4.png");
    position: absolute;
}

@media (max-width: 1280.98px) {
    .watch__content::before {
        right: 40px;
        top: -37px;
    }
}

@media (max-width: 767.98px) {
    .watch__content::before {
        right: 25.333px;
        width: 68.668px;
        height: 58.948px;
        top: -21px;
    }
}

@media (max-width: 767.98px) {
    .watch__content {
        padding: 60px 20px;
        border-radius: var(--Middle);
    }
}

.watch__title {
    color: var(--Gray-900);
    text-align: center;
    /* Headings/H4 */
    margin: 0px auto;
    max-width: 788px;
    font-size: 60px;
    font-weight: 700;
    line-height: 116%;
    /* 69.6px */
}

@media (max-width: 767.98px) {
    .watch__title {
        color: var(--Gray-900);
        text-align: center;
        font-size: 30px;
        font-weight: 700;
        line-height: 128%;
        /* 38.4px */
    }
}

.watch-modal {
    max-width: 927px;
    height: -moz-fit-content;
    height: fit-content;
    overflow: hidden;
    max-height: 543px;
    padding: 43px 59px 42.075px 59px;
    border-radius: var(--Large);
    background: #FFF;
    position: relative;
}

@media (max-width: 1280.98px) {
    .watch-modal {
        border-radius: var(--Middle);
    }
}

@media (min-width: 991.98px) {
    .watch-modal {
        margin: auto;
    }
}

@media (max-width: 991.98px) {
    .watch-modal {
        margin: auto 16px;
        width: calc(100% - 32px);
    }
}

@media (max-width: 767.98px) {
    .watch-modal {
        padding: 48px 16px 24px 16px;
    }
}

.watch-modal__close {
    background-color: transparent !important;
    position: absolute;
    right: 24px;
    top: 24px;
}

@media (max-width: 767.98px) {
    .watch-modal__close {
        top: 8px;
        right: 8px;
    }
}

@media (min-width: 991.98px) {
    .watch-modal__content {
        width: 809px;
        height: 459px;
    }
}

@media (max-width: 991.98px) {
    .watch-modal__content {
        width: 100%;
    }
}

.watch-modal__content:hover {
    cursor: pointer;
}

.watch-modal__preview {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--Large) !important;
    height: 100%;
    max-width: 100%;
    aspect-ratio: 809/459;
}