
/*-------------------------------------
    Variables
--------------------------------------*/
:root {
    --header_height: 3.4rem;

    /*----- z-index -----*/
    --overlay_z_index: 50;
    --header_z_index: 15;
    --burger_button_z_index: 15;
    --profile_menu_z_index: 20;

    /*----- Palettes -----*/
    --clr_crusta_50: #fff6ed;
    --clr_crusta_100: #ffead4;
    --clr_crusta_200: #ffd1a8;
    --clr_crusta_300: #ffb071;
    --clr_crusta_400: #ff8133;
    /* hsl(23, 100%, 60%) */
    --clr_crusta_500: #fe6211;
    --clr_crusta_600: #ef4707;
    --clr_crusta_700: #c63208;
    --clr_crusta_800: #9d290f;
    --clr_crusta_900: #7e2510;
    --clr_crusta_950: #440f06;

    --clr_eastbay_50: #f4f7fa;
    --clr_eastbay_100: #e6ecf3;
    --clr_eastbay_200: #d2deeb;
    --clr_eastbay_300: #b3c8dd;
    --clr_eastbay_400: #8fabcb;
    --clr_eastbay_500: #7491bd;
    --clr_eastbay_600: #617caf;
    --clr_eastbay_700: #566a9f;
    --clr_eastbay_800: #48567f;
    /* hsl(224, 28%, 39%) */
    --clr_eastbay_900: #3f4b69;
    --clr_eastbay_950: #2a2f41;

    --clr_silver_chalice_50: #f8f8f8;
    --clr_silver_chalice_100: #f0f0f0;
    --clr_silver_chalice_200: #e5e4e3;
    --clr_silver_chalice_300: #d2d0cf;
    --clr_silver_chalice_400: #adaaa8;
    --clr_silver_chalice_500: #9c9997;
    --clr_silver_chalice_600: #84807e;
    --clr_silver_chalice_700: #6d6a68;
    --clr_silver_chalice_800: #5c5a58;
    --clr_silver_chalice_900: #504e4c;
    --clr_silver_chalice_950: #282727;

    --clr_zinc_50: hsl(0, 0%, 98%);
    --clr_zinc_100: hsl(240, 5%, 96%);
    --clr_zinc_150: hsl(240, 6%, 93%);
    --clr_zinc_200: hsl(240, 6%, 90%);
    --clr_zinc_300: hsl(240, 5%, 84%);
    --clr_zinc_400: hsl(240, 5%, 64%);
    --clr_zinc_500: hsl(240, 4%, 46%);
    --clr_zinc_600: hsl(240, 6%, 34%);
    --clr_zinc_700: hsl(240, 5%, 26%);
    --clr_zinc_800: hsl(240, 4%, 16%);
    --clr_zinc_900: hsl(240, 6%, 10%);
    --clr_zinc_950: hsl(240, 10%, 4%);
}

/*-------------------------------------
    Variables des thèmes
--------------------------------------*/
html[data-theme="light"] {

    color-scheme: light;

    --clr_primary: var(--clr_crusta_400);
    --clr_secondary: var(--clr_eastbay_800);

    --background_body: hsl(23, 43%, 96%);
    --background_footer: hsl(28, 69%, 90%);
    --background_accent: hsl(23, 43%, 93%);
    --background_lowest: white;
    --background_alert_green: hsl(121, 45%, 86%);

    --text_light: var(--clr_zinc_400);
    --text_main: var(--clr_zinc_500);
    --text_accent: var(--clr_zinc_600);
    --text_alert_green: var(--clr_zinc_600);

    --border_clr: hsl(23, 15%, 88%);
    --border_strong: hsl(23, 0%, 73%);
    --border_alert_green: hsl(121, 46%, 58%);

    --icon_default: var(--clr_zinc_400);
    --icon_default_hover: var(--clr_zinc_600);
    --icon_watermark: hsla(23, 100%, 60%, .1);

    --input_focus_shadow: 0 0 0 0.2rem hsla(224, 28%, 39%, 0.25);

    --shadow_header: 0px 0px 3px 1px rgba(0, 0, 0, 0.05);
    --shadow_container: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow_normal: 2px 4px 12px 4px hsla(23, 2%, 42%, 12%);

}

