@font-face {
    font-family: swissra;
    src: url('../fonts/alfont_com_AlFont_com_Swissra-Normal-1.otf');
}

:root {
    --mainPt: 80px;
    --pPddingR: 65px
}

/* loader */
#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader */
.loader {
    /* animation: spin 1.5s linear infinite; */
}

.logoA img {
    width: 118px;
    object-fit: contain;
}

/* Spin Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loader Logo */
.loader-logo {
    width: 100px;
    /* Adjust size as needed */
    height: auto;
    filter: brightness(0) saturate(100%) invert(19%) sepia(0%) saturate(1100%) hue-rotate(190deg) brightness(96%) contrast(92%);
}

/* end loader */

*,
html,
body {
    font-family: swissra;
    direction: rtl;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

p {
    font-size: 20px;
    line-height: 32.82px;
    font-weight: 400;
    color: #353535;
}

.mainTitle {
    padding-inline-start: 65px;
    position: relative;
    height: 80px;
    line-height: 80px;
    display: flex;
    align-items: center;
}

.mainTitle h3 {
    margin-bottom: 0;
    color: #CAAC7B;
    font-weight: 400;
    font-size: 32px;
}

.mainTitle.brownwhite h3 {
    color: #fff;
}

.mainTitle::after,
.mainTitle::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 70px;
    background-color: #CAAC7B;
}

.mainTitle::before {
    right: 24px;
    top: 10px;
    background-color: #353535;
}

.mainTitle.green::before {
    background-color: #008F98;
}

.whyDahliez .mainTitle::before,
.mainTitle.brownwhite::after {
    background-color: #fff;
}

.whyDahliez .mainTitle::after {
    background-color: #353535;
}

/* header */
header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
}

.scrolled {
    background-color: #f3f3f3;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.scrolled a.logoA img {
    transition: all 0.5s ease-in-out;
    height: 60px;
    object-fit: contain;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 50px;
}

header.scrolled nav ul {
    gap: 30px;
}

header nav ul li a {
    color: #fff;
}

header.scrolled nav ul li a {
    color: #353535;
    transition: all 0.5s ease-in-out;
    font-size: 14px;
}
.mainBtnShow,
header nav .contactUs {
    font-size: 16px;
    background-color: #fff;
    padding: 5px 16px;
    border-radius: 5px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    color: #CAAC7B;
    transition: all 0.5s ease-in-out;
}
.mainBtnShow{
    width: 150px;
    border:none;
    color: #fff;
    background-color: #CAAC7B;
    transition: all 0.5s ease-in-out;
    margin-top: 50px;
}
header.scrolled nav .contactUs {
    font-size: 14px;
}

