/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --blue: #012c51;
    --red: #ff270b;
}

@font-face {
    font-family: "West River";
    src: url("../media/woff/westriver.woff");
}

body {
    background: white;
}

body.noscroll {
    overflow: hidden;
}

img,
svg {
    width: 100%;
    max-width: 100%;
    user-select: none;
    pointer-events: none;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

button {
    cursor: pointer;
    transition: .25s;
}

h1,
h2 {
    font-size: 2.5vw;
    line-height: 1;
}

p,
li {
    font-size: 1.5vw;
    font-weight: 300;
}

ul {
    display: flex;
    flex-direction: column;
    gap: .5vw;
    list-style-position: inside;
}

ul ::marker {
    color: var(--red);
}

.absolute_media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.red_title {
    color: var(--red);
    font-family: "West River";
    font-size: 2.5vw;
}

.main_btn {
    width: fit-content;
    color: white;
    font-size: 1.25vw;
    font-weight: 500;
    padding: .75vw 1.5vw;
    border-radius: .25vw;
    outline: .1vw solid var(--red);
    outline-offset: .25vw;
    background: var(--red);
    transition: .25s;
}

.main_btn:hover {
    color: var(--red);
    transform: scale(1.05);
    outline-offset: 0;
    background: white;
}

@media (max-width: 996px) {
    h1,
    h2 {
        font-size: 6vw;
    }
    p,
    li {
        font-size: 4vw;
        text-align: justify;
    }
    ul {
        gap: 2vw;
    }
    .red_title {
        font-size: 6vw;
    }
    .main_btn {
        font-size: 4vw;
        padding: 2vw 4vw;
        border-radius: 1vw;
        outline: .25vw solid var(--red);
        outline-offset: 1vw;
    }
}


/* ---HEADER STYLES--- */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

header .header_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5vw;
}

header .logo_box {
    width: 10%;
}

@media (max-width: 996px) {
    header .header_box {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5vw 2.5vw;
    }
    header .logo_box {
        width: 35%;
    }
    header .main_btn {
        display: none;
    }
}