@import url("fonts.css");

:root {
    --primary-color: #0a439d;
    --secundary-color: #ffffff;
    --tertiary-color: #e7fbff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

.hide-section {
    display: none;
    visibility: hidden;
}

body {
    font-family: "Hando", sans-serif;
    background-color: var(--primary-color);
}

/* SIDE MENU */

.side-menu {
    width: 250px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 100;
    position: fixed;
    padding: 30px;
    right: -300px;
    box-shadow:
        rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
        rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
        rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    z-index: 9999;
    border-radius: 50px 0px 0px;
}
.w-full {
    width: 100%;
}
.side-menu .close-btn {
    position: relative;
}

.side-menu ul {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.side-menu ul li {
    list-style: none;
    border-bottom: 1px solid var(--secundary-color);
    padding-bottom: 1rem;
}

.side-menu ul li a {
    text-decoration: none;
    color: var(--secundary-color);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.side-menu .vixicom-logo {
    width: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

.side-menu .vixicom-logo img {
    width: 100%;
}

.side-menu .close-btn svg {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    font-size: 2rem;
    color: #889097;
}

.menu-is-active {
    right: 0px;
    transition: all 0.3s ease;
}

.container {
    max-width: 1440px;
    width: 95%;
    margin: 0 auto;
    padding: 0 1.5vw;
    display: flex;
}

/* ----- HEADER ----- */
header {
    background-color: var(--primary-color);
    padding-top: 3rem;
}

header .container {
    background-image: url("../images/background_hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    padding: 0 3rem;
    z-index: 99;
    border-radius: 0 25px 30px 30px;
}

header .container nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
}

header .container nav .nav_links {
    display: flex;
    align-items: center;
    column-gap: 5rem;
}

header .container nav img {
    width: 140px;
}

header .container nav ul {
    display: flex;
    list-style: none;
    column-gap: 2.5rem;
}

header .container nav ul li a {
    color: var(--secundary-color);
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    font-weight: 500;
    text-decoration: none;
}

header .container nav .nav_links > a {
    color: var(--secundary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid var(--secundary-color);
    padding: 1.5rem;
    border-radius: 10rem;
    vertical-align: middle;
    background-color: #ffffff42;
    transition: all 0.3s ease-in-out;

    &:hover {
        background-color: transparent;
    }
}

header .hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
}

header .hamburger span {
    display: block;
    width: 35px;
    height: 5px;
    background-color: var(--secundary-color);
    margin: 5px 0;
    border-radius: 2px;
}

/* ----- HERO ----- */
header .container .hero_section {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    margin: 20vh auto 32vh auto;
    height: 100%;
    row-gap: 3rem;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        top: 375px;
        left: 0px;
        width: 100px;
        height: 110px;
        background-image: url("../images/scroll_icon.svg");
        background-repeat: no-repeat;
        background-size: cover;
        transform: translate(-50%, -50%);
    }

    &::after {
        content: "";
        position: absolute;
        top: 510px;
        right: -100px;
        width: 107px;
        height: 106px;
        background-image: url("../images/vixicom_label.png");
        background-repeat: no-repeat;
        background-size: cover;
        transform: translate(-50%, -50%);
    }
}

header .container .hero_section h1 {
    font-weight: 600;
    color: #d4f1ff;
    font-size: clamp(3rem, 5vw, 6rem);
}

header .container .hero_section p {
    font-weight: 400;
    color: var(--secundary-color);
    font-size: clamp(1.4rem, 1.5vw, 2rem);
    width: 50%;
}

header .container .hero_section a {
    text-decoration: none;
    background-color: var(--secundary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    width: fit-content;
    font-weight: 600;
    border-radius: 10rem;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    font-size: 1.2rem;

    &:hover {
        background-color: transparent;
        border: 2px solid var(--secundary-color);
        color: var(--secundary-color);
    }
}

/* ----- MAIN ----- */

/* ----- HEADPHONES ----- */

/* #headphones {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    z-index: 9999;
    pointer-events: none;
} */

main .headphones_section {
    position: relative;
    z-index: 1;
}

/* .headphones_section>div {
    display: block;
    height: 700px;
    overflow: visible;
    position: relative;
} */

/* .headphones_section>div img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
} */
.headphones_section_background {
    background-image: url("../images/headphone_section_background.png");
    -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 80px);
    mask-image: linear-gradient(to bottom, transparent 0px, black 80px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    margin-top: -70px;
}

.headphones_section img#headphones {
    position: sticky;
    top: 30%;
    width: 320px;
    display: block;
    margin: auto;
    margin-top: -150px;
    padding-left: 5px;
}

/* ----- PEOPLE ----- */

.people_section {
    position: relative;
    overflow: visible;
    margin-top: -330px;
    z-index: 0;
}

.people_section .container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.people_section .container img {
    width: 100%;

    position: relative;
    z-index: 1;
}

.left_people {
    background-position: right !important;
    background: url("/assets/images/left-people.png");
}

.right_people {
    background: url('/assets/images/right-people.png');
}
.people_section_container {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 25px;
}

.right_people,
.left_people {
    width: 100%;
    height: 400px;
    background-size: contain;
    background-repeat: repeat-x;
}

.center_person img {
    width: 525px;
    position: relative;
    z-index: 99;
}

section.people_section_2 {
    margin-top: -330px;
}

/* ----- APPLY NOW ----- */

/* .apply_section {
    padding: 4rem 0 8rem 0;
}

.apply_section .container {
    display: flex;
    flex-direction: column;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        background-image: url("../images/hexagon.png");
        background-repeat: no-repeat;
        width: 93px;
        height: 172px;
        top: 0px;
        left: 25px;
        z-index: 0;
    }

    &::after {
        content: "";
        position: absolute;
        background-image: url("../images/circle.png");
        background-repeat: no-repeat;
        width: 93px;
        height: 143px;
        top: 10px;
        right: 25px;
        z-index: 0;
    }
}

.apply_section .container h2 {
    font-size: clamp(2rem, 3vw, 4rem);
    color: var(--secundary-color);
    text-align: center;
    font-family: "Hando", sans-serif;
    font-weight: 400;
    width: 100%;
    margin: auto;
    margin-bottom: 10rem;
    z-index: 1;
}

.apply_section .cards_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    z-index: 1;
}

.apply_section .cards_container .card {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    background: var(--secundary-color);
    padding: 1rem;
    border-radius: 12px;
}

.apply_section .cards_container .card .header_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Hando", sans-serif;
}

.apply_section .cards_container .card .header_card>div {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.apply_section .cards_container .card .header_card strong {
    font-size: 1.6rem;
}

.apply_section .cards_container .card .header_card .sales {
    color: #92BF65;
}

.apply_section .cards_container .card .header_card .qa {
    color: #3ABABA;
}

.apply_section .cards_container .card .header_card .it {
    color: #2995E3;
}

.apply_section .cards_container .card .header_card span {
    color: #9E9E9E;
    font-size: 1.2rem;
}

.apply_section .cards_container .card .content_card {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.apply_section .cards_container .card .content_card h3 {
    font-family: "Poppins", sans-serif;
    color: #5D6A6B;
}

.apply_section .cards_container .card .content_card p {
    font-family: "Hando", sans-serif;
    color: #737373;
}

.apply_section .cards_container .card .footer_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apply_section .cards_container .card .footer_card p {
    font-family: "Poppins", sans-serif;
    color: #5D6A6B;
    font-weight: 700;
    font-size: 1.4rem;
}

.apply_section .cards_container .card .footer_card span {
    font-weight: 400;
    color: #8D8D8D;
}

.apply_section .cards_container .card .footer_card a {
    text-decoration: none;
    padding: 1rem 2rem;
    background-color: #7575751A;
    border-radius: 10rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #2177FC;
    font-size: 1.2rem;
} */

/* ----- APPLY NOW ----- */

.apply_section {
    padding: 10rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.apply_section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #92BF6526 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.apply_section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #d4f1ff1f 0%, transparent 60%);
    transform: translate(30%, -50%);
    pointer-events: none;
    z-index: 0;
}

.apply_section .container {
    position: relative;
    z-index: 1;
    display: block;
}

.apply_section .apply_card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 5rem;
    background: linear-gradient(135deg, #ffffff14 0%, #ffffff05 100%);
    border: 1px solid #ffffff24;
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 30px 80px -20px #00000066,
        inset 0 1px 0 #ffffff14;
    position: relative;
    overflow: hidden;
}

.apply_section .apply_card_content {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.apply_section .apply_eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 1.1rem;
    color: #92BF65;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 10rem;
    background-color: #92BF651f;
    border: 1px solid #92BF6580;
}

.apply_section .apply_eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #92BF65;
    margin-right: 0.8rem;
    box-shadow: 0 0 8px #92BF65;
    animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.apply_section .apply_card_content h2 {
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    color: var(--secundary-color);
    font-weight: 600;
    line-height: 1.1;
    font-family: "Hando", sans-serif;
}

.apply_section .apply_card_content p {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    color: #d4f1ff;
    opacity: 0.8;
    line-height: 1.6;
}

.apply_section .apply_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.apply_section .apply_tag {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.7rem 1.4rem;
    border-radius: 10rem;
    background-color: #ffffff0d;
    border: 1px solid;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.apply_section .apply_tag:hover {
    transform: translateY(-2px);
    background-color: #ffffff1a;
}

.apply_section .apply_tag.sales {
    color: #b9e58c;
    border-color: #92BF6580;
}

.apply_section .apply_tag.qa {
    color: #6ee0e0;
    border-color: #3ABABA80;
}

.apply_section .apply_tag.it {
    color: #8cc2f0;
    border-color: #2995E380;
}

.apply_section .apply_cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    text-decoration: none;
    background-color: var(--secundary-color);
    color: var(--primary-color);
    padding: 1.3rem 2.4rem;
    width: fit-content;
    font-weight: 600;
    border-radius: 10rem;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

.apply_section .apply_cta svg {
    transition: transform 0.3s ease-in-out;
}

.apply_section .apply_cta:hover {
    background-color: transparent;
    border-color: var(--secundary-color);
    color: var(--secundary-color);
}

.apply_section .apply_cta:hover svg {
    transform: translateX(4px);
}

.apply_section .apply_card_visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.apply_section .apply_visual_circle {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff1a 0%, transparent 70%);
    border: 1px solid #ffffff24;
    animation: applyPulse 3s ease-in-out infinite;
}

.apply_section .apply_visual_circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid #ffffff14;
    animation: applyPulse 3s ease-in-out infinite 0.6s;
}

@keyframes applyPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.12); opacity: 1; }
}

