#main-header.licensing + #main-content {
    margin: calc(var(--std) * ((2.125 * 2.0) + 1.0 + (2.5 * 2.0))) 0;
}

#main-header.licensing + #main-content #tab-result .section {
    margin: 0 auto;
    width: 900px;
}

#tab-result .section {
    display: none;
}

#tab-result .section.active {
    display: block;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

#tab-result .section .item-section {
    margin-bottom: calc(var(--std) * (2.5 / 2));
}

#tab-result .section .item-section:last-child {
    margin-bottom: 0;
}

#tab-result .section .section-heading {
    font-size: 1rem;
    line-height: 1.475;
}

#tab-result .section .section-content .item-section-content {
    margin-bottom: calc(var(--std) * (2.5 / 1.5));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#tab-result .section .section-content .item-section-content:last-child {
    margin-bottom: 0;
}

.child-item-section-content {
    margin-right: calc(var(--std) * (2.5 / 1.5));
    width: calc((100% - var(--std) * (2.5 / 1.5)) / 2);
}

.child-item-section-content:last-child {
    margin-right: 0;
}

.child-item-section-content > .cont-thumb {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: calc(100% * (1 / 1));
    background-color: rgb(230, 230, 230);
}

.child-item-section-content > .cont-thumb > .thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* responsive */
@media screen and (max-width: 980px) {
    #main-header.licensing + #main-content {
        margin: calc(var(--std) * ((2.5 / 2) + 2.125 + 1.0 + 2.125 + 2.5)) 0;
    }
    
    #main-header.licensing + #main-content #tab-result {
        margin: 0;
        width: 100%;
    }

    #tab-result .section .section-content .item-section-content {
        margin-bottom: calc(var(--std) * (2.5 / 2));
    }

    .child-item-section-content {
        margin-right: calc(var(--std) * (2.5 / 2));
        width: calc((100% - var(--std) * (2.5 / 2)) / 2);
    }

    #tab-result .section .item-section {
        margin-bottom: calc(var(--std) * (2.5 / 2));
    }
}

@media screen and (max-width: 740px) {
    #main-header.licensing + #main-content {
        margin: calc(var(--std) * ((2.5 / 2) + 1.5 + 1.0 + 1.5 + (2.5 / 2))) 0;
    }

    #main-header + #main-content .section, #tab-result .section {
        margin-bottom: calc(var(--std) * 2.5) !important;
        display: block !important;
    }

    #tab-result .section:last-child {
        margin-bottom: 0;
    }

    #main-content .section .heading {
        font-size: 1rem;
    }

    #tab-result .section .section-heading, #main-content .section .content {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 480px) {
    #tab-result .section .section-content .item-section-content {
        margin-bottom: calc(var(--std) * 2.5);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .child-item-section-content > .cont-thumb {
        margin-bottom: calc(var(--std) * (2.5 / 4));
    }

    .child-item-section-content {
        margin-right: 0;
        width: 100%;
    }
}