body {
    overflow: hidden;
}
.product-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 20px;
}
.product-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 15px;
}
.product {
    max-width: 300px;
}
.product img {
    width: 100%;
}
.main-content {
    padding-bottom: 0;
}
.main-content .container {
    padding-top: 40px;
}
.footer .container {
    padding-top: 0;
}
.footer i {
    font-size: 20px !important;
}
.home-container {
    max-width: 100%;
    width: 100%;
    height: calc(100vh - 140px);
    position: relative;
}
.home-container img {
    height: 100%;
    width: 100%;
}
.center-content {
    color: #000;
    width: 100%;
    z-index: 999;
    top: 40%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.center-content h1 {
    font-size: 24px;
    color: #fff;
    line-height: 50px;
    margin-bottom: 30px;
    font-weight: normal;
}
.center-content a {
    padding: 6px 16px;
    border: 1px solid #dbdbdb;
    border-radius: 16px;
    font-size: 14px;
    color: #fff;
    background: #dbdbdb;
    transition: 0.2s ease-in-out;
}
.center-content a:hover {
    color: #9f9f9f;
    border: 1px solid #f3f3f3;
    background: #f3f3f3;
}
@media only screen and (max-width: 768px) {
    .product-wrapper {
        flex-wrap: wrap;
    }
    .container {
        max-width: 100%;
        width: 90%;
    }
    .product-wrapper {
        width: 100%;
    }
    .product-inner {
        width: 100%;
        padding-bottom: 24px;
    }
    .product {
        max-width: 100%;
        width: auto;
    }
    .product img {
        max-width: 100%;
        width: auto;
    }
    .center-content h1 {
        font-size: 18px;
    }
}
@media only screen and (max-width: 480px) {
    body {
        overflow: unset;
    }
    .footer {
        position: relative;
    }
}
