.Box1 {
    padding: 50px 0;
    position: relative;
}

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

.Box1 .imgs {
    background-color: #fff;
    position: relative;
    height: 0;
    padding-top: 540px;
}

.Box1 .imgs img {
    position: absolute;
    width: 85%;
    height: 85%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.Box1 .txt {
    height: fit-content;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.Box1 .txt ul {
    padding: 0;
}

.Box1 .txt h1 {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px;
}

.Box1 .txt .xp {
    color: #545454;
}

.Box1 .txt ul {
    display: flex;
    margin: 15px 0;
}

.Box1 .txt ul li {
    margin-right: 10px;
}

.Box1 .txt ul li a {
    text-decoration: none;
    padding: 8px;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
}

.Box1 .txt ul li:nth-child(1) a {
    background-color: #4060A5;
}

.Box1 .txt ul li:nth-child(1) a:hover {
    background-color: #2d4885;
}

.Box1 .txt ul li:nth-child(2) a {
    background-color: #40C351;
}

.Box1 .txt ul li:nth-child(2) a:hover {
    background-color: #259634;
}

.Box1 .txt ul li:nth-child(3) a {
    background-color: #0173B2;
}

.Box1 .txt ul li:nth-child(3) a:hover {
    background-color: #004e79;
}

.Box1 .txt ul li a i {
    font-size: 20px;
}
 
.Box1 .txt a .button {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    font-size: 18px;
    color: #fff; 
    border: none;
    border-radius: 5px;
    background-color: #D71619;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    margin-top: 10px;
}

.Box1 .txt a .button::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: #004C90;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.Box1 .txt a .button:hover::before {
    scale: 3;
}

.Box1 .txt a .button:hover { 
    scale: 1.1;
    box-shadow: 0 0px 20px rgba(98, 123, 193, 0.4);
}

.Box1 .txt a .button:active {
    scale: 1;
}

.Box2{ 
    padding-bottom: 50px;
}
.Box2 .tit{
    font-size: 28px;
    color: #333;
    font-weight: 600;
    padding-left: 20px;
    border-left: 6px solid #004C90;
}
.Box2 form {
    margin-top: 40px; 
}
.Box2 form label{
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}
.Box2 form label > div{
    width: 50%;
    padding: 0 10px;
}
.Box2 form label .Form-tit{
    margin-bottom: 10px;
    display: block;
    color: #454545;
}
.Box2 form label .Form-tit i {
    color: #D71619;
}
.Box2 form label .inputs{
    height: 55px;
    background-color: white;
    display: block;
    width: 100%;
    border: 1px solid #00000023;
    border-radius: 5px; 
    padding: 0 10px;
    font-size: 15px;
    /* 添加过渡效果，指定过渡的属性、时长和 timing function */
    transition: border-color 0.3s ease;
}

.Box2 form label .inputs:focus {
    border: 1px solid #D71619 !important;
    outline: none;
}
.Box2 form label #select-trigger{
    height: 55px;
}
.Box2 form label #select-trigger span{
    font-size: 15px;
}
.Box2 form label #select-trigger:focus{
    box-shadow: none;
    border: 1px solid #D71619 !important;
}
.Box2 form label #dropdown-menu{
    width: calc(100% - 20px);
    margin: 0 auto;
}
.Box2 form label #country-search{
    transition: border-color 0.3s ease;
}
.Box2 form label #country-search:focus{
    box-shadow: none;
    border: 1px solid #D71619 !important;
}
.Box2 form label.mess >div{ 
    width: 100%;
}
.Box2 form textarea{
    width: 100%;
    display: block;
    height: 110px;
    border: 1px solid #00000023;
    border-radius: 5px; 
    padding:10px;
}
.Box2 form textarea:focus {
    border: 1px solid #D71619 !important;
    outline: none;
}
.Box2 form  button.submit {
    font-family: inherit;
    font-size: 20px;
    background: #004C90;
    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;
  }
  
  .Box2 form  button.submit span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
  }
  
  .Box2 form  button.submit svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
  }
  
  .Box2 form  button.submit:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
  }
  
  .Box2 form  button.submit:hover svg {
    transform: translateX(2.7em) rotate(45deg) scale(1.1);
  }
  
  .Box2 form  button.submit:hover span {
    transform: translateX(11em);
  }
  
  .Box2 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:991px) {
    .Box1 .txt{
        position: relative; 
        padding-left: 20px;
    }
    .Box1 .imgs{
        padding-top: 320px;
    }
    .Box1 .txt a .button{
        font-size: 16px;
    }
  }
  @media screen and (max-width:768px) {
    .Box1 .txt{ 
        padding-left: 0;
        padding-top: 20px;
    }
    .Box1 .txt h1{
        font-size: 26px;
    }
    .Box2 .tit{
        font-size: 24px;
    }
  }
  @media screen and (max-width:576px) {
    .Box2 form label{
        display: block;
    }
    .Box2 form label > div{
        width: 100%;
    }
    .Box2 form label > div:nth-child(1){
        margin-bottom: 20px;
    }
    .Box2 form label .Form-tit{
        font-size: 14px;
    }
  }