@charset "utf-8";

.title {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.title h1 {
    font-family: "Outfit", sans-serif;
    font-size: 32px;
    font-weight: bold;
}
  
.title p {
    font-size: 14px;
    margin-top: 15px;
}

.feature {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    max-width: 90%;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}

.feature img {
    width: 360px;
    margin-bottom: 100px;
}

.feature-text {
    max-width: 640px;
    margin-right: 60px;
}

.reverse {
    flex-direction: row-reverse;
}

.reverse .feature-text {
    margin-left: 60px;
    margin-right: 0;
}

.feature-text h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
}

.feature-text p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 25px;
    margin-bottom: 50px;
}

.footer {
    margin-top: 100px;
}

@media (max-width: 800px) {
    .feature {
        display: block;
        width: 500px;
        margin-top: 25px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .feature-text {
        margin-right: 0;
        margin-left: 0;
        margin-top: 25px;
    }
    
    .feature img {
        width: 100%;
        height: auto;
        margin-top: 25px;
    }

    .reverse .feature-text {
        margin-right: 0;
        margin-left: 0;
    }

}

