
/*############################ contacts style ##########################*/
.contact-contioner .contact-wrapper .left-section .title {
    transform: translate(5rem, 3rem);
}
.contact-contioner .contact-wrapper .left-section .title::after {
    content: "";
    width: 350px;
    height: 1px;
    transform: translate(8px, 1rem);
    background: white;
    position: absolute;
}
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 7rem;
    position: relative;
}
.contact-section {
    transform: translate(5rem, 4rem);
}
/*########## left-section #########*/
.contact-wrapper .left-section .contact-description {
   width: 300px;
   color: #505661;
   margin-bottom: 1rem;
   border: 1px solid #375180; 
   padding: 5px;
}
/*########## right-section #########*/
.contact-wrapper .left-section .message-box {
    border: 1px solid #375180;
    display: inline-block;
    margin-top: 2rem;
    padding: 5px;
    text-align: left;
}
.contact-contioner
.contact-wrapper 
.left-section
.message-box
.message-header-title {
    margin-bottom: 1rem;
}
.contact-contioner .contact-wrapper .left-section .social-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.contact-contioner .contact-wrapper .left-section .social-list .social-link {
     color: #454a55;
     transition: all 0.3s ease;
}
.contact-contioner .contact-wrapper .left-section .social-list .social-link:hover {
     color: white;
     background: rgb(135, 82, 185);
     border-radius: 10px;
     padding: 5px 8px;
}




