.Box1 {
    margin-top: 50px; 
}

.Box1 .container-md.row {
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

.Box1 .left {
    position: relative;
    padding-right: 5%;
}

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

.Box1 .left .t1 {
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    font-size: 24px;
    font-family: 'Public Sans';
}

.Box1 .left .t2 {
    color: #428CCC;
    font-weight: 600;
    font-family: 'Public Sans';
    font-size: 20px;
}

.Box1 .left .t3 {
    font-size: 18px;
    font-family: 'Public Sans';
    color: #333;
}

.Box1 .left .xx {
    margin: 0;
    padding: 0;
}

.Box1 .left .xx li {
    margin-bottom: 5px;
}

.Box1 .left .xx li i {
    color: #428CCC;
    font-size: 18px;
    margin-right: 4px;
}

.Box1 .left .xx li a {
    color: #333;
    transition: 0.4s;
}

.Box1 .left .xx li a:hover {
    color: #0077B5;
}

.Box1 .left .icons {
    display: flex;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.Box1 .left .icons li {
    width: 35px;
    height: 35px;
    margin-right: 10px;


}

.Box1 .left .icons li a {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
    transition: 0.4s;
}

.Box1 .left .icons li:nth-child(1) a {
    background-color: #25D366;
}

.Box1 .left .icons li:nth-child(2) a {
    background-color: #3B5998;
}

.Box1 .left .icons li:nth-child(3) a {
    background-color: #BE2222;
}

.Box1 .left .icons li:nth-child(4) a {
    background-color: #0077B5;
}

.Box1 .left .icons li a:hover {
    transform: scale(1.1);
}

.Box1 .right form {
    padding-left: 30px;
}

.Box1 .right form h6 {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Public Sans';
}

.Box1 .right form label {
    width: 100%;
    margin-bottom: 10px;
}

.Box1 .right form label span {
    display: block;
    color: #333;
}

.Box1 .right form label span i {
    font-style: normal;
    color: red;
}

.Box1 .right form label input {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 15px;
}

.Box1 .right form label textarea {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 15px;
}

.Box1 .right form button.custom-button {
    background-color: #428CCC;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.Box1 .right form button.custom-button::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    top: 5px;
    right: 5px;
    border: 2px solid white;
    border-left: none;
    border-bottom: none;
    /* background-color: white; */
    transition: all .3s ease;
    z-index: 3;
}

.Box1 .right form button.custom-button::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: -100%;
    transition: 0.3s;
}

.Box1 .right form button.custom-button .button-text {
    position: relative;
    z-index: 4;
}

.Box1 .right form button.custom-button:hover::after {
    left: 0;
}

.Box2 {
    background-color: #FFFFFE;
    margin-top: 50px;
    padding: 50px 0;
}
.Box2  .container-md.row{
    margin: 0 auto;
}
.Box2 .xx h6{
    font-weight: bold;
    color: #428CCC;
    font-size: 32px;
    margin-bottom: 30px;
    font-family: 'Public Sans';
}
.Box2 .xx ul{
    padding: 0;
}
.Box2 .xx ul li {
    /* display: flex; */
    /* align-items: center; */
    display: block;
    margin-bottom: 14px;
    font-size: 20px;
    color: #333;

}
.Box2 .xx ul li i{
    color: #428CCC;
    font-size: 11px;
    margin-right: 10px;
}


.Box2 .imgs { 
    position: relative;
    overflow: hidden;
} 
.Box2 .imgs img{
    position: absolute;
    width: 100%; 
    object-fit: contain;
    top: 0;
}





.Box3{
    padding: 50px 0;
}
.Box3 .container-md.row{
    margin: 0 auto;
}
.Box3 h6{
    font-family: 'Public Sans';
    font-size: 32px;
    font-weight: 600;
    padding: 0; 
    position: relative;
    width: fit-content;
    height: fit-content;
    margin-bottom: 40px;
}
.Box3 h6::before{
    position: absolute;
    content: '';
    width: 55%;
    height: 3px;
    background-color: #428CCC;
    bottom: -5px;
    left: 0;
}
.Box3 .box{
    margin-bottom: 20px;
}
.Box3 .box a {
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow:  0 5px 10px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
    height: 100%;
}
.Box3 .box a:hover{
    color: #fff;
    box-shadow:  5px 5px 10px rgba(0, 0, 0, 0.22);
}
.Box3 .box a img{
    z-index: 1;
    position: absolute;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}
.Box3 .box a:hover img{
    transform: translate(-50%, -50%) scale(1.05);
}
.Box3 .box a span{
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #000000a4;
    padding: 70px 20px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}
.Box3 .box a:hover span{
    opacity: 0;
}
.Box3 .box a i{
    z-index: 3;
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #428CCC;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

@media screen and (max-width:991px) {
    .Box1 .container-md.row{
        padding: 30px ;
    }
    .Box1 .left::before{
        display: none;
    }
    .Box1 .right form{
        padding-left: 0;
        margin-top: 30px;
    }
    .Box2 .xx ul{
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: left
    }
    .Box2 .xx ul li{
        display: block; 
        width: 100%;
    }

    .Box2 .imgs img{
        position: relative;
    }
/* 
    .Banner{
        background-size: cover !important;
    } */

}