.elementor-2772 .elementor-element.elementor-element-fd8e344{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2772 .elementor-element.elementor-element-b575da0 img{width:100%;}.elementor-2772 .elementor-element.elementor-element-755f9d9{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:30px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}.elementor-2772 .elementor-element.elementor-element-59f4c0f > .elementor-widget-container{padding:20px 0px 20px 0px;}body.elementor-page-2772:not(.elementor-motion-effects-element-type-background), body.elementor-page-2772 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E3E6EB;}/* Start custom CSS for shortcode, class: .elementor-element-59f4c0f *//* Container for the looping content */
.loop {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    font-family: "Tajawal", sans-serif;
}

/* Parent container with flex column direction */
.parent {
    display: flex;
    flex-direction: column;
}

/* Child container with flex row direction */
.child {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-family: "Tajawal", sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: row;
}

/* Reverse flex direction for odd parent elements */
.parent:nth-child(even) .child {
    flex-direction: row-reverse;
}

/* Divider style with rotation and background image */
.divder {
    /*rotate: 180deg;*/
    width: 45%;
    height: 16px;
    background-image: url('https://s3.tebi.io/sahlatech/Group-27.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Rotate the divider back to 0deg for odd parent elements */
.parent:nth-child(even) .divder {
    rotate: 180deg;
}

.parent-dev{
    width: 100%;
    display: flex;
    justify-content: flex-start;
}
.parent:nth-child(odd) .parent-dev {
  justify-content: flex-end;
}

/* Image container with padding */
.img {
    width: 47%;
    padding: 15px;
}

/* Image style */
.img img {
    width: 100%;
    height: auto;
}

/* Content container with padding */
.content {
    width: 50%;
    padding: 15px;
}

/* Post excerpt style */
.post-excerpt {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Parent heading style */
.parent h2 {
    color: #14315e;
}

/* Link style inside parent heading */
.parent h2 a {
    text-decoration: none;
    color: #14315e;
    font-weight: 600;
    font-size: 2.5rem;
}

/* Read more and load more button styles */
.read-more, #load-more {
    font-family: "Tajawal", sans-serif;
    border-radius: 5px;
    margin-top: 10px;
    color: #14315e;
    text-decoration: none;
    padding: 8px 24px;
    border: 1px solid #14315e;
    font-size: 17px;
    font-weight: 800;
    transition: all 0.3s;
}

/* Hover effect for read more and load more buttons */
.read-more:hover    {
    background-color: #14315e;
    color: #fff;
}


#load-more{
     cursor: pointer;
        background: #00000000;
    background-image: url('https://s3.tebi.io/sahlatech/read-more-bottone-1.svg');
    background-repeat: no-repeat;
    color: #fff;
    background-position: center center;
    background-size: cover;
    border: none;
    width: 30%;
        transition: all 0.3s;
display: flex;
justify-content: center;
align-items: center;
}
@keyframes wobble-horizontal {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}


#load-more:hover , #load-more:active , #load-more:focus {
  background: #00000000;
    background-image: url('https://s3.tebi.io/sahlatech/read-more-bottone-1.svg');
     background-repeat: no-repeat;
    color: #fff;
    background-position: center center;
    background-size: cover;
    border: none;
      animation: wobble-horizontal 0.5s ease;
} 


/* Load more container style */
.load-more-container {
        width: 100%;
    display: flex;
  justify-content: space-between;
    align-items: center;
    padding: 30px 0px;
}

.rot{
    rotate: 180deg;
}

.load-more-container .parent-dev .divder{
    width: 100%;
}

/* Media query for tablets and phones */
@media (max-width: 768px) {
    .parent {
        gap: 10px;
    }

    .child {
        flex-direction: column; /* Stack items vertically */
    }
    
    .parent:nth-child(even) .child {
    flex-direction: column;
}

    .img, .content {
        width: 100%; /* Full width for both image and content */
        padding: 20px; /* Remove padding */
    }
    
    .divder{
        width:70%;
        height : 20px;
    }
    .load-more-container{
            gap : 10%;
    }
    .load-more-container .parent-dev .divder{
    width: 100%;
}
#load-more{
    width : 70%;
    font-size :15px;
}
}/* End custom CSS */