body{
    overflow-x: hidden;
}


.searchContainer {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-y: hidden;
    overflow-x: hidden;
}
.ss{
    font-size: 0.8rem;
}
.headerText {
    text-align: center;
    margin-top: 2rem;
    font-size: 10rem;
    font-family: 'Geologica', sans-serif;
}
.headerText::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    z-index: -1;
    opacity: 0;
    animation: shiningEffect 2s linear infinite;
}
.headerText:hover{
    cursor: pointer;
}

@keyframes shiningEffect {
    0% {
        opacity: 0;
        background-position: -200% 0;
    }
    50% {
        opacity: 1;
        background-position: 200% 0;
    }
    100% {
        opacity: 0;
        background-position: 200% 0;
    }
}

#searchBar {
    margin-left: 50%;
    transform: translateX(-50%);
    width: 50vw;
    font-family: Century Gothic, sans-serif;
    margin-top: 20rem;
    font-weight: bold;
}

.photoContainer{
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100vw;
    height: auto;
}
.child {
    position: relative;
    width: auto;
    height: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}
#downloadButton{
    margin-bottom: 1rem;
    margin-right: 1rem;
    position: absolute;
    bottom: 0;
    right: 0;
 }
#footerText{
    font-size: 1rem;
}
/*Footer - Start.*/
.myFooter{
    position: relative;
    top:100px;
}

.footer-main{
    padding-top: 90px;
}

.address-main > div.col-lg-4 {
    border-bottom: dotted 1px #999;
}
.address-box {
    padding: 10px 0;
    margin-bottom: 30px;
}
.add-icon{
    float: left;
    width: 60px;
    display: inline-block;
    padding: 0px 5px;
}
.address-box .add-icon {
    background: #27303b;
    height: 75px;
    line-height: 75px;
    width: 75px;
    margin-right: 20px;
    text-align: center;
}
.add-icon img{
    width: 100%;
}
.address-box .add-icon img {
    max-width: 40px;
}
.add-content{
    padding-left: 70px;
}
.add-content h5 {
    font-size: 17px;
    color: #ffffff;
    padding: 0;
    font-weight: 500;
    margin-bottom: 10px;
}
.add-content p {
    font-size: 13px;
    color: #999999;
    font-weight: 300;
}
.add-content p a{
    font-size: 14px;
    color: #999999;
    font-weight: 300;
    word-wrap: break-word;
}
.add-content p a:hover{
    color: #ffb32d;
}
.footer-main{
    padding-top: 90px;
}

.address-main > div.col-lg-4 {
    border-bottom: dotted 1px #999;
}
.address-box {
    padding: 10px 0;
    margin-bottom: 30px;
}
.add-icon{
    float: left;
    width: 60px;
    display: inline-block;
    padding: 0px 5px;
}
.address-box .add-icon {
    background: #27303b;
    height: 75px;
    line-height: 75px;
    width: 75px;
    margin-right: 20px;
    text-align: center;
}
.add-icon img{
    width: 100%;
}
.address-box .add-icon img {
    max-width: 40px;
}
.add-content{
    padding-left: 70px;
}
.add-content h5 {
    font-size: 17px;
    color: #ffffff;
    padding: 0;
    font-weight: 500;
    margin-bottom: 10px;
}
.add-content p {
    font-size: 13px;
    color: #999999;
    font-weight: 300;
}
.add-content p a{
    font-size: 14px;
    color: #999999;
    font-weight: 300;
    word-wrap: break-word;
}
.add-content p a:hover{
    color: #ffb32d;
}
/*Footer - End.*/

@media screen and (max-width: 800px) {
    #searchBar{
        width: fit-content;
    }
    .photoContainer{
        flex-direction: column;
    }
    .child{

    }


}
@media screen and (max-width: 1038px) {
    .headerText{
        font-size: 2.5rem;
    }
    #downloadButton{
        left: 0;
        right: 0;
        margin: auto;
    }
    
}