.contact-container {
    max-width: 1250px;
    padding: 5rem 1.25rem;
}
.contact-item--inner {
    border: 1px solid #e1e9f4;
    border-radius: 10px;
    background-color: var(--cream);
    padding: 54px 20px;
    text-align: center;
    -webkit-transition: all 220ms linear 0ms;
    -khtml-transition: all 220ms linear 0ms;
    -moz-transition: all 220ms linear 0ms;
    -ms-transition: all 220ms linear 0ms;
    -o-transition: all 220ms linear 0ms;
    transition: all 220ms linear 0ms;
}
.contact-item--inner:hover {
    -webkit-box-shadow: 0 10px 60px rgba(137, 151, 186, .15);
    -khtml-box-shadow: 0 10px 60px rgba(137, 151, 186, .15);
    -moz-box-shadow: 0 10px 60px rgba(137, 151, 186, .15);
    -ms-box-shadow: 0 10px 60px rgba(137, 151, 186, .15);
    -o-box-shadow: 0 10px 60px rgba(137, 151, 186, .15);
    box-shadow: 0 10px 60px rgba(137, 151, 186, .15);
	border-color: var(--cream);
}
.contact-item--icon {
    -webkit-box-shadow: 0 10px 20px rgba(137, 151, 186, .2);
    -khtml-box-shadow: 0 10px 20px rgba(137, 151, 186, .2);
    -moz-box-shadow: 0 10px 20px rgba(137, 151, 186, .2);
    -ms-box-shadow: 0 10px 20px rgba(137, 151, 186, .2);
    -o-box-shadow: 0 10px 20px rgba(137, 151, 186, .2);
    box-shadow: 0 10px 20px rgba(137, 151, 186, .2);
    width: 90px;
    height: 90px;
    border-radius: 15px;
    background-color: #fff;
    margin: -99px auto 27px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.contact-item--icon lord-icon {
    width: 60px;
    height: 60px;
}
.contact-item--content {
    font-size: 22px;
    font-weight: 700;
    margin-top: 5px;
}
.contact-inner {
    background-color: var(--cream);
    box-shadow: 0px 10px 60px 0px rgba(137, 151.00000000000003, 186, 0.15);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 75px 40px;
	margin-top: 5rem;
}
.contact-form {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.contact-input input {
    background-color: #f6f6f6;
    border: 1px solid #5d666f;
    color: #5d666f;
    padding: 6px 26px;
    font-size: 16px;
    font-weight: 400;
    height: 58px;
}
.contact-input textarea {
    background-color: #f6f6f6;
    border: 1px solid #5d666f;
    height: 12rem;
    padding: 1rem 0 0 0.5rem;
}
.contact-input label {
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: .025rem;
}
.contact-input:not(:last-child) {
	margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px){
    .contact-item--holder:not(:last-child) {
        margin-bottom: 5rem;
    }
    .contact-fields {
        margin-bottom: 1rem;
    }
}
@media only screen and (max-width: 480px){
    .contact-inner {
        padding: 50px 20px;
    }
}
@media only screen and (max-width: 414px){
    .contact-item--content {
        font-size: 20px;
    }
}