body{
    position: relative;
    overflow-x: hidden;
}

.Header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80vh;
    background:linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../CSS/Backgrounds/Gallery_Header.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.HeaderTextContainer{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    left: 10%;
    top: 35%;
}

h4{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #33F68A;
}

h2{
    font-size: 50px;
    font-weight: 700;
    color: #000000;
}

p{
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
    color: #000000;
}

span{
    font-size: 55px;
    font-weight: 800;
    color: #33F68A;
}

.Header h2{
    color: #ffffff;
}

.Header h4{
    color: #ffffff;
    text-transform: none;
}

.HeaderBTNTextContainer{
    display: flex;
    justify-content: center;
    margin: 20px 0px 60px 0px;
}

.ContactBTNFull{
    background-color: #33F68A;
    padding: 10px 20px 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
}

.ContactBTNOutline{
    background-color: none;
    padding: 10px 20px 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 1px;
    border: 3px solid #33F68A;
    transition: 0.3s ease-in-out;
}

.ContactBTNFull:hover{
    transform: translateY(-20px);
}

.ContactBTNOutline:hover{
    transform: translateY(-20px);
}

.Introduction{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 40px;
    background-color: #E6E6E6;
    position: relative;
}

.Introduction img{
    width: 100px;
}


.Introduction p{
    width: 70%;
    margin: 10px 0px 40px 0px;
}

.Introduction a{
    margin-bottom: 75px;
}

.custom-shape-divider-bottom-1609827086 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1609827086 svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-1609827086 .shape-fill {
    fill: #FFFFFF;
}

.GalleryContainer{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding: 20px;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.GalleryContainer img{
    width: 320px;
    max-height: 400px;
    object-fit: cover;
    cursor: pointer;
    justify-self: center;
}

#Lightbox{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0%;
    left: 0%;
    z-index: 100;
    display: none;
}

#Lightbox.LightboxActive{
    display: flex;
    align-items: center;
    justify-content: center;
}

#Lightbox.LightboxActive img{
    width: 750px;
    height: auto;
    max-height: unset;
    object-fit: contain;
}

@media screen and (max-width: 1036px){
    .HeaderTextContainer{
        position: unset;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 1021px){
    #Lightbox.LightboxActive img{
        width: 550px;
        height: auto;
    }
}

@media screen and (max-width: 927px){
    .Introduction p{
        width: 100%;
    }
}

@media screen and (max-width: 797px){
    #Lightbox.LightboxActive img{
        width: 450px;
        height: auto;
    }
}
