header {
    .top-wrap {
        .logo-box {
            width: 100px;
            height: 80px;
        }
        background-color: #fff;
        .container {
            align-items: center;
            .slogan {
                margin-left: 30px;
                font-size: 22px;
            }
        }
    }
    .banner {
        /* width: 1000px; */
        height: 400px;
        margin: auto;
        /* overflow: hidden; */
    }
    nav {
        /* padding: 10px 0; */
        background-color: #ccc;
        
        .nav-list {
            display: flex;
            .nav-item {
                flex: 1;
                padding: 16px 0;
                font-size: 18px;
                text-align: center;
                &.active {
                    background-color: #fff;
                }
            }
        }
    }
}

.media-box {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    audio {
        width: 180px;
        height: 40px;
    }
}

.viewpoint-list {
    display: flex;
    flex-wrap: wrap;
    .viewpoint-item {
        flex: 1 1 calc((100% - 60px) / 3);
        max-width: calc((100% - 60px) / 3);
        margin-bottom: 30px;
        margin-right: 30px;
        border-radius: 8px;
        overflow: hidden;
        transition: all ease .3s;
        &:hover {
            box-shadow: 0 0 10px #999;
            transform: translateY(-10px) scale(1.024);
        }
        &:nth-child(3n) {
            margin-right: 0;
        }
        .pic-box {
            width: 100%;
            height: 240px;
        }
        .detail-box {
            padding: 14px;
            background-color: #f5f5f5;
            .title {
                font-size: 16px;
                margin-bottom: 10px;
            }
        }
    }
}

.discover-wrap {
    margin-top: 20px;
    padding-bottom: 40px;
    .video-section {
        height: 550px;
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

.food-list {
    .food-item {
        display: flex;
        margin-bottom: 30px;
        .pic-box {
            width: 100%;
            flex: 1;
            height: 240px;
        }
        .detail-box {
            flex: 1;
            padding: 24px;
            background-color: #f5f5f5;
            .title {
                font-size: 18px;
                font-weight: 450;
                margin-bottom: 10px;
                text-align: center;
            }
            .text {
                font-size: 16px;
                font-weight: 300;
                text-indent: 2em;
                line-height: 24px;
            }
        }
    }
}

.custom-list {
    display: flex;
    flex-wrap: wrap;
    .custom-item {
        flex: 1 1 calc((100% - 60px) / 3);
        max-width: calc((100% - 60px) / 3);
        margin-bottom: 30px;
        margin-right: 30px;
        &:nth-child(3n) {
            margin-right: 0;
        }
        .pic-box {
            width: 100%;
            height: 240px;
        }
        .detail-box {
            padding: 10px 0;
            .title {
                font-size: 16px;
                text-align: center;
                margin-bottom: 10px;
            }
        }
    }
}

.form {
    width: 600px;
    margin: auto;
    padding: 20px 30px 10px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
    .form-item {
        margin: 20px 0;
        &.active {
            input, textarea {
                border: 1px solid red;
            }
        }

        &.row-center {
            text-align: center;
        }

        input, textarea {
            width: 100%;
            border: 1px solid #aaa;
            font-size: 16px;
            outline: none;
        }
        input {
            height: 40px;
            padding: 3px 5px;
            line-height: 40px;
        }
        textarea {
            padding: 5px;
            min-height: 100px;
        }

        .btn {
            min-width: 100px;
            margin: auto;
            height: 40px;
            border: none;
            border-radius: 16px;
            line-height: 40px;
            font-size: 16px;
            letter-spacing: 2px;
            color: #fff;
            background-color: rgb(32, 93, 224);
            outline: none;
            cursor: pointer;

            &:hover {
                background-color: rgb(40, 103, 241);
            }

            &:active {
                background-color: rgb(32, 93, 224);
            }
        }
    }
}

.contact .form-bg {
    padding: 60px 0;
    background: linear-gradient(180deg, #c5f0f5, #fff);
}

footer {
    /* margin-top: 40px; */
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background-color: #000;

    a {
        color: #aaa;
    }

    .row:first-child {
        font-size: 18px;
    }

    .row:last-child {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .links {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    img {
      width: 300px;
      height: 200px;
      object-fit:cover;
    }
  }

  