html, body {
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    color: #fff;
    margin: 0;
    background-color: #010c0e;
}

html {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

.sba-events-cards {
    display: flex;
    gap: 1.250vw 0;
    margin: 0 -1.250vw;
}

.sba-events-card {
    flex: 0 1 33.3333333%;
    width: 33.3333333%;
    padding: 0 1.25vw;
}

@media screen and (max-width: 480px) {
    .sba-events-cards {
        flex-direction: column;
        gap: 5vw 0;
        align-items: center;
    }

    .sba-events-card {
        flex: 0 1 90%;
        width: 90%;
    }
}

.sba-events-card img {
    width: 100%;
}


.sba-bg {
    position: relative;
}

.sba-bg img {
    width: 100%;
}

.sba-links {
    position: absolute;
    left: 43.438vw;
    top: 49.375vw;
}

.sba-links-wrap {
    display: flex;
    gap: 0 1.250vw;
}

.sba-links img {
    width: 3.438vw;
    height: 3.385vw;
    transition: all 188ms ease-in-out;
 }

.sba-links-item:hover img {
   transform: scale(1.1);
}

.sba-events {
    position: relative;
    overflow: hidden;
    padding: 0 1.250vw;
}

.sba-form {
    display: flex;
    justify-content: center;
}

.sba-form-title h2 {
    text-transform: uppercase;
}
.mfp-close {
    color: #111!important;
    z-index: 10;
    cursor: pointer;
}
form {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 320px;
    padding: 32px 32px;
    margin: 0 auto;
    border-radius: 8px;
    background-color: white;
}
label {
    font-weight: 400;
    display: block;
    margin: 8px 0;
    font-size: 14px;
}

input, textarea {
    width: 250px;
    height: 32px;
    border-radius: 8px;
    outline: none;
    border: 1px solid #ccc;
    background-color: transparent;
}

textarea {
    resize: vertical;
    height: 96px;
}

button {
    color: #fff;
    padding: 8px 64px;
    border-radius: 8px;
    background-color: #111;
    margin-top: 32px;
    cursor: pointer;
}

#contact-form.error input, #contact-form.error textarea {
    border-color:rgb(246, 0, 78);
}

#contact-form.success::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: #fff;
    background-image: url('success.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 480px) {
    .sba-links {
        top: 152.083vw;
        left: 37.500vw;
        bottom: auto;
    }

    .sba-links img {
       width: 6.458vw;
       height: 6.458vw;
    }

    .sba-links-wrap {
        gap: 0 3.125vw;
    }
}