html[data-theme="dark"] {

    color-scheme: dark;

    --clr_primary: var(--clr_crusta_400);
    --clr_secondary: var(--clr_eastbay_500);

    --background_body: hsl(0, 0%, 4%);
    --background_footer: hsl(28, 3%, 6%);
    --background_accent: hsl(0, 0%, 11%);
    --background_lowest: hsl(0, 0%, 13%);
    --background_alert_green: hsl(121, 44%, 82%);

    --text_light: var(--clr_zinc_400);
    --text_main: var(--clr_zinc_300);
    --text_accent: var(--clr_zinc_200);
    --text_alert_green: var(--clr_zinc_600);

    --border_clr: var(--clr_zinc_600);
    --border_strong: var(--clr_zinc_500);
    --border_alert_green: hsl(121, 46%, 58%);

    --icon_default: var(--clr_zinc_400);
    --icon_default_hover: var(--clr_zinc_100);
    --icon_watermark: hsla(23, 69%, 87%, 0.1);

    --input_focus_shadow: 0 0 0 0.2rem hsla(224, 28%, 39%, 0.25);

    --shadow_header: inset 0 -1px 0 0 hsla(23, 2%, 42%, 0.5);
    --shadow_container: inset 0px -1px 0 0 hsla(23, 2%, 42%, 0.5);
    --shadow_normal: 0px 0px 2px 2px hsla(23, 6%, 93%, 0.2);
    
}

/*-------------------------------------
    Base
--------------------------------------*/
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    /* line-height: 1.5; */
    position: relative;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    hyphens: auto;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
    /* text-wrap: pretty; */
}

input,
button,
textarea,
select {
    font: inherit;
    /* font-optical-sizing: auto; */
}

button {
    cursor: pointer;
}

svg,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    /* vertical-align: middle; */
}

img,
video {
    display: block;
    max-width: 100%;
}

/*-------------------------------------
    Site
--------------------------------------*/
.site {
    /* display: grid; */
    /* grid-template-rows: auto 1fr auto; */
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    position: relative;
}

/*-------------------------------------
    HEADER
--------------------------------------*/
.header {
    display: flex;
    align-items: center;
    height: 4rem;
    background-color: var(--background_body);
    padding: 0 5rem;
}

.header_content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .header {
        padding: 0 3rem;
    }
}

@media screen and (max-width: 550px) {
    .header {
        padding: 0 1.5rem 0 1rem;
    }
}

/*-------------------------------------
    HEADER LOGO
--------------------------------------*/
.header .site_logo {
    padding: .7rem 1rem .7rem 1.4rem;
    height: var(--header_height);
}

.header .site_logo a {
    display: flex;
    align-items: center;
    width: 100px;
    height: 100%;
}

@media screen and (max-width: 550px) {
    .header .site_logo a {
        width: 90px;
    }
}

/*-------------------------------------
    HEADER TOP
--------------------------------------*/
.header_top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

/*-------------------------------------
    HEADER PROFILE
--------------------------------------*/
.header_profile {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
}

.header_profile a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--clr_secondary);
    border-radius: 50px;
    padding: .2rem 1.2rem;
    transition: 0.3s;
}

.header_profile .header_profile_label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--clr_secondary);
}

.header_profile .header_profile_icon svg {
    fill: var(--clr_secondary);
    width: 1.3rem;
}

.header_profile a:hover {
    background-color: var(--clr_secondary);
}

.header_profile a:hover .header_profile_label {
    color: #fff;
}

.header_profile a:hover .header_profile_icon svg {
    fill: #fff;
}

@media screen and (max-width: 400px) {
    .header_profile a {
        padding: .2rem .8rem;
    }

    .header_profile_label {
        display: none;
    }
}

/*-------------------------------------
    Color Theme Box
/*-------------------------------------*/
#color_theme_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.6rem;
    padding-right: 1rem;
    /* border-right: 1px solid var(--border_clr); */
}

#color_theme_box span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.3rem;
    fill: var(--icon_default);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.1rem;
    transition: 0.2s ease;
    cursor: pointer;
}

#color_theme_box span:hover {
    fill: var(--icon_default_hover);
}

#color_theme_box span.active {
    border-color: var(--clr_primary);
    fill: var(--clr_primary);
}

.no_header_color_theme_box {
    position: absolute;
    right: 2rem;
    top: 1rem;
}

.no_header_color_theme_box #color_theme_box {
    border-right: none
}

@media screen and (max-width: 450px) {
    .no_header_color_theme_box {
        right: 1rem;
    }
}

@media screen and (max-width: 350px) {
    .no_header_color_theme_box {
        right: .6rem;
    }
}