.apply_section .apply_card_visual img {
    position: relative;
    width: 180px;
    z-index: 1;
    filter: drop-shadow(0 15px 35px #00000066);
}

/* ----- STATS STRIP ----- */
.stats_section {
    padding: 6rem 0 4rem 0;
    background-color: var(--primary-color);
}

.stats_section .container {
    flex-direction: column;
    row-gap: 4rem;
}

.stats_section .stats_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    text-align: center;
}

.stats_section .stats_header h2 {
    font-size: clamp(3rem, 3vw, 4rem);
    font-family: "Hando", sans-serif;
    font-weight: 600;
    color: var(--secundary-color);
}

.stats_section .stats_header p {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    color: #d4f1ff;
    opacity: 0.75;
    max-width: 720px;
    line-height: 1.4em;
}

.stats_section .stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 2rem;
    width: 100%;
}

.stats_section .stat_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 0.8rem;
    padding: 2rem 1rem;
    border-radius: 12px;
    background-color: #ffffff0d;
    border: 1px solid #ffffff1f;
    text-align: center;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.stats_section .stat_item:hover {
    transform: translateY(-4px);
    background-color: #ffffff14;
}

.stats_section .stat_item strong {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 600;
    color: #d4f1ff;
    line-height: 1;
}

.stats_section .stat_item strong sup {
    font-size: 0.5em;
    font-weight: 500;
    color: #92BF65;
    vertical-align: super;
    margin-left: 2px;
}

