/* =========================================
   CONCEPT CSS - FIEND AGENCY
   Based on FIEND AGENCY Brand Identity
   ========================================= */

/*--------------------------------------------------------------
# FIEND AGENCY Color Palette
--------------------------------------------------------------*/
:root {
    --fiend-black: #2B2A29;
    --fiend-white: #FCFCFC;
    --fiend-red: #C61C24;
    --fiend-bg: #0e0e0e;
    --fiend-text-dark: #2B2A29;
    --fiend-text-light: #FCFCFC;
}

/*--------------------------------------------------------------
# Base Styles
--------------------------------------------------------------*/
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

@media (max-width: 1299px) {
    html {
        font-size: 56%;
    }
}
@media (max-width: 1024px) {
    html {
        font-size: 50%;
    }
}
@media (max-width: 991px) {
    html {
        font-size: 50%;
    }
}
@media (max-width: 767px) {
    html {
        font-size: 50%;
    }
}
@media (max-width: 575px) {
    html {
        font-size: 58%;
    }
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: "Rethink Sans", sans-serif;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 400;
    overflow-x: hidden;
    background-color: var(--fiend-bg);
    color: var(--fiend-text-light);
}

h1, h2, h3, h4, h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 1;
    color: var(--fiend-text-light);
}

h1 {
    font-size: 5.2rem;
    line-height: 1.4em;
}

h2 {
    font-size: 4.2rem;
    line-height: 1.2em;
}

h3 {
    font-size: 3.6rem;
}

h4 {
    font-size: 3rem;
}

h5 {
    font-size: 2.4rem;
}

h6 {
    font-size: 1.8rem;
}

p, span, em, strong, a {
    font-family: "Rethink Sans", sans-serif;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 400;
    text-decoration: none;
    color: var(--fiend-text-light);
}

b, strong {
    font-weight: bolder !important;
}

ul, ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

img {
    width: 100%;
    display: block;
}

/*--------------------------------------------------------------
# Typography Components
--------------------------------------------------------------*/
.site_title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 8.2rem;
    line-height: 1;
    color: var(--fiend-text-light);
}
.site_title.black_text {
    color: var(--fiend-text-dark);
}

.small_large_title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 5.2rem;
    line-height: 1.3;
    color: var(--fiend-text-light);
}

.site_desc {
    font-family: "Rethink Sans", sans-serif;
    color: var(--fiend-text-light);
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 400;
}
.site_desc p {
    font-family: "Rethink Sans", sans-serif;
    color: var(--fiend-text-light);
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 400;
}
.site_desc.black_text {
    color: var(--fiend-text-dark);
}
.site_desc.black_text p {
    color: var(--fiend-text-dark);
}

.black_text {
    color: var(--fiend-text-dark);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.common_btn {
    border: 3px solid var(--fiend-white);
    border-radius: 30px;
    display: inline-block;
    font-size: 22px;
    color: var(--fiend-text-light);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 1;
    padding: 18px 40px;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--fiend-red) 0%, var(--fiend-red) 50%, var(--fiend-text-light) 50%, var(--fiend-text-light) 100%);
    background-size: 200% 100%;
    background-position: 100% center;
    transition: background-position 0.7s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.common_btn:hover {
    background-position: 0% center;
    border-color: var(--fiend-red);
}
.common_btn.black_btn {
    border-color: var(--fiend-text-dark);
    background-image: linear-gradient(to right, var(--fiend-red) 0%, var(--fiend-red) 50%, var(--fiend-text-dark) 50%, var(--fiend-text-dark) 100%);
}
.common_btn.black_btn:hover {
    border-color: var(--fiend-red);
}

/*--------------------------------------------------------------
# Container
--------------------------------------------------------------*/
.container {
    max-width: 1200px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 50px;
    }
}
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
}

/*--------------------------------------------------------------
# Placeholders for Videos/Images
--------------------------------------------------------------*/
.hero_placeholder,
.case_placeholder,
.video_placeholder,
.about_placeholder,
.cta_placeholder,
.logo_placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2B2A29 0%, #3a3938 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.hero_placeholder::before,
.case_placeholder::before,
.video_placeholder::before,
.about_placeholder::before,
.cta_placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.placeholder-content {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
}

.logo_placeholder {
    min-height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* Agregar padding-top al body cuando el header está fixed */
body:has(header.fixed) {
    padding-top: 103px;
}

body:has(header.scroll-up) {
    padding-top: 0;
}

/* Asegurar que la primera sección tenga espacio para el header fixed */
.concept-page > main > section:first-child {
    padding-top: 120px;
}

.scroll-up {
    transform: translateY(-110%);
    transition: transform 0.4s ease-in-out;
}

header.scroll-up {
    pointer-events: none;
}

header {
    padding: 38px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s linear;
}
header::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease 0s;
    pointer-events: none;
}
header .header_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header_block .header_logo {
    position: relative;
    z-index: 250;
}
header .header_block .header_logo a {
    font-size: 24px;
    color: #ffffff;
    font-family: "neulis-neue", sans-serif;
    font-weight: 600;
}
header .header_block .header_logo a img {
    transition-duration: 0.8s;
}
header .header_block .header_logo a img.desk_logo {
    max-width: 85px;
}
header .header_block .header_logo a img.mobile_logo {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: -10px;
    min-width: 150px;
    max-width: 150px;
}
header .header_block .menu_toggle_trigger {
    cursor: pointer;
    position: relative;
    z-index: 250;
    transition-duration: 0.5s;
}
header .header_block .menu_toggle_trigger::after {
    display: none;
}
header .header_block .menu_toggle_trigger span {
    transition: all 0.5s ease 0s;
    font-size: 14px;
    font-family: "neulis-neue", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-block;
}
header .header_block .header_menu_wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: translateY(-120%);
    transition-duration: 1s;
    transition: 0.5s ease all;
    z-index: 200;
    padding: 160px 0px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
