.banner {
    position: relative;
}
.banner__image {
    display: block;
    width: 100%;
    height: 80vh;
    max-height: 700px;
    object-fit: cover;
}
.banner__phrase {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px;
    box-sizing: border-box;
    width: 100%;
    max-width: 800px;
}
.banner__heading {
    color: white;
    margin-bottom: 32px;
}
.banner__phrase {
    color: white;
}

.searcher {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background: linear-gradient(135deg, #1a3d73, #0d2257);
    padding: 32px;
    box-sizing: border-box;
}
.searcher__paragraph {
    max-width: 600px;
}
.searcher__image {
    width: 100%;
    max-width: 500px;
}
#search-form {
    margin: 0 !important;
    padding: 32px 0 !important;
}

.latest {
    padding: 64px 32px;
}
.latest__heading {
    text-align: center;
}

.services {
    padding: 64px 32px;
    background: linear-gradient(-135deg, #1a3d73, #0d2257);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-content: center;
}

.service__circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #004f8c;
    margin: 0 auto;
}

.service__image {
    width: 100%;
    height: 100%;
    padding: 24px;
    box-sizing: border-box;
}

.credits {
    padding: 64px 32px;
}

.credits__image {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 64px auto;
}

@media (max-width: 1200px) {
    .searcher {
        grid-template-columns: 1fr;
    }

    .searcher__heading {
        text-align: center;
    }

    .searcher__separator {
        margin: 0 auto;
    }

    .searcher__paragraph {
        text-align: center;
        margin: 0 auto;
    }

    #search-form {
        margin: 0 auto !important;
    }

    .searcher__image {
        display: block;
        margin: 0 auto;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service {
        max-width: 500px;
        margin: 0 auto;
    }
}