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

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

:root {
    --blue: #08318A;
    --light-blue: #288ACC;
    --red: #E30B17;
}

img,
svg {
    max-width: 100%;
}

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

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

i {
    cursor: pointer;
    transition: .5s;
}

section {
    width: 100%;
}

h1,
h2 {
    color: var(--blue);
    font-size: 2vw;
    line-height: 1;
}

p,
li {
    color: #606060;
    font-size: 1.2vw;
    font-weight: 400;
}

ul {
    list-style-position: inside;
}

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

.main_btn {
    color: white;
    font-size: 1vw;
    font-weight: 500;
    padding: 1vw;
    border: none;
    border-radius: .5vw;
    background: var(--blue);
}

.main_btn:hover {
    background: var(--light-blue);
}

@media (max-width: 996px) {
    h1,
    h2 {
        font-size: 5vw;
    }
    p,
    li {
        font-size: 3.5vw;
    }
    .main_btn {
        font-size: 3.5vw;
        padding: 3.5vw;
        border-radius: 1vw;
    }
}