*{
    margin: 0;
    padding: 0;

}

html{
    width: 100vw;
}


.about-header{
    background-image: url("about_us_header.jpg");
    background-position: center;
    background-size: cover;
  
    width: 100%;
    height: 50%;
}
#about-us-text{
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
}

.section-text-colored{
    background-color: #f5f5dc;
    padding: 80px 20px;
    text-align: center;
    font-size: 24px;
}
.section-text-colored h2{
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 5px;
    
}
.section-text-colored p{
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.3;
}

#about-us-bg{
    background-image: url(pstch-bg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 40%;
}

.align-center{
    text-align: center;
}

.footer{
   
    background-color: #66a6ff;
    margin-bottom: 0px;
}
.footer *{
    font-size: 18px;
    font-family: Madefor-Text-MediumBold, Madefor, Helvetica Neue, Helvetica, Arial, メイリオ, Meiryo, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro W3, Hiragino Kaku Gothic Pro, sans-serif !important;
    font-weight: 300;
    line-height: 1.25;
}

.footer-content-wrapper{
    display: flex;
    justify-content: space-around;
    padding: 20px 0px;
}

.footer-logo{
    width: 150px;
    height: 90px;
    display: flex;
    
}
.footer-sitemap .footer-menu-list {
    list-style-type: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Ensures items align based on their content */
    padding: 0; /* Removes default list padding */
}

.footer-sitemap .footer-menu-list li {
    margin: 0; /* Removes any unnecessary margin */
    padding: 0; /* Removes any unnecessary padding */
    
}

.footer-sitemap .footer-menu-list a {
    text-decoration: none; /* Removes underline */
    display: inline-block; /* Ensures width matches the text */
    padding: 5px 0; /* Optional: Adds vertical clickable padding */
    width: auto; /* Ensures the width is only as wide as the text */
}

.footer-contact-location-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.footer-contact span{
    display: block;
}
.footer-location span{
    display: block;
}

.footer-follow-us{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-follow-us span{
    display: block;
    margin-bottom: 8px;
}
.social-icons{
    display: flex;
    gap: 10px;
}
.social-icon{
    width: 50px;
    height: auto;
    
}
.social-icon:hover{
    opacity: 0.8;
}
.footer-logo-img{
    width: 180px;
}

@media only screen and (max-width: 875px){
    .section-text-colored{
        font-size: 21px;
    }
    .section-text-colored p{
        max-width: 90%;
    }
}

@media only screen and (max-width: 645px){
    .footer-content-wrapper{
        flex-wrap: wrap;
        align-items: center;
    }
    .footer-logo-img{
        width: 160px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .footer-logo{
        justify-items: normal;
        align-items: end;
        width: 50%;
        height: 50%;
        margin-top: -60px;
    }
    .footer-sitemap{
        flex: 1 1 50%;
    }
    .footer-contact-location-wrapper{
        flex: 1 1 50%;
    }
    .footer-follow-us{
        flex: 1 1 50%;
        align-self: flex-end;
    }
    #about-us-bg{
        background-attachment: scroll;
        width: 150%;
    }
    .section-text-colored{
        padding: 80px 8px
    }
    .section-text-colored p{
        max-width: 100%;
    }

}
@media only screen and (max-width: 460px){
    .section-text-colored{
        padding: 80px 6px;
        font-size: 19px;
        text-align: justify;
    }
}