header.scrolled nav .contactUs {
    background-color: #CAAC7B;
    color: #fff;
    transition: all 0.5s ease-in-out;
}
header nav .contactUs:active,
header nav .contactUs:hover {
    background-color: #CAAC7B;
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.mainBtnShow:hover,
header.scrolled nav .contactUs:active,
header.scrolled nav .contactUs:hover {
    background-color: #fff;
    color: #CAAC7B;
    transition: all 0.5s ease-in-out;
}

/* end header */
/* mainBanner */
.mainBanner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.mainBanner .bannerLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mainBanner .bannerLogo,
.mainBanner img {
    position: relative;
    z-index: 99;
}

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

.mainBanner .bannerLogo img {
    width: 270px;
    height: auto;
    object-fit: contain;
    margin-bottom: 29px;
}

.mainBanner .bannerLogo h2 {
    color: #fff;
}

.downScroll {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
    border: 1px solid #fff;
    border-radius: 20px;
    width: 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.downScroll svg {
    animation: moveUpDown 1s infinite ease-in-out;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* end mainBanner */
/* about */
.about {
    padding-top: var(--mainPt);
}

.about .aboutImg {
    float: left;
    width: calc(100% + 300px);
    position: relative;
}

.about .aboutImg::after,
.about .aboutImg::before {
    content: '';
    position: absolute;
    bottom: 23px;
    background-color: #353535;
    height: 20px;
    width: 290px;
    left: calc(-290px - 24px);
}

.about .aboutImg::before {
    background-color: #CAAC7B;
    bottom: calc(23px + 24px + 15px);
    width: 390px;
    left: -180px;
    z-index: 99;
}

.about .aboutImg img {
    height: 490px;
    object-fit: cover;
    float: left;
    width: 800px;
    border-radius: 10px;
}

.pTitle {
    padding-inline-start: var(--pPddingR);
}

/* end about */
.experience {
    padding-top: var(--mainPt);
    overflow: hidden;
    padding-bottom: 110px;
}

.experience .experienceDiv p {
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    margin-top: 24px;
}

.experience .experienceDiv {
    margin-bottom: 80px;
}

.experience .ValuesDiv ul {
    display: flex;
    align-items: center;
    color: #CAAC7B;
    flex-wrap: wrap;
    margin-top: 24px;
}

.experience .ValuesDiv ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.experience .ValuesDiv ul li:not(:first-of-type) {
    margin-inline-start: 120px;
}

.experience .ValuesDiv .valueNum {
    display: flex;
    width: 50px;
    background-color: #353535;
    color: #fff;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

.experience .ValuesDiv .valueText {
    font-size: 20px;
}

.experience .mvg {
    position: relative;
    padding-top: 130px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-inline-start: 100px;
}

.experience .mvg .mvgItem {
    display: flex;
    gap: 24px;
    width: 100%;
}

.experience .mvg .mvgItem .icon {
    background-color: #CAAC7B;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience .mvg .mvgItem h3 {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 24px;
    color: #CAAC7B;
}

.experience .mvg .mvgItem p {
    font-size: 16px;
    line-height: 26.26px;
    max-width: 340px;
}

.experience .mvg .mvgItem:not(:last-of-type) {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #CAAC7B;
}

.experience .mvg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-color: #CAAC7B17;
    width: 700px;
    height: 700px;
    border-radius: 50%;
}

/* ceoWord */
.ceoWord {
    margin-top: 100px;
    background-image: url(../images/ceoWord.svg);
    background-size: cover;
    background-attachment: fixed;
}

.ceoWord .container {
    position: relative;
    padding-top: 100px;
    padding-bottom: 150px;
}

.ceoWord .firstIcon {
    position: absolute;
    top: 40px;
}

.ceoWord .icons {
    position: absolute;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 16px;
    left: 0;
}

.ceoWord .mainTitle.brownwhite {
    display: flex;
    width: fit-content;
    margin: 0 auto 24px;
    text-align: center;
}

.ceoWord p {
    text-align: center;
    font-size: 16px;
    color: #fff;
    line-height: 26.26px;
    width: 95%;
}

.slick-slide {
    float: right;
}

/* end ceoWord */
/* services */
.services {
    padding-top: var(--mainPt);
}

.services .image-slider img {
    height: 350px;
    object-fit: cover;
    border-radius: 8px;

}

.services .image-slider .slick-active:not(:first-of-type):not(:last-of-type):not(.slick-current) {
    transform: scale(0.9);
    position: relative;
    z-index: -1;
}

.services .image-slider .slick-active:last-of-type {
    transform: scale(0.8) !important;
    position: relative;
    z-index: -9;
}

.services .image-slider.slick-initialized .slick-slide {
    margin-inline-start: -60px;
}

.services .image-slider .slick-slide:not(.slick-active):not(.slick-current) {
    transform: scale(0.7);
}

.services .textSlider {
    margin-bottom: 40px;
}

.services .textSlider .mainTitle {
    margin-bottom: 24px;
}

.services .textSlider .text-slider {
    padding-inline-start: 50px;
    margin-bottom: 30px;
}

.services .textSlider .text-slider h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #353535;
}

.services .textSlider .text-slider p {
    font-size: 20px;
    line-height: 32.82px;
}

.services .text-slider .slick-prev,
.services .text-slider .slick-next {
    position: relative;
    right: unset;
    left: unset;
    top: unset;
    transform: unset;
}

.sliderControls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.custom-dots-container-team,
.custom-dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0;
    margin: 0;
    height: 14px; /* Force consistent height */
}

.custom-dot {
    appearance: none;
    -webkit-appearance: none;
    background-color: #C1C1C1;
    width: 14px;
    height: 14px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    display: inline-block;
    flex: 0 0 14px;
}

.custom-dot.active {
    background-color: #CAAC7B;
    box-shadow: 0 0 10px #00000040;
}


.sliderControls>button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #CAAC7B;
    display: flex;
    align-items: center;
    justify-content: center;

}

.sliderControls>button svg {
    fill: #fff;
}

.sliderControls>button.custom-next-team svg,
.sliderControls>button.custom-next svg {
    transform: rotate(180deg);
}

.sliderControls>button svg path {
    stroke: #fff !important;
}

.sliderControls>button:disabled svg path {
    stroke: #D2D2D2 !important;
}

.sliderControls>button:disabled {
    background-color: #EFEFEF;
}

.sliderControls>button:disabled svg {
    fill: #D2D2D2;
}

