.footer {
    margin-top: 60px;
    padding-top: 55px;
    border-top-left-radius: 180px;
    background: linear-gradient(to right, var(--color0401), var(--color0402));
    color: var(--color0403);
}
.footer-row {
    width: 85%;
    margin: auto;
    justify-content: space-between;
}
.footer-box {
    text-align: center;
    flex-basis: 25%;
    padding: 10px;
}
.footer-box a {
    text-decoration: none;
    color: var(--color0403);
    display: block;
}
.footer-box:nth-child(1) {
    flex-basis: 15%;
}
.footer-box:nth-child(2) {
    flex-basis: 18%;
}
.footer-box:nth-child(4) p {
    text-align: justify;
    font-size: 15px;
    padding-right: 3px;
}
.footer-logo {
    width: 200px;
    margin: 30px 0px;
}
.footer-box h3 {
    font-family: Sahel-SemiBold;
    font-size: 22px;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}
.email-p {
    text-align: center;
    font-family: Sahel-Light;
    font-size: 14px;
    direction: rtl;
}
.footer-box:nth-child(1) {
    flex-basis: 15%;
}
.footer-box:nth-child(1) a:first-of-type {
    border-bottom: 1px solid color-mix(in srgb, var(--color0403) 50%, transparent);
    margin-bottom: 10px;
    font-family: Sahel-SemiBold;
    font-size: 14px;
}
.footer-box ul {
    padding: 0;
}
.footer-box ul li {
    font-family: Sahel;
    text-align: center;
    list-style: none;
    margin-bottom: 12px;
}
.footer-box ul li a {
    text-decoration: none;
}
.footer-box form {
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid color-mix(in srgb, var(--color0403) 50%, transparent);
}
.footer-box h5 {
    direction: rtl;
    text-align: right;
    font-family: Sahel-SemiBold;
    padding-right: 6px;
}
.address {
    direction: rtl;
    text-align: center;
    font-family: Sahel-Light;
    padding-right: 8px;
}
.footer-box div {
    display: flex;
    justify-content: center;
}
.footer-box div a {
    font-family: Sahel-Bold;
    text-decoration: none;
}
.email-icon {
    width: 36px;
}
.footer-box form input {
    width: 100%;
    background: transparent;
    border: 0px;
    outline: none;
    padding-right: 40px;
    color: var(--color0403);
}
.footer-box form input::placeholder {
    text-align: center;
    font-family: Sahel-Light;
    font-size: 14px;
    color: color-mix(in srgb, var(--color0403) 70%, transparent);
}
.footer-box form i {
    color: var(--color0403);
}
.footer-box form button {
    background: transparent;
    border: 0px;
    outline: none;
}
.send-icon {
    width: 28px;
    padding-top: 8px;
}
.social-icons a i {
    font-size: 25px;
    width: 45px;
}
.social-icons img {
    width: 45px;
    margin: 0px 7px;
}
.footerhr {
    width: 80%;
    border: 0px;
    margin: 20px auto;
    border-bottom: 1px solid color-mix(in srgb, var(--color0403) 70%, transparent);
}
.underline {
    width: 100%;
    background: color-mix(in srgb, var(--color0403) 50%, transparent);
    height: 5px;
    border-radius: 3px;
    position: absolute;
    top: 38px;
    left: 0px;
    overflow: hidden;
}
.underline span {
    background: var(--color0403);
    width: 15px;
    height: 100%;
    border-radius: 3px;
    position: absolute;
    top: 0px;
    right: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving {
    0% {
        right: -20px;
    }
    100% {
        right: 100%;
    }
}
.copyright {
    direction: rtl;
    text-align: center;
    padding: 10px 6px 100px 6px;
    color: var(--color0403);
}
.copyright p {
    font-family: Sahel-Light;
    font-size: 14px;
    margin-bottom: 2px;
}
.copyright p span {
    display: inline-block;
    direction: ltr;
}
.copyright a {
    font-family: Sahel-Bold;
    color: var(--color0403);
}
@media screen and (max-width: 600px) {
    .footer {
        border-top-left-radius: 110px;
        margin-top: 40px;
    }
    .footer-box {
        flex-basis: 100%!important;
    }
    .footer-box:nth-child(1) {
        text-align: center;
        margin-top: 0px;
    }
    .footer-box:nth-child(2), .footer-box:nth-child(3), .footer-box:nth-child(4) {
        margin-top: 30px;
    }
    .footer-email {
        width: 80%;
        margin-right: 10%;
    }
    .footer-box ul {
        padding: 0;
    }
    .footer-box ul li {
        text-align: center;
        padding-right: 0;
    }
}