.get-in-touch-section .column-left {
    width: 43.75%;
}

.get-in-touch-section .column-right {
    width: 47%;
}

.contact-info-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* margin-top: -40px; */
}

.contact-info-list .contact-info {
    width: calc(50% - 20px);
    margin-bottom: 40px;
}

.get-in-touch-section .content-box {
    margin-bottom: 40px;
}
.get-in-touch-section .content-box h2{
        color: var(--black);
}
.contact-info-list .contact-info h4 {
    color: var(--black);
    margin-bottom: 15px;
}

.follow-us h4 {
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--text-color);
}

.follow-us .social-link a {
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--yellow);
    border-radius: 50%;
    transition: all 0.6s;
}

.follow-us .social-link {
    display: flex;
    align-items: center;
}

.follow-us .social-link a:not(:last-child) {
    margin-right: 10px;
}



.follow-us .social-link a:hover {
    transform: scale(1.1);
}
.get-in-touch-form {
    background: var(--light-gray);
    padding: 70px;
}

.get-in-touch-form label {
    color: var(--text-color);
    text-transform: capitalize;
}

.get-in-touch-form input,.get-in-touch-form textarea {
    border-bottom: 1px solid var(--text-color);
    border-radius: 0;
    padding: 5px 20px;
}
 .contact-info a {
    margin-bottom: 5px;
}

@media only screen and (max-width:1199px){
    .get-in-touch-form {
        padding: 40px;
    }
    .get-in-touch-section .column-left {
        width: 47%;
    }
    .get-in-touch-section .column-right {
        width: 47%;
    }
}

@media only screen and (max-width:991px){
     .get-in-touch-section .column-left {
        width: 100%;
    }
    .get-in-touch-section .column-right {
        width: 100%;
        margin-top: 40px;
    }
}
@media only screen and (max-width:767px){
    .contact-info-list .contact-info {
        margin-bottom: 40px;
    }
    .get-in-touch-form {
        padding: 40px 20px;
    }
}