.container1 {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 75rem;
    width: 100%;
    overflow: hidden;
}

.box {
    position: relative;
    margin-top: 4.375rem;
    box-sizing: border-box;
    height: 26.25rem;
    width: 100%;
}

.box .img {
    float: left;
    width: 66.66%;
    height: 100%;
}

.box .text {
    box-sizing: border-box;
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translate(0%, -50%);
    width: 40%;
    height: 90%;
    background-color: #fff;
    border-radius: 1.25rem;
}

.box .text .title {
    padding: 1.5rem 2.5rem 1rem 2.5rem;
    font-size: 36px;
}

.box .text .title-1 {
    font-style: oblique;
    padding: 0 0 1rem 2.5rem;
    font-size: 18px;
}

.box .text p {
    padding: 0 2.5rem .5rem 2.5rem;
}

@media screen and (max-width:715px) {
    .box {
        height: 52.5rem;
    }
    .box .img {
        width: 100%;
        height: 50%!important;
        overflow: hidden;
    }
    .box .text {
        width: 80%;
        height: 45%;
        left: 10%;
        top: 55%;
        transform: translate(0, 0);
    }
}
@media screen and (max-width:815px) {
    .box .text {
        height: 100%;
    }
}
@media screen and (max-width:615px) {
    .box {
        height: 65rem;
    }
    .box .img {
        width: 100%;
        height: 50%!important;
        overflow: hidden;
    }
    .box .text {
        width: 80%;
        height: 50%;
        left: 10%;
        top: 55%;
        transform: translate(0, 0);
    }
}
@media screen and (max-width:500px) {
    .box {
        height: 75rem;
    }
    .box .img {
        width: 100%;
        height: 50%!important;
        overflow: hidden;
    }
    .box .text {
        width: 80%;
        height: 50%;
        left: 10%;
        top: 55%;
        transform: translate(0, 0);
    }
}