
.section--welcome {
    display: flex;
    flex-direction: column;
    /* min-height: 100vh; */
}
  
.welcome {
  min-height: calc(100vh - 120px);
    padding-top: clamp(1rem, 0.2rem + 4vw, 6.5rem);
    /* flex: 1; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    background-image: url(../img/welcome/bg-mob.jpg);
    background-color: #fff;
    display: flex;
}
@media only screen and (min-width: 1200px) {
    .welcome {
      background-image: url(../img/welcome/bg.jpg);
      
    background-position: top center;
    }
  }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .welcome {
      background-image: url(../img/welcome/bg-mob.jpg);
      background-position: top right;
    }
    @media only screen and (min-width: 1200px) {
      .welcome {
        background-image: url(../img/welcome/bg@2x.jpg);
        
    background-position: top center;
      }
    }
  }


.logo {
    display: inline-block;
    width: clamp(6.375rem, 2.5331rem + 14.2953vw, 19.6875rem);
    margin-bottom: clamp(9.125rem, 2.75rem + 7.0833vw, 11.25rem);
}
.logo img {
    width: 100%;
}


.welcome-form {
    background: rgba(0, 41, 59, 0.9);
    border-radius: 15px;
    padding: 30px 20px;
    transform: translateY(-75%);
    margin-top: 40px;
}
.welcome-form .form {
  display: flex;
  align-items: center;
  margin: 0 -8px;
}
.welcome-form .btn,
.welcome-form .form-control {
  height: 44px;
  line-height: 44px;
  font-family: "Heebo", sans-serif;
  border-radius: 10px;
}
.welcome-form .btn {
  font-size: 20px;
  color: #fff;
  background: #2CA6DA;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 700;
  padding: 0;
  width: 220px;
  white-space: nowrap;
}
.welcome-form .btn:hover,
.welcome-form .btn:active,
.welcome-form .btn:focus,
.welcome-form .btn:focus:active {
  color: #00293B;
  background: #2CA6DA;
}
.welcome-form .form-control::-webkit-input-placeholder {color:#00293B;opacity: 1;font-family: "Heebo", sans-serif;}
.welcome-form .form-control::-moz-placeholder          {color:#00293B;opacity: 1;font-family: "Heebo", sans-serif;}
.welcome-form .form-control:-moz-placeholder           {color:#00293B;opacity: 1;font-family: "Heebo", sans-serif;}
.welcome-form .form-control:-ms-input-placeholder      {color:#00293B;opacity: 1;font-family: "Heebo", sans-serif;}

.welcome-form .form-control {
  width: 100%;
  display: block;
  max-width: 250px;
  border: none;
  background: #fff;
  color: #00293B;
  font-size: clamp(1rem, 0.8796rem + 0.4482vw, 1.5rem);
  padding: 0 28px 0 0;
  margin: 0 8px;
}

@media (max-width: 1199px) {
  .section--welcome {
    min-height: auto;
  }
  .welcome {
    min-height: auto;
    padding-bottom: 80px;
  }
  .welcome:after {
    content: '';
    padding-bottom: 40px;
    display: block;
  }

  .welcome-form {
    transform: translateY(0);
    margin-top: -32px;
    background: #163B4B;
    box-shadow: 0 0 8px 0 #0000001C;
    margin-bottom: 40px;
  }


  .welcome-form h3,   .welcome-form .h3 {
    margin-bottom: 0;
  }
  .welcome-form .form {
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
    flex-direction: column;
  } 
  
   .welcome-form .btn {
    font-size: 24px;
  }
  .welcome-form .btn,
.welcome-form .form-control {
  height: 48px;
  line-height: 48px;
  border-radius: 8px;
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
}

}