*, html {
    scroll-behavior: smooth !important;
}

/*Extra Large Screens*/
@media screen and (min-width:1200px){
  
    /* About Us Section */
    #aboutUs {
        height:max-content;
        width: auto;
        border-bottom: #35424a 3px solid;
        display:flex;
        background: url("Images/aboutBanner.jpg");
        background-size: cover;
        background-position: center;
        filter: brightness(80%);
    }

    #algalHistory {
        margin-left:7vw;
        width:50vw;
        margin-top:20px;
        margin-bottom:20px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        background-color:rgba(255, 255, 255, 0.8);
        padding:20px 30px;
        border-radius: 20px;
        filter: brightness(100%) !important;
    }

    #algalHistory h1 {
        margin:0;
        font-size: 50px;
        font-weight: 700;
        padding-top: 25px; padding-bottom:30px;
    }

    #algalHistory p {
        margin:0;
        font-size: 20px;
        font-weight: 300;
    }

    /* What Sets Algal Apart*/
    #skills {
        height: max-content;
        background: url('Images/skills-background.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: white;
    }

    #skills h1 {
        font-size:50px;
        font-weight:700;
        text-align: center;
        margin-top:0;
        padding-top:30px;
        margin-bottom:5vw;
    }

    #rowSkills {
        width:60vw;
        height:auto;
        margin-left:20vw;
        display: grid;
        grid-template-rows: auto auto;
    }

    .colSkills {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap:50px;
    }

    .colSkills details {
        font-size:25px;
    }

    .colSkills summary {
        font-weight: bold;
    }

    .skill {
        padding:15px;
    }

    .skill h2 {
        font-size:35px;
        font-weight:700;
        text-align:left;
    }

    .skill h3 {
        font-size:17.55px;
        font-weight:700;
    }

    .skill p {
        font-size:17px;
        font-weight:400;
    }

    /* Our Team */
    #ourTeam {
        background-color: #0f0c2c;
        height:max-content;
        padding-top:5px;
        margin:0;
        padding-bottom:15vh;
        text-align: center;
        color:white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #ourTeam h1 {
        font-size:50px;
        font-weight:700;
        padding-top:50px;
        margin-bottom:40px;
        margin-top:40px;
    }

    #ourTeam h2 {
        font-size:22.5px;
        font-weight:700;
        margin-bottom:20px;
        padding:0;
    }

    #teamLayout {
        width:90vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .teamMember {
        position: relative;
        width: 12vw;
        height: 500px;
        border-radius: 50px;
        overflow: hidden;
        margin: 1vw;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: url(Images/Team/Simona2.jpg);
        background-size: cover;
        background-position: center;
        filter:brightness(70%);
        transition: 0.6s;
        cursor: pointer;
    }
    .teamMember:nth-child(2) {
        background: url(Images/Team/Marian1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(3) {
        background: url(Images/Team/Narcisa1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(4) {
        background: url(Images/Team/Anup1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(5) {
        background: url(Images/Team/marissa.png);
        background-size: cover;
        background-position: center;
    }
    

    .teamMember:hover {
        width:50vw;
        filter:brightness(100%);
    }
    .memberText {
        position:absolute;
        background: rgba(255, 255, 255, 0.9);
        padding:5px;
        width:100%;
        transition:0.7s ease; 
        opacity:0;
        bottom: -100%;
        color:black;
        display:flex;
        flex-direction: column;
        justify-content: center;
        
    }
    .teamMember:hover .memberText {
        opacity:0.7;
        bottom:0;
    }
    .teamMember.active .memberText {
        opacity:0;
        bottom:100%;
    }

    .memberDescrip {
        position:absolute;
        padding:5px;
        width:100%;
        height: 100%;
        transition:0.7s ease; 
        opacity:0;
        top: 100%;
        color:black;
        overflow:auto;

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background-color:rgba(255, 255, 255, 0.4);
        border-radius: 12px;

    }

    .teamMember.active .memberDescrip {
        opacity:1;
        top:0;
    }

    .memberText h3 {
        font-size:25px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 5px;
        padding-right: 5px;
    }

    .memberDescrip p {
        font-size: 18px;
        text-align: left;
        margin:0px;
        padding:25px;
        opacity:1;
    }

    .memberText h4 {
        font-size:18px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 15px;
        padding-right: 15px;
    }

    .memberText i {
        font-size:2vw;
        margin:0px;
        opacity:1;
        color:black;
    }  
}

/*Large Screens*/
@media screen and (min-width:992px) and (max-width:1199px){
  
    /* About Us Section */
    #aboutUs {
        height:max-content;
        width: auto;
        border-bottom: #35424a 3px solid;
        display:flex;
        align-items: center;
        justify-content: center;
        background: url("Images/aboutBanner.jpg");
        background-size: cover;
        background-position: center;
        filter: brightness(80%);
    }

    #algalHistory {
        width:80vw;
        margin-top:20px;
        margin-bottom:20px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        background-color:rgba(255, 255, 255, 0.8);
        padding:20px 30px;
        border-radius: 10px;
    }

    #algalHistory h1 {
        margin:0;
        font-size: 40px;
        font-weight: 700;
        padding-top: 25px; padding-bottom:30px;
    }

    #algalHistory p {
        margin:0;
        font-size: 16px;
        font-weight: 300;
    }

    /* What Sets Algal Apart*/
    #skills {
        height: max-content;
        background: url('Images/skills-background.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: white;
        display:flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #skills h1 {
        font-size:40px;
        font-weight:700;
        text-align: center;
        margin-top:0;
        padding-top:25px;
        margin-bottom:5vw;
    }

    #rowSkills {
        width:80vw;
        height:auto;
        display: grid;
        grid-template-rows: auto auto;
    }

    .colSkills {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap:40px;
    }

    .skill {
        padding:15px;
    }

    .skill h2 {
        font-size:30px;
        font-weight:700;
        text-align:justify;
    }

    .skill h3 {
        font-size:18px;
        font-weight:700;
        text-align:justify;

    }

    .skill p {
        font-size:15px;
        font-weight:400;
        text-align:justify;

    }

    /* Our Team */
    #ourTeam {
        background-color: #0f0c2c;
        height:max-content;
        padding-top:5px;
        margin:0;
        padding-bottom:15vh;
        text-align: center;
        color:white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #ourTeam h1 {
        font-size:40px;
        font-weight:700;
        padding-top:40px;
        margin-bottom:40px;
        margin-top:30px;
    }

    #ourTeam h2 {
        font-size:20px;
        font-weight:700;
        margin-bottom:20px;
        padding:0;
    }

    #teamLayout {
        width:90vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .teamMember {
        position: relative;
        width: 12vw;
        height: 400px;
        border-radius: 25px;
        overflow: hidden;
        margin: 1vw;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: url(Images/Team/Simona2.jpg);
        background-size: cover;
        background-position: center;
        filter:brightness(70%);
        transition: 0.6s;
        cursor: pointer;
    }
      .teamMember:nth-child(2) {
        background: url(Images/Team/Marian1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(3) {
        background: url(Images/Team/Narcisa1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(4) {
        background: url(Images/Team/Anup1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(5) {
        background: url(Images/Team/marissa.png);
        background-size: cover;
        background-position: center;
    }
    

    .teamMember:hover {
        width:50vw;
        filter:brightness(100%);
    }
    .memberText {
        position:absolute;
        background: rgba(255, 255, 255, 0.9);
        padding:5px;
        width:100%;
        transition:0.7s ease; 
        opacity:0;
        bottom: -100%;
        color:black;
        display:flex;
        flex-direction: column;
        justify-content: center;
        
    }
    .teamMember:hover .memberText {
        opacity:0.7;
        bottom:0;
    }
    .teamMember.active .memberText {
        opacity:0;
        bottom:100%;
    }

    .memberDescrip {
        position:absolute;
        padding:5px;
        width:100%;
        height: 100%;
        transition:0.7s ease; 
        opacity:0;
        top: 100%;
        color:black;
        overflow:auto;

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background-color:rgba(255, 255, 255, 0.4);
        border-radius: 12px;

    }

    .teamMember.active .memberDescrip {
        opacity:1;
        top:0;
    }

    .memberText h3 {
        font-size:20px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 5px;
        padding-right: 5px;
    }

    .memberDescrip p {
        font-size: 15px;
        text-align: justify;
        margin:0px;
        padding:25px;
        opacity:1;
    }

    .memberText h4 {
        font-size:16px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 15px;
        padding-right: 15px;
    }

    .memberText i {
        font-size:2vw;
        margin:0px;
        opacity:1;
        color:black;
    }  
}

/*Medium Screens*/
@media screen and (min-width:769px) and (max-width:991px){
  
    /* About Us Section */
    #aboutUs {
        height:max-content;
        width: auto;
        border-bottom: #35424a 3px solid;
        display:flex;
        align-items: center;
        justify-content: center;
        background: url("Images/aboutBanner.jpg");
        background-size: cover;
        background-position: center;
        filter: brightness(80%);
    }

    #algalHistory {
        width:80vw;
        margin-top:20px;
        margin-bottom:20px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        background-color:rgba(255, 255, 255, 0.8);
        padding:20px 30px;
        border-radius: 10px;
    }

    #algalHistory h1 {
        margin:0;
        font-size: 30px;
        font-weight: 700;
        padding-top: 25px; padding-bottom:30px;
    }

    #algalHistory p {
        margin:0;
        font-size: 15px;
        font-weight: 300;
    }

    /* What Sets Algal Apart*/
    #skills {
        height: max-content;
        background: url('Images/skills-background.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: white;
        display:flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #skills h1 {
        font-size:30px;
        font-weight:700;
        text-align: center;
        margin-top:0;
        padding-top:25px;
        margin-bottom:5vw;
    }

    #rowSkills {
        width:85vw;
        height:auto;
        display: grid;
        grid-template-rows: auto auto;
    }

    .colSkills {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap:30px;
    }

    .skill {
        padding:10px;
    }

    .skill h2 {
        font-size:20px;
        font-weight:700;
        text-align:left;
    }

    .skill h3 {
        font-size:18px;
        font-weight:700;
        text-align:left;

    }

    .skill p {
        font-size:15px;
        font-weight:400;
        text-align:justify;

    }

    /* Our Team */
    #ourTeam {
        background-color: #0f0c2c;
        height:max-content;
        padding-top:5px;
        margin:0;
        padding-bottom:10vh;
        text-align: center;
        color:white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #ourTeam h1 {
        font-size:30px;
        font-weight:700;
        padding-top:40px;
        margin-bottom:40px;
        margin-top:30px;
    }

    #ourTeam h2 {
        font-size:20px;
        font-weight:400;
        margin-bottom:20px;
        padding:0;
    }

    #teamLayout {
        width:90vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .teamMember {
        position: relative;
        width: 12vw;
        height: 350px;
        border-radius: 20px;
        overflow: hidden;
        margin: 1vw;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: url(Images/Team/Simona2.jpg);
        background-size: cover;
        background-position: center;
        filter:brightness(70%);
        transition: 0.6s;
        cursor: pointer;
    }
  
      .teamMember:nth-child(2) {
        background: url(Images/Team/Marian1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(3) {
        background: url(Images/Team/Narcisa1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(4) {
        background: url(Images/Team/Anup1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(5) {
        background: url(Images/Team/marissa.png);
        background-size: cover;
        background-position: center;
    }
    

    .teamMember:hover {
        width:80vw;
        filter:brightness(100%);
    }
    .memberText {
        position:absolute;
        background: rgba(255, 255, 255, 0.9);
        padding:5px;
        width:100%;
        transition:0.9s ease; 
        opacity:0;
        bottom: -100%;
        color:black;
        display:flex;
        flex-direction: column;
        justify-content: center;
        
    }
    .teamMember:hover .memberText {
        opacity:0.7;
        bottom:0;
    }
    .teamMember.active .memberText {
        opacity:0;
        bottom:100%;
    }

    .memberDescrip {
        position:absolute;
        padding:5px;
        width:100%;
        height: 100%;
        transition:0.7s ease; 
        opacity:0;
        top: 100%;
        color:black;
        overflow:auto;

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background-color:rgba(255, 255, 255, 0.4);
        border-radius: 12px;

    }

    .teamMember.active .memberDescrip {
        opacity:1;
        top:0;
    }

    .memberText h3 {
        font-size:18px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 5px;
        padding-right: 5px;
    }

    .memberDescrip p {
        font-size: 15px;
        text-align: justify;
        margin:0px;
        padding:25px;
        opacity:1;
    }

    .memberText h4 {
        font-size:15px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 15px;
        padding-right: 15px;
    }

    .memberText i {
        font-size:2vw;
        margin:0px;
        opacity:1;
        color:black;
    }  
}

/*Small Screens*/
@media screen and (min-width:576px) and (max-width:768px){
  
    /* About Us Section */
    #aboutUs {
        height:max-content;
        width: auto;
        border-bottom: #35424a 3px solid;
        display:flex;
        align-items: center;
        justify-content: center;
        background: url("Images/aboutBanner.jpg");
        background-size: cover;
        background-position: center;
        filter: brightness(80%);
    }

    #algalHistory {
        width:80vw;
        margin-top:20px;
        margin-bottom:20px;
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        background-color:rgba(255, 255, 255, 0.8);
        padding:20px 30px;
        border-radius: 10px;
    }

    #algalHistory h1 {
        margin:0;
        font-size: 25px;
        font-weight: 700;
        padding-top: 25px; padding-bottom:30px;
    }

    #algalHistory p {
        margin:0;
        font-size: 15px;
        font-weight: 300;
    }

    /* What Sets Algal Apart*/
    #skills {
        height: max-content;
        background: url('Images/skills-background.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: white;
        display:flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #skills h1 {
        font-size:25px;
        font-weight:700;
        text-align: center;
        margin-top:0;
        padding-top:25px;
        margin-bottom:5vw;
    }

    #rowSkills {
        width:85vw;
        height:auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .skill {
        padding:10px;
    }

    .skill h2 {
        font-size:20px;
        font-weight:700;
        text-align:left;
        margin-top:10px;
    }

    .skill h3 {
        font-size:18px;
        font-weight:500;
        text-align:left;
        margin-top:10px;
        margin-bottom:10px;

    }

    .skill p {
        font-size:15px;
        font-weight:400;
        text-align:left;

    }

    /* Our Team */
    #ourTeam {
        background-color: #0f0c2c;
        height:max-content;
        padding-top:5px;
        margin:0;
        padding-bottom:10vh;
        text-align: center;
        color:white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #ourTeam h1 {
        font-size:30px;
        font-weight:700;
        padding-top:40px;
        margin-bottom:40px;
        margin-top:30px;
    }

    #ourTeam h2 {
        font-size:20px;
        font-weight:400;
        margin-bottom:20px;
        padding:0;
    }

    #teamLayout {
        width:90vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .teamMember {
        position: relative;
        width: 80vw;
        height: 450px;
        border-radius: 20px;
        overflow: hidden;
        margin: 1vh;
        filter: brightness(80%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: url(Images/Team/Simona2.jpg);
        background-size: cover;
        background-position: center;
        transition: 0.6s;
        cursor: pointer;
    }
    
    .teamMember:nth-child(2) {
        background: url(Images/Team/Marian1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(3) {
        background: url(Images/Team/Narcisa1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(4) {
        background: url(Images/Team/Anup1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(5) {
        background: url(Images/Team/marissa.png);
        background-size: cover;
        background-position: center;
    }
   


    .memberText {
        position:absolute;
        background: rgba(255, 255, 255, 0.9);
        padding:5px;
        width:100%;
        transition:0.9s ease; 
        opacity:0.7;
        bottom: 0;
        color:black;
        display:flex;
        flex-direction: column;
        justify-content: center;
        
    }

    .teamMember.active .memberText {
        opacity:0;
        bottom:100%;
    }

    .memberDescrip {
        position:absolute;
        padding:5px;
        width:100%;
        height: 100%;
        transition:0.7s ease; 
        opacity:0;
        top: 100%;
        color:black;
        overflow:auto;
        background-color:rgba(255, 255, 255, 0.4);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-radius: 12px;

    }

    .teamMember.active .memberDescrip {
        opacity:1;
        top:0;
    }

    .memberText h3 {
        font-size:18px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 5px;
        padding-right: 5px;
    }

    .memberDescrip p {
        font-size: 15px;
        text-align: justify;
        margin:0px;
        padding:25px;
        opacity:1;
    }

    .memberText h4 {
        font-size:15px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 15px;
        padding-right: 15px;
    }

    .memberText i {
        font-size:2vw;
        margin:0px;
        opacity:1;
        color:black;
    }  
}

/*Mobile Screens*/
@media screen and (max-width:575px){
  
    /* About Us Section */
    #aboutUs {
        height:max-content;
        width: auto;
        border-bottom: #35424a 3px solid;
        display:flex;
        align-items: center;
        justify-content: center;
        background: url("Images/aboutBanner.jpg");
        background-size: cover;
        background-position: center;
        filter: brightness(80%);
    }

    #algalHistory {
        width:75vw;
        margin-top:20px;
        margin-bottom:20px;
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        background-color:rgba(255, 255, 255, 0.8);
        padding:20px 30px;
        border-radius: 10px;
    }

    #algalHistory h1 {
        margin:0;
        font-size: 20px;
        font-weight: 700;
        padding-top: 10px; padding-bottom:20px;
    }

    #algalHistory p {
        margin:0;
        font-size: 15px;
        font-weight: 300;
    }

    /* What Sets Algal Apart*/
    #skills {
        height: max-content;
        background: url('Images/skills-background.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        color: white;
        display:flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #skills h1 {
        font-size:20px;
        font-weight:700;
        text-align: center;
        margin-top:0;
        padding-top:25px;
        margin-bottom:5vw;
    }

    #rowSkills {
        width:85vw;
        height:auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .skill {
        padding:10px;
    }

    .skill i {
        font-size: 30px !important;
    }

    .skill h2 {
        font-size:16px;
        font-weight:700;
        text-align:left;
    }

    .skill h3 {
        font-size:16px;
        font-weight:500;
        text-align:left;

    }

    .skill p {
        font-size:15px;
        font-weight:400;
        text-align:left;

    }

    /* Our Team */
    #ourTeam {
        background-color: #0f0c2c;
        height:max-content;
        padding-top:5px;
        margin:0;
        padding-bottom:10vh;
        text-align: center;
        color:white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #ourTeam h1 {
        font-size:30px;
        font-weight:700;
        padding-top:40px;
        margin-bottom:40px;
        margin-top:30px;
    }

    #ourTeam h2 {
        font-size:20px;
        font-weight:400;
        margin-bottom:20px;
        padding:0;
    }

    #teamLayout {
        width:90vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .teamMember {
        position: relative;
        width: 80vw;
        height: 450px;
        border-radius: 20px;
        overflow: hidden;
        margin: 1vh;
        filter: brightness(80%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: url(Images/Team/Simona2.jpg);
        background-size: cover;
        background-position: center;
        transition: 0.6s;
        cursor: pointer;
    }
 
    .teamMember:nth-child(2) {
        background: url(Images/Team/Marian1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(3) {
        background: url(Images/Team/Narcisa1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(4) {
        background: url(Images/Team/Anup1.jpg);
        background-size: cover;
        background-position: center;
    }
    .teamMember:nth-child(5) {
        background: url(Images/Team/marissa.png);
        background-size: cover;
        background-position: center;
    }
    


    .memberText {
        position:absolute;
        background: rgba(255, 255, 255, 0.9);
        padding:5px;
        width:100%;
        transition:0.9s ease; 
        opacity:0.7;
        bottom: 0;
        color:black;
        display:flex;
        flex-direction: column;
        justify-content: center;
        
    }

    .teamMember.active .memberText {
        opacity:0;
        bottom:100%;
    }

    .memberDescrip {
        position:absolute;
        padding:5px;
        width:100%;
        height: 100%;
        transition:0.7s ease; 
        opacity:0;
        top: 100%;
        color:black;
        overflow:auto;

        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        background-color:rgba(255, 255, 255, 0.4);
        border-radius: 12px;

    }

    .teamMember.active .memberDescrip {
        opacity:1;
        top:0;
    }

    .memberText h3 {
        font-size:18px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 5px;
        padding-right: 5px;
    }

    .memberDescrip p {
        font-size: 15px;
        text-align: justify;
        margin:0px;
        padding:25px;
        opacity:1;
    }

    .memberText h4 {
        font-size:15px;
        text-align: center;
        margin:0px;
        opacity:1 ;
        padding-left: 15px;
        padding-right: 15px;
    }

    .memberText i {
        font-size:15px;
        margin:0px;
        opacity:1;
        color:black;
    }  
}