* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
    cursor: none;
}

*::-webkit-scrollbar {
    width: 12px;
    border-radius: 10px;
    background-clip: padding-box;
}

*::-webkit-scrollbar-track {
    background: #122651;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)), #27BACF;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 6px #27BACF;
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)), #27BACF;
    cursor: pointer;
    box-shadow: inset 0 0 0 6px #27BACF;
}

/* .row{
    --bs-gutter-x: 0rem !important;
} */

:root {
    --bg-main: #122651;
    --color-main: #27BACF;
    --radius-main: 12px;
    --radius-main2: 8px;
    --padding-main: 12px;
    --neutral--800: #17181b;
    --neutral--700: #464950;
    --primary--500: #d3f463;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--color-main);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.swiper-drag-cursor {
    position: fixed;
    width: 90px;
    height: 90px;
    background-image: url('../assets/drag.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.1s ease;
}

.swiper-drag-cursor.active {
    opacity: 1;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu.active+.mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: #fff;
    box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    z-index: 1100;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
    display: none;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu:not(.active) {
    opacity: 0;
    transform: translateY(100%);
}

.mobile-menu-close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.menu-section h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: start;
    color: #888;
    padding: 10px 0 0 18px;
    width: 100%;
}

.menu-section h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: start;
    color: #888;
    padding: 0px 0 0 18px;
    width: 100%;
}


.mobile-menu-close button {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.menu-section {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.menu-section.active {
    display: flex;
}

.mobile-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    text-decoration: none;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.mobile-menu .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.mobile-menu .open-submenu::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 60%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: url('data:image/svg+xml,%3Csvg id="Arrow - Right 2" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"%3E%3Ctitle%3EIconly/Two-tone/Arrow - Right 2%3C/title%3E%3Cg id="Iconly/Two-tone/Arrow---Right-2" stroke="none" stroke-width="1.5" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"%3E%3Cg id="Arrow---Right-2" transform="translate(12.000000, 12.000000) rotate(-90.000000) translate(-12.000000, -12.000000) translate(5.000000, 8.500000)" stroke="%23565656" stroke-width="1.5"%3E%3Cpolyline id="Stroke-1" points="14 0 7 7 0 0"%3E%3C/polyline%3E%3C/g%3E%3C/g%3E%3C/svg%3E') no-repeat;
    background-size: contain;
}

.mobile-menu .open-submenu:hover::after {
    transform: translateY(-50%) translateX(4px);
    opacity: 0.8;
}

.mobile-menu .back-to-main::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-65%);
    background: url('data:image/svg+xml,%3Csvg id="Arrow - Left 2" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"%3E%3Ctitle%3EIconly/Light/Arrow - Left 2%3C/title%3E%3Cg id="Iconly/Light/Arrow---Left-2" stroke="none" stroke-width="1.6" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"%3E%3Cg id="Arrow---Left-2" transform="translate(12.000000, 12.000000) rotate(-270.000000) translate(-12.000000, -12.000000) translate(5.000000, 8.500000)" stroke="%23555" stroke-width="1.6"%3E%3Cpolyline id="Stroke-1" points="14 0 7 7 0 0"%3E%3C/polyline%3E%3C/g%3E%3C/g%3E%3C/svg%3E') no-repeat;
    background-size: contain;
}

.mobile-menu .back-to-main:hover::before {
    transform: translateY(-50%) translateX(-4px);
    opacity: 0.8;
}

.header-section-main {
    padding: var(--padding-main);
    background: #efefef;
}

