.home-slider{
    width: 100%;
    height: 650px;
    margin-top: 78px;
    position: relative;
    overflow: hidden;
    background: rgb(0, 0, 0);
    box-shadow: 0 2px 10px rgba(35, 35, 35, 0.671);
    animation: fade-in 1s ease-out forwards, zoom-out 2.5s ease-out forwards;
}

.slider-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.slider-container{
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    color: white;
}

#slider-image{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    display: grid;
    align-items: center;
}

.home-title{
    width: 70%;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.612);
    opacity: 0;
    animation: fade-in-title 0.7s 0.5s ease-out forwards;
}

.home-title h1{
    font-size: 100px;
    margin: 0;
    line-height: 130px;
    color: white;
}

/* ---------------------------- */
.section-we-are{
    position: relative;
}
.we-are-description{
    width: 50%;
    padding: 10px 50px 10px 10px;
}

.about-img{
    width:40%;
    margin-top: 20px;
}

.we-are-description h1{
    margin-bottom: 0;
}
.we-are-description h1::after{
    content: '';
    position: absolute;
    border-bottom: var(--primary-color) solid 3px;
    left: -200px;
    right: 70%;
    top: 150px;
}

.we-are-description p{
    padding-bottom: 20px;
}
.we-are-description p span{
    font-size: 30px;
}

/* +++ */

.features-list{
    width: 90%;
}

.features-list .feature{
    width: 60%;
    height: 90px;
    margin-bottom: 50px;
    justify-content: flex-start;
    align-items: center;
}

.features-list .feature p{
    width: 180px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    align-items: flex-start;
}
.features-list .feature p span{
    font-size: 15px;
}

.features-list .feature .progress{
    width: 100%;
    position: relative;
    align-items: flex-start;
}
.features-list .feature .progress h1{
    line-height: 60px;
    margin: 0;
}
.features-list .feature .progress-bar{
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(30deg, #7800FF, #00BBFF);
}

.features-list .feature:first-child .progress-bar{
    width: 60%;
}

/* ----------------------------------------- */
.section-vacancy{
    position: relative;
}
.section-vacancy h1{
    margin: 0;
    text-align: center;
}
.vacancy{
    width: 80%;
    height: fit-content;
    justify-content: space-evenly;
}

.vacancy img{
    width: 50%;
}

.vacancy-description{
    align-items: flex-start;
}

/* ---------------- */
.section-our-clients{
    position: relative;
}

.client-list{
    width: 70%;
    gap: 30px 80px;
}

.client-list  .client-logo{
    width: 150px;
    object-fit: fill;
    filter: grayscale(100%);
    transition: all 0.15s ease-in;
}
.client-list  .client-logo:hover{
    transform: scale(1.15);
    filter: grayscale(0%);
}

/* --------------------- */

.section-our-partners{
    position: relative;
}
.section-our-partners h1{
    text-align: center;
}

.partner-item{
    width: 220px;
    transition: all 0.15s ease-in;
}

.partner-item img{
    width: 200px;
}
.partner-item:hover{
    transform: scale(1.06);
}

.partner-list h1{
    width: 100%;
    margin-bottom: 0;
}

.moregreat_trusted_img{
    width: 60%;
}