@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');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}
body{
    overflow-x: hidden;
    background-color: #6bc9d5;
    min-height: 100vh;
}
.bg{
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
     -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}
.logo{
    color: #0e2538;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
}
.logo img{
    height: 50px;
}
.navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.navigation li{
    list-style: none;
}
.navigation li a{
    text-decoration: none;
    padding: 6px 15px;
    color: #0e2538;
    border-radius: 20px;
}
.navigation li a:hover,
.navigation li a.active{
    background-color: #0e2538;
    color: #FFF;
}
.parallax{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.parallax img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}
#text{
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%);
    font-size: 4em;
    color: #0e2538;
}
.sec{
    position: relative;
    padding: 100px;
    background: #0e2538;
}
.sec h2{
    font-size: 3em;
    color: #FFF;
    margin-bottom: 10px;
}
.sec p{
    font-size: 1em;
    color: #FFF;
    font-weight: 300;
    margin-top: 20px;
}