.stats_section .stat_item span {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    color: var(--secundary-color);
    opacity: 0.8;
    font-weight: 400;
}

/* ----- SERVICES ---- */

.services_section {
    padding-top: 100px;
}

.services_section .services_title {
    font-size: clamp(4rem, 3vw, 4rem);
    text-align: center;
    font-family: "Hando", sans-serif;
    font-weight: 600;
    margin: 0 auto 8rem auto;
    color: var(--secundary-color);
}

.services_section .container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    padding: 5rem 0;
}

.services_section .container .left-content {
    width: 50%;
    position: relative;
}

.services_section .container .left-content .left-line {
    position: absolute;
    left: -10px;
    top: 0;
    width: 5px;
    height: 100px;
    background-color: #4caf50;
    transition: top 0.7s ease-in-out;
}

.services_section .container .left-content .service {
    margin-bottom: 6rem;
    transition:
        opacity 0.5s ease-in-out,
        transform 0.5s ease-in-out;
    opacity: 0.25;
    transform: translateX(-40px) scale(0.9);
}

.services_section .container .left-content .service h2 {
    font-size: 3rem;
    color: #d4f1ff;
}

.services_section .container .left-content .service p {
    padding-top: 10px;
    font-weight: 400;
    font-size: 1.6rem;
    color: #d4f1ff;
    opacity: 0.5;
    line-height: 1.4em;
}

.services_section .container .left-content .service.active {
    opacity: 1;
    padding-left: 10px;
    transform: translateX(0);
}

.services_section .container .right-content {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.services_section .container .right-content .circle-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .services_section .container .right-content .circle-container .outer-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -50px;
} */

/* .services_section .container .right-content .circle-container .inner-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s ease-in-out;
} */

.services_section .container .right-content .circle-container .inner-circle .lightbulb {
    transition: transform 0.7s ease-in-out;
    position: relative;
    z-index: 999;
    height: 245px;
    padding: 50px;
    background: #c7daff;
    border-radius: 50%;
    box-shadow: 0 0 20px white;
}

.services_section .container .right-content .circle-container .vertical-line {
    position: absolute;
    /* top: 100px; */
    top: 25px;
    /* height: 550px; */
    height: 700px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.services_section .container .right-content .circle-container .vertical-line .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid white;
    position: absolute;
    left: -9px;
    transition: background-color 0.5s ease-in-out;
}

.services_section .container .right-content .circle-container .vertical-line .dot.active {
    background-color: #ffd700;
}

/* ----- HOW WE WORK / PROCESS ----- */
.process_section {
    padding: 8rem 0 6rem 0;
    background-color: var(--primary-color);
    position: relative;
}

.process_section .container {
    flex-direction: column;
    row-gap: 5rem;
}

.process_section .process_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
    text-align: center;
}

.process_section .process_header h2 {
    font-size: clamp(3rem, 3vw, 4rem);
    font-family: "Hando", sans-serif;
    font-weight: 600;
    color: var(--secundary-color);
}

.process_section .process_header p {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    color: #d4f1ff;
    opacity: 0.75;
    max-width: 720px;
    line-height: 1.5em;
}

.process_section .process_steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
}

.process_section .process_step {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #ffffff0d 0%, #ffffff04 100%);
    border: 1px solid #ffffff1f;
    border-radius: 16px;
    transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.process_section .process_step:hover {
    transform: translateY(-4px);
    border-color: #92BF6580;
}

.process_section .process_step_number {
    font-size: 4rem;
    font-weight: 700;
    color: #92BF65;
    line-height: 1;
    font-family: "Hando", sans-serif;
}

.process_section .process_step h3 {
    font-size: 2rem;
    color: var(--secundary-color);
    font-weight: 600;
    font-family: "Hando", sans-serif;
}

.process_section .process_step p {
    font-size: 1.4rem;
    color: #d4f1ff;
    opacity: 0.75;
    line-height: 1.5em;
}

.process_section .process_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 50px;
}

.process_section .process_arrow::before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #92BF6580 50%, transparent);
}

.process_section .process_arrow::after {
    content: "";
    position: absolute;
    right: 4px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #92BF65;
    border-top: 1px solid #92BF65;
    transform: rotate(45deg);
}

.process_section .process_footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #ffffff14;
}

.process_section .process_footer_item {
    display: flex;
    flex-direction: column;
    row-gap: 0.6rem;
}

.process_section .process_footer_item strong {
    font-size: 1.6rem;
    color: var(--secundary-color);
    font-weight: 600;
    font-family: "Hando", sans-serif;
}

.process_section .process_footer_item span {
    font-size: 1.4rem;
    color: #d4f1ff;
    opacity: 0.7;
    line-height: 1.4em;
}

@media screen and (max-width: 950px) {
    .process_section .process_steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process_section .process_arrow {
        display: none;
    }

    .process_section {
        padding: 6rem 0 4rem 0;
    }
}

/* ----- QUOTE ----- */

