@import url('https://fonts.googleapis.com/ css?family=Poppins: 200, 300, 400, 500, 600, 700, 800, 900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}


/* Nav stuff */

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 40px 100px;
    z-index: 10000;
    transition: 0.6s;
}
header #toggle{
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
header #toggle:before{
    content: '';
    position: absolute;
    top: 7px;
    width: 100%;
    height: 2px;
    background: #fff;
}
header #toggle:after{
    content: '';
    position: absolute;
    bottom: 7px;
    width: 100%;
    height: 2px;
    background: #fff;
    
}
.banner.active header #toggle:before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);

}
.banner.active header #toggle:after{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    
}
.banner.active header #toggle:before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);

}
.banner.active header #toggle:after{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    
}
.banner{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    transition: 0.5s;
    z-index: 2;
}

.banner.active{
    transform: translateX(-400px);
}

#navigation{
    position: fixed;
    top: 0;
    right: -200px;
    width: 400px;
    height: 100vh;
    background: rgb(15, 136, 136);
    z-index: 1;
    display: grid;
    place-items: center;
    transition: 0.5s;
}
#navigation.active{
right: 0;
}
#navigation ul{
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgb(15, 136, 136);
    
}
#navigation ul li{
    list-style: none;
    background: rgb(15, 136, 136);
}
#navigation ul li a{
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
    background: rgb(15, 136, 136);

}


section{
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
} 

/* end nav stuff */


.content{
    position: relative;
    min-height: 100vh;
    background: url('pictures/doc_pics/pulse.gif');
    background-repeat: no-repeat;
    background-size: cover;
}
.content h1{
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 136, 136);
    font-size: 60px;
    font-weight: normal;
    padding: 15px;
    text-align: center;
    text-transform: capitalize;
}
.content p{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
}
.content .image-content{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}
.content .image-content .image{
    height: 330px;
    width: 430px;
    border: 6px solid rgb(155, 155, 155);
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    overflow: hidden;
    cursor: pointer;
}
.content .image-content .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}
.content .image-content .image:hover img{
    transform: scale(1.1);
}
.content .popup-image{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}
.content .popup-image span{
    position: absolute;
    top: 9%;
    right: 25%;
    font-size: 60px;
    font-weight: bolder;
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 1000000;
}
.content .popup-image img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid rgb(15, 136, 136);
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}
.content .home a{
    position: relative;
    margin-top: 20px;
    background: rgb(15, 136, 136);
    color: rgb(0, 0, 0);
    padding: 10px 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    border-radius: 15px;
    display: block;
    width: 100px;
    margin: auto;

    
}

.content p{
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
@media (max-width:768px){
    .content .popup-image img{
        width: 95%;
    }
}