/*-------------------------------------
    HEADER NAVBAR
--------------------------------------*/
.nav_bar {
    display: none;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.nav_bar ul {
    display: flex;
    align-items: center;
}

.nav_bar ul li a {
    position: relative;
    color: var(--clr_secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    border-radius: .6rem .6rem .6rem .6rem;
    padding: 0.4rem 1.2rem;
    transition: 0.3s ease;
}

.nav_bar ul li a:hover {
    background-color: var(--menu_hover_bg_clr);
}

.nav_bar ul li a.active {
    background-color: var(--clr_primary);
    color: white;
    border-radius: .6rem .6rem .6rem .6rem;
    padding: 0.4rem 1.4rem;
}

/*-------------------------------------
    BACK BUTTON / PREVIOUS PAGE
--------------------------------------*/
.back_button {
    width: fit-content;
    background-color: var(--background_accent);
    margin: .6rem 0 0 .8rem;
    border-radius: 3rem;
    border: 1px solid transparent;
    transition: 0.2s;
}

.back_button a {
    display: flex;
    align-items: center;
    min-height: 28px;
    padding: 0 1.3rem 0 .5rem;
}

#back_button_icon {
    margin-right: 0.4rem;
}

#back_button_icon svg {
    width: 1rem;
    fill: var(--text_main);
    transition: 0.2s;
}

#back_button_label {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text_main);
    transition: 0.2s;
}

.back_button:hover {
    border-color: var(--clr_primary);
}

.back_button:hover #back_button_icon svg {
    fill: var(--clr_primary);
}

.back_button:hover #back_button_label {
    color: var(--clr_primary);
}

/*-------------------------------------
    FOOTER
--------------------------------------*/
.footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: var(--background_footer);
    height: 4rem;
    padding: 0 3rem;
}

#copyright {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text_light);
}

@media (max-width: 650px) {
    .footer {
        justify-content: center;
    }
}

/*-------------------------------------
    MAIN
--------------------------------------*/
.main {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: var(--background_body);
}


/*-------------------------------------
    MAIN ALERT
--------------------------------------*/
.main_alert {
    position: absolute;
    width: 50%;
    top: .6rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text_alert_green);
    background-color: var(--background_alert_green);
    border-left: 5px solid var(--border_alert_green);
    border-radius: .35rem;
    padding: 0.9rem 1.4rem;
}

@media (max-width: 800px) {
    .main_alert {
        width: 90%;
    }
}

@media (max-width: 400px) {
    .main_alert {
        width: 95%;
    }
}

/*-------------------------------------
    HOME PAGE
--------------------------------------*/
.home_page {
    padding: 3rem 0 5rem 0;
}

/*-------------------------------------
    HOME PAGE - SECTIONS
--------------------------------------*/
.home_section_title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
}

.home_section_title span {
    min-width: 1rem;
    min-height: 1rem;
    background: linear-gradient(135deg, var(--clr_crusta_500), var(--clr_crusta_200));
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.home_section_title h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--clr_primary);
    text-align: center;
}

@media (max-width: 500px) {
    .home_section_title span {
        width: .8rem;
        height: .8rem;
    }

    .home_section_title h2 {
        font-size: 1.5rem;
    }
}

/*-------------------------------------
    HOME PAGE - HERO
--------------------------------------*/
.home_hero_section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
}

.home_hero_section_img {
    width: 50%;
}

.home_hero_section img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    flex-shrink: 0;
}

.home_hero_section_title {
    flex: 1;
}

.home_hero_section_title h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--clr_primary);
    transform: scaleY(1.15);
}

@media (max-width: 950px) {
    .home_hero_section {
        margin: 0 auto 4rem auto;
    }
}

@media (max-width: 800px) {
    .home_page {
        padding: 2rem 0 5rem 0;
    }

    .home_hero_section {
        flex-direction: column;
        text-align: center;
        padding: 0 3rem;
        gap: 2rem;
    }

    .home_hero_section_img {
        width: 100%;
    }

    .home_hero_section_title h2 {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
}

@media (max-width: 540px) {
    .home_hero_section {
        padding: 0 2rem;
        gap: 1.5rem;
    }

    .home_hero_section img {
        border-radius: 0.5rem;
    }

    .home_hero_section_title h2 {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .home_page {
        padding: 1rem 0 5rem 0;
    }

    .home_hero_section {
        padding: 0 1rem;
        gap: 1.5rem;
    }
}

@media (max-width: 330px) {
    .home_hero_section {
        padding: 0 .5rem;
        gap: 1.3rem;
    }

    .home_hero_section_title h2 {
        font-size: 1.4rem;
    }
}

/*-------------------------------------
    HOME PAGE - ABOUT
--------------------------------------*/
.home_about_section {
    max-width: 1000px;
    margin: 0 auto 5rem auto;
    padding: 0 2rem;
}

.home_about_content p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text_accent);
    line-height: 2rem;
}