.quote_section {
    background: rgb(10, 67, 157);
    background: linear-gradient(180deg, rgba(10, 67, 157, 1) 50%, rgba(231, 251, 255, 1) 50%);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.quote_section .container {
    padding: 4rem;
    background-color: var(--secundary-color);
    border-radius: 10px;
    box-shadow:
        rgba(0, 0, 0, 0.2) 0px 12px 28px 0px,
        rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
        rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    flex-direction: column;
    row-gap: 2rem;
}

.quote_section .container .request_header {
    display: flex;
    padding: 0 5rem;
}

.quote_section .container .request_header .request_text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    row-gap: 1rem;
    padding: 2rem 0 5rem 5rem;
    width: 50%;
}

.quote_section .container .request_header .request_text h2 {
    font-size: 3rem;
    color: #434343;
}

.quote_section .container .request_header .request_text p {
    font-size: 1.6rem;
    color: #5f5f5f;
}

.quote_section .container .request_header .request_text a {
    text-decoration: none;
    padding: 1rem 2rem;
    background-color: var(--secundary-color);
    color: #0a439d;
    border-radius: 10rem;
    border: 1px solid #0a439d;
    transition: all 0.3s ease-in-out;
    width: fit-content;
    font-size: 1.2rem;

    &:hover {
        background-color: #0a439d;
        color: var(--secundary-color);
        border-color: transparent;
    }
}

.quote_section .container .request_header .request_image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 5rem 5rem 0;
}

.quote_section .container .request_header .request_image img {
    width: 55%;
    height: fit-content;
}

.quote_section .container .swiper {
    width: 100%;
    height: 230px;
}

.quote_section .container .request_slider {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5rem;
    cursor: pointer;
}

.quote_section .container .request_slider .swiper-wrapper {
    align-items: center;
}

.quote_section .container .request_slider .slider_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    object-fit: contain;
    /* padding: 1rem 2rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset; */
    border-radius: 10px;
}

.quote_section .container .request_slider .slider_card img {
    width: 100%;
    object-fit: contain;
}

/* ----- ADVANTAGES ----- */
.advantages_section {
    background-color: var(--primary-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.advantages_section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #92BF6514 0%, transparent 60%);
    transform: translate(30%, -30%);
    pointer-events: none;
    z-index: 0;
}

.advantages_section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #d4f1ff14 0%, transparent 60%);
    transform: translate(-30%, 30%);
    pointer-events: none;
    z-index: 0;
}

.advantages_section .container {
    position: relative;
    z-index: 1;
}

.advantages_section .container {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

.advantages_section .container .advantages_header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.advantages_section .container .advantages_header > div {
    width: 50%;
}

.advantages_section .container .advantages_header h2 {
    font-size: clamp(3rem, 3vw, 4rem);
    text-align: center;
    font-family: "Hando", sans-serif;
    font-weight: 600;
    margin: auto;
    color: var(--secundary-color);
}

.advantages_section .container .advantages_header p {
    font-size: 1.6rem;
    text-align: center;
    color: #d4f1ff;
    opacity: 0.75;
    word-wrap: break-word;
}

.advantages_section .container .advantages_description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 4rem;
    background-color: var(--secundary-color);
    border: 1px solid #ffffff24;
    border-radius: 20px;
    box-shadow: 0 20px 60px #00000040, 0 0 0 1px #92BF6514;
    gap: 3rem;
    position: relative;
    column-gap: 5rem;
    margin-top: 6rem;
}

.advantages_section .container .advantages_description > div {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    width: 50%;
}

.advantages_section .container .advantages_description > div:nth-child(1) {
    align-items: center;
}

.advantages_section .container .advantages_description img {
    width: 250px;
    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.4));
    transform: scale(0.8);
}

.advantages_section .container .advantages_description .bigger_image {
    width: 350px;
}

.advantages_section .container .advantages_description::before {
    content: "INTERACTIVE";
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    font-size: 1rem;
    font-family: "Hando", sans-serif;
    font-weight: 700;
    color: #5a8a3c;
    letter-spacing: 0.25em;
    padding: 0.4rem 1rem;
    background-color: #92BF651f;
    border: 1px solid #92BF6580;
    border-radius: 10rem;
}

.advantages_section .container .advantages_description::after {
    content: "";
    position: absolute;
    top: 1.8rem;
    right: calc(1.8rem + 95px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #92BF65;
    box-shadow: 0 0 8px #92BF65;
    animation: pulseDot 1.6s ease-in-out infinite;
}

.advantages_section .container .advantages_description h3 {
    font-size: 3.5rem;
    font-weight: 600;
}

.advantages_section .container .advantages_description p {
    font-size: 1.6rem;
    word-wrap: break-word;
    line-height: 1.4em;
    width: 100%;
    opacity: 0.65;
}

.advantages_section .container .advantages_grid_hint {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    margin-top: 0.5rem;
}

.advantages_section .container .advantages_grid_hint p {
    font-size: 1.3rem;
    color: #d4f1ff;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0;
}

.advantages_section .container .advantages_grid_hint .hint_arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #92BF65;
    border-bottom: 2px solid #92BF65;
    transform: rotate(45deg);
    opacity: 0.9;
    animation: hintBounce 1.6s ease-in-out infinite;
}

@keyframes hintBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
    50% { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}

.advantages_section .container .advantages_grid_hint.is-dismissed {
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.advantages_section .container .advantages_description.has-selection::before,
.advantages_section .container .advantages_description.has-selection::after {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Soft fade when content swaps (auto-rotation or click) */
.advantages_section .container .advantages_description #advantageTitle,
.advantages_section .container .advantages_description #advantageDescription,
.advantages_section .container .advantages_description #advantageImage {
    transition: opacity 0.22s ease-in-out, transform 0.4s ease-in-out;
}

.advantages_section .container .advantages_description.is-transitioning #advantageTitle,
.advantages_section .container .advantages_description.is-transitioning #advantageDescription,
.advantages_section .container .advantages_description.is-transitioning #advantageImage {
    opacity: 0;
}

