#subscribe-form p {
    padding: 0px;
    line-height: 0;
    color: #fff;
}

i.fa.fa-close {
    float: right;
    background: #529fcf;
    padding: 6px 0px 4px 9px;
    position: absolute;
    right: 0;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -14px;
    margin-right: -11px;
    font-size: 29px;
    cursor: pointer;
}

#subscribe-form {
    position: fixed;  
    bottom: 0; 
    margin: 0;
    left: -400px; /* hidden off-screen */
    transition: left 0.6s ease;
    background-color: rgb(6 60 93);color: black;
    padding: 0px 8px 7px;
    border: 2px solid rgb(243, 125, 33) !important;
    z-index: 99;
    width: 13%;
}
#subscribe-form.show {
  left: 0px; /* slides in */
}

#subscribe-form input {
    height: 40px !important;
    margin-bottom: 26px;
    width:100%;
}
#subscribe-form input[type="submit"] {
    width: 100%;
}
select#industry {
    min-height: 40px !important;
    margin-bottom: 8px;
    border-radius: 4px;
}
#success-alert {
      color: #fff;
    font-size: 28px;
    margin-top: -16px;
    position: absolute;
    top: 5%;
    background: #063c5d;
    width: 96%;
    line-height: 1.2;
    padding: 87px 0px;
    text-align: center;
}

@media (min-width: 300px) and (max-width: 600px) {
 #subscribe-form {
   width: 50%;
    top: 33%;
}
}