@font-face {
    font-family: 'Acumin-Variable-Concept';
    src: url("/assets/fonts/Acumin-Variable/Acumin-Variable-Concept.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Acumin-Variable-Concept';
}

:root {
    --color-primary: #FBA93E;
    --color-secondary: #002448;
    --color-tertiary: #06325F;
    --color-white: #fff;
    --color-blacl: #000;
    --text: #A1A1A1;

    --filter-black: invert(98%) sepia(97%) saturate(80%) hue-rotate(151deg) brightness(90%) contrast(101%);

    --shadow: 20px 20px 10px 0px rgba(0, 0, 0, 0.10);
    --shadow-header: rgba(0, 0, 0, 0.16) 0px 1px 4px;

    --transparent_blue: rgba(0, 36, 72, 0.78);

    --icon_gray: invert(47%) sepia(11%) saturate(347%) hue-rotate(167deg) brightness(93%) contrast(88%);
}

html {
    position: relative;
}

body {
    position: relative;
    font-family: 'Acumin-Variable-Concept';
    width: 100%;
    background-color: var(--color-secondary);
    background-image: url("/assets/imgs/page_web/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    overflow-y: auto;
    overflow-x: hidden;
}




main {
    position: relative;
    top: 120px;
    width: 100%;
    height: auto;
    
    padding-bottom: 80px;
}

a {
    text-decoration: none;
}

.btn {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    padding: 10px 25px;
    font-size: 1em;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-transform: uppercase;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    margin-top: 1.563em;
    transition: all 0.3s ease-in-out;
}

.section__title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 50px;
}

.section__title span {
    color: var(--color-primary);
}


input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


/* RESPONSIVE */
@media screen and (max-width: 2560px) {
    body {
        font-size: 20px;
    }

}

@media screen and (max-width: 1920px) {
    body {
        font-size: 18px;
    }

}

@media screen and (max-width: 1440px) {
    body {
        font-size: 16px;
    }

}

@media screen and (max-width: 1024px) {
    body {
        font-size: 15px;
    }

    .section__title {
        font-size: 2em;
    }
    main {
        top: 80px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 12px;
        background-position: top;
        background-attachment: fixed;
    }


}

@media screen and (max-width: 480px) {
    body {
        font-size: 12px;
    }


}

@media screen and (max-width: 375px) {
    body {
        font-size: 12px;
    }
}
