@font-face {
    font-family: "beba";
    src: url("./BEBAS.ttf") format("truetype");
 }

 @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
 }

* {
    margin: 0;
}

body {
    position: relative;
    background: url(./bg.png) repeat;
}

.banner {
    position: relative;
}

.banner-title-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.banner-title {
    color: white;
    font-size: 52px;
    font-family: "beba";
    animation: fadeInUp 1s ease;
}


.logo {
    position: absolute;
    left: 24px;
    width: 144px;
    top: 25px;
}

.banner-image1 {
    background: url(./banner1.jpg) no-repeat center;
    height: 490px;
    display: block;
}

.banner-image2 {
    display: none;
    width: 100%;
}

.main-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    /* animation: fadeInUp 1s ease .2s; */
}

.gallery {
    margin-bottom: 32px;
}

.gallery .item {
    display: inline-block;
    width: 23%;
    margin: 1%;
}

.gallery .item img {
    width: 100%;
}

.title {
    margin: 52px 2% 16px;
    font-weight: bold;
    font-size: 32px;
}

.info {
    margin: 16px 2% 52px;
    font-size: 18px;
}

.info-contact {
    font-size: 16px;
}

.name {
    font-weight: bold;
    font-size: 26px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
}

.name-cn, .location-cn {
    margin-bottom: 12px;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
}

.mission-icon {
    width: 49px;
}

.first-mission-item {
    background-image: linear-gradient(45deg, rgba(45, 167, 232, 0), rgba(45, 167, 232, 0), rgba(45, 167, 232, 0.07));
    position: relative;

    &::after {
        content: "";
        position: absolute;
        right: 0;
        height: 100%;
        top: 0;
        width: 1px;
        background: #e8e8e8;
    }
}

.mission-item {
    flex: 1;
    padding: 54px 0 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-title {
    font-size: 27px;
    margin: 42px 0 14px;
}

.mission-desc {
    width: 85%;
    text-align: center;
}

.extra-logo-container {
    position: absolute;
    left: 24px;
    width: 144px;
    top: 24px;
    display: flex;
    align-items: center;
}

.extra-logo1 {
    height: 50px;
}

.extra-logo2 {
    position: absolute;
    left: 68px;
    height: 100px;
    filter: drop-shadow(1px 0 0 white) 
    drop-shadow(0 1px 0 white)
    drop-shadow(-1px 0 0 white) 
    drop-shadow(0 -1px 0 white);
    transform: scale(0.5);
    transform-origin: left;
}

@media screen and (max-width: 767px) {
    .extra-logo1 {
        height: 34px;
    }

    .extra-logo2 {
        left: 50px;
        height: 68px;
    }

    .banner-image1 {
        display: none;
    }
    .banner-image2 {
        display: block;
    }

    .banner-title {
        font-size: 26px;
    }

    .mission-item {
        width: 100%;
        flex: auto;
    }

    .first-mission-item {
        &::after {
            display: none;
        }
    }

    .gallery .item {
        display: inline-block;
        width: 47%;
        margin: 1%;
    }    
}