
.about-container1, .about-container3, .team-container{
    margin: 30px;
}
.about-us{
    margin: 50px;
    margin-top: 100px;
}
.about-us h1{
    text-align: center;
    margin: 20px;
}

.about-us-content{
    /* background-color: brown; */
    padding: 20px;
    border-radius: 14px;
}
.about-us-content ul li{
    color: #0e5b92;
    font-weight: 500;
}
.about-hor-line{
    width: auto;
    height: 1px;
    background-color: brown;
    margin: 20px;
}
.about-container1{
    justify-content: space-between;
    display: flex;
    text-align: center;
}
@media screen and (max-width:768px) {
    .about-container1{
    flex-direction: column;
    }
    .about-us{
        margin: 10px
    }
    .about-container1{
        margin: 0;
    }
    
}
.about-left-section1{
    margin: 30px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: start;
}
.about-right-section1{
    margin: 10px;
    padding: 20px;
    margin-bottom: -150px;
}
@media screen and (min-width:768px) {
    .about-right-section1{
        padding-left: 100px;
        }
    
}
.about-right-section1 img{
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 6px 10px rgba(6, 6, 6, 0.368);
    /* border: 1px solid brown; */
}
.about-right-section1-img2{
    position: relative;
    bottom: 150px;
    right: 100px;
}

@media screen and (max-width:768px) {
    .about-right-section1 img{
        width: 200px;
    }
    .about-right-section1-img2{
        position: relative;
        bottom: 90px;
        right: 30px;
    }
    .about-right-section1-img1{
        position: relative;
        left: 30px;
    }
    .about-right-section1{
        margin-bottom: -90px;
    }
    .about-left-section1{
        margin: 20px;
        }
    
}

.about-container2{
    background-color: aqua;
    display: flex;
    justify-content: space-between;
    padding: 50px;
    flex-wrap: wrap;
}

.about-left-section2 img{
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 6px 10px rgba(6, 6, 6, 0.39);
    
}


.about-container3{
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 12px;
}
.about-container4{
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 30px;
    /* background-color: antiquewhite; */
    color: black;
    padding: 10px;
    border-radius: 12px;
    border: 2px solid brown;
    text-align: center;
}
.about-container4 button{
    background-color: brown;
    border-radius: 6px;
    border: none;
    color: white;
    padding: 8px;

}

.about-container4 button:hover{
    background-color: white;
    color: brown;
    font-weight: 500;
}


/* scrool animation */
.scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 0.5s ease-out;
  }
  
  .scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  