/*========== GOOGLE FONTS  ==========*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/*========== VARIABLES CSS  ==========*/
:root {
    --header-height: 3.5rem;
    --nav_header_height: 7rem;

    /*========== Colors  ==========*/
    --first-color: #26443B;
    --second-color: #EDE3DA;
    
    --first-title-text-color: #26443B;
    --second-title-text-color: #ffff;

    --white-color: #ffff;

    /*========== Font and typography  ==========*/
    --body-font: "Inter", sans-serif;
    --navlogo-width: 8.25rem;
    --biggest-font-size: 2.75rem;
    --big-font-size: 1.75rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight  ==========*/
    --font-regular: 400;
    --font-medium: 500;

    /*========== z index  ==========*/
    --z-fixed: 100;

    /*========== nav margin ==========*/
    --nav-margin-top: 1.375rem;
}

/*========== Responsive typography  ==========*/
@media screen and (min-width: 1024px) {
    :root {
        --navlogo-width: 9rem;
        --biggest-font-size: 4.5rem;
        --big-font-size: 3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*========== BASE  ==========*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.body-no-scroll{
    overflow: hidden;
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--second-color);
    color: var(--first-title-text-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}