#subscribe-container {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
}

#subscribe {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0C3891;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1031;
    max-width: 600px;
    box-shadow: 4px 4px 4px 0px rgba(12, 56, 145, 0.10);
    padding: 30px;
    width: calc(100% - 20px);
}

#close-subscribe {
    color: #fff;
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 18px;
    cursor: pointer;
}

#subscribe-header {
    padding: 0;
}

#subscribe-header h2 {
    font-family: "DM Sans", Sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 44px;
    margin-bottom: 13px;
}

#subscribe-header p {
    font-family: "DM Sans", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    font-style: normal;
    color: #FFFFFF;
    margin: 0;
}

#subscribe-forms {
    margin: 0 auto;
}

.subscribe-form label {
    color: #fff;
    font-family: "DM Sans", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    display: block;
    margin-bottom: 10px;
}

.subscribe-form input[name="your-email"] {
    font-family: "DM Sans", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: #1D1F20;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #eceff1;
    border-radius: 5px;
    padding: 5px 13px 5px 13px;
    height: 55px;
    margin-bottom: 25px;
    background: #FFF;
    box-shadow: 4px 4px 4px 0px #092E79;
}

.subscribe-form input[name="your-email"]:focus {
    border: none;
    outline: none;
}

.subscribe-form input[type=submit] {
    font-family: "DM Sans", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    line-height: 21px;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    background-color: #00BCDA;
    border-style: none;
    border-radius: 20px;
    padding: 10px 40px 10px 40px;
    box-shadow: 4px 4px 4px 0px rgba(12, 56, 145, 0.10);
}

.subscribe-form .wpcf7-submit:hover {
    background-color: #A6E9F2 !important;
}

.subscribe-form .wpcf7-not-valid-tip {
    color: #E84046;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px;
    font-weight: normal;
    display: block;
    position: absolute;
    line-height: 1;
    margin-top: -20px;
}

.subscribe-form .wpcf7 form .wpcf7-response-output {
    font-family: 'DM Sans', sans-serif !important;
    margin: 10px 0;
    padding: 0.2em 0;
    color: #E84046;
    font-size: 14px;
    border: none;
    line-height: 1.2;
    border-color: transparent;
    border: none;
}

[data-status="sent"] .wpcf7-response-output {
    color: #4CAF50!important;
}
.form-disclaimer {
    color: #B1BEC7;
    font-family: "DM Sans";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: -0.36px;
    margin-top: 25px;
}

.wpcf7-spinner {
    position: absolute;
    left: -9999px;
}

#subscribe-forms form ::-webkit-input-placeholder {
    color: #B1BEC7;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
}
#subscribe-forms form :-moz-placeholder {
    color: #B1BEC7;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
}
#subscribe-forms form ::-moz-placeholder {
    color: #B1BEC7;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
}
#subscribe-forms form :-ms-input-placeholder {
    color: #B1BEC7;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
}

@media only screen and (min-width: 768px) {
    #subscribe {
        padding: 50px;
    }
    #subscribe-header h2 {
        font-size: 44px;
        line-height: 52px;
    }
}

