:root {
    /* NEUTRAL COLORS */
    --white: white;
    --lighter-gray: #cdcdcd;
    --light-gray: #969798;
    --dark-gray: #272a2d;

    /* SOCIAL MEDIA COLORS */
    --facebook: #3b5998;
    --twitter: #1da1f2;
    --youtube: #ff0000;
    --linkedin: #0a66c2;
    --instagram: #f00075;
}

/* Pre Footer */

footer .wpcf7 form p {
    color: var(--light-gray);
}

.wpcf7 .your-firstname input,
.wpcf7 .your-lastname input,
.wpcf7 .your-email input,
.wpcf7 .wpcf7-list-item-label {
    width: 100%;
}

.wpcf7-checkbox > span {
    margin-left: 0;
}

.wpcf7-checkbox > span input {
    margin-right: 8px;
}

button, 
input[type="button"], 
input[type="reset"], 
input[type="submit"] {
    background: var(--dark-gray);
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.wpcf7 .wpcf7-form input.wpcf7-not-valid {
    border: 1px solid red;
}

body .wpcf7 .wpcf7-form.spam .wpcf7-response-output,
body .wpcf7 form.invalid .wpcf7-response-output {
    border: 1px solid #D44040;
    background-color: #FAF0F0;
    color: #D44040;
    border-radius: 8px;
    font-weight: 700;
    margin: 0;
    float: none !important;
}

body .wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid #50B748;
    background-color: #F1F8F0;
    color: #50B748;
    font-weight: 700;
    border-radius: 8px;
    margin: 0;
    float: none !important;
}

button:hover, 
input[type="button"]:hover, 
input[type="reset"]:hover, 
input[type="submit"]:hover {
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid var(--dark-gray);
}

button.close {
    border: 0;
    position: absolute;
    right: 15px;
}

button#prefooterModalTrigger {
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid var(--white);
    border-radius: 4px;
    font-size: 1rem;
    transition: all ease-in-out 300ms;
}

button#prefooterModalTrigger:hover {
    background: var(--dark-gray);
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 4px;
}

/* Social Media Utility Classes */

.facebook {
    color: var(--facebook);
    background-color: var(--facebook);
}

.twitter {
    color: var(--twitter);
    background-color: var(--twitter);
}

.youtube {
    color: var(--youtube);
    background-color: var(--youtube);
}

.linkedin {
    color: var(--linkedin);
    background-color: var(--linkedin);
}

.instagram {
    color: var(--instagram);
    background-color: var(--instagram);
}

/* Footer Classes Styling */

footer {
    background-color: var(--dark-gray);
}

footer h6 {
    color: var(--white);
    text-transform: uppercase;
}

footer p,
footer small {
    color: var(--lighter-gray);
    padding: 0;
    margin: 0;
}

footer .terms a,
footer .contacts a {
    color: var(--lighter-gray);
}

footer .terms a:hover,
footer .contacts a:hover {
    color: var(--white);
}

footer .footer-wrapper ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: start;
    gap: 15px;
}

footer .footer-wrapper li {
    margin: 0;
    padding: 5px;
    border-radius: 50%;
    text-align: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
}

footer .footer-wrapper li a {
    margin: 0;
    padding: 5px;
    border-radius: 50%;
    text-align: center;
}

footer .footer-wrapper li:hover {
    cursor: pointer;
}

footer .footer-wrapper .social-media i {
    font-family: 'FontAwesome';
    font-style: normal;
}