.advantages_section .container .advantages_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.advantages_section .container .advantages_grid > div {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    padding: 1.6rem 1.8rem;
    background: linear-gradient(135deg, #ffffff12 0%, #ffffff04 100%);
    border: 1px solid #ffffff24;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform 0.3s ease-in-out,
        border-color 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out,
        background 0.3s ease-in-out;
}

.advantages_section .container .advantages_grid > div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #92BF65;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.35s ease-in-out;
}

.advantages_section .container .advantages_grid > div::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #d4f1ff;
    border-top: 2px solid #d4f1ff;
    transform: rotate(45deg);
    opacity: 0.45;
    flex-shrink: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.advantages_section .container .advantages_grid > div:hover {
    transform: translateY(-3px);
    border-color: #92BF6580;
    background: linear-gradient(135deg, #ffffff1f 0%, #ffffff0a 100%);
    box-shadow: 0 10px 28px #00000033;
}

.advantages_section .container .advantages_grid > div:hover::before {
    transform: scaleY(1);
}

.advantages_section .container .advantages_grid > div:hover::after {
    opacity: 1;
    border-color: #92BF65;
    transform: rotate(45deg) translate(3px, -3px);
}

.advantages_section .container .advantages_grid > div.is-active {
    background: linear-gradient(135deg, #92BF6526 0%, #92BF650a 100%);
    border-color: #92BF65;
    box-shadow: 0 8px 24px #00000040;
}

.advantages_section .container .advantages_grid > div.is-active::before {
    transform: scaleY(1);
}

.advantages_section .container .advantages_grid > div.is-active::after {
    opacity: 1;
    border-color: #92BF65;
}

.advantages_section .container .advantages_grid > div img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.advantages_section .container .advantages_grid > div:hover img,
.advantages_section .container .advantages_grid > div.is-active img {
    transform: scale(1.1);
    opacity: 1;
}

.advantages_section .container .advantages_grid > div p {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--secundary-color);
    line-height: 1.3em;
    margin: 0;
    flex: 1;
    cursor: pointer;
}

/* ----- TRUST STRIP ----- */
.trust_strip {
    background-color: var(--tertiary-color);
    padding: 3rem 0;
    border-top: 1px solid #0a439d1f;
}

.trust_strip .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.trust_strip .trust_item {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    justify-content: center;
}

.trust_strip .trust_item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    opacity: 0.8;
}

.trust_strip .trust_item span {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: "Hando", sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.3em;
}

@media screen and (max-width: 768px) {
    .trust_strip .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .trust_strip .trust_item {
        justify-content: flex-start;
        text-align: left;
    }
}

@media screen and (max-width: 426px) {
    .trust_strip {
        padding: 2.5rem 0;
    }

    .trust_strip .trust_item span {
        font-size: 1.2rem;
    }
}

/*  ----- CONTACT ----- */
.contactUs_section {
    padding: 4rem 0 4rem 0;
}