/*-------------------------------------
    HOME PAGE - FEATURES
--------------------------------------*/
.home_features_section {
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    padding: 0 2rem;
}

.home_features_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/*-------------------------------------
    HOME PAGE - FEATURES - CARDS
--------------------------------------*/
.home_features_card {
    display: grid;
    grid-template-rows: 40px 70px 20px;
    background-color: var(--background_lowest);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: .6rem;
    padding: 1.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    cursor: pointer;

    position: relative;
    overflow: hidden;
}

.home_features_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
}

.home_features_card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    color: var(--text_accent);
}

.home_features_card p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6rem;
    color: var(--text_main);
}

.home_features_card span {
    display: inline-flex;
    justify-content: flex-end;
}

.home_features_card span svg {
    width: 30px;
    fill: var(--text_main);
}

.home_features_card_icon {
    position: absolute;
    top: -.3rem;
    left: -1.8rem;
}

.home_features_card_icon svg {
    width: 140px;
    height: 140px;
    fill: var(--icon_watermark);
}

@media (max-width: 1000px) {
    .home_features_content {
        gap: 1.5rem;
    }
}

@media (max-width: 680px) {
    .home_features_card {
        width: 100%;
        max-width: 340px;
        /* pour éviter que ce soit trop large sur grands mobiles */
    }
}

@media (max-width: 340px) {
    .home_features_section {
        padding: 0 .5rem;
    }

    .home_features_content {
        grid-template-columns: 1fr;
    }

    .home_features_card {
        width: 100%;
        max-width: none;
    }
}

/*-------------------------------------
    HOME PAGE - TESTIMONY SECTION
--------------------------------------*/
.home_testimony_section {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    padding: 0 2rem;
}

.home_testimony_content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 2rem 2rem 2rem;
    background-color: var(--background_accent);
    border-radius: .6rem;
    border-left: 4px solid var(--clr_primary);
}

.home_testimony_lab {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.home_testimony_lab img {
    width: 6rem;
}

.home_testimony_lab div {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.home_testimony_lab p {
    font-weight: 400;
    color: var(--text_main);
    font-size: .9rem;
}

.home_testimony_lab p:first-child {
    font-size: 1rem;
}

.home_testimony_video {
    width: 400px;
}

.home_testimony_video video {
    width: 100%;
}

@media (max-width: 560px) {
    .home_testimony_section {
        padding: 0 1rem;
    }

    .home_testimony_content {
        gap: 1.5rem;
        padding: 1rem 1rem 1rem 1rem;
    }

    .home_testimony_lab {
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
    }

    .home_testimony_lab img {
        width: 5rem;
    }

    .home_testimony_video {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .home_testimony_section {
        padding: 0 .5rem;
    }

    .home_testimony_content {
        padding: 1rem .5rem 1rem .5rem;
    }

    .home_testimony_lab img {
        display: none;
    }
}

/*-------------------------------------
    HOME PAGE - CONTACT FORM SECTION
--------------------------------------*/
.home_contact_form_section {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
}

.home_contact_form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background_lowest);
    border-radius: .6rem;
    padding: 2rem;
}

.home_contact_form form {
    width: 100%;
}

.home_contact_form .input_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.home_contact_form textarea {
    resize: vertical;
}

.home_contact_form .form_submit {
    width: 100%;
    text-align: center;
}

.home_contact_form .form_submit button {
    width: 200px;
}

@media (max-width: 530px) {
    .home_contact_form_section {
        padding: 0 1rem;
    }
}

@media (max-width: 400px) {
    .home_contact_form {
        padding: 2rem 1rem;
    }
}

@media (max-width: 290px) {
    .form_submit button {
        width: 100%;
    }
}

/*-------------------------------------
    SPOUN FEATURES PAGE
--------------------------------------*/
.spoun_features_page {
    max-width: 1000px;
    margin: 0 auto 5rem auto;
    padding: 0 2rem;
}

.spoun_features_page nav {
    margin-left: 0;
}

.spoun_features_page_title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--clr_primary);
    text-align: center;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

.spoun_features_page_content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
}

@media (max-width: 1000px) {
    .spoun_features_page_content {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .spoun_features_page_content {
        grid-template-columns: 1fr;
    }
}

/*-------------------------------------
    SPOUN FEATURES PAGE - MENUS
--------------------------------------*/
.spoun_features_sidebar_menu_wrapper {
    /* background-color: var(--background_lowest); */
    padding: 1rem;
    border-radius: .6rem;
    box-shadow: var(--shadow_normal);
}

.spoun_features_sidebar_menu a {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text_light);
    padding: .4rem .6rem;
    border-radius: .3rem;
    transition: 0.2s;
}

