.three{
    width: 100%;
    height: auto;
    background-color: aqua;
}

.three .three_one{
    width: 100%;
    height: 100%;
    background-color: antiquewhite;
}

.three h2{
    color: orange;
}


.three .three_one .header {
    position: relative;
}
.three .three_one .header img {
    width: 100%;
    height: auto;
}
.three .three_one .header .overlay {
    position: absolute;
    top: 20%;
    left: 10%;
    background-color: #f39c12;
    padding: 10px 20px;
}
.three .three_one .header .overlay h2 {
    margin: 0;
    font-size: 24px;
}
.three .three_one .header .overlay a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.three .three_one .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.three .three_one .content .text {
    flex: 1;
    padding: 20px;
}
.three .three_one .content .text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: orange;
}
.three .three_one .content .text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.three .three_one .content .text .features {
    display: flex;
    justify-content: space-between;
}
.three .three_one .content .text .features div {
    text-align: center;
}
.three .three_one .content .text .features div i {
    font-size: 24px;
    margin-bottom: 10px;
}
.three .three_one .content .image {
    flex: 1;
    padding: 20px;
}
.three .three_one .content .image img {
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
}