.custom-dot.active {
    background-color: #CAAC7B;
    box-shadow: 0 0 10px #00000040;
}
/*project*/
.project{
    background-color: #CAAC7B17;
    padding-bottom: 50px!important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color:#CAAC7B ;
}
.project .item{
    border-radius:15px 40px 15px 40px;
    position: relative;
    transition: all 0.5s ease-in-out;
    color: #CAAC7B;
}
.project .item:hover{
    border-radius: 40px 15px 40px 15px;
}
.project .item .projectItemImg{
    overflow: hidden;
    border-radius:15px 40px 15px 40px;
    transition: all 0.5s ease-in-out;
}
.project .item:hover .projectItemImg{
    border-radius: 40px 15px 40px 15px;
    transition: all 0.5s ease-in-out;
}

.project .item img{
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    height: 190px;
    width: 100%;
    object-fit: cover;
}
.project .item:hover img{
    transform: scale(1.2);
    transition: all 0.5s ease-in-out;
}
.project .item h3{
    font-size: 20px;
    text-align: center;
    padding: 10px 0 0;
    margin-bottom: 0;
}
.project .mainTitle{
    text-align: center;
    margin: 0 auto 50px;
    display: flex;
    width: fit-content;
}
/*end project*/
/* end services */
/*numbers*/
.project,
.numbers {
    padding-top: var(--mainPt);
    padding-bottom: 150px;
}

.numbers .container {
    position: relative;
}

.numbers .container::after,
.numbers .container::before {
    content: '';
    position: absolute;
    top: 100px;
    width: 180px;
    height: 20px;
    background-color: #CAAC7B;
    right: 10px;
}

.numbers .container::after {
    background-color: #353535;
    top: 124px;
    width: 70px;
    right: 0;
}

.ourTeam .mainTitle,
.numbers .mainTitle {
    text-align: center;
    margin: 0 auto 110px;
    display: flex;
    width: fit-content;
}

.numbers .countItem {
    text-align: center;
}

.numbers .countItem h3 {
    color: #CAAC7B;
    font-size: 40px;
    font-weight: 400;
    line-height: 65.64px;
    margin-bottom: 15px;
}

.numbers .lines {
    position: absolute;
    left: 0;
    bottom: -60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.numbers .lines div:first-of-type {
    background-color: #CAAC7B;
    width: 70px;
    height: 20px;
    display: block;
}

.numbers .lines div:last-of-type {
    background-color: #353535;
    width: 180px;
    height: 20px;
    display: block;
    margin: 4px 10px;
}

/* whyDahliez */
.whyDahliez {
    background-image: url(../images/ceoWord.svg);
    background-size: cover;
    background-attachment: fixed;
    padding-top: 40px;
    padding-bottom: var(--mainPt);
    position: relative;
}

.whyDahliez .mainTitle h3 {
    color: #fff;
}

.whyDahliez .mainTitle {
    margin-bottom: 40px;
}

.whyDahliez .whyText {
    padding-inline-start: 60px;
}

.whyDahliez .whyText .whyItem {
    display: flex;
    color: #fff;
    gap: 24px;
    margin-bottom: 24px;
}

.whyDahliez .whyText .whyItem h3 {
    font-size: 20px;
    line-height: 32.82px;
    font-weight: 400;
    margin-bottom: 16px;
}

.whyDahliez .whyText .whyItem p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 26.26px;
}

.whyDahliez .whyText .whyItem .number {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #CAAC7B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyDahliez img {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.ourTeam {
    padding-top: 40px;
    padding-bottom: 70px;
}

.ourTeam .mainTitle {
    margin-bottom: 40px;
}

.ourTeam .sliderControls {
    margin-top: 50px;
}

.ourTeam .slick-slide {
    border: 1px solid #EBEBEB;
    border-radius: 15px;
}

.ourTeam .slick-slide img {
    border-radius: 15px;
}

.ourTeam .slick-slide h3 {
    font-size: 16px;
    margin-bottom: 24px;
}

.ourTeam .slick-slide h3:last-of-type {
    color: #CAAC7B;
    margin-bottom: 0;
}

.ourTeam .slick-slide .textTeam {
    padding: 24px 16px;
}

.partners .partnerImgs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.partners .partnerImgs img {
    width: 150px;
    object-fit: contain;
}

.partners {
    padding: 70px 0 80px;
}

footer {
    background-color: #CAAC7B;
    padding: 40px 0 65px;
}

footer img.footerLogo {
    margin: auto;
    display: block;
    width: 180px;
    object-fit: contain;
    margin-bottom: 40px;
}

footer hr {
    background-color: #fff;
    border-top: 1px solid #fff;
    opacity: 1;
}

