.carousel-item{
    height: 54rem;
    background: #777;
    color: white;
    position: relative;
}
.main{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height:  100%;
    width: 100%;
}
.container{
    position: absolute;
    bottom:0;
    left: 2rem;
    right: 0;
    padding-bottom: 33rem;
}
.h1-label{
    font-weight: bold;
    font-size: 3rem;
}
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100dvh;
}
.about-section-text{
    font-style: italic;
    text-align: justify;
    font-weight: 500;
    letter-spacing:.1rem;
    font-size: 1.2rem
    
}
.about-section-text-2{
    font-style: italic;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem
}
#his-pic{
    height: 50vh;
    border-radius: 50%;
    margin: 10rem;
    box-shadow: 5px 5px 10px  black;
}
#his-pic-2{
    height: 50vh;
    border-radius: 10%;
    margin: 10rem;
    box-shadow: 5px 10px 10px  black;
}

.about-paragraph {
    width: 100%;
    margin-top: 18%;
    margin-left: 15%;
}
.social-section{
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    border: 1px solid black;
    border-top: none;
    border-left: none;
    border-right: none;
}
.card-section{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height:110dvh ;
}
.card-image{
    height: 125px;
    width: 125px;
    text-align: center;
    border-radius: 20rem;
    margin-bottom: 2rem;
}
.card{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem;
    padding: 2rem;
    min-height: 40rem;
    min-width: auto;
    border: none;
}
.card:nth-child(2){
    transition-delay: 200ms;
}
.card:nth-child(3){
    transition-delay: 400ms;
}
.card:nth-child(4){
    transition-delay: 600ms;
}
.card-button{
    border: 1px solid black;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    transition: all .5s;
    border-radius:4px;
}
.card-button:hover{
    border: 1px solid black;

    padding-left: 2rem;
    padding-right: 2rem;
    color: white;
    background-color: black;
}
.about-section-text:nth-child(1){
    transition-delay: 100ms;
}
.about-section-text:nth-child(2){
    transition-delay: 200ms;
}
.about-section-text:nth-child(3){
    transition-delay: 200ms;
}
.about-section-text-2:nth-child(1){
    transition-delay: 100ms;
}
.sub-content{
    display: flex;
}
video{
    height: 60%;
    width: 60%;
}
.hidden{
    opacity: 0;
    filter: blur(5px);
    transition: all 1s;
    transform: translateX(-100%);
  }
  .show{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0%);
  }
  .container-1{
    font-size: 1rem;
    bottom: 20rem;
    left: 73.5rem;
  }


