.image-wrapper {
    height: 70vh;
    background-size: cover;
    width: auto;
}

.our-services {
    background-color: var(--background-color);
    padding: 100px ;
}


.our-services .container .title {
    color: var(--font-color);
}
.our-services .container .subtitle-up {
    color: var(--secondary-color);
}
.our-services .container .services__wrapper {

}
.our-services .services__wrapper .items__wrapper {
    padding: 0;
    margin-bottom: 0px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.our-services .services__wrapper .item {
    margin: 0 20px;
    min-width: 400px;
    min-height: 300px;
    width: 400px;
    height: auto;
    background: var(--secondary-color);
    color: white;
    text-align: start;
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 10px;
}

.our-services .services__wrapper .item .item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.our-services .services__wrapper .item .item-info img{
    color: white;
    width: 70px;
    margin-bottom: 20px;
}
.our-services .services__wrapper .item .item-info h2 {
    font-size: 24px;
    font-weight: bold;

}
.our-services .services__wrapper .item .item-info p {
    font-size: 16px;
    font-weight: lighter;

}   
.our-services .services__wrapper .item .item-info .btn {
    display: block;
    color: white ;
    border-radius: 0;
    border: solid 1px white;
    padding: 5px 40px;
    transition: all 0.4s;
}
.our-services .services__wrapper .item .item-info .btn:hover {
    color: var(--secondary-color);
    background-color: white;
}

@media (max-width:1200px) {
    .our-services .services__wrapper .items__wrapper {
        flex-wrap: wrap;
    }
}
@media (max-width:1100px) {
    .our-services {
        padding: 50px ;
    }
}

@media (max-width: 600px) {
    .our-services {
        padding: 20px ;
    }
    .our-services .services__wrapper .items__wrapper {
        flex-wrap: wrap;
    }
    .our-services .services__wrapper .item {
        min-width: 100px ;

        width: 90%;
        height: auto;
    }

}