.featured-form{
  position:relative;
}
.featured-form__btn-meeting {
    position: absolute;
    width: 48%;
}
.featured-form__btn-meeting span{
  color: #99AFC4 !important;
}
.featured-form__btn-meeting a{
  padding: 1em 1em !important;
  margin-left: 52px;
  color: #F6F9FC;
}
.featured-form .form-title {
  display: none;
}
.featured-form label{
  font-weight:300;
  line-height:21px;
}

.featured-form input[type=text], 
.featured-form input[type=email], 
.featured-form input[type=phone], 
.featured-form input[type=number], 
.featured-form input[type=tel], 
.featured-form input[type=date], 
.featured-form textarea{
  padding: 12px 20px;
  line-height:21px !important;
}
{# ---- Button ---- #}
.featured-form input[type="submit"] {
    box-shadow: -20px -20px 40px #263B4D, 20px 20px 40px #1C2B39;
    transition:none;
    font-family: 'LexendDeca-Medium';
    font-weight: 500;
    line-height: 16px;
    padding: 1em 3.5em;
    letter-spacing: 1px;
}
.featured-form input[type="submit"]:hover {
  box-shadow:none;
  transform: scale(1);
  position:relative;
  top:-1px;
  color:#f6f9fc;
  border: 2px solid #99AFC4;
}

{# ---- Tablet Breakpoint ---- #}
@media (max-width: 992px) {
    .featured-form__btn-meeting a{
    margin-left: 125px;
  }
  
  .featured-form__btn-meeting {
    top: 90%;
    justify-content: space-between;
    width: auto;
    margin-right: 0;
  }


  
}
{# ---- Mobile Breakpoint ---- #}
@media (max-width: 525px) {
  fieldset{
    display:flex;
    flex-direction: column;
  }
  fieldset div,input{
    width:100% !important;
  }
  input{
    width:100% !important;
    margin-bottom:5px;
  }
  .featured-form__btn-meeting {
    position: revert;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .featured-form__btn-meeting a {
    margin-left: 0;
    width:100%;
    display:flex;
    justify-content:center;
  }
  
  .featured-form__btn-meeting a:hover{
    border: 2px solid #99AFC4;
  }
  
  .featured-form input[type="submit"] {
    display:flex;
    justify-content:center;
  }
  
  .featured-form__btn-meeting {
    width: 100%;
}
}
/*.featured-form form input[type=submit], form .hs-button{
  border:none !important;
}*/