@charset "utf-8";

/* CSS Document */

body {
    background-color: #e5d6e3;
}

.banner {
    width: 100%;
    height: 1060px;
    background: url(../images/banner.png) no-repeat center;
    background-size: cover;
}

.section {
    width: 100%;
    height: auto;
}

.section-1 {
    padding: 50px 0;
    background: url(../images/about-bg.png) no-repeat center;
    background-size: cover;
}

.section-1 .about-info {
    margin: 0 auto;
    width: 958px;
    height: 350px;
    background: url(../images/about.png) no-repeat center;
    background-size: contain;
}

.section-2 {
    padding: 25px 0 0;
    text-align: center;
    /* background-image: linear-gradient(#27373b, #4c3740); */
    background-color: #ffce39;
}

.section-2 .title {
    margin: 0 auto 20px;
    width: 426px;
    height: 50px;
    background: url(../images/contact-us-title.png) no-repeat center;
    background-size: contain;
}

.section-2 .email {
    text-align: center;
    padding-bottom: 6px;
}

.section-2 .email a {
    display: block;
    margin-bottom: 20px;
    color: #fff;
    font-size: 28px;
}

.section-2 .email a:hover {
    text-decoration: underline;
}

.section-2 .email img {
    display: block;
    margin: 0 auto;
    width: 125px;
    height: 125px;
}

.footer {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: unset;
    background-color: #fff;
}

.footer .logo {
    /* margin: auto; */
    width: 244px;
    height: 64px;
    background: url(../images/logo.png) no-repeat center;
    background-size: contain;
}

.footer .copyright-info p {
    line-height: 2;
    color: #444444;
    font-size: 18px;
    /* text-align: center; */
}

.footer .copyright-info p:not(:last-child) {
    /* margin: 20px 0; */
}

.copyright-info {
    /* width: 485px; */
    /* margin: auto; */
}

@media (max-width: 800px) {
    .banner {
        width: 100%;
        height: 262px;
        background: url(../images/banner-m.png) no-repeat center;
        background-size: cover;
    }
    .section-1 {
        padding: 30px 0 50px;
    }
    .section-1 .about-info {
        width: 300px;
        height: 470px;
        background: url(../images/about-m.png) no-repeat center;
        background-size: contain;
    }
    .section-2 .title {
        width: 320px;
        height: 40px;
    }
    .footer {
        padding: 30px 10px;
    }
    .footer .copyright-info p {
        line-height: 1;
    }
}