@font-face {
    font-family: LeagueSpartan;
    src: url(../fonts/League_Spartan/static/LeagueSpartan-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: LeagueSpartan;
    src: url(../fonts/League_Spartan/static/LeagueSpartan-Bold.ttf);
    font-weight: bold;
}
@font-face {
    font-family: LeagueSpartan;
    src: url(../fonts/League_Spartan/static/LeagueSpartan-ExtraBold.ttf);
    font-weight: 1000;
}
@font-face {
    font-family: LeagueSpartan;
    src: url(../fonts/League_Spartan/static/LeagueSpartan-Black.ttf);
    font-weight: 1100;
}


@font-face {
    font-family: Quicksand;
    src: url(../fonts/Quicksand/static/Quicksand-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: Quicksand;
    src: url(../fonts/Quicksand/static/Quicksand-Bold.ttf);
    font-weight: bold;
}


:root {
    --primary-light: #f4eef6;
    --primary-dark: #141414;
    --details-light: #933dc9;
    --details-dark: #53118f;
    --header-dark: #000000;
    --header-light: #fbfaee;
    --text-dark: #242424;
    --text-light: #fbfaee;
    --text-gray: #b3b3b0;
    --footer-bg: #1e1b1e;
    --nav-srollable-bg: #141414db;
    --form-border: #c0b8c3;
}


#contact-info.row {
    display: flex;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    min-width: 100%;
    padding: 40px;
}
#contact-info .row {
    padding: 20px 0;
}
#contact-info .col-lg-4 {
    padding: 20px 0 20px 30px;
}
#contact-info .row > .col-12 {
    display: flex;
    justify-content: left;
    align-items: center;
}
#contact-info h3, #contact-info p, #contact-info span {
    color: var(--text-light);
}
#contact-info span {
    padding-left: 20px;
    padding-top: 5px;
}
#contact-info img {
    width: 30px;
    padding-top: 10px;
}
#contact-info iframe {
    height: 350px;
    width: 100%;
}

#contact-form {
    display: flex;
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: 100%;
    text-align: center;
    justify-content: center;
    scroll-margin-top: 100px;
}
#contact-form h2 {
    font-family: LeagueSpartan;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--header-light);
    text-decoration: none;
    text-transform: uppercase;
}
#contact-form form {
    padding: 20px;
    margin: 20px;
    width: 100%;
    max-width: 900px;
    text-align: left;
}
#contact-form .row {
    padding-bottom: 10px;
    width: 100%;
}
#contact-form label {
    font-family: Quicksand;
    font-size: 0.9em;
    font-weight: normal;
    color: var(--text-light);
    text-decoration: none;
    align-self: left;
}
#contact-form input, #contact-form textarea {
    font-family: Quicksand;
    font-size: 1em;
    font-weight: normal;
    color: var(--text-light);
    background-color: transparent;
    text-decoration: none;
    border: 1px solid var(--form-border);
    transition: border 0.2s ease;
}
#contact-form input:focus, #contact-form textarea:focus {
    box-shadow: none;
    border: 1px solid var(--details-light);
}
#contact-form button {
    padding: 15px 20px;
    margin: 10px;
    width: 140px;
}
.align-center {
    text-align: center;
    justify-content: center;
}

#message-alert .alert {
    position: absolute;
    background: var(--details-dark);
    border: 1px solid var(--details-dark);
    color: var(--text-light);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
    top: 90px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80vw;
    max-width: 900px;
    line-height: 0.8em;
    font-family: Quicksand;
    font-weight: normal;
    font-size: 1.2em;
}
#message-alert .row {
    align-items: center;
}
#message-alert .col {
    align-items: center;
}
#message-alert p {
    padding-top: 15px;
}
#message-alert button {
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 1.7em;
    padding:5px;
    outline: none;
    cursor: pointer;
    box-shadow: none;
}

.website-input {
    display: none;
}

@media (min-width: 992px) {
    #contact-info iframe {
        width: 100%;
        height: 100%;
    }
}