.navbar-toggler {
    background: var(--color-main);
    height: 36px;
    width: 36px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

.header-section-inner {
    position: relative;
    padding: 0 1.5rem;
    width: 100%;
    overflow: hidden;
    background: var(--bg-main);
    border-radius: var(--radius-main);
}

.main-navbar {
    z-index: 1000;
    width: 100%;
    margin-top: 1.5rem;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    inset: 0% 0% auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #efefef;
}

.logo_brand .logo_img {
    height: 35px;
}

.nav_list {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.nav_list li a {
    padding: 15px;
    text-decoration: none;
    color: #606060;
    transition: all 0.3s ease-in-out;
}

.nav_list li a.active {
    color: black;
}

.nav_list li a:hover {
    color: black;
}

.nav_action {
    display: flex;
    gap: 16px;
}

.action_btn {
    font-size: 16px;
    padding: 10px 22px;
    border-radius: var(--radius-main2);
    overflow: hidden;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.action_btn.large {
    font-size: 20px;
    padding: 20px 30px;
}

.action_btn.primary {
    border: 1px solid var(--bg-main);
    background: #f2f2f2;
}

.action_btn.secondary {
    background: var(--color-main);
}

.action_btn.secondary a {
    color: var(--bg-main);
}

.btn_text {
    position: relative;
    height: 24px;
    overflow: hidden;
    display: block;
}

.text_row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.text_row.clone {
    position: absolute;
    left: 0;
    top: 100%;
}

.text_row .label {
    display: inline-block;
    transition: transform 0.45s ease;
}

.text_row .icon {
    display: inline-block;
    transition: transform 0.45s ease;
    transform: rotate(-45deg);
    transition-delay: 0.08s;
}

.action_btn:hover .label {
    transform: translateY(-100%);
}

.action_btn:hover .icon {
    transform: translateY(-100%) rotate(-45deg);
}

.hero-wrapper {
    padding-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.btn_based_in {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    color: #fff;
    width: max-content;
    border-radius: 30px;
    padding: 10px;
    gap: 10px;
    border: 1px solid var(--neutral--700);
    line-height: 0;
}

.svg_btn_based_in {
    width: 20px;
    height: 20px;
}

.heading_main_content_wrapper {
    padding-top: 2rem;
}

.heading_main_content_wrapper h1 {
    position: relative;
    z-index: 10;
    color: #fff;
    font-size: 6rem;
    font-weight: 500;
    line-height: 1.1;
}

.scroll_viewport {
    height: 150px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.scroll_track {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scroll_item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.scroll_item svg {
    width: 40px;
    height: 40px;
}


.footer_area_scroll_wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.detail_footer_area_scroll_wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.right_footer_area_scroll_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2rem;
}

.box_detail_footer_area_scroll_wrapper {
    max-width: 8.5rem;
}

.box_detail_footer_area_scroll_wrapper .plus {
    color: var(--color-main);
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.box_detail_footer_area_scroll_wrapper .couting {
    color: #fff;
    font-size: 3rem;
    line-height: 1;
}



.box_detail_footer_area_scroll_wrapper .description {
    color: #afafaf;
    font-size: 16px;
    text-align: right;

}

.square_grid_container {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.square_grid_color_overlay {
    z-index: 2;
    background-image: linear-gradient(0deg, #17181b00, #17181bd6), linear-gradient(90deg, var(--neutral--800), #10101200 50%, var(--neutral--800));
    position: absolute;
    inset: 0%;
}

.grid_wrapper {
    z-index: 1;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: center;
    place-items: center;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    display: inline-grid;
    position: absolute;
    inset: 0%;
}

.grid_square {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border: .5px solid #f3f3f323;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 6vw;
    min-width: 100%;
    height: 6vw;
}

.grid_square.glow_line_wrapper {
    position: relative;
}


.vertical_glowing_line_13_delay {
    z-index: 8;
    width: 4px;
    height: 20vh;
    position: absolute;
    inset: 100% auto 0% -1.5px;
}

.noise_effect {
    z-index: 4;
    background-image: url(../assets/background-noise.png);
    background-position: 0 0;
    background-repeat: repeat;
    background-size: 200px;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.wraping_section {
    padding-top: 1rem;
    overflow: hidden;
}

.wraping_section.auto_logo_scroll .wraping_track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: logoScrollLeft 40s linear infinite;
}

@keyframes logoScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.wraping_section.auto_logo_scroll .box_wraping {
    border: 1px solid var(--neutral--700);
    border-radius: 100vw;
    height: 8rem;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.wraping_section.auto_logo_scroll .box_wraping img {
    width: 9rem;
    height: auto;
}


.wraping_section.auto_logo_scroll:hover .wraping_track {
    animation-play-state: paused;
}

.client_reivew_section {
    padding: var(--padding-main);
    background: #efefef;
}

.inner_section_client_review_section {
    background-color: #f7f7f8;
    border-radius: var(--radius-main);
    position: relative;
}

.special_section_padding {
    text-align: center;
    padding: 13.8rem 0 3rem;
    position: relative;
    z-index: 10;
}

.special_section_padding div {
    font-size: 1rem;
    color: var(--color-main);
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: .5rem;

}

.special_section_padding h2 {
    font-size: 4.3rem;
    color: var(--neutral--800);
}

.background_pattern_on_white {
    background-image: url(../assets/background_pattern.svg);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: auto;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.client_image_headshot {
    z-index: 2;
    position: absolute;
    inset: 0% auto auto 0%;
}


.client_image_headshot.is_first {
    width: 11rem;
    top: 10vw;
    left: 14vw;
}

.client_image_headshot.is_second {
    width: 9rem;
    inset: 8vw 23vw auto auto;
}

.client_image_headshot.is_third {
    width: 8rem;
    inset: 14vw 5vw auto auto;
}

.reviews_section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}

.reviews_row {
    width: 100%;
    overflow: hidden;
}

.reviews_wrapper {
    display: flex;
    gap: 20px;
    width: max-content;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.reviews_row:hover .reviews_wrapper {
    animation-play-state: paused;
}

.row_left .reviews_wrapper {
    animation-name: scroll_left;
}

.row_right .reviews_wrapper {
    animation-name: scroll_right;
}

.review_box {
    background: #fff;
    border-radius: var(--radius-main2);
    padding: 1.25rem;

    height: 14rem;
    min-width: 260px;
    max-width: 500px;

    display: flex;
    flex-direction: column;
}

.header_review_box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.client_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.rightside_header_review_box {
    display: flex;
    flex-direction: column;
}

.review_name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #000;
}

.review_name img {
    width: 18px;
}

.review_position,
.review_company {
    font-size: 0.9rem;
    color: var(--neutral--700);
}

.review_description {
    font-size: 0.95rem;
    color: var(--neutral--700);
    line-height: 1.5;
}

@keyframes scroll_left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll_right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.swiper-slide {
    width: auto !important;
    display: flex !important;
    transition: transform 1s cubic-bezier(.25,.8,.25,1);
}

.swiper.is-dragging .swiper-slide {
    transform: scale(0.85);
}

.swiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 0 0;
}


.scroleable_port_section {
    gap: 20px;
    position: relative;
    user-select: none;
}

.scroleable_port_section::-webkit-scrollbar {
    display: none;
}

.drag_image {
    position: absolute;
    pointer-events: none;
    /* so it doesn't block drag */
    width: 60px;
    height: 60px;
    z-index: 100;
    transform: translate(-50%, -50%);
    display: none;
    transition: transform 0.1s ease;
}

.box_scroleable_port_section {
    position: relative;
    min-width: 33.33%;
    height: 31rem;
    border-radius: var(--radius-main2);
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case_study_outline {
    z-index: 1;
    outline-color: var(--color-main);
    outline-offset: -5px;
    border-radius: var(--radius-main2);
    outline-width: 5px;
    outline-style: solid;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.case_study_outline:hover{
    opacity: 1;
}



.box_scroleable_port_section.mad_section {
    background-position: 0% 50%;
    background-size: cover;
    background-image: url('../assets/port_4.avif');
}

.box_scroleable_port_section.luck_section {
    background-position: 0% 50%;
    background-size: cover;
    background-image: url('../assets/port_5.avif');
    color: white;
}

.box_scroleable_port_section.iterum_section {
    background-position: 0% 50%;
    background-size: cover;
    background-image: url('../assets/port_3.jpg');
    color: white;
}

.box_scroleable_port_section.verated_section {
    background-position: 0% 50%;
    background-size: cover;
    background-image: url('../assets/port_2.jpg');
}

.box_scroleable_port_section.upwardli_section {
    background-position: 0% 50%;
    background-size: cover;
    background-image: url('../assets/port_1.jpg');
}

.box_scroleable_port_section.west_section {
    background-position: 0% 50%;
    background-size: cover;
    background-image: url('../assets/port_6.avif');
    color: white;
}


.logo_box_scroleable_port_section img {
    height: 2rem;
}

.companyname_footer_box_scroleable_port_section {
    font-size: 30px;
}

.companydesc_footer_box_scroleable_port_section {
    font-size: 18px;
    margin: .5rem 0 1rem 0;
}

.button_footer_box_scroleable_port_section .action_btn.large {
    font-size: 16px;
    padding: 12px 18px;
}

.portfolio_btn .action_btn {
    font-size: 18px;
    padding: 15px 20px;
    position: relative;
    z-index: 10;
}

.what_we_do_section {
    background-color: #efefef;
    padding: var(--padding-main);
}

.inner_section_what_we_do_section {
    padding-top: 8rem;
    width: 100%;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.leftside_what_we_do_section {
    position: relative;
    z-index: 10;
    border-radius: .75rem;
    padding: 2.5rem 4rem;
    position: relative;
    background: var(--bg-main);
    color: #fff;
}

.question_leftside_what_we_do_section {
    color: #56616a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    text-transform: uppercase;

}

.answer_leftside_what_we_do_section {
    position: relative;
    z-index: 10;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1;
}

.answer_leftside_what_we_do_section span {
    color: var(--color-main);
}

.scroling_section_leftside_what_we_do_section {
    position: relative;
    z-index: 10;
    margin-top: 2rem;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.box_scroling_section_leftside_what_we_do_section {
    z-index: 10;
    border: 2px solid #fff;
    position: relative;
    border-radius: 100vw;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: .5rem;
    padding: 1.5rem 2rem;
    display: flex;
    color: white;
    gap: 10px;
}

.dot_box_scroling_section_leftside_what_we_do_section {
    width: 8px;
    height: 8px;
    background: var(--color-main);
    border-radius: 50%;
}

.text_box_scroling_section_leftside_what_we_do_section {
    font-size: 1.2rem;
}

.track_scroling_section_leftside_what_we_do_section {
    display: flex;
    flex-direction: column;
    animation: scrollTopInfinite_what_we_do 10s linear infinite;
}

@keyframes scrollTopInfinite_what_we_do {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.righside_what_we_do_section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 10px;
}

.video_wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.video_wrapper video {
    width: calc(100% + 60px);
    height: 100%;
    object-fit: cover;
    margin-left: -30px;
    pointer-events: none;
    transition: transform 0.6s ease;
}

.video_wrapper:hover video {
    transform: scale(1.03);
}

.video_wrapper {
    background-image: url('../assets/background_video.jpg');
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 12px;
}

.bookcall_righside_what_we_do_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    background-color: var(--bg-main);
    border-radius: var(--radius-main);
}

.leftside_bookcall_righside_what_we_do_section {
    flex-direction: column;
}

.leftside_bookcall_righside_what_we_do_section .click_away {
    color: #afafaf;
    text-transform: uppercase;
}


.leftside_bookcall_righside_what_we_do_section .book_call {
    font-size: 1.8rem;
    font-weight: 500;
    color: white;
    line-height: 1;
    margin-top: .2rem;
}

.bookcall_righside_what_we_do_section .action_btn {
    padding: 15px 20px;
}

.sticky_cards_section {
    background: #efefef;
    padding: var(--padding-main);
}

.inner_section_sticky_cards_section {
    width: 100%;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8rem;
    position: relative;
}

.flex_section_inner_section_sticky_cards_section {
    display: flex;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    align-items: flex-start;
    z-index: 10;
    justify-content: space-between;
}

.stacking_card_heading {
    max-width: 32rem;
    position: sticky;
    top: 3rem;
    z-index: 10;
}

.question_stacking_card_heading {
    color: var(--neutral--700);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.answer_stacking_card_heading {
    font-size: 4rem;
    font-weight: 500;
    color: black;
    line-height: 1.2;
}

.answer_stacking_card_heading span {
    color: var(--color-main);
}


.description_stacking_card_heading {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #5d616a;
}

.stacking_card_wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    width: 100%;
    display: flex;
    position: relative;
}

.stacking_card {
    background-color: #fff;
    border-radius: var(--radius-main2);
    width: 100%;
    display: flex;
    position: sticky;
    top: 3rem;
    z-index: 10;
    height: 15rem;
    align-items: flex-start;
    box-shadow: 0 1px 16px #0000000d;
}

.left_stacking_card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
    padding: 24px;
}

.heading_left_stacking_card {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    color: #17181b;
}

.desc_left_stacking_card {
    font-size: 1.125rem;
}

.right_tacking_card {
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 8px 8px 0;
}

.right_tacking_card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stacking_card.is_first {
    top: 3rem;
    background: rgb(216, 246, 111);
}

.stacking_card.is_second {
    top: 4rem;
    background-color: rgb(141, 150, 253);
}

.stacking_card.is_third {
    top: 5rem;
    background: rgb(255, 125, 132);
}

.stacking_card.is_fourth {
    top: 6rem;
    background: rgb(255, 225, 118);
}

.stacking_card.is_fifth {
    top: 7rem;
    background: rgb(216, 246, 111);
}

.stacking_card.is_sixth {
    top: 8rem;
    background-color: rgb(141, 150, 253);
}

.stacking_card.is_seventh {
    top: 9rem;
    background: rgb(255, 125, 132);
}

.stacking_card.is_eighth {
    top: 10rem;
    background: rgb(255, 225, 118);
}

.section_ticker_strips {
    background-color: #efefef;
    width: 100%;
    overflow: hidden;
    padding: 5rem 0;
}

.wraping_ticker_section_1 {
    padding: 1.3rem 0;
    position: relative;
    z-index: 1;
    background-color: var(--color-main);
    width: 120%;
    overflow: hidden;
    margin-left: -10%;
    transform: rotate(2deg);
}

.wrap1_section_ticker_strips {
    gap: 4rem;
    align-items: center;
    display: flex;
    animation: tickerStripScroll 15s linear infinite;
}

@keyframes tickerStripScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.box_wrap1_section_ticker_strips {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    white-space: nowrap;
}


.wraping_ticker_section_2 {
    position: relative;
    z-index: 2;
    padding: 1.3rem 0;
    background-color: black;
    width: 100%;
    overflow: hidden;
    color: white;
}

.wrap2_section_ticker_strips {
    gap: 4rem;
    align-items: center;
    display: flex;
    animation: tickerStripScroll_2 15s linear infinite;
}

@keyframes tickerStripScroll_2 {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.box_wrap2_section_ticker_strips {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    white-space: nowrap;
}


.wraping_ticker_section_3 {
    margin-top: 30px;
    padding: 1.3rem 0;
    background-color: #ffde6a;
    width: 120%;
    margin-left: -10%;
    transform: rotate(1deg);
    overflow: hidden;
    color: #000;
}

.wrap3_section_ticker_strips {
    gap: 4rem;
    align-items: center;
    display: flex;
    animation: tickerStripScroll_3 15s linear infinite;
}

@keyframes tickerStripScroll_3 {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.box_wrap3_section_ticker_strips {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    white-space: nowrap;
}

.pricing_plain_section {
    background-color: #efefef;
    padding: var(--padding-main);
}

.inner_pricing_plain_section {
    border-radius: var(--radius-main);
    background-color: #f7f7f8;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.flex_inner_pricing_plain_section {
    display: flex;
    width: 100%;
}

.leftside_flex_inner_pricing_plain_section {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.rightside_flex_inner_pricing_plain_section {
    width: 53%;
    padding: 0 24px 0 0;
}

.inner_rightside_flex_inner_pricing_plain_section {
    padding: 30px;
    background-color: #fff;
    border-radius: var(--radius-main2);
}

.leftside_flex_inner_pricing_plain_section {
    padding: 0 2rem;
}

.title_leftside_flex_inner_pricing_plain_section {
    font-size: 18px;
    text-transform: uppercase;
    color: #5d616a;
    margin-bottom: 10px;
}

.desc_leftside_flex_inner_pricing_plain_section {
    font-size: 4.5rem;
    color: #000;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.desc_leftside_flex_inner_pricing_plain_section span {
    color: var(--color-main);
}

.box_leftside_flex_inner_pricing_plain_section {
    border-radius: var(--radius-main);
    padding: 24px;
    border: 1px solid #d7d9df;
}

.title_box_leftside_flex_inner_pricing_plain_section {
    font-size: 2rem;
    line-height: 1;
    color: #000;
}

.desc_box_leftside_flex_inner_pricing_plain_section {
    text-wrap: balance;
    font-size: 20px;
    line-height: 1.3;
    color: #5d616a;
    margin: 1rem 0;
}

.info_box_leftside_flex_inner_pricing_plain_section {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: 600;
}

.flex_rightside_flex_inner_pricing_plain_section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.switch_rightside_flex_inner_pricing_plain_section {
    border-radius: 30px;
    background-color: #17181b;
    box-shadow: inset 0 0 0 4px #444;
    padding: 5px;
    display: flex;
}

.switch_rightside_flex_inner_pricing_plain_section {
    position: relative;
    display: flex;
    background: #000;
    border-radius: 30px;
    padding: 4px;
    width: fit-content;
}

.switch_bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #fff;
    border-radius: 30px;
    transition: transform 0.5s ease;
    z-index: 0;
}

.switch_rightside_flex_inner_pricing_plain_section div {
    position: relative;
    z-index: 1;
    padding: 12px 40px;
    cursor: pointer;
    color: var(--color-main);
    font-size: 16px;
    transition: color 0.4s ease;
}

.switch_rightside_flex_inner_pricing_plain_section div.active {
    color: #000;
}



.custombtn_rightside_flex_inner_pricing_plain_section {
    background-color: var(--color-main);
    border-radius: 30px;
    padding: 12px 40px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #000;
    font-size: 18px;
}

.pricing_demand {
    margin-top: 3rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.title_pricing_demand {
    font-size: 3rem;
    color: #000;
    line-height: 1;
}

.desc_pricing_demand {
    font-size: 20px;
    color: #56616a;
    text-wrap: balance;
    line-height: 1.3;
}

.box_rightside_pricing {
    border-radius: var(--radius-main);
    padding: 20px;
    background-color: var(--color-main);
    display: flex;
    overflow: hidden;
    position: relative;
}

.title_box_rightside_pricing {
    font-size: 4.5rem;
    color: #000;
}

.title_box_rightside_pricing span {
    font-size: 20px;
}

.image_box_rightside_pricing {
    position: absolute;
    inset: 0% 1.25rem auto auto;
    object-fit: cover;
    max-width: 100%;
    display: inline-block;
}

.box_rightside_pricing.is_second {
    align-items: center;
    gap: 10px;
}

.grid_section_rightside_pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
    padding: 1rem;
    gap: 1rem;
}

.box_grid_section_rightside_pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: black;
}

.btn_pricing_big {
    padding: 15px 40px;
    background-color: #000;
    color: #fff;
}

.ourteam_section {
    background-color: #efefef;
    padding: var(--padding-main);
}

.inner_ourteam_section {
    padding: 8rem 0;
    width: 100%;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-main);
    background-color: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.square_grid_color_overlay.team {
    background-image: linear-gradient(#17181b99, #17181be0 30% 65%, #17181b99);
}

.headingarea_inner_ourteam_section {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.small_heading_headingarea_inner_ourteam_section {
    font-size: 20px;
    text-transform: uppercase;
    color: #efefef;
}

.title_headingarea_inner_ourteam_section {
    font-size: 4rem;
    color: #fff;
    line-height: 1.2;
}

.title_headingarea_inner_ourteam_section span {
    color: var(--color-main);
}

.desc_headingarea_inner_ourteam_section {
    margin-top: 1rem;
    font-size: 20px;
    color: #fff;
}

.team_grid_images {
    position: relative;
    z-index: 10;
    margin: 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.image_section_box_team_grid_images {
    position: relative;
    height: 17.5rem;
    overflow: hidden;
}

.team_photo {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.team-background {
    border-radius: .5rem;
    width: 100%;
    height: 65%;
    position: absolute;
    inset: auto 0% 0%;
}

.team-background.is_first {
    background: #818bfc;
}

.team-background.is_second {
    background: #d3f463;
}

.team-background.is_third {
    background: #ff7279;
}

.team-background.is_fourth {
    background: #ffde6a;
}

.title_box_team_grid_images {
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
    padding-top: 1rem;
    padding-bottom: .5rem;
}

.desc_box_team_grid_images {
    font-size: 18px;
    color: #efefef;
    padding-bottom: .5rem;
}

.team_photos_wrapper {
    position: relative;
    z-index: 10;
    border-top: 1px solid #5d616a;
    margin: 0 2.5rem;
    padding-top: 3rem;
}

.team_photos_wrapper {
    margin-right: 1rem;
    display: flex;
    justify-content: center;
}

.team_photos_wrapper .team_photo {
    width: 6.25rem;
    height: 6.25rem;
    margin-right: -1rem;
}

.z-index-1 {
    z-index: 3;
    position: relative;
}

.faqs_section {
    background: #efefef;
    padding: var(--padding-main);
}

.inner_faqs_section {
    padding: 8rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}


.stitle_leftside_inner_faqs_section {
    font-size: 18px;
    color: #5d616a;
    text-transform: uppercase;
}

.title_leftside_inner_faqs_section {
    padding-top: 1rem;
    font-size: 4rem;
    line-height: 1;
    padding-bottom: 2rem;
}

.desc_leftside_inner_faqs_section {
    font-size: 24px;
    color: #5d616a;
    text-align: balance;
}

.leftside_inner_faqs_section .info_box_leftside_flex_inner_pricing_plain_section {
    margin-top: 2rem;
    font-size: 20px;
    color: #212529;
}

.box_rightside_inner_faqs_section {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #74798580;
    cursor: pointer;
}

.faqs_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faqs_heading_question {
    font-size: 22px;
    color: #17181b;
}

.faqs_heading_question_icon {
    background-color: var(--color-main);
    border-radius: 50%;
    padding: 8px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s ease;
}

.faqs_heading_question_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box_rightside_inner_faqs_section.active .faqs_heading_question_icon {
    transform: rotate(45deg);
}

.faqs_answer {
    font-size: 18px;
    color: #5d616a;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0;
    transition:
        max-height .5s ease,
        opacity .5s ease,
        padding .5s ease;
}

.box_rightside_inner_faqs_section.active .faqs_answer {
    max-height: 300px;
    opacity: 1;
    padding: .8rem 0;
}

.faqs_answer.none {
    max-height: 0;
    opacity: 0;
    padding: 0;
}


.leftside_inner_faqs_section {
    width: 49%;
}

.rightside_inner_faqs_section {
    width: 49%;
}

.get_any_design_section {
    padding: var(--padding-main);
    background-color: #efefef;
}

.inner_get_any_design_section {
    background-color: #17181b;
    border-radius: var(--radius-main);
    position: relative;
    padding: 5rem 2.5rem;
    overflow: hidden;
}

.btn_get_any_design_section {
    padding: 20px 40px;
    background: var(--color-main);
}

.title_text_section_inner_get_any_design_section {
    line-height: 1;
    font-size: 4rem;
    color: #fff;
}

.title_text_section_inner_get_any_design_section span {
    color: var(--color-main);
}

.desc_section_inner_get_any_design_section {
    font-size: 20px;
    color: #aaacb4;
}

.text_section_inner_get_any_design_section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.inner_get_any_design_section_bg_img_section {
    height: 50vh;
    position: relative;
}

.inner_get_any_design_section_bg_img_section .bg_image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: auto 0% 0%;
    overflow: visible;
    object-fit: cover;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.footer_gradient {
    position: absolute;
    inset: -25vw 0% auto;
}

.mykhailo_img {
    width: 6rem;
    position: absolute;
    inset: auto auto 28vw 16vw;
}

.mycha_img {
    width: 5rem;
    position: absolute;
    inset: auto 4vw 11vw auto;
}

.benjamin_img {
    width: 6.4rem;
    position: absolute;
    inset: auto auto 14vw 37vw;
}

.rasaro_img {
    width: 5.5rem;
    position: absolute;
    inset: auto auto 5vw 13vw;
}

.maxim_img {
    width: 5rem;
    position: absolute;
    inset: 17vw 13vw auto auto;
}

.footer {
    color: #afafaf;
    background: #000;
    padding: 60px 20px 20px;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 20px;
}

.footer a {
    color: #afafaf;
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-main);
}

.header_links_social .social-icons a{
    display: inline-block;
    width: 40px;
    background-color: #000;
    height: 40px;
    border: 1px solid white;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    border-radius: 5px;
    color: #afafaf;
    transition: all 0.3s;
    border-radius: 40px;
}

.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    border-radius: 5px;
    color: #afafaf;
    transition: all 0.3s;
    border-radius: 40px;
}


.footer .social-icons a:hover {
    background-color: var(--bg-main);
    color: white;
    border-color: var(--bg-main);
}

.footer-bottom {
    border-top: 1px solid #464950;
    color: #afafaf;
    margin-top: 30px;
    padding-top: 20px;
    letter-spacing: 1.2px;
}

.footer .contact-icon {
    width: 30px;
    margin-right: 10px;
    color: var(--bg-main);
    height: 30px;
    display: flex;
    border-radius: 20px;
    background: white;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.list-unstyled li {
    padding: 10px 0;
}

.contact-info {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0px;
    color: #afafaf;
}

.footer .contact-us h5 {
    margin-bottom: 20px;
}

.padding_in_footer {
    padding: 0rem 3rem;
}

.site-map-copywrite {
    display: flex;
    gap: 10px;
    color: #afafaf;
}

.inner_get_any_design_section_bg_img_section .move_img {
    transition: transform 0.15s ease-out;
    will-change: transform;
    pointer-events: none;
}

.our_work_section{
    padding: var(--padding-main);
    background-color: #efefef;
    padding: 8rem 2.5rem;
}

.stitle_our_work_section{
    text-transform: uppercase;
    color: #5d616a;
}

.title_our_work_section{
    padding: 1rem 0 3rem;
    font-size: 4.3rem;
    color: #17181b;
    line-height: 1.2;
}

.outside_grid_our_work_filters{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid_our_work_filters{
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.filter_clear_text{
    color: #5d616a;
    white-space: nowrap;
    padding: 1rem;
    max-width: 100%;
    display: inline-block;
}

.box_grid_our_work_filters{
    border: 1px solid #747985;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 100vw;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    padding: .75rem 1rem;
    transition: background-color .2s, border .2s;
    display: flex;
    position: relative;
}

.box_grid_our_work_filters.active{
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.box_grid_our_work_filters .span_box_grid_our_work_filters{
    display: none;
    background-color: var(--color-main);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all .2s ease-in-out;
}

.box_grid_our_work_filters.active .span_box_grid_our_work_filters{
    display: block;
}

@media (max-width: 1024px) {
    .nav_list li a{
        padding: 10px 5px;
    }

    .nav_action{
        gap: 10px;
    }

    .main-navbar{
        padding: 1rem;
        margin-top: 1rem;
    }

    .header-section-inner{
        padding: 0 1rem;
    }

    .logo_brand .logo_img {
        height: 30px;
    }

    .action_btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .heading_main_content_wrapper h1{
        font-size: 5rem;
    }

    .action_btn.large {
        font-size: 16px;
        padding: 20px 26px;
    }

    .box_detail_footer_area_scroll_wrapper .plus,
    .box_detail_footer_area_scroll_wrapper .couting{
        font-size: 2.5rem;
    }

    .wraping_section.auto_logo_scroll .box_wraping{
        height: 6rem;
        padding: 0 3rem;
    }

    .wraping_section.auto_logo_scroll .box_wraping img{
        width: 6rem;
    }

    .special_section_padding h2 {
        font-size: 4rem;
    }

    .box_scroleable_port_section{
        min-width: 45%;
    }

    .answer_leftside_what_we_do_section {
        font-size: 2.3rem;
    }

    .leftside_what_we_do_section {
        padding: 2rem;
    }

    .bookcall_righside_what_we_do_section {
        padding: 1rem;
    }

    .leftside_bookcall_righside_what_we_do_section .book_call{
        font-size: 1rem;
    }

    .bookcall_righside_what_we_do_section .action_btn {
        padding: 8px 15px;
    }

    .leftside_bookcall_righside_what_we_do_section .click_away{
        font-size: 12px;
    }

    .inner_section_what_we_do_section {
        padding-top: 6rem;
    }

    .inner_section_sticky_cards_section{
        padding-top: 6rem;
    }

    .answer_stacking_card_heading {
        font-size: 3rem;
    }

    .left_stacking_card{
        padding: 1rem;
    }

    .heading_left_stacking_card {
        font-size: 1.3rem;
    }

    .team_grid_images{
        grid-template-columns: repeat(2, 1fr);
    }

    .desc_leftside_flex_inner_pricing_plain_section {
        font-size: 3rem;
    }

    .title_box_leftside_flex_inner_pricing_plain_section{
        font-size: 1.5rem;
    }

    .title_pricing_demand {
        font-size: 2rem;
    }

    .title_box_leftside_flex_inner_pricing_plain_section img{
        width: 80%;
    }

    .title_box_rightside_pricing{
        font-size: 2rem;
    }

    .image_box_rightside_pricing {
        inset: 0% 0rem auto auto;
        object-fit: cover;
        max-width: 100%;
        display: inline-block;
        position: absolute;
    }

    .image_box_rightside_pricing img{
        height: 130px;
    }

    .custombtn_rightside_flex_inner_pricing_plain_section{
        display: none;
    }

    .inner_rightside_flex_inner_pricing_plain_section{
        padding: 1rem;
    }

    .leftside_flex_inner_pricing_plain_section{
        padding: 0 1rem;
    }

    .grid_section_rightside_pricing{
        grid-template-columns: revert;
        padding: 0;
    }

    .answer_stacking_card_heading {
        font-size: 3rem;
    }

    .left_stacking_card {
        gap: 10px;
    }

    .inner_ourteam_section{
        padding: 6rem 1rem;
    }

    .inner_pricing_plain_section{
        padding-top: 6rem;
    }

    .pricing_demand {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .title_headingarea_inner_ourteam_section {
        font-size: 3rem;
    }

    .title_leftside_inner_faqs_section{
        font-size: 3rem;
    }

    .faqs_heading_question {
        font-size: 16px;
        font-weight: 600;
    }

    .title_text_section_inner_get_any_design_section{
        font-size: 3rem;
    }

    .inner_get_any_design_section_bg_img_section{
        height: 65vh;
    }

    .padding_in_footer{
        padding: 0 1rem;
    }

}

@media (max-width: 768px) {
    .footer .social-icons {
        margin-top: 20px;
    }

    .mobile-menu {
        height: 70%;
        width: -webkit-fill-available;
        margin: 15px;
        padding: 10px;
        overflow-y: auto;
    }
    .heading_main_content_wrapper {
        padding-top: 0;
    }

    .heading_main_content_wrapper h1 {
        font-size: 3.5rem;
    }

    .footer_area_scroll_wrapper {
        flex-direction: column;
        align-items: start;
        gap: 40px;
    }

    .right_footer_area_scroll_wrapper {
        display: flex;
        justify-content: flex-end;
        gap: 2rem;
        flex-flow: wrap;
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
    }

    .grid_square {
        width: 16vw;
        height: 16vw;
    }

    .hero-wrapper {
        padding-top: 3rem;
        padding-left: 0rem;
        padding-right: 0rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .wraping_section.auto_logo_scroll .box_wraping {
        height: 5rem;
        width: 9rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .client_image_headshot.is_first {
        width: 7rem;
        top: 10vw;
        left: 1vw;
    }

    .client_image_headshot.is_second {
        width: 6rem;
        top: 3vw;
        right: 24vw;
    }

    .client_image_headshot.is_third {
        width: 5rem;
        top: 14vw;
        right: 0;
    }

    .special_section_padding {
        padding-top: 7rem;
    }

    .special_section_padding h2 {
        font-size: 2rem;
    }

    .box_scroleable_port_section {
        width: 94% !important;
    }

    .inner_section_what_we_do_section {
        padding-top: 4rem;
    }

    .leftside_what_we_do_section {
        padding: 1rem;
    }

    .answer_leftside_what_we_do_section {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .inner_section_what_we_do_section .row .col-md-5 {
        padding: 1rem 0;
    }

    .bookcall_righside_what_we_do_section {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .inner_section_sticky_cards_section {
        padding-top: 4rem;
    }

    .answer_stacking_card_heading {
        font-size: 2rem;
    }

    .flex_section_inner_section_sticky_cards_section {
        flex-direction: column;
        gap: 4rem;
    }

    .stacking_card_heading {
        position: relative;
    }

    .stacking_card {
        flex-direction: column;
        height: 20rem;
        gap: 1rem;
    }

    .left_stacking_card {
        width: 100%;
    }

    .right_tacking_card {
        width: 100%;
    }

    .inner_pricing_plain_section {
        padding-top: 4rem;
    }

    .flex_inner_pricing_plain_section {
        flex-direction: column;
        gap: 20px;
    }

    .desc_leftside_flex_inner_pricing_plain_section {
        font-size: 2.5rem;
    }

    .leftside_flex_inner_pricing_plain_section {
        width: 100%;
        padding: 0 1rem;
    }


    .title_box_leftside_flex_inner_pricing_plain_section {
        font-size: 20px;
    }

    .title_box_leftside_flex_inner_pricing_plain_section img {
        width: 90% !important;
    }

    .rightside_flex_inner_pricing_plain_section {
        width: 100%;
    }

    .custombtn_rightside_flex_inner_pricing_plain_section {
        display: none;
    }

    .inner_rightside_flex_inner_pricing_plain_section {
        padding: 1rem;
    }

    .flex_rightside_flex_inner_pricing_plain_section {
        justify-content: center;
    }

    .title_pricing_demand {
        font-size: 2.5rem;
    }

    .title_box_rightside_pricing {
        font-size: 2rem;
    }

    .image_box_rightside_pricing {
        inset: 0% 0.5rem auto auto;
    }

    .image_box_rightside_pricing img {
        height: 90px;
    }

    .grid_section_rightside_pricing {
        grid-template-columns: repeat(1, 1fr);
    }

    .btn_pricing_big {
        width: 100%;
    }

    .btn_pricing_big .text_row {
        justify-content: center;
    }

    .btn_pricing_big .text_row.clone {
        position: unset;
    }

    .inner_ourteam_section {
        padding: 4rem 0;
    }

    .title_headingarea_inner_ourteam_section {
        font-size: 2rem;
    }

    .team_grid_images {
        grid-template-columns: revert;
        margin: 1rem;
    }

    .team_photos_wrapper .team_photo {
        width: 4rem;
        height: 4rem;
    }

    .inner_faqs_section {
        padding: 4rem 1rem;
        flex-direction: column;
    }

    .leftside_inner_faqs_section {
        width: 100%;
    }

    .rightside_inner_faqs_section {
        width: 100%;
    }

    .title_leftside_inner_faqs_section {
        font-size: 2.5rem;
    }

    .faqs_heading_question {
        font-size: 16px;
        font-weight: 600;
    }

    .inner_get_any_design_section {
        padding: 4rem 1rem 0;
    }

    .title_text_section_inner_get_any_design_section {
        text-align: center;
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .desc_section_inner_get_any_design_section {
        font-size: 16px;
    }

    .inner_get_any_design_section_bg_img_section {
        height: 40vh;
    }

    .mycha_img {
        width: 3.5rem;
    }

    .maxim_img {
        width: 3.5rem;
    }

    .mykhailo_img {
        width: 3.5rem;
    }

    .benjamin_img {
        width: 4rem;
    }

    .rasaro_img {
        width: 3.5rem;
    }

    .padding_in_footer {
        padding: 0;
    }

    .padding_in_footer .row {
        text-align: center;
    }

    .footer_logo {
        height: 50px;
    }

    .contact-info {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .main-navbar {
        margin-top: 1rem;
        padding: 1rem;
    }

    .header-section-inner {
        padding: 0 1rem;
    }

    .logo_brand .logo_img {
        height: 30px;
    }

}

@media (max-width: 350px){
    .heading_main_content_wrapper h1 {
        font-size: 2.5rem;
    }

    .scroll_item {
        font-size: 1rem;
    }

    .logo_brand .logo_img {
        height: 25px;
    }

    .navbar-toggler {
        height: 28px;
        width: 28px;
        font-size: 18px;
    }

    .action_btn.large {
        font-size: 16px;
        padding: 15px 25px;
    }

    .box_detail_footer_area_scroll_wrapper .couting {
        font-size: 2rem;
    }

    .box_detail_footer_area_scroll_wrapper .plus {
        font-size: 2rem;
    }

    .box_detail_footer_area_scroll_wrapper {
        max-width: 7.5rem;
    }

    .wraping_section.auto_logo_scroll .box_wraping {
        height: 3rem;
        width: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .special_section_padding h2 {
        font-size: 1.4rem;
    }

    .review_box{
        padding: 1rem;
    }

    .text_box_scroling_section_leftside_what_we_do_section {
        font-size: 1rem;
    }

    .box_scroling_section_leftside_what_we_do_section {
        padding: 1rem 1.5rem;
    }

    .leftside_bookcall_righside_what_we_do_section .book_call {
        font-size: 1.5rem;
    }

    .leftside_bookcall_righside_what_we_do_section .click_away {
        font-size: 12px;
    }

    .inner_section_sticky_cards_section {
        padding-top: 2rem;
    }

    .title_text_section_inner_get_any_design_section {
        font-size: 1.5rem;
    }
    
    .desc_section_inner_get_any_design_section {
        text-align: center;
    }
    .team_photos_wrapper .team_photo {
        width: 3rem;
        height: 3rem;
    }
}

@media(min-width: 1440px){
    .heading_main_content_wrapper h1{
        font-size: 7rem;
    }

    .scroll_item{
        font-size: 24px;
    }

    .right_footer_area_scroll_wrapper {
        gap: 4rem;
    }

    .box_detail_footer_area_scroll_wrapper .couting,
    .box_detail_footer_area_scroll_wrapper .plus {
        font-size: 4rem;
    }
    .special_section_padding h2 {
        font-size: 5rem;
    }

    .box_scroleable_port_section{
        min-width: 28%;
    }

    .scroling_section_leftside_what_we_do_section{
        height: 400px;
    }

    .title_text_section_inner_get_any_design_section{
        font-size: 4.5rem;
    }
}