.company-contact-from .form-overlay {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0;
    background: #000;
    -webkit-transition: background 1s, opacity 0.4s, width 0s 0.4s;
    transition: background 1s, opacity 0.4s, width 0s 0.4s;
}
.company-contact-from .show-form-overlay .form-overlay {
    width: 100%;
    opacity: 0.7;
    z-index: 999;
    -webkit-transition: background 1s, opacity 0.4s, width 0s;
    transition: background 1s, opacity 0.4s, width 0s;
}
.show-form-overlay.form-submitted .form-overlay {
    background: #119da4;
    -webkit-transition: background 0.6s;
    transition: background 0.6s;
}
.company-contact-from #form-container {
    cursor: pointer;
    color: #fff;
    z-index: 1000;
    position: fixed;
    margin: 0 auto;
    right: 20px;
    bottom: 3vh;
    background-color: #29375c;
    overflow: hidden;
    border-radius: 50%;
    width: 60px;
    max-width: 60px;
    height: 60px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-transition: all 0.2s 0.45s, height 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
    transition: all 0.2s 0.45s, height 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}
.company-contact-from #form-container.expand {
    cursor: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.17);
    border-radius: 0;
    width: 70%;
    height: 570px;
    max-width: 550px;
    padding: 0;
    z-index: 99999;
    -webkit-transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.3s ease 0.25s;
    transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.3s ease 0.25s;
}
.company-contact-from #form-close {
    cursor: pointer;
    float: right;
    padding: 0 15px;
    z-index: 999;
    margin-top: -7px;
}
.company-contact-from .icon::before {
    cursor: pointer;
    font-size: 30px;
    line-height: 60px;
    display: block;
    -webkit-transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-contact-from .icon:hover::before {
    -webkit-animation: wiggle 0.1s linear infinite;
    animation: wiggle 0.1s linear infinite;
}
.company-contact-from .fa-pencil::before {
    display: block;
}
.company-contact-from .fa-envelope::before {
    display: block;
}
.company-contact-from .fa-close::before {
    display: none;
}
.company-contact-from .expand.fa-pencil::before {
    display: none;
}
.company-contact-from .expand.fa-envelope::before {
    display: none;
}
.company-contact-from .expand.fa-close::before {
    display: block;
    -webkit-animation: none;
    animation: none;
}
.company-contact-from #form-content {
    font-family: Roboto, sans-serif;
    -webkit-transform: translateY(150%);
    transform: translateY(150%);
    width: 100%;
    opacity: 0;
    text-align: left;
    -webkit-transition: opacity 0.2s 0.2s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.2s 0.2s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s 0.2s;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s 0.2s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-contact-from #form-content.expand {
    margin-top: 30px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    -webkit-transition: opacity 0s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    transition: opacity 0s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0s;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.company-contact-from #form-content form {
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 0 20px 20px 20px;
    margin-bottom: 10px;
    box-sizing: border-box;
    text-align: left;
}
.company-contact-from #form-head {
    font-size: 100%;
    padding: 0;
    margin: 0 20px;
    color: #fff;
    text-align: center;
    z-index: 0;
    -webkit-transition: all 0.8s 0.6s;
    transition: all 0.8s 0.6s;
}
.company-contact-from #form-head h1,
#form-head p {
    padding: 0;
    margin: 0;
}
.company-contact-from #form-head .pre {
    display: block;
}
#form-head .post {
    display: none;
}
.form-submitted#form-head {
    -webkit-transform: translateY(250%);
    transform: translateY(250%);
}
.form-submitted#form-head .pre {
    display: none;
}
.form-submitted#form-head .post {
    display: block;
}
.company-contact-from .input {
    background: rgba(0, 0, 0, 0.2);
    display: block;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    padding: 0 10px;
    border-width: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
::-webkit-input-placeholder {
    /* Safari, Chrome and Opera */
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
} /* Firefox 18- */
:-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
} /* Firefox 19+ */
::-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
} /* IE 10+ */
:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
} /* Edge */
::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
} /* Default */
:placeholder-shown {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}
.company-contact-from input,
.company-contact-from select,
.company-contact-from textarea {
    color: #fff;
}
.company-contact-from .input.message {
    resize: none;
    height: 150px;
    padding: 10px;
}
.company-contact-from .input.submit {
    background-color: #fff;
    color: #f72f4e;
    font-size: 120%;
    height: 80px;
    box-shadow: 0 5px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.1s, -webkit-transform 0s 0.6s;
    transition: all 0.1s, -webkit-transform 0s 0.6s;
    transition: all 0.1s, transform 0s 0.6s;
    transition: all 0.1s, transform 0s 0.6s, -webkit-transform 0s 0.6s;
}
.company-contact-from .input.submit:active {
    margin-top: 15px;
    box-shadow: 0 0 rgba(0, 0, 0, 0.5);
}
.company-contact-from .input.form-error {
    -webkit-animation: error 0.8s ease;
    animation: error 0.8s ease;
    background: rgba(0, 0, 0, 0.7);
}
.company-contact-from select option {
    background: #f72f4e;
    color: #fff;
    border: none;
    box-shadow: none;
    outline: none;
}
.company-contact-from select option:disabled {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 90%;
}
.company-contact-from .input {
    -webkit-transition: -webkit-transform 0s 1s;
    transition: -webkit-transform 0s 1s;
    transition: transform 0s 1s;
    transition: transform 0s 1s, -webkit-transform 0s 1s;
}
.form-submitted .input {
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
    opacity: 0;
    -webkit-transition: all 0.5s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: all 0.5s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: all 0.5s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: all 0.5s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.form-submitted .input:nth-child(1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.form-submitted .input:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.form-submitted .input:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.form-submitted .input:nth-child(4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.form-submitted .input:nth-child(5) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.company-contact-from input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
@media (max-width: 600px) {
    .company-contact-from #form-container.expand {
        height: 100%;
        width: 100%;
        max-width: 100%;
        overflow: initial;
        overflow-x: hidden;
        bottom: 0;
        right: 0;
    }
    .company-contact-from h1 {
        font-size: 300%;
    }
    .company-contact-from .icon:hover::before {
        -webkit-animation: none;
        animation: none;
    }
    .company-contact-from .form-overlay {
        display: none;
        -webkit-transition: none;
        transition: none;
    }
}
@-webkit-keyframes error {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
}
@keyframes error {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
}
@media screen and (max-width: 1024px) {
    .company-contact-from #form-container {
        bottom: 10vh;
    }
}