footer .footerContact ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

footer .footerContact .icon {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footerContact ul li a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 20px;
    line-height: 32.82px;
}

footer .footerContact h3 {
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 39.38px;
}

/* slick */
.slick-initialized .slick-slide {
    margin: 10px;
}

.mobIcon {
    background-color: transparent;
    border: none;
    display: none;
}

.overLay {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: #caac7b56;
    z-index: 9;
}

.openOverLay {
    transition: all 0.5s ease-in-out;
    left: 0;
}

.moblogo {
    display: none;
}
.moblogo img{
    width: 130px;
    object-fit: contain;
}

.scrolled .logoA img:first-of-type {
    display: none;
}

header .logoA img.logoB {
    display: none;
}

header.scrolled .logoA img.logoB {
    display: block;
}

@media (max-width:1400px) {

    .about .aboutImg::after,
    .about .aboutImg::before {
        left: 0;
    }

    .experience .ValuesDiv ul li:not(:first-of-type) {
        margin-inline-start: 80px;
    }
}

@media (max-width:1200px) {
    .experience .mvg {
        padding-inline-start: 40px;
    }

    .experience {
        padding-bottom: 0px;
    }

    .experience .ValuesDiv ul li:not(:first-of-type) {
        margin-inline-start: 50px;
    }

    .experience .mvg .mvgItem h3 {
        margin-bottom: 10px;
    }

    .experience .mvg {
        position: relative;
        padding-top: 85px;
        padding-inline-start: 100px;
    }

    .experience .mvg::after {
        width: 530px;
        height: 475px;
    }

    .experience .mvg .mvgItem p {
        max-width: 340px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .experience .mvg .mvgItem:not(:last-of-type) {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .experience .mvg .mvgItem .icon {
        width: 70px;
        height: 60px;
    }

    .experience .mvg .mvgItem .icon img {
        width: 35px;
        height: 35px;
    }

    .experience .experienceDiv {
        margin-bottom: 60px;
    }

    .ceoWord {
        margin-top: 40px;
    }
}

@media (max-width:992px) {

    .ourTeam {
        padding-bottom: 0;
    }

    .whyDahliez .whyText .text {
        width: 85%;
    }

    .whyDahliez .whyText .whyItem {
        margin-bottom: 10px;
    }

    .scrolled svg path,
    .scrolled svg g#text-edit>g {
        fill: #353535;
    }

    .moblogo {
        display: block;
    }

    .mobIcon {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        background-color: #fff;
        width: 250px;
        position: fixed;
        top: 0;
        right: -250px;
        height: 100%;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease-in-out;
        z-index: 99;
    }

    .openNav {
        right: 0;
        transition: all 0.5s ease-in-out;
    }

    header nav ul li a {
        color: #353535;
    }

    header nav ul {
        gap: 30px;
    }

    .services .textSlider .text-slider h3 {
        margin-bottom: 10px;
    }

    .services .textSlider {
        margin-bottom: 14px;
    }

    .services .textSlider .text-slider p {
        font-size: 16px;
    }

    .services .textSlider .mainTitle {
        margin-bottom: 10px;
    }

    .services .textSlider .text-slider {
        margin-bottom: 15px;
    }

    .experience {
        padding-bottom: 20px;
    }

    :root {
        --mainPt: 20px;
    }

    .experience .mvg::after {
        height: 360px;
    }

    .pTitle {
        padding-inline-start: 45px;
    }

    .experience .experienceDiv p {
        margin-bottom: 19px;
    }

    .mainTitle {
        padding-inline-start: 50px;
    }

    .mainTitle::before {
        right: 20px;
    }

    .mainTitle h3 {
        font-size: 25px;
    }

    .mainTitle::after,
    .mainTitle::before {
        width: 15px;
        height: 55px;
    }

    .experience .ValuesDiv ul {
        margin-top: 18px;
    }

    .experience .ValuesDiv .valueNum {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .experience .ValuesDiv .valueText {
        font-size: 16px;
    }

    .experience {
        overflow: unset;
    }

    .experience .mvg {
        padding: 20px;
    }

    .experience .mvg .mvgItem .icon {
        width: 70px;
        height: 70px;
    }

    .experience .mvg::after {
        width: 100%;
        border-radius: 0;
        border-radius: 20px;
    }

    .experience .experienceDiv p,
    .about .aboutText p {
        font-size: 17px;
        line-height: 29px;
    }

    .about .aboutImg img {
        height: 400px;
    }

    .experience .mvg .mvgItem p {
        font-size: 15px;
        line-height: 24px;
        max-width: 315px;
    }

    .experience .experienceDiv {
        margin-bottom: 25px;
    }

    .about .aboutImg img {
        width: 100%;
    }

    .about .aboutImg {
        margin-bottom: 30px;
    }

    .whyDahliez .whyText .whyItem {
        gap: 18px
    }
}

@media(max-width:768px) {
    .whyDahliez img{
        width: 150px;
        object-fit: contain;
    }
    .logoA img {
        width: 100px;
        object-fit: contain;
    }

    header nav .contactUs {
        height: 30px;
        font-size: 14px;
        padding: 2px 10px;
    }

    .about .aboutImg img {
        height: 250px;
    }

    .downScroll {
        width: 20px;
        height: 50px;
    }

    .mainBanner .bannerLogo img {
        width: 180px;
        margin-bottom: 20px;
    }

    .mainBanner .bannerLogo h2 {
        font-size: 20px;
    }

    .experience .experienceDiv p {
        margin-top: 10px;
    }

    .pTitle {
        padding-inline-start: 26px;
    }

    .experience .experienceDiv p,
    .about .aboutText p {
        font-size: 15px;
        line-height: 25px;
    }

    .experience .mvg .mvgItem .icon {
        width: 50px;
        height: 50px;
    }

    .experience .mvg .mvgItem p {
        font-size: 14px;
        line-height: 24px;
        width: 270px;
    }

    .experience .mvg .mvgItem .icon img {
        width: 25px;
        height: 25px;
    }

    .mainTitle h3 {
        font-size: 22px;
    }

    .ceoWord p {
        font-size: 16px;
    }

    .whyDahliez .whyText {
        padding-inline-start: 0;
    }

    .ceoWord .icons {
        left: 20px;
    }

    .ceoWord .icons img:last-of-type,
    .ceoWord .firstIcon {
        width: 150px;
    }

    .partners .partnerImgs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .whyDahliez .mainTitle,
    .ourTeam .slick-slide h3 {
        margin-bottom: 15px;
    }

    .whyDahliez .whyText .whyItem h3 {
        margin-bottom: 5px;
        font-size: 22px;
    }

    .ourTeam .slick-slide .textTeam {
        padding: 16px;
    }

    .whyDahliez .whyText .whyItem p {
        font-size: 14px;
    }

    .text-slider .slick-initialized .slick-slide {
        margin: 0;
    }

    .services .image-slider.slick-initialized .slick-slide {
        margin-inline-start: 0;
    }

    .services .image-slider .slick-active:last-of-type,
    .services .image-slider .slick-slide:not(.slick-active):not(.slick-current),
    .services .image-slider .slick-active:not(:first-of-type):not(:last-of-type):not(.slick-current) {
        transform: scale(1) !important;
    }

    .services .image-slider img {
        width: 100%;
    }

    footer .footerContact ul {
        flex-wrap: wrap;
    }
}

@media(max-width:420px) {

    .experience .experienceDiv p,
    .about .aboutText p {
        font-size: 14px;
        line-height: 22px;
    }

    .experience .ValuesDiv ul li:not(:first-of-type) {
        margin-inline-start: 25px;
    }

    .experience .mvg .mvgItem p {
        font-size: 14px;
        line-height: 24px;
        width: 200px;
    }

    .experience .mvg .mvgItem {
        gap: 15px;
    }

    .ceoWord p {
        font-size: 14px;
    }

    .numbers .countItem h3 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 5px;
    }

    .numbers .countItem p {
        font-size: 16px;
    }

    footer .footerContact ul {
        flex-direction: column;
        gap: 20px;
    }

    footer .footerContact ul li {
        width: 200px;
    }
}

@media(max-width:350px) {
    .experience .ValuesDiv ul li:not(:first-of-type) {
        margin-inline-start: 10px;
    }
}
/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
    .custom-dots-container-team,
    .custom-dots-container {
        display: inline-flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
    }

    .custom-dot {
        position: relative;
        display: block;
        width: 14px;
        height: 14px;
        padding: 0;
        margin: 0;
        flex: 0 0 14px;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        border-radius: 50%;
        -webkit-appearance: none;
        appearance: none;
    }

    .custom-dot::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        background: inherit;
    }

    .sliderControls > button {
        position: relative;
        width: 40px;
        height: 40px;
        padding: 0;
        margin: 0;
        flex: 0 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 50%;
        background-color: #CAAC7B;
        -webkit-appearance: none;
        appearance: none;
    }

    .sliderControls > button svg {
        width: 25px;
        height: 25px;
        flex: 0 0 35px;
    }
}