@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
*{
    font-family: 'Poppins', sans-serif;
}
body{
    margin: 0;
    background-color: white;
}
nav{
    display: flex;
    justify-content: space-around;
    width: 74%;
    height: 70px;
    padding: 0 13%;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.62);
    position: fixed;
    top: 0;
    user-select: none;
    z-index: 2;
}
.navButton{
    cursor: pointer;
    transition: 300ms;
    color: #000000;
}
.navButton:hover{
    color: rgb(235 ,105 ,33);
}
.inactive{
    color: rgba(0, 0, 0, 0.63) !important;
}
.inactive:hover{
    color: rgba(0, 0, 0, 0.63) !important;
    cursor: wait;
}
.left{
    width: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: white;
}

.logo{
    font-size: 30px;
    margin: 0;
    color: rgb(235 ,105 ,33);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.38);
    cursor: default;
}
.right{
    width: 70%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}
.main{
    padding: 0 13%;
    width: 74%;
}
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerImg{
    width: 100%;
    position: absolute;
    z-index: -1;
}
footer p{
    margin: 0;
}
#loader{
    width: 100%;
    height: 100vh;
    z-index: 99999;
    position: fixed;
    left: 0;
    top: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.center {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wave {
    width: 5px;
    height: 100px;
    background: linear-gradient(45deg, #ff6200, #ffb170);
    margin: 10px;
    animation: wave 1s linear infinite;
    border-radius: 20px;
}
.aboutHeader h1 {
    text-align: center;
    font-size: 2rem;
}
.wave:nth-child(2) {
    animation-delay: 0.1s;
}
.wave:nth-child(3) {
    animation-delay: 0.2s;
}
.wave:nth-child(4) {
    animation-delay: 0.3s;
}
.wave:nth-child(5) {
    animation-delay: 0.4s;
}
.wave:nth-child(6) {
    animation-delay: 0.5s;
}
.wave:nth-child(7) {
    animation-delay: 0.6s;
}
.wave:nth-child(8) {
    animation-delay: 0.7s;
}
.wave:nth-child(9) {
    animation-delay: 0.8s;
}
.wave:nth-child(10) {
    animation-delay: 0.9s;
}

@keyframes wave {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@media (max-width: 1500px) {
    .main{
        padding: 0 5%;
        width: 90%;
    }
}
@media (max-width: 1000px){
    nav{
        padding: 0 1%;
        width: 98%;
    }
}
@media (max-width: 750px) {
    .right{
        gap: 10px;
        width: 60%;
    }
    .left{
        width: 40%;
    }
}
@media (max-width: 650px) {
    footer img{
        display: none;
    }
    footer{
        box-shadow: 0 0 15px black;
        height: 70px;
        background-color: rgba(255, 98, 0, 0.81);
    }
    nav{
        flex-direction: column;
        height: 103px;
    }
    .left{
        width: 100%;
        justify-content: center;
    }
    .right{
        width: 100%;
        justify-content: space-around;
    }
}
@media (max-width: 380px) {
    .navButton{
        font-size: 15px;
    }
}