.home {
    overflow: hidden;
}
.home #about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    background: url("../images/home/about-bg.webp") no-repeat center center;
    background-size: cover;
    flex-wrap: wrap;
    padding: 5rem 3rem;
}
.home #about .image {
    width: 40%;
}
.home #about .image img {
    width: 100%;
    object-fit: cover;
}

.home #about .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
    width: 48%;
}
.home #about .text h4 {
    color: #f28221;
    margin-bottom: 1px;
    font-weight: bold;
}
.home #about .text h5 {
    font-weight: bold;
    margin-bottom: 0rem;
    line-height: 1.6;
}
.home #about .text .desc {
    padding: 0rem 0.5rem;
    margin: 0rem;
    position: relative;
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.2rem;
}
.home #about .text .desc::before {
    content: "";
    width: 3px;
    height: 100%;
    border-radius: 2rem;
    background: linear-gradient(180deg, #f28221 27%, #f28221);
    position: absolute;
    top: 10px;
}
.home #about .text .ar-shape::before {
    right: -1px;
}
.home #about .text .en-shape::before {
    left: -1px;
}
.home #about .text.ar {
    text-align: right;
}
.home #about .text.en {
    text-align: left;
}
.home #news,
.home #services,
.home #business,
.home #contact {
    padding-top: 5rem;
}

.services {
    background: url("../images/home/services-bg.webp") no-repeat center center;
    background-size: cover;
    min-height: 40vh;
    padding: 1rem 0rem;
    pointer-events: fill;
}
.services .head {
    width: fit-content;
    color: #f28221;
    margin: 2rem;
    text-align: right;
    font-weight: 700;
    position: relative;
    padding: 0rem;
}
.services .head::before {
    content: "";
    width: 40%;
    height: 3px;
    border-radius: 2rem;
    position: absolute;
    bottom: -0.8rem;
}
.services .head.ar {
    margin-left: auto;
    text-align: right;
}
.services .head.ar::before {
    background: linear-gradient(-90deg, #fff da 1%, #fff 0);
    right: 0.5rem;
}
.services .head.en {
    margin-right: auto;
    text-align: left;
}
.services .head.en::before {
    background: linear-gradient(90deg, #fff da 1%, #fff 0);
    left: 0.5rem;
}
.services .carousel {
    margin-top: 2rem;
    cursor: grab;
}
.services .carousel .owl-nav,
.our-business .carousel .owl-nav {
    flex-direction: row-reverse;
}
.services .carousel .owl-nav .owl-prev,
.services .carousel .owl-nav .owl-next,
.our-business .carousel .owl-nav .owl-prev,
.our-business .carousel .owl-nav .owl-next {
    background: #ffffff;
    width: 50px;
    height: 50px;
    padding: 10px !important;
}
.services .carousel .owl-nav .owl-prev i,
.services .carousel .owl-nav .owl-next i,
.our-business .carousel .owl-nav .owl-prev i,
.our-business .carousel .owl-nav .owl-next i {
    width: 30px;
    height: 30px;
}
.services .carousel a {
    pointer-events: fill;
}
.services .carousel .box {
    cursor: pointer;
    background-color: #7771a2;
    overflow: hidden;
    border-radius: 1rem;
    margin: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.services .carousel .box img {
    width: 110px;
    object-fit: contain;
    pointer-events: none;
    height: 100px;
}
.services .carousel .box .text {
    cursor: pointer;
    padding: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f28221;
    display: block;
}
.services .carousel .box.ar .text {
    text-align: right;
}
.services .carousel .box.en .text {
    text-align: left;
}
.services .owl-carousel .owl-stage-outer {
    overflow: hidden !important;
}

.home .news,
.home .our-business {
    background: url("../images/home/news-bg.webp") no-repeat;
    background-size: cover;
    background-color: #fff;
    min-height: 80vh;
    padding: 4rem 2rem;
}
.home .news .carousel,
.home .our-business .carousel {
    margin-top: 4rem;
    cursor: pointer;
}
.home .news .carousel .box,
.home .our-business .carousel .box {
    background-color: #fff;
    overflow: hidden;
    border-radius: 3rem;
    margin: 1rem;
    padding-bottom: 0rem;
    height: 350px;
    width: 96%;
    pointer-events: all;
}
.home .news .carousel .box img,
.home .our-business .carousel .box img {
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home .news .carousel .box .text,
.home .our-business .carousel .box .text {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0rem;
}
.home .news .carousel .box .text .date,
.home .our-business .carousel .box .text .date {
    color: #383172;
}
.home .news .carousel .box .text .desc,
.home .our-business .carousel .box .text .desc {
    width: fit-content;
    line-height: 1.8;
}
.home .news .carousel .box .text.en,
.home .our-business .carousel .box .text.en {
    align-items: flex-start;
}
.home .news .carousel .box.ar .text,
.home .our-business .carousel .box.ar .text {
    text-align: right;
}
.home .news .carousel .box.en .text,
.home .our-business .carousel .box.en .text {
    text-align: left;
}
.home .our-business .carousel .box {
    background-color: transparent;
}
.home .our-business .carousel .box img {
    width: 100%;
    height: 100%;
}

@media (max-width: 450px) {
    .home #about {
        flex-direction: column-reverse;
        padding: 6rem 0.5rem;
        gap: 2rem;
        padding-bottom: 0rem;
    }
    .home #about .image {
        width: 100%;
        text-align: center;
    }
    .home #about .image img {
        width: 100%;
    }
    .home #about .text {
        width: 100%;
        align-items: center;
        text-align: center !important;
    }
    .home .news {
        padding: 0.4rem;
    }
}
@media (min-width: 451px) and (max-width: 991px) {
    .home #about {
        flex-direction: column-reverse;
        padding-top: 6rem;
    }
    .home #about .image {
        width: 100%;
        text-align: center;
    }
    .home #about .image img {
        width: 500px;
    }
    .home #about .text {
        width: 100%;
        align-items: center;
        text-align: center !important;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home #about {
        flex-wrap: nowrap;
    }
}
@media (min-width: 1400px) {
    .home #about {
        padding: 5rem 6rem;
    }
}
