.contactContainer{
    width: 100%;
    height: 100vh;
    position: relative;
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactBackground{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.contactFormContainer{
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactForm{
    width: 550px;
    height: 600px;
    background-color: #ffffff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 25px;
}

.contactTitle{
    font-family: 'castle';
    font-size: 20px;
    color: #eaa205;
}

.mainForm{
    width: 90%;
}

.inputLable{
    font-size: 18px;
}

.select , .onvan, .matn{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.matn{
    margin-top: 15px;
}

.onvan{
    margin-top: 10px;
}

.mySelect{
    width: 100%;
    height: 40px;
    border-radius: 7px;
    font-family: 'shabnam';
    font-size: 14px;
}

.onvanInp{
    width: 100%;
    height: 40px;
    font-size: 14px;
    text-align: right;
    padding: 0px 7px;
    border-radius: 7px;
    border: 1px solid black;
    font-family: 'shabnam';
}

.matnInp{
    width: 100%;
    height: 150px;
    padding: 7px;
    border: 1px solid #000000;
    border-radius: 7px;
    font-size: 16px;
    resize: none;
    font-family: 'shabnam';
}

.subBtn{
    width: 100%;
    margin-top: 40px;
    height: 40px;
    font-family: 'shabnam';
    font-size: 16px;
    border: none;
    border-radius: 7px;
    background-color: #eaa205;
    color: #ffffff;
}

.contactSideContainer{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.contactSideImg{
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactSideImg img{
    width: 90%;
    height: 90%;
    margin-bottom: 150px;
}

.contactSideInfo{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contactSideMainImg{
    height: 100%;
}

.contactSideMainInfo{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.contactSideTop{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 45px;
    gap: 40px;
}

.contactSideMainDesc{
    font-size: 20px;
}

.contactFormSingle{
    width: 95%;
    height: 120px;
    background-color: #aaabad;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 25px;
}

.contactFormSingle img{
    height: 80%;
}

.contactFormSingleTexts{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
    margin-right: 15px;
    color: #ffffff;
    width: 100%;
}

.contactFormSingleTexts span:nth-child(1){
    font-weight: bold;
    font-size: 20px;
}

.contactFormSingleSocial{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
    margin-right: 15px;
    width: 100%;
}

.contactFormSingleSocial button{
    width: 100%;
    height: 40px;
    border: none;
    font-family: "shabnam";
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.contactFormSingleSocial button:nth-child(1){
    background-color: #3baa34;
    color: #ffffff;
    font-size: 16px;
}

.contactFormSingleSocial button:nth-child(2){
    background-color: #ffffff;
    color: #515151;
    font-size: 16px;
}

@media (max-width: 768px) {
    .contactSideContainer{
        display: none;
    }
    .contactFormContainer{
        width: 95%;
    }
    .contactForm{
        height: 700px;
    }
    .contactFormSingle{
        height: 185px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contactFormSingleTexts{
        align-items: center;
        margin-right: 0;
    }
    .contactFormSingleSocial{
        margin-right: 0;
    }
    .profImgInCont{
        display: none;
    }
}