@import "branding.css";
@import "style.css";
@import "STY-modal.css";

.nodisplay {
    display: none;
}

#socials {
    top: 40%;
    left: 0px;
    position: fixed;
}
#socials a {
    width: 22px; height: 22px;
    background-color: var(--white);
    padding: 10px;
    border-radius: 50%;
    margin: 14px 0px 14px 10px;
}

.section-title {
    width: 100%;
    margin: 40px 0px 10px 0px;
}

/* -------------------------------------------- SEC One */
#section-one {
    width: 100%;
    background-color: var(--green-500);
    display: flex; flex-direction: column;
    align-items: center; align-items: center;
    margin-top: 60px;
}

.section-one-body {
    width: 80%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    margin: 40px 0px 60px 0px;
}

/* -------------------------------------------- Section two */
#section-two {
    width: 100%;
    background-color: var(--green-500);
    display: flex; flex-direction: column;
    align-items: center; align-items: center;
}

.section-two-body {
    width: 80%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    margin: 40px 0px 60px 0px;
}

#contact-form {
    width: 40%;
}

.form-input {
    width: 100%; height: 30px;
    border: none;
    outline: none;
    color: var(--text-dark);
    font-size: 14px;
    margin: 10px 0px 20px 0px;
    padding: 10px;
}


.form-textarea {
    width: 100%; height: 100px;
    border: none;
    outline: none;
    color: var(--text-dark);
    font-size: 14px;
    margin: 10px 0px 40px 0px;
    padding: 10px;
}

.form-submit {
    width: 160px; height: 46px;
    background-color: var(--green-500);
    border: 3px solid var(--blue-700);
    border-radius: 23px;
    color: var(--blue-700);
    font-size: 18px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.form-submit:hover {
    background-color: var(--blue-700);
    color: var(--text-light);
}
/* -------------------------------------------- MODAL */ 
#modal-enter {
    width: 100%; height: 100vh;
    background-color: var(--green-500);
    position: absolute;
    z-index: 100;
}
#modal-ent-input {
    width: 180px; height: 40px;
    border: solid 3px var(--green-700);
    font-size: 16px; color: var(--text-dark); text-align: center; text-transform: uppercase;
}
.modal-bt {
    width: 100px; height: 30px;
    background-color: var(--green-700);
    border: solid 3px var(--green-700);
    font-size: 16px; color: var(--text-light);
    margin: 20px;
}
.modal-bt:hover {
    border: solid 3px var(--green-500);
}
.modal-bt:active {
    border: solid 3px var(--green-700);
}