@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css');

* {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    list-style: none;
    font-family: "poppins";
    font-size: 1rem;
    color: var(--font-color);
    font-weight: 300;
    text-decoration: none;
    /* transition: .3s ease;  */
}

:root {

    --first-color: #ce3433;
    --second-color: #173b45;
    --third-color: #c4e4ff;
    --font-color: #181C14;
    --grey-color: #3C3D37;
    --grey-light-color: #EEEDEB;
    --white-color: rgb(255 255 255);
}

html,
body {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

img,
video {
    display: block;
    border: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

header {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar {
    display: flex;
    width: 80%;
    height: 80px;
    padding: 0 2rem;
    justify-content: space-between;
    background-color: var(--second-color);
    border-radius: 0 0 .5rem .5rem;
}

.navbar .logo {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    width: 70%;

    svg {
        height: 2.5rem;
        fill: var(--grey-light-color);
    }

    h1 {
        color: var(--grey-light-color);
        font-size: 1.5rem;
        line-height: 1rem;
    }

    span {
        color: var(--grey-light-color);
        font-size: .55rem;
    }
}

.navbar .menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 10%;

    a {
        color: var(--grey-light-color);
    }
}

.navbar .social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .5rem;
    width: 20%;

    i {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        border: solid 1px var(--grey-light-color);
        border-radius: .2rem;
        color: var(--grey-light-color);
        padding: 1rem;
    }
}

.hero {
    display: flex;
    position: fixed;
    top: 0;
    align-items: flex-end;
    justify-content: space-evenly;
    background-color: var(--third-color);
    background-image: url(/assets/images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    z-index: -1;
}

.hero .img {
    width: calc(100vh - 400px);

    img {
        height: auto;
    }
}

.hero .text {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    align-items: center;
    justify-content: center;

    h2 {
        color: var(--grey-light-color);
        font-weight: 700;
        font-size: 4rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    p {
        color: var(--grey-light-color);
        font-weight: 700;
        font-size: 4rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    h3 {
        color: var(--grey-light-color);
        font-weight: 500;
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    span {
        color: var(--grey-light-color);
        font-weight: 400;
        font-size: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 768px) {
    
    .navbar {
    display: flex;
    width: 95%;
    height: 80px;
    padding: 0 .5rem;
    justify-content: space-between;
    background-color: var(--second-color);
    border-radius: 0 0 .5rem .5rem;
    }
    .hero .text {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-right: 2rem;
    margin-bottom: 2rem;

    h2 {
        color: var(--grey-light-color);
        font-weight: 700;
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    p {
        color: var(--grey-light-color);
        font-weight: 700;
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    h3 {
        color: var(--grey-light-color);
        font-weight: 500;
        font-size: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    span {
        color: var(--grey-light-color);
        font-weight: 400;
        font-size: .7rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}
}