﻿section > div > h4 {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 2em;
    position: relative;
}

    section > div > h4:before {
        content: "";
        position: absolute;
        left: 42%;
        bottom: 0;
        height: 5px;
        width: 55px;
        background-color: var(--lmc-orange);
        transform: translateX(-50%);
    }

    section > div > h4:after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 2px;
        height: 1px;
        width: 20%;
        max-width: 255px;
        background-color: var(--lmc-orange);
        transform: translateX(-50%);
    }

section {
    margin: 3% 5%;
}
/*#region Form*/
input, textarea {
    padding: 5px;
    border: none;
    border-bottom: 2px solid var(--lmc-orange);
}

    input:focus, textarea:focus {
        outline: none;
        box-shadow: rgba(239, 124, 0, 0.32) 0px 10px 20px -5px;
        transition: all 0.2s ease-in-out;
    }

.formContainer {
    margin: 3% 3%;
    padding: 3%;
    box-shadow: rgba(239, 124, 0, 0.12) 0px 2px 4px 0px, rgba(239, 124, 0, 0.32) 0px 2px 16px 0px;
}

    .formContainer > p {
        padding: 2% 0;
        display: flex;
        gap: 2%;
        align-items: center;
    }

        .formContainer > p > i {
            font-size: x-large;
            color: var(--lmc-orange);
        }

    .formContainer > form > label {
        display: flex;
        flex-direction: column;
        margin-bottom: 5%;
    }

        .formContainer > form > label > textarea {
            height: 150px;
        }

    .formContainer > form > button {
        width: 20%;
        margin: auto;
    }

    .formContainer > form > div:not(#offerFileContainer) {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 5%;
        padding: 3% 0;
    }

        .formContainer > form > div:not(#offerFileContainer) > label {
            display: flex;
            flex-direction: column;
        }

.file {
    display: block;
    outline: 2px dashed var(--lmc-orange);
    width: 100%;
    padding: 20px 0;
    text-align: center;
    cursor: pointer;
}

    .file > input {
        display: none;
    }

.offerFileNameContainer {
    display: none;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .offerFileNameContainer > i {
        cursor: pointer;
        color: red;
        font-size: xx-large;
    }
/*#endregion*/
/*#region Container animations */
.animationBox {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

    .animationBox.show {
        opacity: 1;
        transform: translateY(0);
    }
/*#endregion*/

@media (max-width: 480px) {
    #captcha {
        width: 50%;
    }

    .contactContainer {
        gap: 40px;
    }

    .formContainer > form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .formContainer > form > div {
            display: flex !important;
            flex-direction: column !important;
            gap: 20px !important;
        }

        .formContainer > form > button {
            width: 100%;
        }
}
@media (max-width: 1024px) {
    section > div > h4:before {
        left: 42%;
    }
}
