.text_with_image{
    padding: 50px 0px;
}
.text_with_image .outer_container{
    display: flex;
    flex-wrap: wrap;
    gap:2rem;
    flex-direction: row-reverse;
}
.text_with_image .content_wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.text_with_image .content_wrapper h2 {
    font-size: 30px;
    font-weight: 700;
}
.text_with_image .content_wrapper p {
    font-family: var(--tertiary-font);
    font-size: 1.1em;
    line-height: 1.6;
}

.text_with_image .image_wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text_with_image .image_wrapper img{
    max-width: 100%;
    height: auto;
}

@media (min-width:768px) {
    .text_with_image{
        padding: 70px 0px;
    }
    .text_with_image .content_wrapper h2 {
        font-size: 3.2em;
    }
    .text_with_image .content_wrapper{
        max-width: calc(50% - 2rem * 1 / 2);
    }
    .text_with_image .image_wrapper{
        max-width: calc(50% - 2rem * 1 / 2);
    }
}


.development_services{
    padding: 20px;
}

.development_services .outer_container{
    display: flex;
    flex-direction: column;
}

.development_services .outer_container .above_heading{
    text-align: center;
    color: #007bff;
    font-size: 18px;
    text-transform: uppercase;
}

.development_services .outer_container .heading{
    padding: 10px;
    text-align: center;
    font-size: 30px;
}

.development_services .services_wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
.development_services .services_item{
    width: 100%;
    background-color: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.development_services .services_icon img{
    width: 50px;
    height: auto;
}

.development_services .services_content h3{
    font-size: 23px;
    padding-bottom: 10px;
}
.development_services .services_content p{
    font-size: 16px;
    color: #aaa;
}

@media (min-width:576px) {
    .development_services .services_item{
        flex-direction: row;
        text-align: start;
    }
}
@media (min-width:768px) {
    .development_services{
        padding: 50px;
    }
    .development_services .outer_container .above_heading{
        font-size: 24px;
    }
    
    .development_services .outer_container .heading{
        font-size: 50px;
    }
    .development_services .services_item{
        max-width: calc(50% - 20px * 1 / 2);
    }
}

