* {
    padding: 0px;
    margin: 0px;
}
body{
    background-image: url('../images/about-bg.jpg');
    background-attachment: fixed;
}

.main-overview {
    background-image: url('../images/about-bg.jpg');
    background-attachment: fixed;
    height: auto;
    width: 100%;
    display: flex;
    padding: 40px;
}

.container {
    display: flex;
}

.overview-deatails {
    height: auto;
    width: 65%;
    padding: 8px;
    margin: 8px;


}

.overview-heading {

    font-size: 47px;
    color: rgb(6, 155, 192);
    margin-top: 10px;
    font-family: serif;
}

.discription-b {
    margin: 5px;
    font-size: 18px;
}

.overview-deatails2 {
    background: none;
    margin: 10px;
    display: flex;
    align-items: center;

}

.about-box {
    height: 300px;
    width: 340px;
    background: rgb(238, 238, 238);
    border: 3px solid rgb(196, 195, 195);
    padding: 10px;

}

.box-heading {
    font-family: serif;
    color: rgb(187, 185, 185);
}

.leadership-team {
    background-image: url('../images/about-bg.jpg');
    background-attachment: fixed;
    height: auto;
    width: 100%;
    padding: 100px;

}

.container-lead {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}


.leadership-team-head {
    margin-bottom: 20px;
}

.leadership-heading {
    font-size: 47px;
    color: rgb(6, 155, 192);
    margin: 0;
    font-family: serif;
    text-align: left;
}


.leadership-team-body {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    width: 100%;
}

.box {
    position: relative;
    height: auto;
    width: 180px;
    border-bottom: 2px solid  rgb(196, 195, 195);
}

.box .box-imag {
    position: absolute;
    top: 0;
    left: 0;
    height: 60%;
    width: 100%;
}

.image-name {
    margin-top: 200px;
    color: rgb(196, 195, 195);
    font-family: serif;
    font-size: 22px;
}
.discription{
    font-size: 15px;
    margin-bottom: 10px;
}
.imprints-container{
    height: 350px;
    width:100%;
    background: rgb(238, 237, 237);
    padding: 60px;

}
.imprints-heading{
    height: 70px;
    width: 80%;
    position: relative;
    left: 60px;
}
.imprints-heading h1{
    font-family: serif;
    color: rgb(197, 35, 35);
    font-size: 57px;
    padding: 0;
    margin: 0;
}
.imp-dis{
    height: 200px;
    width: 100%;
    padding: 30px;
    display: flex;
}
.pera{
    height: 120px;
    width: 64%;
    position: relative;
    left: 33px;
}
.button{
    height: 40px;
    width: 140px;
    background: rgb(23, 137, 190);
    border-radius: 4px;
    margin-top: 30px;
    color: white;
}
.pera p{
    font-size: 18px;
}
.pera a{
    font-weight: bolder;
    color: rgb(108, 108, 247);
}
.pera a:hover{
    text-decoration: underline  rgb(108, 108, 247);
}
.imprint-img{
    height: 200px;
    width: 300px;
    background: rgb(255, 255, 255);
    margin-left: 150px;
    margin-top: -60px;
}
.imprint-img img{
    height: 100%;
    width: 100%;
}
.history{
    height: auto;
    width: 100%;
    background-image: url('../images/about-bg.jpg');
    background-attachment: fixed;
}
.container{
    height: 100%;
    width: 100%;
    display: flex;
}
.rightside{
    height: 100%;
    width: 65%;
}
.leftside{
    width: 45%;
    height: 100%;
    padding: 25px;
}
.rightside .h1{
    margin: 20px;
   font-family: serif;
    font-size: 47px;
    color: rgb(6, 155, 192);
}
.rightside p{
    margin: 8px;
    color: black;
}
.last-end{
    font-family: serif;
    color: rgb(95, 94, 94);
}
.rightside a{
    font-size: 16px;
    font-weight: bolder;
    color: rgb(13, 120, 153);

}
.leftside .img-box{
    height: 400px;
    width: 350px;
    background: rgb(105, 102, 102);
    margin-top: 75px;
    margin-left: 180px;
    border: 1px solid rgb(105, 102, 102);

}
.img-box img{
    height: 100%;
    width: 100%;
}
/* From Uiverse.io by dylanharriscameron */ 
.card {
    position: relative;
    width: 200px;
    height: 250px;
    border-radius: 14px;
    z-index: 1111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    ;
  }
  
  .bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 190px;
    height: 240px;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
  }
  
  .blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ff0000;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
  }
  
  @keyframes blob-bounce {
    0% {
      transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
  
    25% {
      transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }
  
    50% {
      transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }
  
    75% {
      transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }
  
    100% {
      transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
  }
  