.contactUs_section .container {
    display: flex;
    column-gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.contactUs_section .container .left-content {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    width: 50%;
}

.contactUs_section .container .left-content h3 {
    font-size: 3rem;
    color: var(--secundary-color);
    font-family: "Poppins", sans-serif;
    font-weight: 800;
}

.contactUs_section .container .left-content p {
    font-size: 1.4rem;
    color: var(--secundary-color);
    font-family: "Poppins", sans-serif;
    opacity: 0.75;
}

.contactUs_section .container .left-content p span {
    font-weight: 700;
}

.contactUs_section .container .left-content .contact_images {
    display: flex;
    justify-content: center;
    column-gap: 2rem;
    width: 100%;
}

.contactUs_section .container .left-content .contact_images img {
    width: 50%;
}

.contactUs_section .container form {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    justify-content: center;
}

.contactUs_section .container form > div .quote_error {
    color: #f54a4a;
    font-size: 1.15rem;
    font-weight: bold;
}

.contactUs_section .container form .form_row {
    display: flex;
    column-gap: 2rem;
    width: 100%;
}

.contactUs_section .container form .form_row > div {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    width: 100%;
}

.contactUs_section .container form .form_row > div label {
    font-size: 1.4rem;
    color: var(--secundary-color);
    font-family: "Poppins", sans-serif;
}

.contactUs_section .container form .form_row > div input {
    padding: 1rem;
    border: none;
    background-color: var(--secundary-color);
    border-radius: 0.5rem;
    outline: none;
}

.contactUs_section .container form .required {
    margin-left: 3px;
    font-weight: bold;
    color: red;
}

.contactUs_section .container form .phone {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.contactUs_section .container form .phone label {
    font-size: 1.4rem;
    color: var(--secundary-color);
    font-family: "Poppins", sans-serif;
}

.contactUs_section .container form .phone input {
    padding: 1rem;
    border: none;
    background-color: var(--secundary-color);
    border-radius: 0.5rem;
    outline: none;
}

.contactUs_section .container form .website {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.contactUs_section .container form .website label {
    font-size: 1.4rem;
    color: var(--secundary-color);
    font-family: "Poppins", sans-serif;
}

.contactUs_section .container form .website input {
    padding: 1rem;
    border: none;
    background-color: var(--secundary-color);
    border-radius: 0.5rem;
    outline: none;
}

.contactUs_section .container form .quote_result {
    color: var(--secundary-color);
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

.contactUs_section .container form button {
    width: fit-content;
    padding: 1rem 2rem;
    background-color: #3461ff;
    color: var(--secundary-color);
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    align-self: flex-end;
    cursor: pointer;
}

.contactUs_section .container form .quote_errors {
    color: #ff3d3d;
    font-size: 1.6rem;
    display: none;
}

.contactUs_section .container form .quote_errors p {
    padding: 0.5rem;
    border-radius: 5px;
    background-color: var(--secundary-color);
    margin-block: 5px;
    text-align: center;
}

.contactUs_section .container form .quote_errors {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0a439d;
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
}

/* ----- EXECUTIVE ----- */

.executive_section .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
}

.executive_section .container .excecutive_card {
    position: relative;
    overflow: hidden;
}

.executive_section .container .excecutive_card .info {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.executive_section .container .excecutive_card img {
    width: 100%;
    transition: all 0.3s ease-in-out;
    filter: brightness(0.8);

    /* &:hover {
        transition: all .3s ease-in-out;
        filter: brightness(0.8);
    } */
}

.executive_section .container .excecutive_card .info {
    position: absolute;
    bottom: 25px;
    left: 20px;
}

.executive_section .container .excecutive_card .info figcaption {
    font-size: 1.4rem;
    color: var(--secundary-color);
    font-weight: 700;
}

.executive_section .container .excecutive_card .info p {
    font-size: 1.2rem;
    color: var(--secundary-color);
}

/* ----- FOOTER ----- */
body footer {
    background-color: rgba(21, 101, 229, 0.97);
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
}

body footer .container {
    column-gap: 2rem;
    justify-content: space-between;
    padding-bottom: 4rem;
}

body footer .container .footer_left_content {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    width: 50%;
}

body footer .container .footer_left_content h2 {
    font-size: clamp(2rem, 3vw, 4rem);
    color: var(--secundary-color);
    font-family: "Hando", sans-serif;
    font-weight: 400;
    color: #d4f1ff;
}

body footer .container .footer_left_content .social_media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

body footer .container .footer_left_content .social_media .social_media_row {
    display: flex;
    align-items: center;
    column-gap: 2rem;
    justify-content: space-between;
    font-size: 2rem;
    color: var(--secundary-color);
    padding: 1rem;
    border-bottom: 1px solid var(--secundary-color);
}

body footer .container .footer_left_content .social_media .social_media_row > div {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

body footer .container .footer_left_content .social_media .social_media_row > div a {
    text-decoration: none;
    color: var(--secundary-color);
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

body footer .container .footer_left_content .social_media .social_media_row > div span {
    font-size: 1.4rem;
}

body footer .container .footer_left_content .phone_numbers {
    display: flex;
    justify-content: space-around;
    font-size: 1.6rem;
}

body footer .container .footer_left_content .phone_numbers a {
    text-decoration: none;
    color: var(--secundary-color);
    padding-bottom: 0.8rem;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;

    &:hover {
        border-bottom: 2px solid var(--secundary-color);
    }
}

body footer .container .footer_right_content {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    width: 50%;
    justify-content: center;
    align-items: flex-end;
}

body footer .container .footer_right_content .links {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    row-gap: 3rem;
    justify-content: center;
    justify-items: end;
}

body footer .container .footer_right_content .links a {
    font-size: 3rem;
    color: var(--secundary-color);
    text-decoration: none;
    padding-bottom: 1rem;
    transition: all 0.3s ease-in-out;
    width: fit-content;
    border-bottom: 2px solid transparent;

    &:hover {
        border-bottom: 2px solid var(--secundary-color);
    }
}

body footer .container .footer_right_content .location {
    font-size: 1.4rem;
    color: var(--secundary-color);
    width: 50%;
    text-align: right;
}

body footer .container .footer_right_content .location a {
    text-decoration: none;
    color: var(--secundary-color);
    line-height: 2rem;
}

body footer .footer_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    background-color: var(--primary-color);
    color: var(--secundary-color);
    column-gap: 1rem;
}

body footer .footer_bottom p {
    font-size: 1.2rem;
}

body footer .footer_bottom .footer_tagline {
    font-family: "Hando", sans-serif;
    font-size: 1.2rem;
    color: var(--secundary-color);
    opacity: 0.7;
    letter-spacing: 0.05em;
    border-left: 1px solid #ffffff33;
    padding-left: 1rem;
}

/* ===== MEDIA QUERIES ===== */

@media screen and (max-width: 1280px) {
    .center_person img {
        width: 420px;
    }
    .right_people,
    .left_people {
        height: 250px;
    }
    .headphones_section img#headphones {
        width: 254px;
    }
    section.people_section_2 {
        margin-top: -270px !important;
    }
}

@media screen and (min-width: 1181px) and (max-width: 1304px) {
    body header .container .hero_section {
        &:before {
            top: 375px;
            left: 0px;
        }

        &::after {
            top: 475px;
        }
    }
}

@media screen and (min-width: 1101px) and (max-width: 1180px) {
    body header .container .hero_section {
        &:before {
            top: 365px;
        }

        &::after {
            top: 455px;
        }
    }
}

@media screen and (min-width: 1076px) and (max-width: 1100px) {
    body header .container .hero_section {
        &:before {
            top: 350px;
        }

        &::after {
            top: 450px;
        }
    }
}

@media screen and (min-width: 991px) and (max-width: 1075px) {
    body header .container .hero_section {
        &:before {
            top: 345px;
            left: 0px;
        }

        &::after {
            top: 445px;
        }
    }
}

@media screen and (max-width: 1024px) {
    .headphones_section img#headphones {
        width: 228px;
    }
    .center_person img {
        width: 370px;
    }
    .people_section_2 {
        margin-top: -245px !important;
    }
    .people_section {
        margin-top: -272px;
    }
    .right_people,
    .left_people {
        height: 200px;
    }
    .circle {
        height: 300px;
        width: 300px;
        margin-bottom: -250px;
    }
    body header .container .hero_section {
        &::before {
            top: 350px;
        }

        &::after {
            top: 445px;
        }
    }

    .headphones_section_background {
        margin-top: -100px;
    }

    .apply_section .apply_card {
        gap: 4rem;
        padding: 4rem;
    }
}

@media screen and (max-width: 950px) {
    .advantages_section .container .advantages_header p {
        width: 100%;
    }

    body footer .container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        row-gap: 4rem;
    }

    body footer .container .footer_left_content {
        width: 100%;
    }

    body footer .container .footer_right_content {
        width: 100%;
    }
}

@media screen and (min-width: 941px) and (max-width: 990px) {
    body header .container .hero_section {
        &:before {
            top: 330px;
            left: 0px;
        }

        &::after {
            top: 430px;
        }
    }
}

@media screen and (min-width: 916px) and (max-width: 940px) {
    body header .container .hero_section {
        &:before {
            top: 315px;
            left: 0px;
        }

        &::after {
            top: 425px;
        }
    }
}

@media screen and (min-width: 896px) and (max-width: 915px) {
    body header .container .hero_section {
        &:before {
            top: 315px;
            left: 0px;
        }

        &::after {
            top: 420px;
        }
    }
}

@media screen and (min-width: 851px) and (max-width: 895px) {
    body header .container .hero_section {
        &:before {
            top: 310px;
        }

        &::after {
            top: 415px;
        }
    }
}

@media screen and (max-width: 840px) {
    body header .container nav .nav_links {
        display: none;
    }

    body header .hamburger {
        display: block;
    }

    .center_person img {
        width: 290px;
    }

    .circle {
        width: 200px !important;
        height: 200px !important;
        margin-bottom: -180px !important;
    }

    section.people_section_2 {
        margin-top: -175px !important;
    }

    .headphones_section img#headphones {
        width: 182px;
    }
}

@media screen and (min-width: 791px) and (max-width: 850px) {
    body header .container .hero_section {
        &:before {
            top: 300px;
        }

        &::after {
            top: 400px;
        }
    }
}

@media screen and (max-width: 768px) {
    .headphones_section img#headphones {
        width: 165px;
        margin-top: -65px;
    }

    .headphones_section_background {
        height: 75vh;
    }

    .executive_section .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }

    .people_section {
        margin-top: -202px;
    }

    body header .container .hero_section {
        &::before {
            top: 325px;
        }

        &::after {
            top: 430px;
        }
    }

    #headphones {
        top: 160%;
    }

    .quote_section .container .request_header {
        flex-direction: column;
    }

    .quote_section .container .request_header .request_text {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 5rem;
        row-gap: 3rem;
    }

    .quote_section .container .request_header .request_image {
        display: none;
    }

    .advantages_section .container .advantages_header {
        flex-direction: column;
        row-gap: 2rem;
    }

    .advantages_section .container .advantages_header > div {
        width: 100%;
    }

    .advantages_section .container .advantages_header p {
        width: 100%;
        text-align: center;
    }

    .advantages_section .container .advantages_description p {
        width: 100%;
    }

    .contactUs_section .container {
        flex-direction: column;
        row-gap: 3rem;
    }

    .contactUs_section .container .left-content {
        width: 100%;
    }

    .contactUs_section .container form {
        width: 100%;
    }

    .contactUs_section .container form .form_row > div {
        width: 100%;
    }

    body footer .container {
        flex-direction: column;
        row-gap: 3rem;
    }

    body footer .container .footer_left_content {
        width: 100%;
    }

    body footer .container .footer_right_content {
        width: 100%;
    }

    .quote_section .container {
        padding: 3rem;
    }

    .quote_section .container .request_header .request_text h2 {
        font-size: 2.5rem;
    }

    .quote_section .container .request_header .request_text p {
        font-size: 1.4rem;
    }

    .apply_section .apply_card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 3rem;
        text-align: center;
    }

    .apply_section .apply_card_content {
        align-items: center;
    }

    .apply_section .apply_tags {
        justify-content: center;
    }

    .apply_section .apply_card_visual {
        order: -1;
        min-height: 220px;
    }

    .apply_section .apply_visual_circle {
        width: 220px;
        height: 220px;
    }

    .apply_section .apply_card_visual img {
        width: 150px;
    }
}