header .header_block .header_menu_wrap .container {
    height: 100%;
    overflow-y: auto;
}
header .header_block .header_menu_wrap .container::-webkit-scrollbar-track {
    background-color: #747474;
    border-radius: 10px;
}
header .header_block .header_menu_wrap .container::-webkit-scrollbar-thumb {
    background: #C9BFB0;
    border-radius: 10px;
}
header .header_block .header_menu_wrap .container::-webkit-scrollbar {
    background-color: #747474;
    border-radius: 10px;
    width: 3px;
}
header .header_block .header_menu_wrap .header_menu__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
header .header_block .header_menu_wrap .header_menu__row .header_menu__col_left,
header .header_block .header_menu_wrap .header_menu__row .header_menu__col_right {
    transition: all 0.2s ease;
    opacity: 0;
    transition-delay: 0.5s;
}
header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul {
    overflow: hidden;
    text-align: right;
}
header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a {
    font-size: 8rem;
    color: #ffffff;
    line-height: 1.1;
    grid-gap: 30px;
    font-family: "neulis-neue", sans-serif;
    transition: font-weight, transform 0.5s ease-in-out;
    font-weight: 500;
    transform: translateX(80px);
    position: relative;
    display: inline-block;
}
header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a img {
    max-width: 56px;
    padding-bottom: 15px;
    display: inline-block;
    margin-left: 30px;
    vertical-align: middle;
}
header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a:hover {
    font-family: "neulis-neue", sans-serif;
    font-weight: 300;
    transform: translateX(0px);
}
header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a::after {
    display: none;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_social {
    display: flex;
    align-items: center;
    grid-gap: 45px;
    justify-content: flex-end;
    padding: 55px 0 0;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_social a img {
    max-width: 30px;
    transition: all 0.5s ease 0s;
    display: inline-block;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_social a:hover img {
    transform: translateY(-6px);
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_let_touch {
    padding: 40px 0 30px;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_let_touch h3 {
    font-size: 3.6rem;
    font-family: "neulis-neue", sans-serif;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 35px;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_let_touch p {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.8;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p {
    display: flex;
    align-items: center;
    grid-gap: 35px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.8;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p img {
    max-width: 67px;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p span {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p a {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.5s ease 0s;
}
header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p a:hover {
    opacity: 0.7;
}
header.fixed {
    background-color: transparent;
    padding: 25px 0;
    position: fixed;
}
header.fixed::before {
    background-color: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}
header.fixed .menu_toggle_trigger span {
    color: #ffffff;
}
header.fixed .menu_toggle_trigger::after {
    display: none;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cm_overflow {
    overflow: hidden;
    touch-action: none;
}
.cm_overflow header {
    position: fixed;
}
.cm_overflow header .header_block .header_logo a img.mobile_logo {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
}
.cm_overflow header .header_block .header_logo a img.desk_logo {
    opacity: 0;
}
.cm_overflow header .header_block .header_menu_wrap {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
}
.cm_overflow header .header_block .header_menu_wrap .header_menu__row .header_menu__col_left,
.cm_overflow header .header_block .header_menu_wrap .header_menu__row .header_menu__col_right {
    opacity: 1;
}
.cm_overflow header .header_block .menu_toggle_trigger span {
    color: #ffffff;
}
.cm_overflow header .header_block .menu_toggle_trigger::after {
    display: none;
}
.cm_overflow body {
    padding-top: 103px;
}

.sticky_menu {
    margin-left: auto;
    position: relative;
    z-index: 255;
    margin-right: -41px;
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.5s;
}

/* En desktop, el menú está siempre visible */
@media (min-width: 992px) {
    .sticky_menu {
        opacity: 1;
        visibility: visible;
        margin-right: 0;
    }
    
    .menu_toggle_trigger {
        display: none;
    }
}
.sticky_menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.sticky_menu ul li a {
    color: #ffffff;
    transition: all 0.5s ease 0s;
    font-size: 14px;
    font-family: "neulis-neue", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}
.sticky_menu ul li a:after {
    background: #ffffff;
    bottom: -3px;
    content: "";
    height: 1px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: 100% 100%;
    transition-duration: 0.4s;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform;
}
.sticky_menu ul li a:hover:after {
    transform: scaleX(1);
    transform-origin: 0 0;
}
.sticky_menu ul li.contact_btn_sticky a {
    padding: 12px 24px;
    border-radius: 100px;
    color: #ffffff;
    line-height: 1;
    text-align: center;
    overflow: hidden;
    border: 2px solid #FFFFFF;
    position: relative;
    display: flex;
    margin: -8px 0;
    align-items: center;
    justify-content: center;
}
.sticky_menu ul li.contact_btn_sticky a:after {
    display: none;
}
.sticky_menu ul li.contact_btn_sticky a::before {
    background-color: #ffffff;
    content: "";
    display: block;
    height: 150%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate(120%, -15%) rotate(20deg);
    transform-origin: left 50%;
    transition: all 0.8s cubic-bezier(0.58, 0, 0.06, 0.98);
    width: 100%;
    will-change: transform;
    z-index: -1;
    pointer-events: none;
}
.sticky_menu ul li.contact_btn_sticky a:hover {
    background-color: #ffffff;
    color: #000000;
    transition-delay: 0.4s;
}
.sticky_menu ul li.contact_btn_sticky a:hover::before {
    transform: translateX(0%) rotate(0deg);
    transform-origin: right 50%;
}

@media (min-width: 992px) {
    header.fixed .sticky_menu {
        opacity: 1;
        visibility: visible;
    }
    header.fixed .menu_toggle_trigger {
        opacity: 0;
        visibility: hidden;
    }
}
@media (min-width: 1200px) {
    header .container {
        max-width: 1300px;
    }
}
@media (max-width: 991px) {
    .sticky_menu {
        display: none;
    }
    header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a {
        font-size: 7rem;
        grid-gap: 20px;
        transform: translateX(75px);
    }
    header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a img {
        max-width: 45px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content {
        max-width: 315px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p {
        grid-gap: 20px;
        font-size: 14px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p a,
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p span {
        font-size: 14px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_let_touch p {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    header {
        padding: 25px 0;
    }
    header .header_block .header_menu_wrap {
        padding: 80px 0px 30px;
    }
    header .header_block .header_menu_wrap .header_menu__row {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 30px 0 0;
        grid-gap: 30px;
    }
    header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul {
        text-align: left;
    }
    header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a {
        font-size: 5.5rem;
        transform: translateX(0);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        background-image: linear-gradient(to right, var(--fiend-red) 0%, var(--fiend-red) 50%, #ffffff 50%, #ffffff 100%);
        background-size: 200% 100%;
        background-position: 100% center;
        transition: background-position 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    }
    header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a::after {
        display: none;
    }
    header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a:hover {
        background-position: 0% center;
    }
    header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a img {
        max-width: 30px;
        padding-bottom: 6px;
        opacity: 0;
        transition: all 0.5s ease 0s;
        transform: scale(0.8);
    }
    header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li a:hover img {
        transform: scale(1);
        opacity: 1;
    }
    header .header_block .header_menu_wrap .header_menu__row .menu_wrap ul li:not(:last-child) {
        margin-bottom: 15px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_let_touch {
        padding: 30px 0 20px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_let_touch h3 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p img {
        max-width: 50px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_social {
        padding: 40px 0 20px;
        justify-content: flex-start;
        grid-gap: 30px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .header_social a img {
        max-width: 25px;
    }
    .cm_overflow body {
        padding-top: 73px;
    }
    body:has(.fixed) {
        padding-top: 73px;
    }
}
@media (max-width: 575px) {
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p {
        grid-gap: 10px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p img {
        max-width: 40px;
        min-width: 40px;
    }
    header .header_block .header_menu_wrap .header_menu__row .header_inner_content .office_email_wrap p span {
        grid-gap: 6px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.home_hero_section {
    padding-top: 120px;
    padding-bottom: 100px;
}

.home_hero_section_wrapper {
    position: relative;
}
.home_hero_section_wrapper__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}
.home_hero_section_wrapper__row--column .home_hero_video_block {
    border-radius: 5px;
    overflow: hidden;
}
.home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_1 {
    margin-top: 125px;
}
.home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_1 .hero_placeholder {
    height: 445px;
}
.home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_2 .hero_placeholder {
    height: 492px;
}
.home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_3 {
    margin-top: 55px;
}
.home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_3 .hero_placeholder {
    height: 622px;
}
.home_hero_section_wrapper .home_hero_content {
    position: absolute;
    left: 50px;
    bottom: 0;
}
.home_hero_section_wrapper .home_hero_content .home_hero__title h1 {
    font-size: 118px;
    line-height: 0.8;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--fiend-text-light);
}

.hero_red_dots {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: var(--fiend-red);
    display: inline-block;
    vertical-align: text-bottom;
    margin-bottom: 31px;
    margin-left: -20px;
}

.hero_subtitle {
    margin-top: 30px;
    padding-left: 5px;
}
.hero_subtitle p {
    font-family: "Poppins", sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--fiend-text-light);
    opacity: 0.7;
}

@media (min-width: 1200px) {
    .home_hero_section .container {
        max-width: 1300px;
    }
}
@media (max-width: 1199px) {
    .home_hero_section_wrapper .home_hero_content .home_hero__title h1 {
        font-size: 10rem;
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_1 {
        margin-top: 85px;
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_1 .hero_placeholder {
        height: 340px;
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_2 .hero_placeholder {
        height: 400px;
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_3 .hero_placeholder {
        height: 480px;
    }
    .hero_red_dots {
        margin-bottom: 12px;
        margin-left: -10px;
        width: 13px;
        height: 13px;
    }
}
@media (max-width: 991px) {
    .home_hero_section_wrapper .home_hero_content .home_hero__title h1 {
        font-size: 8rem;
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_1 {
        margin-top: 65px;
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_1 .hero_placeholder {
        height: 300px;
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_2 .hero_placeholder {
        height: 350px;
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_3 .hero_placeholder {
        height: 380px;
    }
}
@media (max-width: 767px) {
    .home_hero_section {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .home_hero_section_wrapper .home_hero_content {
        left: 10px;
    }
    .home_hero_section_wrapper__row {
        grid-template-columns: repeat(1, 1fr);
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_1,
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_3 {
        display: none;
    }
    .home_hero_section_wrapper__row--column .home_hero_video_block.hero_video_1 .hero_placeholder {
        height: 380px;
    }
}
@media (max-width: 575px) {
    .home_hero_section_wrapper .home_hero_content .home_hero__title h1 {
        font-size: 5.5rem;
    }
    .hero_red_dots {
        width: 10px;
        height: 10px;
    }
}

/*--------------------------------------------------------------
# Full Service Agency Section
--------------------------------------------------------------*/
.full_service_agency_section {
    margin: 370px 0;
}
.full_service_agency_section_wrapper .full_service_agency_content {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
}
.full_service_agency_section_wrapper .full_service_agency_content h3 {
    font-size: 4.2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--fiend-text-light);
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: all 1s cubic-bezier(0.36, 0.3, 0, 1);
    transform: translateX(15%);
}
.full_service_agency_section_wrapper .full_service_agency_content h3 span {
    font-size: 4.2rem;
    color: var(--fiend-text-light);
    line-height: 1.3;
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    opacity: 0;
    transition: all 1.4s linear;
}
.full_service_agency_section_wrapper .full_service_agency_content h3 span:nth-child(1) {
    transition-duration: 0.5s;
    transition-delay: 0.2s;
}
.full_service_agency_section_wrapper .full_service_agency_content h3 span:nth-child(2) {
    transition-duration: 0.5s;
    transition-delay: 0.4s;
}
.full_service_agency_section_wrapper .full_service_agency_content h3 span:nth-child(3) {
    transition-duration: 0.5s;
    transition-delay: 0.6s;
}
.full_service_agency_section_wrapper .full_service_agency_content.active h3 span {
    opacity: 1;
}
.full_service_agency_section_wrapper .full_service_circle {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
    transition: all 1.5s ease;
    background-color: var(--fiend-bg);
    left: 10%;
    transition-duration: 1.5s;
    transform-origin: 50% 50%;
}
.full_service_agency_section_wrapper .full_service_circle .full_service_circle_anim {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.36, 0.3, 0, 1);
    border-radius: 50%;
    background-color: var(--fiend-bg);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: color-burn;
    -webkit-mix-blend-mode: color-burn;
}
.full_service_agency_section_wrapper .full_service_circle .full_service_circle_anim img {
    width: auto;
}

.full_service_agency_section_wrapper .full_service_agency_content.active .full_service_circle.state-0 {
    transform: translate(0, -50%);
}
.full_service_agency_section_wrapper .full_service_agency_content.active .full_service_circle.state-25 {
    transform: translate(-35%, -30%);
}
.full_service_agency_section_wrapper .full_service_agency_content.active .full_service_circle.state-50 {
    transform: translate(131%, -60%);
}
.full_service_agency_section_wrapper .full_service_agency_content.active .full_service_circle.state-100 {
    transform: translate(0, -50%);
}
.full_service_agency_section_wrapper .full_service_agency_content.active .full_service_circle_anim img {
    transform-origin: 50% 50%;
    animation: 7s cresent ease infinite alternate;
}

@keyframes cresent {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    25% {
        transform: translate(0px, 0px) scale(1.02);
    }
    50% {
        transform: translate(0px, 0px) scale(1.02);
    }
    100% {
        transform: translate(40px, -40px) scale(0.9);
    }
}

@media (max-width: 1199px) {
    .full_service_agency_section {
        margin: 300px 0;
    }
    .full_service_agency_section_wrapper .full_service_circle {
        width: 350px;
        height: 350px;
    }
    .full_service_agency_section .full_service_agency_content {
        max-width: 720px;
    }
    .full_service_agency_section .full_service_agency_content h3 {
        font-size: 3.5rem;
    }
    .full_service_agency_section .full_service_agency_content h3 span {
        font-size: 3.5rem;
    }
    .full_service_agency_section .full_service_agency_content.active .full_service_circle.state-50 {
        transform: translate(90%, -60%);
    }
}
@media (max-width: 991px) {
    .full_service_agency_section {
        margin: 280px 0;
    }
    .full_service_agency_section_wrapper .full_service_circle {
        width: 300px;
        height: 300px;
    }
}
@media (max-width: 767px) {
    .full_service_agency_section {
        margin: 250px 0;
    }
    .full_service_agency_section .full_service_agency_content h3 {
        font-size: 3rem;
    }
    .full_service_agency_section .full_service_agency_content h3 span {
        font-size: 3rem;
    }
}
@media (max-width: 575px) {
    .full_service_agency_section {
        margin: 220px 0;
    }
    .full_service_agency_section_wrapper .full_service_circle {
        width: 300px;
        height: 300px;
        margin: 0 auto;
        left: 0;
        right: 0;
        transform: translateY(-50%) !important;
    }
    .full_service_agency_section .full_service_agency_content h3 {
        font-size: 2.6rem;
    }
    .full_service_agency_section .full_service_agency_content h3 span {
        font-size: 2.6rem;
        display: inline;
    }
}

/*--------------------------------------------------------------
# Case Studies Section
--------------------------------------------------------------*/
.case_studies_section {
    transition: all 0.5s linear;
}
.case_studies_section .case_studies_content {
    max-width: 614px;
    padding: 0 0 145px;
}
.case_studies_section .case_studies_content .site_desc {
    margin: 20px 0 60px;
}

.case_studies__wrap {
    padding: 0 0 180px;
}
.case_studies__wrap .row {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-gap: 30px;
}
.case_studies__wrap .row .case_studies__box .case_studies_image {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}
.case_studies__wrap .row .case_studies__box .case_studies_image .case_placeholder {
    max-height: 573px;
    aspect-ratio: 16/16;
    border-radius: 5px;
    transition: all 0.5s cubic-bezier(0.36, 0.3, 0, 1) 0s;
}
.case_studies__wrap .row .case_studies__box .case_studies_image.case_small_image .case_placeholder {
    max-height: 490px;
    aspect-ratio: 16/14;
}
.case_studies__wrap .row .case_studies__box .case_studies__info {
    padding: 35px 0 0;
}
.case_studies__wrap .row .case_studies__box .case_studies__info p {
    font-size: 15px;
    color: rgba(252, 252, 252, 0.5);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Rethink Sans", sans-serif;
}
.case_studies__wrap .row .case_studies__box .case_studies__info h4 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--fiend-text-light);
}
.case_studies__wrap .row .case_studies__box .case_studies__info h4 a {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--fiend-text-light);
    display: flex;
    align-items: flex-end;
    position: relative;
    max-width: max-content;
    transition: all 0.3s ease 0s;
    overflow: hidden;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--fiend-red) 0%, var(--fiend-red) 50%, var(--fiend-text-light) 50%, var(--fiend-text-light) 100%);
    background-size: 200% 100%;
    background-position: 100% center;
    transition: background-position 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.case_studies__wrap .row .case_studies__box .case_studies__info h4 a:hover {
    background-position: 0% center;
}
.case_studies__wrap .row .case_studies__box .case_studies__info h4 img {
    display: none;
}
.case_studies__wrap .row + .row {
    margin-top: 80px;
}


@media (max-width: 991px) {
    .case_studies_section .case_studies_content {
        padding: 0 0 80px;
    }
    .case_studies_section .case_studies_content .site_desc {
        margin: 20px 0 30px;
    }
    .case_studies__wrap {
        padding: 0 0 50px;
    }
}
@media (max-width: 767px) {
    .case_studies__wrap .row {
        grid-template-columns: repeat(1, 1fr);
    }
    .case_studies__wrap .row .case_studies__box .case_studies__info {
        padding: 15px 0 0;
    }
    .case_studies__wrap .row .case_studies__box .case_studies__info p {
        margin: 0 0 10px;
    }
    .case_studies__wrap .row .case_studies__box .case_studies__info h4 a {
        font-size: 2.5rem;
    }
    .case_studies__wrap .row .case_studies__box .case_studies__info h4 img {
        display: none;
    }
    .case_studies__wrap .row + .row {
        margin-top: 30px;
    }
    .case_studies_section .case_studies_content {
        padding: 0 0 50px;
    }
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.our_process_section {
    padding: 200px 0;
    background-color: var(--fiend-bg);
    position: relative;
    z-index: 1;
}
.our_process_section .our_process__list_wrap {
    overflow: hidden;
}
.our_process_section .our_process__list_wrap ul li {
    display: flex;
    justify-content: space-between;
    grid-gap: 15px;
    padding: 60px 0;
}
.our_process_section .our_process__list_wrap ul li:first-child {
    border-top: 0;
}
.our_process_section .our_process__list_wrap ul li .site_desc {
    max-width: 475px;
}
.our_process_section .our_process__list_wrap ul li .site_desc p {
    color: var(--fiend-text-light);
    font-family: "Rethink Sans", sans-serif;
}
.our_process_section .our_process__list_wrap ul li h3 {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 4.2rem;
    line-height: 1.5;
    color: var(--fiend-text-light);
    font-weight: 500;
}
.our_process_section .our_process__list_wrap ul > *:last-child {
    display: none;
}
.our_process_section .our_process__list_wrap .our_process_divider {
    border-top: 1px solid #838383;
}

.our_process__small_title {
    padding-left: 150px;
}
.our_process__small_title h3 {
    font-weight: normal;
    font-size: 4.2rem;
    line-height: 1.5;
    color: var(--fiend-text-light);
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.our_process__bg {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -2;
}

@media (max-width: 991px) {
    .our_process_section {
        padding: 80px 0;
    }
    .our_process_section .our_process__list_wrap ul li {
        flex-direction: column;
        padding: 40px 0;
    }
    .our_process_section .our_process__list_wrap ul li .site_desc {
        max-width: 100%;
    }
    .our_process__small_title {
        padding-left: 100px;
    }
}
@media (max-width: 767px) {
    .our_process_section .our_process__list_wrap ul li {
        padding: 30px 0;
    }
    .our_process_section .our_process__list_wrap ul li h3 {
        font-size: 3.5rem;
    }
    .our_process__small_title {
        padding-left: 0px;
    }
    .our_process__small_title h3 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    .our_process__bg {
        top: 3%;
    }
}

/*--------------------------------------------------------------
# Propel Brand Section
--------------------------------------------------------------*/
.propel_brand_section {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 814px;
}
.propel_brand_section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #3e2e17;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}
.propel_brand_section__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    grid-gap: 20px;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}
.propel_brand_section__row .propel_brand__title {
    max-width: 672px;
}
.propel_brand_section__row .propel_brand__title h2 {
    font-size: 6.2rem;
    color: var(--fiend-text-light);
    line-height: 1.1;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
.propel_brand_section__row .section_btn {
    padding: 0 0 15px;
}
.propel_brand_section .propel_brand__video_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    left: 0;
    top: 0;
}
.propel_brand_section .propel_brand__video_bg .video_placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 991px) {
    .propel_brand_section {
        min-height: 535px;
    }
    .propel_brand_section__row {
        flex-direction: column;
        align-items: center;
    }
    .propel_brand_section__row .propel_brand__title {
        text-align: center;
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .propel_brand_section {
        min-height: 400px;
    }
    .propel_brand_section__row .propel_brand__title h2 {
        font-size: 5rem;
    }
}
@media (max-width: 575px) {
    .propel_brand_section__row .propel_brand__title h2 {
        font-size: 4rem;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about_section {
    padding: 140px 0 0;
    background-color: var(--fiend-white);
}
.about_section .about_title .site_title {
    font-weight: 600;
}
.about_section__row {
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
}
.about_section__row--column-left {
    width: 45%;
}
.about_section__row--column-left .about_image_wrap {
    margin-bottom: 25px;
}
.about_section__row--column-left .about_image_wrap .about_placeholder {
    border-radius: 5px;
    min-height: 400px;
}
.about_section__row--column-left .about_image_name {
    text-align: right;
}
.about_section__row--column-left .about_image_name p {
    font-size: 15px;
    font-weight: 500;
    color: var(--fiend-text-dark);
    text-transform: uppercase;
    font-family: "Rethink Sans", sans-serif;
}
.about_section__row--column-right {
    width: 55%;
    padding: 0px 10% 20px 7%;
}
.about_section__row--column-right .about_content {
    padding: 155px 0 0;
}
.about_section__row--column-right .about_content .site_desc p {
    color: var(--fiend-text-dark);
    line-height: 1.7;
    font-family: "Rethink Sans", sans-serif;
}
.about_section__row--column-right .about_content .site_desc p:not(:last-child) {
    margin-bottom: 25px;
}
.about_section__row--column-right .about_content .section_btn {
    padding-top: 60px;
}
.about_section .eleven__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}
.about_section .eleven__row--column {
    overflow: hidden;
}
.about_section .eleven__row .eleven_box {
    padding: 30px 0 0;
}
.about_section .eleven__row .eleven_box h3 {
    font-size: 3.2rem;
    font-family: "Poppins", sans-serif;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--fiend-text-dark);
}
.about_section .eleven__row .eleven_box p {
    color: var(--fiend-text-dark);
    font-family: "Rethink Sans", sans-serif;
}
.about_section .eleven__row .eleven_box_divider {
    border-top: 1px solid #979797;
}

@media (max-width: 991px) {
    .about_section {
        padding: 80px 0 0;
    }
    .about_section__row {
        padding: 80px 0;
    }
    .about_section__row--column-right {
        padding: 0px 5% 20px 5%;
    }
    .about_section__row--column-right .about_content {
        padding: 80px 0 0;
    }
}
@media (max-width: 767px) {
    .about_section__row {
        max-width: 520px;
        margin: 0 auto;
        flex-direction: column;
        grid-gap: 30px;
    }
    .about_section__row--column-left,
    .about_section__row--column-right {
        width: 100%;
        padding: 0;
    }
    .about_section__row--column-left .about_image_wrap {
        margin-bottom: 15px;
    }
    .about_section__row--column-left .about_image_name {
        text-align: left;
    }
    .about_section__row--column-right .about_content .site_desc p:not(:last-child) {
        margin-bottom: 10px;
    }
    .about_section__row--column-right .about_content .section_btn {
        padding-top: 30px;
    }
    .about_section .eleven__row {
        grid-gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
    .about_section .eleven__row .eleven_box h3 {
        font-size: 3.5rem;
    }
}
@media (max-width: 575px) {
    .about_section__row {
        max-width: 100%;
        padding: 80px 15px;
    }
    .about_section .eleven__row .eleven_box h3 {
        font-size: 3rem;
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# Brand Logo Section
--------------------------------------------------------------*/
.brand_logo_section {
    background-color: var(--fiend-white);
    padding: 0 0 200px;
}
.brand_logo_section__row ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-column-gap: 120px;
    grid-row-gap: 230px;
    justify-content: space-between;
}
.brand_logo_section__row ul li {
    text-align: center;
}
.brand_logo_section__row ul li a {
    display: block;
}

@media (max-width: 1199px) {
    .brand_logo_section__row ul {
        grid-column-gap: 90px;
        grid-row-gap: 150px;
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .brand_logo_section {
        padding: 0 0 80px;
    }
    .brand_logo_section__row ul {
        grid-column-gap: 50px;
        grid-row-gap: 80px;
    }
}
@media (max-width: 767px) {
    .brand_logo_section__row ul {
        grid-column-gap: 30px;
        grid-row-gap: 40px;
    }
}
@media (max-width: 575px) {
    .brand_logo_section__row ul {
        grid-column-gap: 0;
    }
    .brand_logo_section__row ul li {
        width: 50%;
        padding: 0 20px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    padding: 60px 0 60px;
}
footer .footer_logo {
    display: flex;
}
footer .footer_logo img {
    width: auto;
    max-width: 154px;
}
footer .footer_block {
    padding: 60px 0 140px;
}
footer .footer_block ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 25px;
}
footer .footer_block ul li .footer_mrnu {
    overflow: visible;
}
footer .footer_block ul li .footer_mrnu p {
    font-size: 16px;
    font-weight: 500;
    color: var(--fiend-text-light);
    margin-bottom: 10px;
    min-height: 21px;
    font-family: "Rethink Sans", sans-serif;
}
footer .footer_block ul li .footer_mrnu a {
    font-size: 3.6rem;
    font-family: "Poppins", sans-serif;
    color: var(--fiend-text-light);
    font-weight: 500;
    transition: all 0.5s ease 0s;
    position: relative;
    display: inline-block;
    overflow: hidden;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--fiend-red) 0%, var(--fiend-red) 50%, var(--fiend-text-light) 50%, var(--fiend-text-light) 100%);
    background-size: 200% 100%;
    background-position: 100% center;
    transition: background-position 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

footer .footer_block ul li .footer_mrnu a:hover {
    background-position: 0% center;
}
footer .footer_block ul li .footer_mrnu .social_icon {
    padding: 20px 0 10px 0;
    overflow: visible;
}
footer .footer_block ul li .footer_mrnu .social_icon a {
    display: inline-block;
    overflow: visible;
}
footer .footer_block ul li .footer_mrnu .social_icon a img {
    width: auto;
    transition: all 0.5s ease 0s;
    max-width: 19px;
    display: block;
}
footer .footer_block ul li .footer_mrnu .social_icon a:not(:last-child) {
    margin-right: 30px;
}
footer .footer_block ul li .footer_mrnu .social_icon a:hover img {
    transform: translateY(-5px);
}
footer .footer_copyright {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}
footer .footer_copyright-row {
    display: flex;
    align-items: baseline;
    gap: 11px;
    flex-wrap: wrap;
}
footer .footer_copyright-column-2 {
    text-align: right;
    flex-shrink: 0;
}
footer .footer_copyright p {
    color: var(--fiend-text-light);
    font-size: 13px;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.4;
    font-family: "Rethink Sans", sans-serif;
}
footer .footer_copyright-row p {
    margin-top: 0;
}
footer .footer_copyright .copyright_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: baseline;
    gap: 11px;
}
footer .footer_copyright .copyright_menu li {
    position: relative;
    line-height: 1.4;
}
footer .footer_copyright .copyright_menu li:not(:last-child)::after {
    display: none;
}
footer .footer_copyright .copyright_menu a {
    color: var(--fiend-text-light);
    font-size: 13px;
    font-weight: 300;
    font-family: "Rethink Sans", sans-serif;
    line-height: 1.4;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--fiend-red) 0%, var(--fiend-red) 50%, var(--fiend-text-light) 50%, var(--fiend-text-light) 100%);
    background-size: 200% 100%;
    background-position: 100% center;
    transition: background-position 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
footer .footer_copyright .copyright_menu a:hover {
    background-position: 0% center;
}

@media (min-width: 1200px) {
    footer .container {
        max-width: 1300px;
    }
}
@media (max-width: 1023px) {
    footer .footer_copyright {
        flex-direction: column;
    }
    footer .footer_copyright-column-2 {
        text-align: left;
        flex-shrink: 1;
    }
}
@media (max-width: 991px) {
    footer .footer_block {
        padding: 50px 0;
    }
}
@media (max-width: 767px) {
    footer {
        padding: 50px 0 30px;
    }
    footer .footer_block {
        padding: 40px 0;
    }
    footer .footer_block ul {
        flex-direction: column;
        grid-gap: 20px;
    }
    footer .footer_block ul li .footer_mrnu p {
        font-size: 14px;
        margin-bottom: 10px;
        min-height: auto;
    }
    footer .footer_block ul li .footer_mrnu a {
        font-size: 3rem;
    }
    footer .footer_block ul li .footer_mrnu .social_icon {
        padding: 5px 0 0;
    }
}
@media (max-width: 639px) {
    footer .footer_copyright-row {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# Responsive Typography
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .site_title {
        font-size: 6rem;
    }
}
@media (max-width: 767px) {
    .site_title {
        font-size: 5rem;
    }
    .site_desc p {
        font-size: 2rem;
    }
    .common_btn {
        font-size: 18px;
        padding: 16px 30px;
    }
}
@media (max-width: 575px) {
    .site_title {
        font-size: 4rem;
    }
    .site_desc p {
        font-size: 1.8rem;
    }
}

/*--------------------------------------------------------------
# Process Page Specific Sections
--------------------------------------------------------------*/

/* Our Process Hero Section */
.our_process_hero_section {
    padding: 200px 0 150px;
    background-color: var(--fiend-bg);
    position: relative;
}

.our_process_hero__title {
    margin-bottom: 80px;
}

.our_process_hero__title h1 {
    color: var(--fiend-text-light);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.our_process_hero_section__row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.our_process_hero__image {
    flex: 1;
}

.our_process_hero__image .hero_placeholder {
    width: 100%;
    min-height: 400px;
    border-radius: 5px;
}

.our_process_hero__content {
    flex: 1;
}

.our_process_hero__content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--fiend-text-light);
    line-height: 1.4;
}

/* For Over Decade Section */
.for_over_decade_section {
    padding: 200px 0;
    background-color: var(--fiend-bg);
    position: relative;
}

.for_over_decade__title h2 {
    color: var(--fiend-text-light);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-bottom: 50px;
}

.for_over_decade__content h4 {
    font-family: "Rethink Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--fiend-text-light);
    line-height: 1.6;
    margin-bottom: 80px;
}

.for_over_decade__image_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.for_over_decade__image__col {
    width: 100%;
}

.for_over_decade__image__col .case_placeholder {
    width: 100%;
    min-height: 400px;
    border-radius: 5px;
}

.for_over_decade__long_img .case_placeholder {
    min-height: 600px;
}

/* What You Can Expect Section */
.what_you_can_expect_section {
    padding: 200px 0;
    background-color: var(--fiend-bg);
    position: relative;
}

.what_you_can_expect__title {
    position: relative;
    margin-bottom: 100px;
}

.what_you_can_expect__title h2 {
    color: var(--fiend-text-light);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.what_you_can_expect__shape {
    position: absolute;
    top: -50px;
    left: -50px;
    z-index: -1;
}

.what_you_can_expect__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.what_you_can_expect__box {
    display: flex;
    gap: 30px;
}

.what_you_can_expect__number h3 {
    font-family: "Poppins", sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--fiend-red);
    line-height: 1;
    min-width: 80px;
}

.what_you_can_expect__info h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--fiend-text-light);
    margin-bottom: 20px;
}

.what_you_can_expect__info .site_desc p {
    color: var(--fiend-text-light);
    font-family: "Rethink Sans", sans-serif;
    line-height: 1.7;
}

/* We Value Transparency Section */
.we_value_traspar_section {
    padding: 200px 0;
    background-color: var(--fiend-bg);
    position: relative;
}

.we_value_traspar__title h2 {
    color: var(--fiend-text-light);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-bottom: 40px;
}

.we_value_traspar__content .site_desc p {
    color: var(--fiend-text-light);
    font-family: "Rethink Sans", sans-serif;
    font-size: 2rem;
    line-height: 1.6;
}

/* Venturing Into Agency Section */
.venturing_into_agency_section {
    padding: 200px 0;
    background-color: var(--fiend-bg);
    position: relative;
}

.venturing_into_agency__title {
    margin-bottom: 80px;
}

.venturing_into_agency__title h3 {
    font-family: "Poppins", sans-serif;
    font-size: 4.2rem;
    font-weight: 500;
    color: var(--fiend-text-light);
    line-height: 1.3;
    text-align: center;
}

.venturing_into_agency_section__row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.venturing_into_agency_section__row--col-left {
    flex: 1;
}

.venturing_into_agency__content .site_desc p {
    color: var(--fiend-text-light);
    font-family: "Rethink Sans", sans-serif;
    font-size: 2rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.venturing_into_agency_section__row--col-right {
    flex: 1;
}

.venturing_into_agency__image .case_placeholder {
    width: 100%;
    min-height: 500px;
    border-radius: 5px;
}

/* Responsive Styles for Process Page */
@media (max-width: 991px) {
    .our_process_hero_section__row {
        flex-direction: column;
    }

    .for_over_decade__image_row {
        grid-template-columns: 1fr;
    }

    .what_you_can_expect__row {
        grid-template-columns: 1fr;
    }

    .venturing_into_agency_section__row {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .our_process_hero_section {
        padding: 150px 0 100px;
    }

    .our_process_hero__content h3 {
        font-size: 2.4rem;
    }

    .for_over_decade_section {
        padding: 150px 0;
    }

    .for_over_decade__content h4 {
        font-size: 1.8rem;
    }

    .what_you_can_expect_section {
        padding: 150px 0;
    }

    .what_you_can_expect__info h3 {
        font-size: 2.2rem;
    }

    .we_value_traspar_section {
        padding: 150px 0;
    }

    .venturing_into_agency_section {
        padding: 150px 0;
    }

    .venturing_into_agency__title h3 {
        font-size: 3rem;
    }
}

/*--------------------------------------------------------------
# Contact Page Specific Sections
--------------------------------------------------------------*/

/* Connect With Us Section */
.connect_with_us_section {
    padding: 200px 0 150px;
    background-color: var(--fiend-bg);
    position: relative;
}

.contact__title {
    margin-bottom: 100px;
}

.contact__title h1 {
    color: var(--fiend-text-light);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.connect_with_us_section .contact__title h1 span {
    color: var(--fiend-red);
    line-height: 1;
    font-size: 9rem;
    font-weight: 500;
    display: inline-block;
    margin: 0 0 13px;
}

.connect_with_us_section__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.connect_with_us__box {
    display: block;
    padding: 60px 50px;
    background-color: var(--fiend-bg);
    border: 2px solid var(--fiend-text-light);
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.connect_with_us__box:hover {
    background-color: var(--fiend-red);
    border-color: var(--fiend-red);
    transform: translateY(-5px);
}

.connect_with_us__box--light {
    background-color: var(--fiend-text-light);
    border-color: var(--fiend-text-light);
}

.connect_with_us__box--light:hover {
    background-color: var(--fiend-red);
    border-color: var(--fiend-red);
}

.connect_with_us__box h3 {
    font-family: "Poppins", sans-serif;
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--fiend-text-light);
    margin-bottom: 30px;
    line-height: 1.3;
}

.connect_with_us__box--light h3 {
    color: var(--fiend-text-dark);
}

.connect_with_us__box:hover h3 {
    color: var(--fiend-text-light);
}

.connect_with_us__box .site_desc p {
    color: var(--fiend-text-light);
    font-family: "Rethink Sans", sans-serif;
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.connect_with_us__box--light .site_desc p {
    color: var(--fiend-text-dark);
}

.connect_with_us__box:hover .site_desc p {
    color: var(--fiend-text-light);
}

.circle__arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--fiend-text-light);
    transition: all 0.3s ease;
}

.connect_with_us__box:hover .circle__arrow {
    background-color: var(--fiend-text-light);
    transform: rotate(45deg);
}

.circle__arrow img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.connect_with_us__box--light .circle__arrow {
    background-color: var(--fiend-text-dark);
}

.circle__arrow--white {
    background-color: var(--fiend-text-light) !important;
}
.circle__arrow--red {
    background-color: var(--fiend-red) !important;
}

/* Contact Section */
.contact_section {
    padding: 100px 0 200px;
    background-color: var(--fiend-bg);
    position: relative;
    overflow: hidden;
}

.want_more__approach {
    text-align: center;
    margin-bottom: 80px;
}

.want_more__approach .site_desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.want_more__approach .site_desc p {
    color: var(--fiend-text-light);
    font-family: "Rethink Sans", sans-serif;
    font-size: 2.2rem;
}

.want_more__approach .site_desc img {
    width: 15px;
    height: auto;
    filter: brightness(0) invert(1);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.contact_section__wrapper {
    padding: 0;
}

.contact_section__row {
    display: flex;
    align-items: center;
    gap: 70px;
    padding-left: 15px;
}

.contact_section__row-col-4 {
    width: 40%;
}

.contact_section__row-col-4 .contact_info_block {
    max-width: 493px;
}

.contact_section__row-col-4 .contact_info_block .contact_touch {
    margin-bottom: 30px;
}

.contact_section__row-col-4 .contact_info_block .contact_touch h3 {
    font-family: "Poppins", sans-serif;
    font-size: 4.2rem;
    color: var(--fiend-text-light);
    font-weight: 500;
    margin-bottom: 35px;
}

.contact_section__row-col-4 .contact_info_block .contact_touch p {
    font-family: "Rethink Sans", sans-serif;
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--fiend-text-light);
}

.contact_section__row-col-4 .contact_info_block .cm_email_wrap {
    display: flex;
    flex-direction: column;
}

.contact_section__row-col-4 .contact_info_block .cm_email_wrap p {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    font-family: "Rethink Sans", sans-serif;
    margin: 0;
}

.contact_section__row-col-4 .contact_info_block .cm_email_wrap p + p {
    margin-top: 5px;
}

.contact_section__row-col-4 .contact_info_block .cm_email_wrap p span {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    min-width: 55px;
    color: var(--fiend-red);
}

.contact_section__row-col-4 .contact_info_block .cm_email_wrap p a {
    font-family: "Rethink Sans", sans-serif;
    color: var(--fiend-text-light);
    font-weight: 400;
    transition: all 0.5s ease 0s;
    font-size: 2.2rem;
    text-decoration: none;
}

.contact_section__row-col-4 .contact_info_block .cm_email_wrap p a:hover {
    color: var(--fiend-red);
}

.contact_section__row-col-8 {
    width: 60%;
}

.contact_info_block {
    position: sticky;
    top: 100px;
}

.contact_section__row-col-8 .contact_red_bg {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    -webkit-mask-image: url(../../images/contact_red_bg.svg);
    mask-image: url(../../images/contact_red_bg.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center right;
    mask-position: center right;
    aspect-ratio: 16/15.4;
    margin-bottom: -1px;
}

.contact_section__row-col-8 .contact_red_bg video,
.contact_section__row-col-8 .contact_red_bg img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .connect_with_us_section__row {
        grid-template-columns: 1fr;
    }

    .contact_section__row {
        flex-direction: column;
    }

    .contact_section__row-col-4,
    .contact_section__row-col-8 {
        flex: 1 1 100%;
    }

    .contact_info_block {
        position: static;
    }
}

@media (max-width: 767px) {
    .connect_with_us_section {
        padding: 150px 0 100px;
    }

    .connect_with_us__box {
        padding: 40px 30px;
    }

    .connect_with_us__box h3 {
        font-size: 2.4rem;
    }

    .contact_section {
        padding: 80px 0 150px;
    }

    .contact_touch h3 {
        font-size: 2.8rem;
    }
}

/*--------------------------------------------------------------
# Contact Modal
--------------------------------------------------------------*/
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--fiend-bg);
    z-index: 1;
}

.contact-modal__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 60px 50px;
    background-color: var(--fiend-bg);
    border-radius: 5px;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.contact-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    width: auto;
    height: auto;
}

.contact-modal__close span {
    color: var(--fiend-text-light);
    font-size: 3.6rem;
    font-weight: 300;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    max-width: 20px;
    display: block;
    transition: color 0.3s ease;
}

.contact-modal__close:hover span {
    color: var(--fiend-red);
}

.contact-modal__title {
    font-family: "Poppins", sans-serif;
    font-size: 4.2rem;
    font-weight: 500;
    color: var(--fiend-text-light);
    margin: 0;
    flex: 1;
}

.contact-modal__form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-modal__field {
    width: 100%;
}

.contact-modal__field input,
.contact-modal__field textarea {
    width: 100%;
    padding: 18px 20px;
    background-color: rgba(252, 252, 252, 0.1);
    border: 1px solid rgba(252, 252, 252, 0.2);
    border-radius: 5px;
    font-family: "Rethink Sans", sans-serif;
    font-size: 1.8rem;
    color: var(--fiend-text-light);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-modal__field input::placeholder,
.contact-modal__field textarea::placeholder {
    color: rgba(252, 252, 252, 0.7);
    font-weight: 600;
    font-size: 1.8rem;
    font-family: "Rethink Sans", sans-serif;
}

.contact-modal__field input.error,
.contact-modal__field textarea.error {
    border-color: var(--fiend-red);
}

.field-error {
    display: none;
    color: var(--fiend-red);
    font-family: "Rethink Sans", sans-serif;
    font-size: 1.4rem;
    margin-top: 8px;
    font-weight: 500;
}

.field-error:not(:empty) {
    display: block;
}

.contact-modal__field input:focus,
.contact-modal__field textarea:focus {
    outline: none;
    border-color: var(--fiend-red);
    background-color: rgba(252, 252, 252, 0.15);
}

.contact-modal__field textarea {
    resize: vertical;
    min-height: 150px;
    font-family: "Rethink Sans", sans-serif;
}

.contact-modal__submit-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.contact-modal__submit {
    padding: 18px 40px;
    background-color: rgba(252, 252, 252, 0.1);
    border: 1px solid var(--fiend-text-light);
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--fiend-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    max-width: 200px;
}

.contact-modal__submit:hover {
    background-color: var(--fiend-red);
    border-color: var(--fiend-red);
    color: var(--fiend-text-light);
}

.contact-modal__error-message {
    display: none;
    background-color: rgba(198, 28, 36, 0.2);
    border: 1px solid var(--fiend-red);
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 25px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.contact-modal__error-message .error-icon {
    color: var(--fiend-red);
    font-size: 2rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    min-width: 20px;
    text-align: center;
}

.contact-modal__error-message .error-text {
    color: var(--fiend-text-light);
    font-family: "Rethink Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .contact-modal__content {
        padding: 40px 30px;
        max-width: 90%;
    }

    .contact-modal__header {
        margin-bottom: 40px;
    }

    .contact-modal__close span {
        font-size: 3rem;
        max-width: 18px;
    }

    .contact-modal__title {
        font-size: 3.2rem;
    }

    .contact-modal__field input,
    .contact-modal__field textarea {
        padding: 15px 18px;
        font-size: 1.6rem;
    }

    .contact-modal__field input::placeholder,
    .contact-modal__field textarea::placeholder {
        font-size: 1.6rem;
    }

    .contact-modal__submit {
        padding: 15px 30px;
        font-size: 1.6rem;
        max-width: 180px;
    }
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* About Hero Section */
.about_hero_section {
    padding: 140px 0 200px;
    position: relative;
    background-color: var(--fiend-bg);
    overflow: hidden;
}

.about_hero_section__row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.about_hero__title {
    max-width: 800px;
}

.about_hero__title .site_title {
    font-size: 8rem;
    line-height: 1.1;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--fiend-text-light);
}

.about_hero__content {
    max-width: 700px;
}

.about_hero__content h3 {
    font-size: 2.8rem;
    line-height: 1.4;
    font-family: "Rethink Sans", sans-serif;
    font-weight: 400;
    color: var(--fiend-text-light);
}

.about_hero__shape_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.about_hero__shape_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Awards Section */
.awards_section {
    padding: 200px 0;
    position: relative;
    background-color: var(--fiend-bg);
    overflow: hidden;
}

.awards__content {
    text-align: center;
    margin-bottom: 100px;
}

.awards__content .small_large_title {
    font-size: 4.5rem;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--fiend-text-light);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.awards_section__row {
    position: relative;
    z-index: 2;
}

.awards_section__row ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.awards__box {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 30px;
    border-radius: 10px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.awards__info {
    text-align: center;
}

.awards__img {
    margin-bottom: 20px;
}

.awards__img img {
    max-width: 150px;
    height: auto;
}

.awards__info p {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--fiend-text-light);
    margin-bottom: 10px;
    font-family: "Rethink Sans", sans-serif;
}

.awards__info span {
    font-size: 1.4rem;
    color: rgba(252, 252, 252, 0.7);
    font-family: "Rethink Sans", sans-serif;
}

.awards__shape_bg1,
.awards__shape_bg2,
.awards__shape_bg2_1,
.awards__shape_bg3 {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
}

.awards__shape_bg1 {
    top: 10%;
    left: 5%;
}

.awards__shape_bg2 {
    top: 50%;
    right: 10%;
}

.awards__shape_bg2_1 {
    bottom: 20%;
    left: 15%;
}

.awards__shape_bg3 {
    top: 30%;
    right: 5%;
}

.awards__shape_bg1 img,
.awards__shape_bg2 img,
.awards__shape_bg2_1 img,
.awards__shape_bg3 img {
    width: 100%;
    height: auto;
}

/* Our Story Section */
.our_story_section {
    padding: 200px 0;
    background-color: var(--fiend-bg);
}

.our_story_section__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.our_story_section__row--col-left {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.our_story_section__row--col-right {
    flex: 1;
    min-width: 300px;
}

.our_story__content {
    padding: 0 20px;
}

.our_story__title {
    margin-bottom: 40px;
}

.our_story__title .cm__story_label {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--fiend-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: "Rethink Sans", sans-serif;
}

.our_story__title h3 {
    font-size: 4rem;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--fiend-text-light);
    margin-bottom: 30px;
}

.our_story__title .site_desc {
    margin-top: 30px;
}

.our_story__image {
    border-radius: 10px;
    overflow: hidden;
}

.our_story__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Curiosity Sparked Section */
.curiousity_sparked_section {
    padding: 200px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.curiousity_sparked_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.curiousity_sparked_section__wrapper {
    position: relative;
    z-index: 2;
}

.curiousity_sparked_section__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.curiousity__content {
    max-width: 800px;
}

.curiousity__content .site_title {
    font-size: 6rem;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--fiend-text-light);
    margin-bottom: 30px;
}

.curiousity__content p {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--fiend-text-light);
    font-family: "Rethink Sans", sans-serif;
}

/* Meet The Team Section */
.meet_the_team_section {
    padding: 200px 0;
    background-color: var(--fiend-bg);
}

.meet_the_team__title {
    text-align: right;
    margin-bottom: 100px;
}

.meet_the_team__title .site_title {
    font-size: 8rem;
    line-height: 1.1;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--fiend-text-light);
}

.meet_the_team_section__row--patner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
    margin-bottom: 60px;
}

.meet_the_patner__box {
    position: relative;
}

.meet_the_patner__image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.meet_the__details {
    position: relative;
}

.meet_the__details img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.meet_the__details p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--fiend-text-light);
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: "Rethink Sans", sans-serif;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.meet_the_patner__box:hover .meet_the__details p {
    opacity: 1;
}

.meet_the_patner__box:hover .meet_the__details img {
    transform: scale(1.05);
}

.meet_the_patner__info {
    text-align: center;
}

.meet_the_patner__info h3 {
    font-size: 2.4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--fiend-text-light);
    margin-bottom: 10px;
}

.meet_the_patner__info p {
    font-size: 1.6rem;
    color: rgba(252, 252, 252, 0.7);
    font-family: "Rethink Sans", sans-serif;
}

.team__col-3 {
    width: 100%;
}

/* Testimonial Section */
.testimonial_section {
    padding: 200px 0;
    background-color: var(--fiend-bg);
}

.testimonial_section_row--show {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.show_row_col_left {
    flex: 1;
    min-width: 300px;
}

.show_row_col_right {
    flex: 1;
    min-width: 300px;
}

.testimonial__image {
    border-radius: 10px;
    overflow: hidden;
}

.testimonial__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.testimonial__content {
    position: relative;
}

.quete_ic {
    font-size: 8rem;
    line-height: 1;
    color: var(--fiend-red);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.testimonial__content h3 {
    font-size: 3.2rem;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--fiend-text-light);
    margin-bottom: 40px;
}

.testimonial__info-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.testimonial__info p {
    font-size: 1.8rem;
    font-family: "Rethink Sans", sans-serif;
    color: var(--fiend-text-light);
    margin-bottom: 5px;
}

.testimonial__info p:last-child {
    font-size: 1.4rem;
    color: rgba(252, 252, 252, 0.7);
    margin-bottom: 0;
}

.testimonial__logo img {
    max-width: 120px;
    height: auto;
}

.testimonial_section_row__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
}

.inner_row_col-6 {
    width: 100%;
}

.inner_testmonial__content {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inner_testmonial__content .quete_ic {
    font-size: 5rem;
    margin-bottom: 15px;
}

.inner_testmonial__content h4 {
    font-size: 2.2rem;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--fiend-text-light);
    margin-bottom: 30px;
}

/* CTA Let's Talk Section */
.cm_lets_talk__black_section {
    background-color: var(--fiend-bg);
}

/* Responsive Styles for About Page */
@media (max-width: 1199px) {
    .about_hero__title .site_title {
        font-size: 6rem;
    }

    .awards_section__row ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .meet_the_team_section__row--patner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .about_hero_section {
        padding: 100px 0 150px;
    }

    .about_hero__title .site_title {
        font-size: 5rem;
    }

    .about_hero__content h3 {
        font-size: 2.4rem;
    }

    .awards__content .small_large_title {
        font-size: 3.5rem;
    }

    .awards_section__row ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .our_story_section__row {
        flex-direction: column;
    }

    .our_story__title h3 {
        font-size: 3.5rem;
    }

    .curiousity__content .site_title {
        font-size: 4.5rem;
    }

    .meet_the_team__title .site_title {
        font-size: 6rem;
    }

    .meet_the_team_section__row--patner {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial__content h3 {
        font-size: 2.8rem;
    }

    .testimonial_section_row__inner {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 767px) {
    .about_hero_section {
        padding: 80px 0 120px;
    }

    .about_hero__title .site_title {
        font-size: 4rem;
    }

    .about_hero__content h3 {
        font-size: 2rem;
    }

    .awards_section {
        padding: 100px 0;
    }

    .awards__content .small_large_title {
        font-size: 3rem;
    }

    .awards_section__row ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .our_story_section {
        padding: 100px 0;
    }

    .our_story__title h3 {
        font-size: 3rem;
    }

    .curiousity_sparked_section {
        padding: 100px 0;
    }

    .curiousity__content .site_title {
        font-size: 3.5rem;
    }

    .meet_the_team_section {
        padding: 100px 0;
    }

    .meet_the_team__title .site_title {
        font-size: 4.5rem;
    }

    .meet_the_team_section__row--patner {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonial_section {
        padding: 100px 0;
    }

    .testimonial_section_row--show {
        flex-direction: column;
    }

    .testimonial__content h3 {
        font-size: 2.4rem;
    }
}