






.contact_us .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact_us .div_img{
    width: 30%;
}
.contact_us .div_img iframe{
    width: 100%;
}
.contact_us .content{
    width: 50%;
}
.contact_us .box{
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid #5f545f3f;
    box-shadow: 5px 5px 10px #05050533;
    padding: 20px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 20px;
    width: 100%;
}
.contact_us .box:hover{
    border-color: var(--main-color);
}
.contact_us .box .icon{
    background: var(--main-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 10px;
}
.contact_us .box .icon img{
    width: 100%;
}
.contact_us .box .text{
    display: flex;
    flex-direction: column;
}
.contact_us .box .text h3{
    margin-bottom: 25px;
    font-size: 25px;
}
.contact_us .box a{
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 500;
}
.contact_us .box .text .soial {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact_us .box .text .soial img{
    width: 50px;

}
.contact_us .box .text .soial a{
    margin-bottom: 0;
}





@media (max-width:1300px) {
    .contact_us .div_img{
        width: 40%;
    }
}


@media (max-width:1000px) {
    .contact_us .container{
        flex-direction: column-reverse;
        gap: 50px;
    }
    .contact_us .div_img{
        width: 60%;
    }
    .contact_us .content{
        width: 100%;
    }
}
@media (max-width:500px){
    .contact_us .div_img{
        width: 95%;
    }
    .contact_us .content{
        width: 100%;
    }
    .contact_us .box .text h3{
        font-size: 23px;
        margin-bottom:20px;
    }
    .contact_us .box .text .soial img{
        font-size: 40px;
    }
    .contact_us .box a{
        font-size: 15px;
    }
}