/* hero */
.container-0- {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: rgba(11, 11, 11, 0.5);
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container-0 {
    position: relative;
    width: 100%;
    text-align: center;
}

.container-1 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.text-2 {
    font-size: 5rem;
    font-weight: bolder;
    color: #fff;
    text-align: center;
}


/* Services */
.our_services .services-items .elementor img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.itemCard__header{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.itemCard__image {
    object-fit: cover;
    max-height: 500px;
    height: 272px;
    width: 100%;
}

.our_services .services-items .itemCard__header .btn-link {
    display: inline;
    width: fit-content;
    position: relative;
    text-decoration: none;
    color: #333;
    font-weight: bolder;
    padding-bottom: 3px;
    background-image: linear-gradient(to right, #18a686 100%, transparent 0%);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.4s ease-in-out, color 0.3s ease;
}

.our_services .services-items .itemCard__header .btn-link:hover {
    background-size: 100% 2px;
    color: #18a686;
}

[dir="rtl"] .our_services .services-items .itemCard__header .btn-link {
    background-image: linear-gradient(to left, #18a686 100%, transparent 0%);
    background-position: right bottom;
}

.our_services .services-items .itemCard__header .btn-link i{
    transition: 0.4s ease-in-out,color 0s ease;
}

.our_services .services-items .itemCard__header .btn-link:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .our_services .services-items .itemCard__header .btn-link i{
    transform: rotate(180deg);
    transition: 0.4s ease-in-out, color 0s ease;
}

[dir="rtl"] .our_services .services-items .itemCard__header .btn-link:hover i {
    transform: translateX(-5px) rotate(180deg);
}