.text-stroke {
    color: var(--thirdary);
}
.page.contact-us-page .contact-us-box {
    border-radius: calc(16 * var(--px));
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, .13);
}
.page.contact-us-page .contact-us-box .address {
    height: calc(310 * var(--px));
    border-radius: inherit;
    overflow: hidden;
    position: relative;
}
.page.contact-us-page .contact-us-box .address::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .36);
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}
.page.contact-us-page .contact-us-box .address .img {
    height: 100%;
}
.page.contact-us-page .contact-us-box .address .img >img {
    display: block;
    object-position: center 40%;
}
.page.contact-us-page .contact-us-box .address .address-content {
    color: #fff;
    font-weight: 400;
    width: 100%;
    height: 100%;
    padding: calc(74 * var(--px)) calc(76 * var(--px));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.page.contact-us-page .contact-us-box .address .address-text {
    font-size: calc(28 * var(--px));
}
.page.contact-us-page .contact-us-box .address .address-text h4 {
    margin-bottom: calc(20 * var(--px));
}
.page.contact-us-page .contact-us-box .address .address-loca {
    font-size: calc(24 * var(--px));
}
.page.contact-us-page .contact-us-box .address .address-loca span {
    color: rgba(255, 255, 255, .8);
    margin-right: calc(4 * var(--px));
}
.page.contact-us-page .contact-us-box .info-box {
    padding: calc(80 * var(--px)) calc(40 * var(--px));
}
.page.contact-us-page .contact-us-box .info-box .info {
    min-height: calc(170 * var(--px));
    position: relative;
}
.page.contact-us-page .contact-us-box .info-box .info::before {
    content: '';
    width: 70%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(240, 140, 0, .1), rgba(240, 140, 0, .1));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.page.contact-us-page .contact-us-box .info-box .info::after {
    content: '';
    width: calc(4 * var(--px));
    height: 100%;
    background-color: var(--thirdary);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.page.contact-us-page .contact-us-box .info .info-content {
    color: var(--thirdary);
    font-size: calc(24 * var(--px));
    height: 100%;
    padding-left: calc(36 * var(--px));
    position: relative;
    z-index: 3;
}
.page.contact-us-page .contact-us-box .info .info-content >section {
    flex: 1 1 0;
}
.page.contact-us-page .contact-us-box .info .info-content >section h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: calc(38 * var(--px));
    letter-spacing: -1px;
}
.page.contact-us-page .contact-us-box .info .info-content >img {
    position: absolute;
    top: 50%;
    right: calc(40 / 1920 * 100vw);
    transform: translateY(-50%);
    flex: 0 1 auto;
    width: calc(88 * var(--px));
}
.page.contact-us-page .contact-us-box .info:nth-of-type(3) .info-content >img {
    flex: 0 1 auto;
    height: calc(76 * var(--px));
}

@media screen and (max-width: 768px) {
    .page.contact-us-page .contact-us-box .info-box {
        padding: calc(60 * var(--px)) calc(40 * var(--px));
    }
    .page.contact-us-page .contact-us-box .info .info-content >img {
        height: calc(80 * var(--px));
    }
}
@media screen and (max-width: 550px) {
    .page.contact-us-page .contact-us-box .address .address-content {
        padding: calc(40 * var(--px));
    }
    .page.contact-us-page .contact-us-box .info-box {
        grid-template-columns: repeat(1, 1fr);
        gap: calc(24 * var(--px));
    }
}