@media only screen and (max-width: 576px) {
    .wet-lab-notebook-banner {
        height: 23vh;
    }

    .wet-lab-notebook-banner .wet-lab-notebook-title {
        font-size: 18px;
    }

    .wet-lab-notebook-banner .ocean {
        height: 30px;
    }
    .wet-lab-notebook-section .wet-lab-notebook-component {
        box-shadow: none;
    }
    .accordion-body .accordion-notebook-body-image-container{
        width: 100%;
    }
}

@media only screen and (min-width: 576px) {
    .wet-lab-notebook-banner {
        height: 40vh;
    }

    .wet-lab-notebook-banner .wet-lab-notebook-title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) {
    .wet-lab-notebook-banner {
        height: 47vh;
    }

    .wet-lab-notebook-banner .wet-lab-notebook-title {
        font-size: 30px;
    }
}

@media only screen and (min-width: 992px) {
    .wet-lab-notebook-banner {
        height: 55vh;
    }

    .wet-lab-notebook-banner .wet-lab-notebook-title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    .wet-lab-notebook-banner {
        height: 66vh;
    }
}

@media only screen and (min-width: 1400px) {
    .wet-lab-notebook-banner {
        height: 70vh;
    }
}
.upper-divider-banner {
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
.upper-divider-banner svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 46px;
}
.upper-divider-banner .shape-fill {
    fill: rgb(10, 10, 17);
}
.wet-lab-notebook-banner {
    background: url('https://static.igem.wiki/teams/4810/wiki/background-wet-lab-notebook.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    margin-top: 100px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    padding-left: 0%;
    padding-right: 0%;
}
.wet-lab-notebook-title {
    margin: auto;
    font-size: 50px;
    width: 40%;
    color: white;
    text-align: center;
    background-color: rgba(21, 21, 30, 0.7);
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 50px;
    border-bottom: 5px solid #37aac7 !important;
    border-top: 5px solid #37aac7;
    border-left: 5px solid #37aac7;
    border-right: 5px solid #37aac7;
}

/*------------------ Wave Animation */
.ocean {
    height: 100px;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
}
.wave {
    background: url('https://static.igem.wiki/teams/4810/wiki/waves.svg') !important;
    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
}

.wave:nth-of-type(2) {
    bottom: 0;
    animation: wave 18s linear reverse infinite;
    opacity: 0.5;
}

.wave:nth-of-type(3) {
    bottom: 0;
    animation: wave 20s -1s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* -------------Wet Lab Notebook ------------------------- */
.wet-lab-notebook-component {
    width: 80%;
    margin: auto;
    box-shadow: 2px 2px 10px 10px rgba(163, 177, 198, 0.6);
    padding: 5% 5% 5% 5%;
    margin-bottom: 100px;
}
.wet-lab-notebook-title-component {
    text-align: center;
    margin-bottom: 50px;
    background-image: linear-gradient(to bottom right, #5b66bb, #25cfb2);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.wet-lab-notebook-pdf-reader-wrapper {
    margin-top: 100px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
.wet-lab-notebook-pdf-reader {
    width: 900px;
    height: 800px;
}
.wet-lab-notebook-hr{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: white;
}
.wet-lab-notebook-intro{
    color: white;
    text-align: justify;
}
.wet-lab-notebook-brief-description{
    font-weight: 700;
    white-space: nowrap; 
    text-overflow: ellipsis;
    font-size: 100%;
    width: fit-content;
}
.accordion-notebook-body-paragraph{
    text-align: justify;
}
.collapse-dropdown-subtitle{
    min-width: 14%;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.accordion-button:focus{
    box-shadow: none !important;
}
.accordion-body-wrapper-div{
    background-color: #a8e0c7; 
    color: black;
}
.accordion-notebook-body-list{
    padding-left: 2%;
}
.accordion-notebook-body-list li{
    list-style: square;
}
.accordion-notebook-body-image-container{
    width: 60%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
#week3-second-image{
    width: 100%;
}
.accordion-notebook-body-figure-caption-subtitle-span{
    font-weight: 800;
}
.accordion-notebook-body-figure-caption{
    color: white;
}
.figure-img{
border-radius: 30px;
}