@media screen and (max-width: 710px) {
    .advantages_section .container .advantages_description {
        flex-direction: column;
        row-gap: 2rem;
    }

    .advantages_section .container .advantages_description > div {
        align-items: center;
        width: 100%;
    }

    .advantages_section .container .advantages_description p {
        width: 100%;
        text-align: center;
    }
}

@media screen and (min-width: 716px) and (max-width: 790px) {
    body header .container .hero_section {
        &:before {
            top: 290px;
            left: 10px;
        }

        &::after {
            top: 390px;
        }
    }
}

@media screen and (min-width: 671px) and (max-width: 715px) {
    body header .container .hero_section {
        &:before {
            top: 285px;
            left: 10px;
        }

        &::after {
            top: 385px;
        }
    }
}

@media screen and (max-width: 670px) {
    .quote_section .container {
        row-gap: 2rem;
    }

    .quote_section .container .request_header .request_text {
        padding: 0;
    }
    .center_person img {
        width: 260px;
    }

    .right_people,
    .left_people {
        height: 150px;
    }

    .headphones_section img#headphones {
        width: 164px;
    }

    section.people_section_2 {
        margin-top: -160px !important;
    }
    .people_section_container {
        gap: 0;
    }
}

@media screen and (min-width: 651px) and (max-width: 670px) {
    body header .container .hero_section {
        &:before {
            top: 285px;
            left: 10px;
        }

        &::after {
            top: 380px;
        }
    }
}

