@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&family=Oswald:wght@200..700&display=swap');

:root {
    --bkg-color-one: #117050;
    --bkg-color-two: #454545;
    --bkg--color-three: #e8e9ee;
    --bkg--color-four: #333;
    /* -------------------------- */
    --border-color-one: #999999;
    --border-color-two: #117050;
    --border-color-three: #454545;
    /* -------------------------- */
    --color-one: #454545;
    --color-two: #FFF;
}

* {
    margin: 0%;
    padding: 0%
}

body {
    font-family: "Open Sans", sans-serif;
}

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

.bar {
    width: 168px;
    height: 22px;
    background: var(--bkg-color-one);
}

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

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

.button {
    display: inline-block;
    border: 2px solid var(--border-color-three);
    padding: 10px 30px;
    border-radius: 3px;
    color: var(--color-one);
    text-decoration: none;
}

.button:hover {
    color: var(--color-two);
    background: var(--bkg-color-two);
}

header .line {
    background: var(--bkg-color-one);
    height: 10px;
}

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

}

.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 var(--border-color-one);
    outline: 0;
    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: url(./images/bg.jpg);
    background-position: center;
    background-size: cover;
    padding-top: 190px;
    padding-bottom: 190px;
}

.banner--images {
    margin-top: 60px;
}

.banner--images img {
    width: 148px;
    height: 148px;
    margin-right: 40px;
    border-radius: 50%;
    border: 6px solid var(--border-color-two);
}

.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: 25px;
}

.area1--img1 {
    height: 450px;
    background: url(./images/f2.jpg);
    background-size: cover;
    background-position: center;
}

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

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

.area2--content {
    padding: 80px;
}


.area2--text {
    margin-bottom: 50px;
    line-height: 25px;
}

.area2--img1 {
    height: 650px;
    background: url(./images/f4.jpg);
    background-size: cover;
    background-position: center;
}

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

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

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


.area3--text {
    margin-bottom: 50px;
    line-height: 25px;
}

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

.area4 {
    display: grid;
    grid-template-columns: 450px 1fr;
    background: var(--bkg--color-three);
}

.area4--content {
    padding: 150px 80px;
}

.area4--text {
    margin-bottom: 50px;
    line-height: 25px;
}

.area4--img1 {
    background: url(./images/bg3.jpg);
    background-position: left;
    margin-left: 350px;
}

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

footer {
    background: var(--bkg--color-four);
    color: var(--color-two);
    padding: 80px;
    text-align: center;
}

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

@media (min-width:426px) and (max-width:768px) {
    .container {
        padding-left: 20px;
        padding-right: 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-left: 20px;
        padding-right: 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 var(--border-color-two);
        margin-right: 10px;
    }

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

    .area1--content, .area2--content, .area3--content, .area4--content {
        padding: 40px;
    }

    .area1--img1 {
        height: 150px;
    }

    .area2--img1 {
        height: 200px;
    }

    .area5 {
        height: 200px;
    }

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

}
