#get_in_touch{
    background: #0c1928;
    /* background: #61e282; */

}
.get_in_touch_header{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.get_in_touch_row{
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    /* justify-content: center; */
    width: 100%;
    height: 100%;
    gap: 30px;
    margin-bottom: 50px;
}
.get_in_touch_left{
    display: flex;
    flex-direction: column;
    width: 65%;
    height: 100%;
    gap: 20px;
}
.get_in_touch_right{
    display: flex;
    flex-direction: column;
    width: 35%;
    height: 100%;
    gap: 20px;
}
.get_in_touch_span{
    margin-bottom: 20px;
}

@media screen and (max-width: 1236px) {
    .get_in_touch_row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .get_in_touch_left{
        width: 80%;
    }
    .get_in_touch_right{
        flex-direction: row;
        width: 80%;
    }
}

@media screen and (max-width: 768px){
    #get_in_touch{
        width: 100%;
    }
    .get_in_touch_row{
        gap: 20px;
    }
    .get_in_touch_left{
        width: 100%;
    }
    .get_in_touch_right{
        width: 100%;
    }
}

@media screen and (max-width: 668px){
    .get_in_touch_right{
        /* flex-direction: column; */
        flex-wrap: wrap;
    }
}   