/* BASIC css start */
.add-page #contentWrap {
    max-width: 1200px;
    padding: 0 16px;
    background: #FFFCF8;
}

.add-page .title-wrap {
    margin: 40px 0;
}

.add-page .title-wrap p {
    color: #211D1D;
    font-family: "HvDTrial Brandon Grotesque";
    font-size: 40px;
    font-weight: 420;
    line-height: 48px;
}

.add-page .img-zoom-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 500px;
    margin-bottom: 160px;
}

.add-page .img-zoom-wrap:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity .5s;
    background: #000;
}

.add-page .img-zoom-wrap:hover:before {
    opacity: .3;
}

.add-page .img-zoom-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease-in,-webkit-transform .3s ease-in;
    transform: scale(1);
}

.add-page .img-zoom-wrap:hover img {
    transform: scale(1.1);
}

.add-page .img-zoom-wrap .title {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #FFF;
    font-family: "HvDTrial Brandon Grotesque";
    font-size: 32px;
    font-weight: 420;
    line-height: 44px;
    z-index: 1;
}

.add-page .flex-box {
    display: flex;
    gap: 16px;
    margin-bottom: 160px;
}

.add-page .flex-box .img-zoom-wrap {
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .add-page .title-wrap {
        margin: 32px 0;
    }

    .add-page .title-wrap p {
        font-size: 36px;
        line-height: 48px;
    }

    .add-page .img-zoom-wrap .title {
        font-size: 28px;
        line-height: 34px;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .add-page .img-zoom-wrap {
        height: 316px;
        margin-bottom: 116px;
    }

    .add-page .flex-box {
        margin-bottom: 116px;
    }

    .add-page .flex-box .img-zoom-wrap {
        height: 310px;
    }

}

@media (max-width: 375px) {
    .add-page .title-wrap p {
        font-size: 32px;
        line-height: 40px;
    }

    .add-page .img-zoom-wrap .title {
        font-size: 24px;
        line-height: 30px;
    }

    .add-page .img-zoom-wrap {
        margin-bottom: 100px;
    }

    .add-page .flex-box {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 100px;
    }



}
/* BASIC css end */

