body {
    background-color: #ecf2e7 !important;
}

.contacts-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding: 65px;
}

.contacts-img-wrap {
    width: 45%;
    display: flex;

    padding: 80px 0;
    position: relative;
}

.contacts-img {
    width: 100%;
    height: calc(100% - 160px);
    object-fit: cover;
    display: block;
    position: absolute;
    left: 100px;
    z-index: 99999;
    filter: drop-shadow(1px 1px 5px rgba(10, 44, 10, 0.34));
    mix-blend-mode: normal;
}

.contacts-content {
    width: 55%;
    background: #fff;
    padding: 45px 60px 50px 150px;
    filter: drop-shadow(1px 1px 5px rgba(10, 44, 10, 0.34));
    mix-blend-mode: normal;
}

.contacts-title{
    font-size: 35px;
    font-family: 'Cormorant', serif;
    color: #0a2c0a;
}

.contacts-subtitle{
    margin-top: 15px;
    color: #0a2c0a;
}
.contacts-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label{
    color: #0a2c0a;
    font-size: 14px;
    font-weight: 400;
}
.form-input {
    width: 100%;
    height: 44px;
    padding: 10px;
    font-size: 14px;
    box-sizing: border-box;
    border: solid 1px #A9A9A9;
    border-radius: 0;
    box-shadow: 0 0 0 1px transparent;
    background: #fafafa;
}
textarea.form-input{
    height: auto;
}

.form-input:focus {
    outline: none;
    border-color: #4b6b31;
}

.contacts-form-btn-wrap{
    text-align: center;
}

.form-btn {
    background: #0a2c0a;
    color: #fff;
    border-radius: 14px;
    padding: 10px 20px;
    text-decoration: none;
    transition: .1s;
}

.form-btn:hover {
    opacity: .8;
}

.contacts-btns {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact-btn {
    display: inline-block;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #e1e1e1;
}

.contact-btn i {
    font-size: 20px;
    color: #4b6b31;
}

@media (max-width: 768px) {
    .contacts-wrap{
        padding: 0;
        flex-direction: column;
    }

    .contacts-wrap>div{
        width: 100%;
    }

    .contacts-img-wrap{
        display: none;
    }

    .contacts-content{
        margin: 30px 0 ;
        padding: 15px;
    }

    .contacts-title{
        line-height: 35px;
    }



}
