@font-face{
    font-family: 'PingARLocal';
    src: url('/font/PingAR+LT-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'PingARLocal';
    src: url('/font/PingAR+LT-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.body_cotact{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 16px 36px rgba(24,165,88,.10);
    border: 1px solid rgba(24,165,88,.14);
    background: radial-gradient(1200px 300px at 100% 0%, rgba(24,165,88,.08), transparent 60%), #FFFFFF;
    font-family: 'PingARLocal', sans-serif;
}

.body_cotact *{
    font-family: 'PingARLocal', sans-serif;
}

.left_contact{
    width: 45%;
}

.input_name input{
    border: none;
    outline: none;
    padding: 13px 15px 10px 0;
    margin: 20px 0 20px 10px;
    width: 45%;
    border-radius: 6px;
    background-color: #F7FCF8;
    color: #123222;
    border: 1px solid rgba(24,165,88,.18);
}

textarea{
    border: none;
    outline: none;
    width: 92%;
    padding: 10px;
    border-radius: 6px;
    height: 200px !important;
    resize: none !important;
    background-color: #F7FCF8;
    color: #123222;
    border: 1px solid rgba(24,165,88,.18);
}

/* إبقاء التباعد فقط داخل صفحة التواصل دون التأثير على النافبار العام */
.body_cotact .container-fluid {
  gap: 12px;
}

.checkbox_text label {
  cursor: pointer;
  user-select: none;
  color: #128347;
}

input[type="checkbox"],
.form-check-input {
  width: 20px !important;
  height: 1.5rem !important;
  appearance: none;
  border: 1px solid rgba(24,165,88,.35);
  background-color: #FFFFFF;
  border-radius: 4px;
}

input[type="checkbox"]:checked,
.form-check-input:checked {
  background-color: #18A558;
  border-color: #18A558;
}

.btn_donate{
    width: 92%;
    margin-top: 70px;
    padding: 13px;
    color: #FFFFFF;
    background-color: #18A558;
    border: none;
    border-radius: 10px;
    transition: all .5s ease;
}
.btn_donate:hover{
    color: #FFFFFF;
    background-color: #128347;
}

.line_contant{
    width: 80%;
    height: 10px;
    background-color: #18A558;
    margin: 30px 0;
}

.icon_text_contact{
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 15px;
}
.imgd{
    width: 40px;
    height: 40px;
    padding: 10px;
    border: 1px solid #18A558;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F7FCF8;
}

.icon_text_contact p{
    color: #123222;
}
.icon_text_contact:nth-child(5){
    align-items: flex-start;
}
.right_contact{
    width: 50%;
}
.right_contact .btn_donate{
    margin-top: 10px;
}

.left_contact .imgfooticon{
    border: 1px solid #18A558;
    border-radius: 10px;
}
.left_contact .imgfooticon i{
    color: #18A558;
}
.left_contact .imgfooticon:hover i{
    color: #FFFFFF;
}
.left_contact .imgfooticon:hover{
    background-color: #18A558;
}

@media (max-width:867px){
    .body_cotact{
        flex-direction: column;
        padding: 20px;
        align-items: center;
        gap: 60px;
    }
    .right_contact{
        width: 100%;
    }
    .left_contact{
        width: 100%;
    }
    .input_name input{
        width: 48%;
    }
    textarea{
        width: 100%;
    }
    .btn_donate{
        width: 100%;
    }
}
@media (max-width:700px){
    .input_name input{
        width: 100%;
        margin: 10px 0 ;
    }
    textarea{
        margin-top: 15px !important;
    }
    .icon_text_contact:nth-child(5) p{
        font-size: 14px;
    }
}
@media (max-width:380px){
    .icon_text_contact:nth-child(5) p{
        font-size: 12px;
    }
}