.about{
    padding: 80px ;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#aboutbg{
    min-height: 100vh;
    background-color:#797979;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
     opacity: 0;
    transition: opacity 0.35s ease;
}

#aboutbg.is-ready{
    opacity: 1;
}

.about_loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity .3s ease;
    transform: none !important;
}

.loader__spinner{
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

#uploadAboutTitle{
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    gap: 10px; 
    margin-top: 20px;
}

#uploadBgImgBtn, #uploadAboutTitleBtn{
    background-color: #fbd84b;
    padding: 5px 10px;
    transition: .3s;
}

#uploadBgImgBtn:hover, #uploadAboutTitleBtn:hover{
    background-color: #ffc400;
  
}

#uploadForm{
flex-direction: column;
gap: 20px;
margin: 0px 10px 10px 10px;
}

@keyframes spin {
    to{
        transform: rotate(360deg);
    }
}

.hidden{
    display: none;
}

.about__text{
    font-weight: 500;
    font-size: clamp(22px, 3vw, 2rem);
    text-align: center;
}

.about__email{
    font-weight: 600;
    font-size: 1.6em;
}

#uploadAboutData{
gap: 10px;
flex-direction: column;
}

#uploadAboutBtn{
    background-color: rgb(255, 248, 110);
    padding: 5px 10px;
}

#uploadTitle{
    background-color: rgb(255, 251, 190);
    padding: 5px;
    min-width: 300px;
    max-width: 500px;
    min-height: 200px;
    max-height: 400px;
    width: 100%;
}

@media screen and (max-width:768px) {
    .about{
        padding: 20px ;
    }

    .about__text{
        font-weight: 400;
    }

    .about__email{
        font-size: 1.2em;
    }
    
}