.Box1 span.tit,
.Box2 span.tit,
.Box3 span.tit {
    position: relative;
    width: fit-content;
    height: fit-content;
    display: block;
    margin: 0 auto;
    margin-top: 50px !important;
    margin-bottom: 40px !important;
}

.Box1 span.tit::before,
.Box2 span.tit::before,
.Box3 span.tit::before {
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: #C01920;
    bottom: 0;
    content: "";
    left: 50%;
    transform: translateX(-50%);
}

.Box1 p,
.Box2 p,
.Box3 p {
    width: fit-content;
    margin: 0 auto;
    font-size: 80px;
    color: #000;
    opacity: 0.1;
    position: relative;
    font-family: 'MyCustomFont';
}

.Box1 h2,
.Box2 h2,
.Box3 h2 {
    width: fit-content;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    white-space: nowrap;
}


.Box1 .container-md.row {
    margin: 0 auto;
    padding: 20px 0;
}


.Box1 .box:nth-child(1) {
    background: #C01920;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.Box1 .box:nth-child(1) span {
    display: block;
}

.Box1 .box:nth-child(1) span:nth-child(1) {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.Box1 .box:nth-child(2) {
    position: relative;
}

.Box1 .box:nth-child(2)::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 90%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00000018;
}

.Box1 .box:nth-child(2),
.Box1 .box:nth-child(3) {
    background-color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.Box1 .box:nth-child(2) i,
.Box1 .box:nth-child(3) i {
    color: white;
    background-color: #C01920;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 99px;
    font-size: 20px;
    margin-bottom: 10px;
}

.Box1 .box:nth-child(2) span a,
.Box1 .box:nth-child(3) span a {
    color: #555;
    font-size: 18px;
    transition: 0.4s;
}

.Box1 .box:nth-child(2):hover span a,
.Box1 .box:nth-child(3):hover span a {
    color: #C01920;
}

.Box2 {
    background-color: #F8F9FA;
}

.Box3 {
    padding-bottom: 50px;
}

.Box3 form label {

    width: 100%;
    display: flex;
    justify-content: space-between;

}

.Box3 form label .item {
    width: 32%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #999999d8;
    padding-bottom: 20px;
}

.Box3 form label .item span {
    font-size: 14px;
    color: #666;
}

.Box3 form label .item span i {
    font-size: 14px;
    color: #C01920;
}

.Box3 form label .item input {
    outline: none;
    width: calc(100% - 60px);
    margin-left: 5px;
    border: none;
    font-size: 14px;
    padding-left: 5px;
    background-color: transparent;
    color: #444;
}

.Box3 form div.text {
    margin-top: 30px;
    border-bottom: 1px solid #999999d8;
}

.Box3 form div.text span {
    font-size: 14px;
    color: #666;
}

.Box3 form div.text span i {
    font-size: 14px;
    color: #C01920;
}

.Box3 form div.text textarea {
    width: 100%;
    border: none;
    background-color: transparent;
    height: 150px;
    outline: none;
    font-size: 14px;
    color: #444;
    padding-top: 10px;
}

.Box3 form button.submit {
    line-height: 1.2;
    font-size: 20px;
    background: #C01920;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 50px;
}

.Box3 form button.submit span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
}

.Box3 form button.submit svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.Box3 form button.submit:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.Box3 form button.submit:hover svg {
    transform: translateX(2.7em) rotate(45deg) scale(1.1);
}

.Box3 form button.submit:hover span {
    transform: translateX(11em);
}

.Box3 form button.submit:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}



@media screen and (max-width: 768px) {

    .Box1 p,
    .Box2 p,
    .Box3 p {
        font-size: 60px;
    }

    .Box1 h2,
    .Box2 h2,
    .Box3 h2 {
        font-size: 25px;
    }
}
@media screen and (max-width:576px) {
    .Box3 form label{
        display: block;
    }
    .Box3 form label .item{
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
}