.services-header{
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
}

.services-header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-header__filter{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(0deg, var(--header) 0%, #08174C38 100%);
}

.services-header__container{
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    bottom: 30px;
}

.services-header__title{
    text-transform: capitalize;
    font-family: "Syne", "sans-serif";
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1px;
}

.services-header__list{
    list-style: none;
    display: flex;
    padding-left: 0;
    align-items: center;
    gap: 10px;
    font-family: "Raleway", "sans-serif";
    font-weight: 200;
    font-size: 16px;
}

.services-header__container a {
    color: white;
    text-decoration: none;
}

.section__subtitle {
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    font-family: "Raleway", "sans-serif";
}

.section__title{
    font-size: 35px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "Syne", sans-serif;
    text-align: start;
    color: var(--header);
}

.section__paragraph{
    font-weight: 300;
    color: var(--light-gray);
    font-family: "Raleway", sans-serif;
}

.card{
    color: var(--header);
    border: 1px solid var(--border)
}
.card:hover{
    border: 1px solid var(--primary);
    cursor: pointer;
}

.card__icon-wrapper{
    background: white;
    transition: background 0.5s linear;
}

.card__icon-wrapper i {
    color: var(--primary);
    transition: color 0.5s linear;

}

.card:hover .card__icon-wrapper{
    background: var(--primary);
    border: none;
}

.card:hover [data-lucide]{
    stroke: white;
}

.card__icon-wrapper{
    width: 80px;
    height: 80px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--primary);
}

.card__offer-title{
    font-family: "Syne", "sans-serif";
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 1px;
}

.card__offer-description{
    font-family: "Raleway", "sans-serif";
    font-size: 16px;
    font-weight: 300;
}

.gray-bg{
    background: var(--navbar);

}

.section__why-choose-us-img-wrapper{
    width: 100%;
}

.section__why-choose-us-img-wrapper img{
    width: 100%;
    object-fit: cover;
}

.section__title--small{
    font-size: 23px;
    font-weight: 300;
    font-family: "Syne", sans-serif;
}

.section__why-choose-us-icon-wrapper{
    width: 70px;
    height: 70px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 35px;
}


@media (min-width: 576px) {
}

@media (min-width: 768px) {
    .services-header{
        aspect-ratio: 2 / 1;
    }
    .section__title{
        font-size: 40px;
    }
    .services-header__title{
        font-size: 45px;
    }


}
@media (min-width: 992px) {
    .services-header{
        aspect-ratio: 3 / 1;
    }
    .section__title{
        font-size: 45px;
    }
}

@media (min-width: 1200px) {
}


@media (min-width: 1400px) {
    .services-header{
        aspect-ratio: 3.5 / 1;
    }
    .services-header__title{
        font-size: 55px;
    }

    .section__title{
        font-size: 55px;
    }
    .section__paragraph{
        width: 50%;
    }
}