.productlanding__header {
    padding-top: 24px;
    margin-bottom: 72px;
    width: 100%;
    max-width: 600px;
}

.productlanding__header_title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 32px;
}

.productlanding__header__subtitle {
    font-weight: 500;
    font-size: 19px;
    line-height: 25px;
}

.productlanding__header__description {
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
}

.productlanding__header__subtitle p, 
.productlanding__header__description p {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    max-width: 472px;
}


.productlanding__menu {
    margin: 32px 0 64px;
    display: inline-block;
    background: #ffffff;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 40px;
    list-style-type: none;
}

.productlanding__menu_item {
    padding: 16px 32px 18px;
    display: inline-flex;
    min-width: 80px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    line-height: 14px;
    cursor: pointer;
    color: #20346B;
}

.productlanding__menu_item.active {
    background: #20346B;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 40px;
    color: #fff;
}

.productlanding__menu_item__title {
    display: none;
}

.productlanding__menu_item__subtitle {
    display: none;
}

.productlanding__menu_item__description {
    display: none;
}

.productlanding__inner {
    width: 100%;
    display: table;
    padding-bottom: 66px;
}

.productlanding__inner__item {
    float: left;
    width: calc(33.33% - (64px / 3));
    max-width: 349px;
    position: relative;
    text-decoration: none;
    color: #000;
    margin-bottom: 32px;
    margin-right: 32px;
}

.productlanding__inner__item:nth-child(3n+3) {
    margin-right: 0;
}

.productlanding__inner__item__image-box {
    max-width: 349px;
    width: 100%;
    height: 475px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.productlanding__inner__item__image-box img {
    width: 100%;
    /* max-height: 349px; */
    /* height: 100%; */
    object-fit: cover;
}


.productlanding__inner__item__content {
    position: absolute;
    box-shadow: 1px 4px 24px rgba(0, 0, 0, 0.05);
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 56px;
}

.productlanding__inner_item_content_title {
    flex: 1;
    padding-right: 40px;
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    line-height: 25px;
}

.productlanding__inner__all-item {
    display: none;
}

/** Tablet (Landscape) **/
@media only screen and (max-width: 1024px) {
    .productlanding__header {
        padding-top: 0px;
        margin-bottom: 20px;
    }

    .productlanding__header_title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .productlanding__inner__item {
        width: calc(33% - (40px / 3));
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .productlanding__inner__item {
        margin-right: 20px;
    }

    .productlanding__inner__item:nth-child(3n) {
        margin-right: 0;
    }


    .productlanding__inner_item_content_title {
        padding-right: 20px;
        font-size: 20px;
    }

    .productlanding__menu {
        margin: 0px 0 20px;
        padding: 20px;
    }

    .productlanding__menu_item {
        padding: 20px;
        font-size: 16px;
    }
}

/** Smartphone **/
@media only screen and (max-width: 767px) {
    .productlanding__inner__item {
        width: calc(50% - (20px / 2));
        margin-right: 10px;
        margin-bottom: 20px;
    }

    .productlanding__inner__item:nth-child(2n) {
        margin-right: 0;
    }

    .productlanding__inner__item:nth-child(3n) {
        margin-right: 10px;
    }

    .productlanding__inner__item__image-box {
        height: 250px;
    }

    .productlanding__header__description {
        font-size: 16px;
    }

    .productlanding__inner__item__content {
        padding: 5px 15px;
        height: auto;
    }
}