.spoun_features_sidebar_menu a:hover {
    color: var(--text_main);
    background-color: var(--background_accent);
}

.spoun_features_sidebar_menu a.active {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr_primary);
}

@media (max-width: 900px) {
    .spoun_features_sidebar {
        display: none;
    }
}

/*-------------------------------------
    SPOUN FEATURES PAGE - SECTIONS
--------------------------------------*/
.spoun_features_page_sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.spoun_feature_section {
    position: relative;
    padding-bottom: 1rem;
}

.spoun_feature_section:not(:last-child):after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    width: 30%;
    border-bottom: 2px dotted var(--clr_crusta_200);
}

.spoun_feature_section_title {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    text-align: center;
    margin-bottom: 1.4rem;
}

.spoun_feature_section_title .title_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface_primary_1);
    border-radius: 50%;
    padding: .9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.spoun_feature_section_title .title_icon svg {
    width: 2.1rem;
    height: 2.1rem;
    fill: var(--clr_primary);
}

.spoun_feature_section_title p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text_accent);
}

.spoun_feature_section_content p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text_main);
}

/*-------------------------------------
    CONTACT REQUESTED PAGE
--------------------------------------*/
.contact_requested_page {
    display: flex;
    padding: 8rem 2rem 3rem 2rem;
}

.contact_requested_page_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact_requested_page_img {
    width: 8rem;
    margin-bottom: 3rem;
}

.contact_requested_page_text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text_main);
    line-height: 2;
    margin-bottom: 3rem;
}

.contact_requested_page_btn {
    display: flex;
    justify-content: center;
}

.contact_requested_page_btn a {
    text-align: center;
    padding: .5rem 3rem;
}

@media (max-width: 550px) {
    .contact_requested_page_text {
        width: 280px;
    }
}

@media (max-width: 460px) {
    .contact_requested_page {
        padding: 4rem 1rem 2rem 1rem;
    }
    .contact_requested_page_img {
        width: 6rem;
        margin-bottom: 2rem;
    }
    .contact_requested_page_text {
        width: 250px;
        font-size: 1.1rem;
        margin-bottom: 4rem;
    }
}

@media (max-width: 300px) {
    .contact_requested_page {
        padding: 3rem .8rem 2rem .8rem;
    }
    .contact_requested_page_text {
        width: 100%;
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    .contact_requested_page_btn a {
        padding: .5rem 1.5rem;
    }
}

/*-------------------------------------
    Buttons
--------------------------------------*/
.button {
    color: white;
    background: var(--clr_primary);
    font-size: .9rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    align-self: center;
    padding: 0.4rem 1.2rem;
    border: none;
    outline: none;
    border-radius: 4rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.button:hover {
    background-color: var(--clr_secondary);
}

/*-------------------------------------
    Form
--------------------------------------*/
.form {
    border-radius: 0.9rem;
    box-shadow: var(--shadow_container);
}

.form.white {
    background-color: var(--background_lowest);
}

/*-------------------------------------
    Form Input Field
--------------------------------------*/
.form_input_field {
    display: flex;
    flex-direction: column;
}

.form_input_field label {
    white-space: nowrap;
    font-size: .8rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text_main);
    padding-left: 0.2rem;
    padding-bottom: .15rem;
}

.form_input_field input {
    border: 1px solid var(--border_clr);
    border-radius: .3rem;
    outline: none;
    font-size: .9rem;
    font-weight: 500;
    background: none;
    padding: .4rem .6rem;
    transition: .2s ease-in-out;
}

.form_input_field input::placeholder {
    font-size: .85rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text_light);
    /*opacity: .5;*/
}

.form_input_field input:focus {
    border-color: var(--clr_secondary);
    box-shadow: var(--input_focus_shadow);
}

/*-------------------------------------
    Form Textarea Field
--------------------------------------*/
.form_textarea_field {
    display: flex;
    flex-direction: column;
}

.form_textarea_field label {
    white-space: nowrap;
    font-size: .8rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text_main);
    padding-left: 0.2rem;
    padding-bottom: .15rem;
}

.form_textarea_field textarea {
    border: 1px solid var(--border_clr);
    border-radius: .3rem;
    outline: none;
    font-size: .9rem;
    font-weight: 500;
    background: none;
    padding: .4rem .6rem;
    transition: .2s ease-in-out;
}

.form_textarea_field textarea::placeholder {
    font-size: .85rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text_light);
    /*opacity: .5;*/
}

.form_textarea_field textarea:focus {
    border-color: var(--clr_secondary);
    box-shadow: var(--input_focus_shadow);
}