/*General Styles*/
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    font-size: 16px;
    font-family: "Raleway", sans-serif;
    color: #555;
}

ul,
nav {
    list-style: none;
}

a {
    text-decoration: none;
    opacity: 0.75;
    color: #0B2545;
    /* background-image: url("./logo_transparent.png"); */
}

.img {
    height: 15%;
    width: 15%;
    filter: brightness(0) invert(1) contrast(180%) brightness(1.8);
}

button:hover {
    opacity: 1;
}

.loginbtn {
    border: none;
    /* border-radius: 4px; */
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    /* background-color: #e07e7b; */
    opacity: 1;
    transition: all 50ms;
}

.loginbtn:hover {
    background-color: #ce5856;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 80px;
}

section:not(.hero):nth-child(even) {
    background-color: #f5f5f5;
}

.grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

hr {
    width: 250px;
    height: 3px;
    background-color: #e07e7b;
    border: 0;
    margin-bottom: 50px;
}


section h3.title {
    text-transform: capitalize;
    font: bold 48px "Poppins", sans-serif;
    margin-bottom: 30px;
    text-align: center;
}

section p {
    max-width: 775px;
    line-height: 2;
    padding: 0 20px;
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 800px) {
    section {
        padding: 50px 20px;
    }
}

/*Header Styles*/

header {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 100px 0;
    animation: 1s fadein 0.5s forwards;
    opacity: 0;
    color: #0B2545;
    z-index: 2;
}

@keyframes fadein {
    100% {
        opacity: 1;
    }
}

header h2 {
    font-family: "Poppins", sans-serif;
}

header nav {
    display: flex;
    margin-right: -15px;
}

header nav li {
    margin: 0 15px;
}

@media (max-width: 800px) {
    header {
        padding: 20px 50px;
        flex-direction: column;
    }

    header h2 {
        margin-bottom: 15px;
    }
}

/*Hero Styles*/

.hero {
    position: relative;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    color: #dbdcde;

}

.hero .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    /* background-color: #EEF4ED; */
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    text-shadow: 4px 4px #13315C;
    margin-bottom: 15px;
    font-size: 70px;
}

.hero h3 {
    font: 28px "Raleway", sans-serif;
    font-weight: 300;
    color: #EEF4ED;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.hero .loginbtn {
    padding: 20px 46px;
    color: #EEE;
    background: rgba(126, 211, 33, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
}

.hero-content-area {
    opacity: 0;
    margin-top: 100px;
    animation: 1s slidefade 1s forwards;
}

@keyframes slidefade {
    100% {
        opacity: 1;
        margin: 0;
    }
}

@media (max-width: 800px) {
    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h3 {
        font-size: 24px;
    }

    .hero .loginbtn {
        padding: 15px 40px;
    }
}

body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(".././bghero.png");
    /* filter: brightness(0.5); */
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    background-size: cover;
}

.loginbtn:hover {
    cursor: pointer;
    transform: scale(1.1);
    /* background-color: rgba(186, 186, 186, 0.648);
    padding: 1rem 2rem; */
}

.loginbtn:active {
    transform: scale(1);
}