.layer {
    padding-top: 0;
}
.contact-us-wrap {
    padding-top: calc(60 * var(--px));
    position: relative;
}
.contact-us-wrap .tabs-content {
    gap: calc(20 * var(--px)) calc(40 * var(--px));
}
.contact-us-wrap .tab-item {
    width: calc(500 * var(--px));
    text-align: center;
    padding: calc(38 * var(--px)) calc(30 * var(--px));
    background-color: #fff;
    border: 1px solid var(--thirdary);
    border-radius: calc(var(--round-16) * var(--px));
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.contact-us-wrap .tab-item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--thirdary) url(../images/bg4@2x.png) no-repeat center center / calc(376 / 1920 * 100vw) auto;
    opacity: 0;
    transition: opacity .3s linear;
}
.contact-us-wrap .tab-item .tab-item-content {
    color: #333;
    font-size: calc(24 * var(--px));
    position: relative;
    z-index: 2;
    transition: color .3s linear;
}
.contact-us-wrap .tab-item.active .tab-item-content,
.contact-us-wrap .tab-item:hover .tab-item-content {
    color: #fff;
}
.contact-us-wrap .tab-item.active::before,
.contact-us-wrap .tab-item:hover::before {
    opacity: 1;
}
.contact-us-wrap .tab-item .tab-item-content h3 {
    font-size: calc(44 * var(--px));
    transform: translateY(calc(20 * var(--px)));
    transition: transform .3s linear;
}
.contact-us-wrap .tab-item.active .tab-item-content h3,
.contact-us-wrap .tab-item:hover .tab-item-content h3 {
    transform: translateY(0);
}
.contact-us-wrap .tab-item .tab-item-content .info {
    padding-top: calc(12 * var(--px));
    transform: translateY(400%);
    transition: transform .3s linear;
}
.contact-us-wrap .tab-item.active .tab-item-content .info,
.contact-us-wrap .tab-item:hover .tab-item-content .info {
    transform: translateY(0);
}
.contact-us-wrap .border {
    max-width: calc(548 * var(--px));
    height: calc(4 * var(--px));
    margin: calc(60 * var(--px)) auto;
    position: relative;
    background-color: var(--fourdary);
}
.contact-us-wrap .border::after {
    content: '';
    width: 50%;
    height: 100%;
    background-color: var(--thirdary);
    position: absolute;
    top: 0;
    left: 0;
}
.contact-us-wrap .contact-way-box {
    gap: calc(30 * var(--px));
}
.contact-us-wrap .contact-way-box.hide {
    display: none;
}
.contact-us-wrap .contact-way-box .contact-way {
    min-height: calc(220 * var(--px));
    border-radius: calc(var(--round-16) * var(--px));
    overflow: hidden;
    position: relative;
    cursor: default;
}
.contact-us-wrap .contact-way-box .contact-way::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: 
    url(../images/bg35@2x.png) no-repeat 90% center / calc(119 * var(--px)) calc(119 * var(--px)),
    linear-gradient(to top , var(--thirdary), rgba(240, 160, 0, .5));
    opacity: 0;
}
.contact-us-wrap .contact-way-box .contact-way:nth-of-type(2n):before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: 
    url(../images/bg36@2x.png) no-repeat 90% center / calc(119 * var(--px)) calc(119 * var(--px)),
    linear-gradient(to top , #063390, rgba(6, 54, 144, .5));
    transition: all .3s linear;
    z-index: 1;
}
.contact-us-wrap .contact-way-box .contact-way-content {
    font-size: calc(20 * var(--px));
    line-height: 1.5;
    color: #333;
    height: 100%;
    background-color: #f4f4f4;
    padding: calc(40 * var(--px));
    transition: background .3s linear,
    color .5s linear;
    position: relative;
    z-index: 2;
}
.contact-us-wrap .contact-way-box .contact-way-content .title {
    min-height: calc(60 * var(--px));
    color: #000;
    font-size: calc(28 * var(--px));
    font-variation-settings: normal;
    line-height: 1;
    margin-bottom: calc(12 * var(--px));
    transition: color .5s linear;
}
.contact-us-wrap .contact-way-box .contact-way-content a {
    color: var(--thirdary);
    display: inline-block;
    border-bottom: 1px solid var(--thirdary);
    transition: color .5s linear;
}
.contact-us-wrap .contact-way-box .contact-way:hover .contact-way-content {
    color: #fff;
    background-color: transparent;
}
.contact-us-wrap .contact-way-box .contact-way:hover::before {
    opacity: 1;
}
.contact-us-wrap .contact-way-box .contact-way:hover .contact-way-content .title {
    color: #fff;
}
.contact-us-wrap .contact-way-box .contact-way:hover .contact-way-content a {
    color: #fff;
    border-color: transparent;
}

@media screen and (max-width: 550px) {
    .contact-us-wrap .tab-item .tab-item-content {
        font-size: calc(20 * var(--px));
    }
}
@media screen and (max-width: 550px) {
    .contact-us-wrap .tabs-content {
        gap: calc(20 * var(--px));
    }
    .contact-us-wrap .tab-item .tab-item-content {
        font-size: calc(18 * var(--px));
    }
    .contact-us-wrap .tab-item .tab-item-content h3 {
        font-size: calc(28 * var(--px));
    }
    .contact-us-wrap .border {
        margin: calc(30 * var(--px)) auto;
    }
    .contact-us-wrap .contact-way-box {
        gap: calc(20 * var(--px));
        grid-template-columns: repeat(2, 1fr);
    }
}