@media screen and (max-width: 620px) {
    .services_section .container .left-content {
        width: 100%;
    }

    .services_section .container .right-content {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .apply_section {
        padding: 6rem 0;
    }

    .apply_section .apply_card {
        padding: 3.5rem 2.5rem;
        border-radius: 20px;
    }

    .quote_section .container .request_header {
        padding: 0;
    }

    .advantages_section {
        padding: 0 0 4rem 0;
    }
}

@media screen and (max-width: 510px) {
    body header .container .hero_section {
        align-items: center;

        &::before {
            top: 300px;
        }

        &::after {
            top: 400px;
            right: -90px;
        }
    }

    body header .container .hero_section h1 {
        text-align: center;
        width: 102%;
    }

    body header .container .hero_section p {
        width: 100%;
        text-align: center;
    }

    .services_section .container .right-content .circle-container .inner-circle .lightbulb {
        height: 250px;
    }

    .services_section .container .left-content .service {
        transform: translateX(-10px) scale(0.9);
    }
}

@media screen and (min-width: 521px) and (max-width: 650px) {
    body header .container .hero_section {
        &:before {
            top: 275px;
            left: 10px;
        }

        &::after {
            top: 365px;
        }
    }
}

@media screen and (max-width: 501px) {
    body header .container .hero_section {
        &::before {
            top: 345px;
        }

        &::after {
            top: 430px;
        }
    }
}

@media screen and (min-width: 485px) and (max-width: 520px) {
    body header .container .hero_section {
        &:before {
            top: 270px;
            left: 20px;
        }

        &::after {
            top: 365px;
        }
    }
}

@media screen and (max-width: 470px) {
    body footer .container .footer_right_content .links {
        grid-template-columns: repeat(2, 1fr) !important;
        width: 100%;
        gap: 20px;
    }

    body footer .container .footer_right_content .links a {
        font-size: 2.4rem;
    }
}

@media screen and (min-width: 427px) and (max-width: 484px) {
    body header .container .hero_section {
        &:before {
            top: 300px;
            left: 20px;
        }

        &::after {
            top: 400px;
        }
    }
}

@media screen and (max-width: 426px) {
    .center_person img {
        width: 200px;
    }

    .circle {
        width: 140px !important;
        height: 140px !important;
        margin-bottom: -120px !important;
    }

    .right_people,
    .left_people {
        height: 80px;
    }

    .headphones_section img#headphones {
        width: 125px;
    }

    section.people_section_2 {
        margin-top: -125px !important;
    }
    body header .container .hero_section {
        align-items: center;
        width: 100%;

        &:before {
            left: 55px;
            top: 275px;
        }

        &:after {
            top: 355px;
            right: -40px;
            scale: 0.7;
        }
    }

    body header .container .hero_section h1 {
        width: 100%;
        text-align: center;
    }

    body header .container .hero_section p {
        text-align: center;
        width: 100%;
    }

    .headphones_section_background {
        margin-top: -45px;
    }

    .people_section {
        margin-top: -110px;
    }

    .apply_section .apply_card {
        padding: 3rem 2rem;
    }

    .apply_section .apply_card_content h2 {
        font-size: 2.6rem;
    }

    .services_section {
        padding-top: 50px;
    }

    .advantages_section .container {
        row-gap: 0rem;
    }

    .advantages_section .container .advantages_description {
        flex-direction: column;
        padding: 4rem 2rem 3rem 2rem;
    }

    .advantages_section .container .advantages_description::before {
        top: 1.2rem;
        right: 1.2rem;
    }

    .advantages_section .container .advantages_description > div {
        align-items: center;
        width: 100%;
        text-align: center;
        margin-top: 3rem;
    }

    .advantages_section .container .advantages_description img {
        width: 300px;
        aspect-ratio: 1/1;
    }

    .advantages_section .container .advantages_grid {
        margin-top: 5rem;
    }

    .contactUs_section .container .left-content h3 {
        text-align: center;
    }

    .contactUs_section .container form .form_row {
        flex-direction: column;
        row-gap: 2rem;
    }

    body footer .container .footer_right_content .links {
        grid-template-columns: repeat(1, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 392px) {
    body header .container .hero_section {
        align-items: center;
        width: 100%;

        &:before {
            top: 360px;
        }

        &:after {
            top: 430px;
        }
    }
}

@media screen and (min-width: 376px) and (max-width: 407px) {
    body header .container .hero_section {
        &:before {
            top: 310px;
        }

        &::after {
            top: 390px;
        }
    }
}

@media screen and (max-width: 375px) {
    body header .container .hero_section {
        &:before {
            top: 300px;
        }

        &::after {
            top: 385px;
        }
    }
}

@media screen and (max-width: 320px) {
    body header .container .hero_section {
        &:before {
            top: 325px;
        }
        &:after {
            top: 425px;
            left: 200px;
        }
    }

    .apply_section .apply_card {
        padding: 2.5rem 1.5rem;
    }

    .services_section .services_title {
        margin: 0 auto 2rem auto;
    }

    .advantages_section .container .advantages_description img {
        width: 250px;
    }

    body footer .container .footer_left_content .phone_numbers {
        flex-direction: column;
        align-items: flex-end;
    }

    body footer .container .footer_right_content .links a {
        font-size: 2rem;
    }
}

.circle {
    display: block;
    height: 330px;
    background: #ffffff12;
    width: 330px;
    margin: auto;
    border-radius: 50%;
    margin-bottom: -280px;
    border: 1px solid #ffffff80;
    position: relative;
    z-index: 1;
    animation: pulse 1.25s infinite;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

.circle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff12;
    border: 1px solid #ffffff80;
    opacity: 0.5;
    z-index: -1;
    animation: pulseAura 1.25s infinite;
}

@keyframes pulseAura {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media screen and (max-width: 520px) {
    .footer_right_content.appear-right {
        animation-range-end: entry;
    }
}

.appear {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% 35%;
}

.appear-right {
    animation: appear-right linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.appear-left {
    animation: appear-left linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.apply_section {
    animation: footer-animation linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

@keyframes appear-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes appear-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes footer-animation {
    from {
        opacity: 0;
        clip-path: inset(100% 100% 0% 0%);
    }

    to {
        opacity: 1;
        clip-path: inset(0% 0% 0% 0%);
    }
}
