/* Landing */
.landing {
    height: 70vh;
    margin-top: calc(90px + 10vh);
    margin-bottom: calc(10px + 10vh);
}
@media screen and (max-width: 991px) {
    .landing {
        height: 70vh;
        margin-top: calc(50px + 10vh);
        margin-bottom: calc(50px + 10vh);
    }
}
.landing .container {
    height: 100%;
    /* margin: 0 clamp(2rem, 7vw, 4.625rem); */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.landing .container .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    perspective: 1000px;    
}
.landing .container .slider-container .slider {
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 20px;
    transition: ALL 1s ease-in-out;
    direction: ltr;
}
.landing .container .slider-container .slider .slide {
    flex: 0 0 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-sizing: border-box;
    border-radius: 20px;
    transition: 1s all ease-in-out;
    flex-shrink: 0;
}
.slide.active {
    transform: scale(1);
}
.landing .container .slider-container .slider .slide.slide1 {
    background-image: url(images/all-images/0e06e24b-ffe1-4104-9bcb-37c673740fd9.jpg);
}
.landing .container .slider-container .slider .slide.slide2 {
    background-image: url(images/all-images/Modern-take-on-bali-inspired-small-apartment-white.jpg);
}
.landing .container .slider-container .slider .slide.slide3 {
    background-image: url(images/all-images/2151050934.jpg);
}
.landing .container .slider-container .slider .slide.slide4 {
    background-image: url(images/all-images/create-a-wall-art-mockup-photo-on-a-Mediterranean-.jpg);
}
.landing .container .slider-container .slider .slide.slide5 {
    background-image: url(images/all-images/very-high-detailed.jpg);
}
.landing .container .slider-container .slider .slide .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(to bottom, #00000090 , #00000080 , #00000070 , #00000050 , #00000040 , #00000020 , #00000000);
    border-radius: 20px;
}
.landing .container .slider-container .slider .slide .content .top {
    display: flex;
    align-items: center;
    gap: 5px;
}
.landing .container .slider-container .slider .slide .content .top p {
    padding: 4px 10px 4px 36px;
    margin: 0% 0% 0% 9%;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
}
.landing .container .slider-container .slider .slide .content .top span {
    width: 100px;
    height: 1px;
    background-color: var(--special-text-color);
}
.landing .container .slider-container .slider .slide .content .text span.special-span {
    color: var(--special-text-color);
}
.landing .container .slider-container .slider .slide .content .text span.normal-span {
    color: #F7F7F7FC;
}
.landing .container .slider-container .slider .slide .content .text h1 {
    padding: 1% 16% 2% 15%;
    color: #F7F7F7FC;
    letter-spacing: -0.04em;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    text-transform: capitalize;
}
html[lang="ar"] .landing .container .slider-container .slider .slide .content .text h1 {
    padding: 1% 0 2% 31%;
    letter-spacing: 3px;
}
@media screen and (max-width: 1024px) {
    .landing .container .slider-container .slider .slide .content .text h1 {
        font-size: 52px;
        padding: 1% 16% 2% 15%;
    }
}
@media screen and (max-width: 767px) {
    .landing .container .slider-container .slider .slide .content .text h1 {
        font-size: 32px;
        padding: 1% 16% 05% 9%;
    }
    .landing .container .slider-container .slider .slide .content .top p {
        padding: 4px 10px 4px 20px;
        margin: 0% 0% 0% 5%;
        font-size: 14px;
        text-transform: uppercase;
        white-space: nowrap;
    }
}
.landing .container .slider-container .arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2;
}
@media screen and (max-width: 767px) {
    .landing .container .slider-container .arrows {
        right: 0px;
    }
}
.landing .container .slider-container .arrows .arrow {
    cursor: pointer;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
}
.landing .container .slider-container .arrows .arrow img {
    width: 30px;
    transition: 0.5s all ease-in-out;
}
.landing .container .slider-container .arrows .arrow:hover {
    box-shadow: 0 0 10px #b8b8b8;
}
@media screen and (max-width: 1024px) {
    .landing .container .slider-container .arrows .arrow {
        padding: 10px;
        box-shadow: -1px 6px 75px -7px #000000;
    }
}
.landing .container .slider-container .arrows .arrow.right:hover img {
    transform: rotate(360deg);
}
.landing .container .slider-container .arrows .arrow.left:hover img {
    transform: rotate(-360deg);
}
/* Default Sections */
section.services .container {
    padding-top: calc(9% - (10vh + 10px));
}
@media (max-width: 1024px) {
    section.services .container {
        padding-top: calc(8% - (10vh + 10px));
    }
}
@media (max-width: 767px) {
    section.services .container {
        padding-top: calc(20% - (10vh + 10px));
    }
}
section .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 5%;
    padding-top: 0;
}
@media (min-width: 768px) {
    section .top {
        width: 650px;
    }
}
@media (max-width: 1024px) and (min-width: 768px) {
    section .top {
        width: 360px;
    }
}
@media (max-width: 767px) {
    section .top {
        width: 100%;
    }
}
section .top .title .section-h1 {
    font-family: 'Plus Jakarta Sans';
    color: #000000;
    font-size: 85px;
    font-weight: 800;
    line-height: 1em;
    letter-spacing: -0.04em;
    text-align: center;
    margin: 0;
    padding: 0;
    padding-bottom: 12px ;
}
@media (max-width: 1024px) {
    section .top .title .section-h1 {
        font-size: 44px;
    }
}
@media (max-width: 767px) {
    section .top .title .section-h1 {
        font-size: 30px;
    }
}
section .top .light-section-name {
    margin: 1% 0 0 0;
    padding: 0px 0px 0px 0px;
    padding-block-start: 15px;
    padding-block-end: 15px;
}
section .top .light-section-name .out-span {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
section .top .light-section-name span.section-name {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #00000073;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    word-spacing: 0.1em;
    line-height: 1;
    padding: 0 10px;
    background-color: #ffffff;
}
section .top .light-section-name span.out-span::after,
section .top .light-section-name span.out-span::before {
    content: '';
    display: block;
    border-block-end: 0;
    flex-grow: 1;
    color: #00000073;
    border: 1px solid #00000021;
}
section .top .section-tip {
    margin: 1% 0% 0% 0%;
    padding: 0px 0px 0px 0px;
}
section .top .section-tip p {
    color: #000000CC;
    font-size: 17px;
    line-height: 1.4em;
    text-align: center;
}
section .bottom .parent {
    display: flex;
    gap: 7% 7%;
}
@media (max-width: 767px) {
    section .bottom .parent {
        flex-wrap: wrap;
    }
}
section .bottom .parent .child-images {
    width: calc(60% - 3.5%);
}
section .bottom .parent .child-text {
    width: calc(40% - 3.5%);
}
@media (max-width: 767px) {
    section .bottom .parent .child {
        width: 100%;
    }
    section .bottom .parent .child-images {
        padding-bottom: 7%;
    }
}
section .bottom .parent .child-images .slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 12px;
}
@media (max-width: 1024px) {
    section .bottom .parent .child-images .slider {
        height: 400px;
    }
}
section .bottom .parent .child-images .slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    opacity: 0;
    transform: scale(1);
    transition: opacity 3s ease-in-out, transform 7s ease;
}
section .bottom .parent .child-images .slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
section .bottom .parent .child-images .slider .slide.active {
    opacity: 1;
    transform: scale(1.2);
}
section .child-text .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100%;
}
section .child-text .content p.bold-p {
    color: #000000;
    font-size: 32px;
    font-weight: 400;
    line-height: 1em;
}
@media (max-width: 1024px) {
    section .child-text .content p.bold-p {
        font-size: 20px;
        letter-spacing: -0.6px;
    }
}
section .child-text .content p.light-p {
    margin: 2% 0% 0% 0%;
    padding: 0 0 0 0;
    color: #000000CC;
    font-size: 17px;
    line-height: 1.4em;
    letter-spacing: 0px;
}
@media (max-width: 767px) {
    section .child-text .content p.light-p {
        margin: 0;
    }
}
@media (max-width: 1024px) {
    section .child-text .content p.light-p {
        font-size: 15px;
    }
}
section .child-text .content a.button {
    margin: 5% 0% 0% 0%;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    background-color: transparent;
    border: 2px solid #111;
    padding: 9px 33px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: max-content;
    font-family: inherit;
    line-height: 2em;
    text-decoration: none;
    text-transform: none;
    border-radius: 7px;
    outline: 0;
    transition: .5s all ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
@media (max-width: 767px) {
    section .child-text .content a.button {
        padding: 6px 16px 6px 16px;
        margin: 0;
    }
}
section .child-text .content a.button i {
    color: #000000;
    transition: .5s all ease-in-out;
    rotate: 45deg;
    font-size: 20px;
}
section .child-text .content a.button {
    background: linear-gradient(to left, transparent 50%, #000000 50%) right;
    background-size: 202%;
}
section .child-text .content a.button:hover {
    background-position: left;
    color: #fff;
}
section .child-text .content a.button:hover i {
    color: #fff;
}
/* Counters */
.counter-section {
    background-color: #F5EFE6;
}
.counter-section .container .counters {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    direction: ltr;
}
.counter-section .container .counters .counter {
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
}
@media (max-width: 1024px) {
    .counter-section .container .counters .counter {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .counter-section .container .counters {
        flex-wrap: wrap;
    }
    .counter-section .container .counters .counter {
        width: calc(100% / 2);
        margin-bottom: 4vw;
    }
}
.counter-section .container .counters .counter h2 {
    font-size: 120px;
    font-weight: 500;
    /* letter-spacing: -0.08em; */
    color: #000000;
}
@media (max-width: 1024px) {
    .counter-section .container .counters .counter h2 {
        font-size: 60px;
    }
}
.counter-section .container .counters .counter hr {
    width: 130px;
    margin: 0 auto;
    height: 3px;
    border-color: #000;
    background-color: #000;
}
@media (max-width: 1024px) {
    .counter-section .container .counters .counter hr {
        height: 0px;
    }
}
.counter-section .container .counters .counter p {
    color: #000000DB;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 0px;
}
@media (max-width: 1024px) {
    .counter-section .container .counters .counter p {
        font-size: 14px;
    }
}
/* Partners */
.our-partner .container .pictures {
    padding-top: 20px;
}
.our-partner .container .pictures .parent {
    display: flex;
    flex-wrap: wrap;
}
.our-partner .container .pictures .parent .child {
    width: calc(100% / 7);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 768px) {
    .our-partner .container .pictures .parent .child {
        width: calc(100% / 3);
    }
}
.our-partner .container .pictures .parent .child img {
    width: 110px;
    max-width: 100%;
    border: 1px solid rgba(209, 209, 209, 0.1);
}
.our-partner .container .all .button {
    margin-top: 2vw;
    display: flex;
    justify-content: center;
}
.our-partner .container .all .button a {
    max-width: max-content;
    padding: 18px 30px;
}
@media only screen and (max-width: 1200px) {
    .our-partner .container .all .button {
        margin-top: 20px;
    }
    .our-partner .container .all .button a {
        padding: 15px 20px;
    }
}