body .home {
    background: linear-gradient(180deg, #000D1E 0%, #072031 100%);
}

body .home .container {
    width: 100%;
    position: relative;
}

body .home .container .section {
    padding: 0 8.3333333333vw 2.7083333333vw 13.6979166667vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

body .home .container .section .lbox {
    width: 35.7291666667vw;
    background: #F7F7F7;
    padding: 5.2083333333vw 3.3854166667vw 12.2395833333vw 3.3854166667vw;
    margin-top: -7.2916666667vw;
    z-index: 10;
    position: relative;
}

body .home .container .section .lbox .form .t {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3.9583333333vw;
}

body .home .container .section .lbox .form .item {
    margin-bottom: 1.25vw;
}

body .home .container .section .lbox .form .item p {
    color: #000;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.5208333333vw;
}

body .home .container .section .lbox .form .item input {
    width: 100%;
    border: 1px solid #CBCBCB;
    background: #FFF;
    height: 3.125vw;
    outline: none;
    padding: 0.9375vw 1.25vw;
    font-size: 0.8333333333vw;
}

body .home .container .section .lbox .form .item input::placeholder {
    color: #8A8A8A;
}

body .home .container .section .lbox .form .item textarea {
    width: 100%;
    border: 1px solid #CBCBCB;
    background: #FFF;
    height: 10.9375vw;
    outline: none;
    padding: 0.9375vw 1.25vw;
    font-size: 0.8333333333vw;
    resize: none;
}

body .home .container .section .lbox .form .item textarea::placeholder {
    color: #8A8A8A;
}

body .home .container .section .lbox .form .btn {
    display: flex;
    width: 9.4791666667vw;
    justify-content: center;
    align-items: center;
    padding: 0.78125vw 0;
    gap: 0.5208333333vw;
    border-radius: 26.0416666667vw;
    border: 1px solid #031526;
    font-weight: 500;
    cursor: pointer;
    transition: all 600ms;
    margin-top: 2.0833333333vw;
}

body .home .container .section .lbox .form .btn:hover {
    background: #fff;
}

body .home .container .section .rbox {
    width: 37.8125vw;
    position: relative;
}

body .home .container .section .rbox .toggle_btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 2.2395833333vw;
    flex-shrink: 0;
    border-radius: 21px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1041666667vw;
    z-index: 10;
}

body .home .container .section .rbox .toggle_btn span {
    color: #011021;
    line-height: 1;
    padding: 0.5208333333vw 0.6770833333vw;
    border-radius: 21px;
    cursor: pointer;
    font-weight: 500;
    transition: all 600ms;
}

body .home .container .section .rbox .toggle_btn span.on {
    background: #011021;
    color: white;
}

body .home .container .section .rbox .boxs .box {
    display: none;
}

body .home .container .section .rbox .boxs .box.on {
    display: block;
}

body .home .container .section .rbox .boxs .box .info .item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.29);
    padding-bottom: 1.6145833333vw;
    color: white;
    margin-bottom: 1.6145833333vw;
}

body .home .container .section .rbox .boxs .box .info .item .icon img {
    width: 2.1875vw;
}

body .home .container .section .rbox .boxs .box .info .item .pt {
    margin: 1.0416666667vw 0 0.2083333333vw 0;
    font-weight: 500;
    text-transform: capitalize;
}

body .home .container .section .rbox .boxs .box .info .item .des {
    line-height: 1.5;
}

body .home .container .section .rbox .boxs .box .pic {
    margin-top: 2.34375vw;
    overflow: hidden;
}

body .home .container .section .rbox .boxs .box .pic img {
    width: 100%;
    height: 24.7916666667vw;
    object-fit: cover;
    transition: all 600ms;
}

body .home .container .section .rbox .boxs .box .pic:hover img {
    transform: scale(1.05);
}

body .home .notice {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0.78125vw 1.0416666667vw 0.7291666667vw 0.8333333333vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #000;
    flex-shrink: 0;
    display: none;
    z-index: 10;
}

body .home .notice svg {
    width: 1.25vw;
    height: auto;
    display: block;
}

body .home .notice p {
    color: #fff;
    font-weight: 400;
    margin-left: 0.3125vw;
}

body .home .notice.show {
    display: flex;
}

body .home .notice.success {
    display: flex;
}

body .home .notice.success svg {
    display: none;
}

body .home .notice.success p {
    margin-left: 0;
}

@keyframes yAnimate {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    body .home .container .section {
        padding: 30px 5% 0 5%;
        flex-direction: column-reverse;
    }

    body .home .container .section .lbox {
        width: 100%;
        padding: 20px;
        margin-top: 30px;
    }

    body .home .container .section .lbox .form .t {
        margin-bottom: 20px;
    }

    body .home .container .section .lbox .form .item {
        margin-bottom: 20px;
    }

    body .home .container .section .lbox .form .item p {
        margin-bottom: 5px;
    }

    body .home .container .section .lbox .form .item input {
        height: 40px;
        padding: 9px 12px;
        font-size: 14px;
    }

    body .home .container .section .lbox .form .item textarea {
        height: 40px;
        padding: 9px 12px;
        font-size: 14px;
        height: 100px;
    }

    body .home .container .section .lbox .form .btn {
        width: 160px;
        padding: 15px 0;
    }

    body .home .container .section .rbox {
        width: 100%;
    }

    body .home .container .section .rbox .toggle_btn {
        height: 40px;
        padding: 2px;
        position: static;
        margin-bottom: 15px;
    }

    body .home .container .section .rbox .toggle_btn span {
        padding: 5px 10px;
    }

    body .home .container .section .rbox .boxs .box .info .item {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    body .home .container .section .rbox .boxs .box .info .item .icon img {
        width: 21px;
    }

    body .home .container .section .rbox .boxs .box .info .item .pt {
        margin: 10px 0 2px 0;
    }

    body .home .container .section .rbox .boxs .box .pic {
        margin-top: 20px;
    }

    body .home .container .section .rbox .boxs .box .pic img {
        height: 222px;
    }

    body .home .notice {
        padding: 8px 10px;
        width: 90%;
    }

    body .home .notice svg {
        width: 20px;
    }

    body .home .notice p {
        margin-left: 3px;
    }
}

/*# sourceMappingURL=contact.css.map */