@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Oswald:wght@400;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

.button{
    display: inline-block;
    border: 3px solid #454545;
    padding: 10px 35px;
    border-radius: 3px;
    color: #454545;
    text-decoration: none;
}

.button:hover{
    background-color: #454545;
    color: #fff;
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 90px;
    line-height: 100px;
    margin: 0;
    margin-bottom: 30px;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 35px;
    line-height: 45px;
    margin: 20px 0;
}

.bar {
    background-color: #006341;
    width: 168px;
    height: 22px;
}

.container {
    max-width: 1140px;
    margin: auto;
}

header .line {
    background-color: #117050;
    height: 10px;
}


.header_area{
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
}

.header_left img {
    width: 64px;
    height: 64px;
}

.header_right {
    display: flex;
    align-items: center;
}

.header_search form {
    display: flex;
}

.header_search input {
    font-size: 16px;
    padding: 8px 15px;
    border: 1px solid #999999;
    outline: none;
    width: 100%;
    max-width: 250px;
}

.header_search button {
    border: 0;
    background: transparent;
    margin-left: -30px;
    cursor: pointer;
}

.header_search button img {
    width: 16px;
    height: 16px;
}

.header_menu{
    margin-left: 50px;
    cursor: pointer;
}

.header_menu img{
    width: 24px;
    height: 24px;
}

.banner {
    background-image: url(../images/bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 90px 0;
}

.banner_images{
    margin-top: 60px;
}

.banner_images img {
    width: 148px;
    height: 148px;
    border: 6px solid #117050;
    border-radius: 50%;
    margin-right: 40px;
}

.area1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.area1_content {
    padding: 80px;
}

.area1_quote{
    margin-bottom: 30px;
}

.area1_text {
    margin-bottom: 50px;
    line-height: 20px;
}

.area1_img1{
    height: 350px;
    background-image: url(../images/f2.jpg);
    background-position: center;
    background-size: cover;
}

.area1_img2{
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    background-image: url(../images/f1.jpg);
    background-position: center;
    background-size: cover;
}


.area2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.area2_content {
    padding: 80px;
}

.area2_quote{
    margin-bottom: 30px;
}

.area2_text {
    margin-bottom: 50px;
    line-height: 20px;
}

.area2_img1{
    height: 450px;
    background-image: url(../images/f4.jpg);
    background-position: center;
    background-size: cover;
}

.area2_img2{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background-image: url(../images/f3.jpg);
    background-position: center;
    background-size: cover;
}

.area3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.area3_content {
    padding: 200px 80px;
    background-image: url(../images/bg2.jpg);
    background-position: left;
    background-size: cover;
}

.area3_text {
    margin-bottom: 50px;
    line-height: 20px;
}

.area3_img1{
    background-image: url(../images/f5.jpg);
    background-position: center;
    background-size: cover;
}

.area4{
    display: grid;
    grid-template-columns: 450px 1fr;
    background-color: #e8e9ee;
}

.area4_content{
    padding: 150px 80px;
}

.area4_text{
    margin-bottom: 50px;
    line-height: 20px;
}

.area4_img1 {
    background-image: url(../images/bg3.jpg);
    background-position: left;
}

.area5{
    background-image: url(../images/bg4.jpg);
    background-position: center;
    background-size: cover;
    height: 600px;
}

footer{
    background-color: #333;
    color: #fff;
    padding: 80px;
    text-align: center;
}


/*RESPONSIVO*/

@media (min-width: 769px) and (max-width:1140px){
    .container{
        padding: 0 20px;
    }
}

@media (min-width: 426px) and (max-width: 768px){
    .container{
        padding: 0 20px;
    }

    .area1{
        grid-template-columns: 3fr 2fr;
    }

    .area2{
        grid-template-columns: 2fr 3fr;
    }

    .area3{
        grid-template-columns: 3fr 2fr;
    }
}

@media (max-width: 425px){
    .container{
        padding: 0 20px;
    }

    .header_menu{
        margin-left: 20px;
    }

    .header_search input{
        max-width: 80px;
    }
    
    h1 {
        font-size: 50px;
        line-height: 50px;
    }

    h2{
        font-size: 25px;
        line-height: 30px;
    }

    .banner_images img {
        width: 70px;
        height: 70px;
        border: 3px solid #117050;
        border-radius: 50%;
        margin-right: 10px;
    }

    .area1,
    .area2,
    .area3,
    .area4 {
        grid-template-columns: 1fr;
    }

    .area1_content,
    .area2_content,
    .area3_content,
    .area4_content{
        padding: 40px;
    }

    .area5{
        height: 200px;
    }

    footer{
        font-size: 12px;
        padding: 40px 20px;
    }
}