.Box1 {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 25%;
    background-image: url('../img/pageBanner/contact.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media screen and (max-width:1200px){
    .Box1 {
        padding-top: 25%;
    }
}
@media screen and (max-width:991px){
    .Box1 {
        padding-top: 270px;
    }
}

.Box2 {
    margin-top: 50px;
}

.Box2 .row {
    margin: 0 auto;
}

.Box2 .row .box {
    text-align: center;
    height: 180px;
    background: linear-gradient(to right, #05A8AA, #054A94);
    color: white;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Box2 .row .box > div{
    width: 95%;

}
.Box2 .row .box h2 {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 999px;
    margin: 0 auto;
}

.Box2 .row .box a,
.Box2 .row .box span {
    margin-top: 10px;
    display: block;
    font-size: 18px; 
    max-width: 90%;
    margin: 0 auto;
}

.Box2 .row .box a {
    color: white;
}

.Box2 .row h1 {
    font-weight: bold;
    color: #1a2c42;
}

.Box2 .row form {
    margin-top: 40px;
}

.Box2 .row form .one span,
.Box2 .row form .two span,
.Box2 .row form .there span {
    color: #1A2C42;
    font-weight: 500;
    font-size: 16px;
    font-weight: bold;
}

.Box2 .row form .one {
    display: flex;
    justify-content: space-between;
}

.Box2 .row form .one .input {
    width: 47%;
}

.Box2 .row form .one .input input {
    width: 100%;
}

.Box2 .row form .two input {
    width: 100%;
}

.Box2 .row form .there textarea {
    width: 100%;
}

.Box2 .row form input,
.Box2 .row form textarea {
    outline: none;
    width: 100%;
    background: #fff;
    border: 1px solid #dddddd8c;
    border-radius: 3px;
    padding: 10px 20px;
    margin-bottom: 30px;
}

.Box2 .row form textarea {
    height: 300px;
    resize: none;
}



.Box2 .row form .button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #0f1923;
    cursor: pointer;
    position: relative;
    padding: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    transition: all .15s ease;
}

.Box2 .row form .button::before,
.Box2 .row form .button::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(50% - 5px);
    border: 1px solid #7D8082;
    transition: all .15s ease;
}

.Box2 .row form .button::before {
    top: 0;
    border-bottom-width: 0;
}

.Box2 .row form .button::after {
    bottom: 0;
    border-top-width: 0;
}

.Box2 .row form .button:active,
.Box2 .row form .button:focus {
    outline: none;
}

.Box2 .row form .button:active::before,
.Box2 .row form .button:active::after {
    right: 3px;
    left: 3px;
}

.Box2 .row form .button:active::before {
    top: 3px;
}

.Box2 .row form .button:active::after {
    bottom: 3px;
}

.Box2 .row form .button_lg {
    position: relative;
    display: block;
    padding: 10px 20px;
    color: #fff;
    background-color: #0f1923;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.Box2 .row form .button_lg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #0f1923;
}

.Box2 .row form .button_lg::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4px;
    height: 4px;
    background-color: #0f1923;
    transition: all .2s ease;
}

.Box2 .row form .button_sl {
    display: block;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -8px;
    width: 0;
    background-color: #007bff;
    transform: skew(-15deg);
    transition: all .2s ease;
}

.Box2 .row form .button_text {
    position: relative;
}

.Box2 .row form .button:hover {
    color: #0f1923;
}

.Box2 .row form .button:hover .button_sl {
    width: calc(100% + 15px);
}

.Box2 .row form .button:hover .button_lg::after {
    background-color: #fff;
}

@media screen and (max-width:991px) {
    .Box2 .row h1{
        margin-top: 30px;
    }
}