html {
    font-size: 19.2px;
    overflow: unset;
}

html body {
    all: initial;
}

html body .total-contain {
    all: initial;
}

.engineering-content {
    width: 100%;
    position: relative;
}

.engineering-content .contents-engineering {
    width: 100%;
    display: flex;
    padding: 3rem;
    padding-top: 4rem;
}

.engineering-content .contents-engineering .overview {
    background-image: linear-gradient(to right, #fef2ec, #feeef1, #e7f6f6, #eef8f2);
    width: 80%;
    border-radius: 2rem;
    box-shadow: 2px 2px 10px #81ccbd;
    padding: 2rem;
    overflow: hidden;
    transition: all 1.5s ease;
    opacity: 0;
}

.engineering-content .contents-engineering .overview h1 {
    font-family: hawk;
}

.engineering-content .contents-engineering .overview .engineering-title {
    font-size: 1.8rem;
    color: #fca75b;
    font-weight: 900;
    padding: 1.1rem 0 1rem 1rem;
}

.engineering-content .contents-engineering .overview p {
    width: 95%;
    font-size: 1.5vw;
    line-height: 3vw;
    margin: 0 auto;
    font-family: NavTitle;
    text-align: justify;
    text-justify: newspaper;
}

.engineering-content .contents-engineering .overview p img {
    display: block;
    width: 80%;
    margin: 0 auto;
    margin-top: 1rem;
    border-radius: 0.5vw;
}

.engineering-content .contents-engineering .overview p .engineering-bold {
    font-weight: 900;
}

.engineering-content .contents-engineering .overview p .annoate {
    display: block;
    width: 90%;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3vw;
}

.engineering-content .contents-engineering .catlogue {
    user-select: none;
    margin-left: 2rem;
    border-radius: 2rem;
    position: sticky;
    top: 8rem;
    box-shadow: 5px 5px 10px #e0dede;
    border: 1px solid #eae7e7;
    padding: 2rem;
    padding-left: 1rem;
}

.engineering-content .contents-engineering .catlogue .catlogue-img {
    bottom: -15%;
    right: 70%;
    position: absolute;
    width: 11vw;
    height: 11vw;
    transition: all .35s ease;
    transform: rotateZ(-15deg);
}

.engineering-content .contents-engineering .catlogue .catlogue-item {
    box-sizing: border-box;
    padding-left: 1rem;
    font-size: 1.1vw;
    font-family: NavTitle;
    margin: 1rem 0rem;
    overflow: hidden;
    white-space: nowrap;
}

@media only screen and (max-width: 1000px) {
    .engineering-content .contents-engineering .overview {
        width: 90%;
        transition: all .35s ease;
        margin: 0 auto;
    }

    .engineering-content .contents-engineering .catlogue {
        display: none;
    }
}