html,
body {
    font-family: Roboto;
    padding: 0px;
    margin: 0px;
    background-color: #fff;
}

header {
    display: flex;
    align-items: center;
    height: 80px;
    color: #fff;
    background-color: #fff;
    box-shadow: 0px 0px 10px #888;
    background-repeat: repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 10;
}

header img {
    height: 45px;
}

header figure {
    margin: 0px;
}

header a {
    display: inline-block;
}

header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .contact-us {
    color: #fff;
    background-color: #d83241;
    text-decoration: none;
    padding: 10px;
    font-size: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

header .contact-us img {
    height: 25px;
    margin-right: 15px;
}

header .location {
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #000000;
    text-decoration: none;
    text-align: center;
}

header .location img {
    margin-right: 5px;
}

.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-color: #fff;
}

.hero .content {
    padding-top: 130px;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero section {
    flex-grow: 1;
    flex-shrink: 0;
}

.button {
    background-color: #d83241;
}

.hero h1 {
    color: #0b111a;
    font-size: 52px;
    margin: 0px;
    margin-bottom: 5px;
}
.hero h2 {
    color: #0b111a;
}

.hero p {
    color: #1a0b0b;
    font-size: 24px;
    margin: 0px;
}

.hero section ul {
    margin: 0px;
    color: #0b111a;
    font-size: 20px;
    list-style-image: url("/images/check.svg");
}

ul li {
    margin-bottom: 10px;
}

.hero section ul ul {
    margin-top: 10px;
    list-style-type: disc;
    list-style-image: none;
}

.hero section ul ul li {
    margin-bottom: 5px;
}

.cta-button {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    background-color: #d83241;
    text-decoration: none;
    border-radius: 25px;
    padding: 15px 50px;
}

.cta-button:hover {
    background-color: #98141f;
    transition: all 0.3s linear;
}

.hero .scroll {
    position: absolute;
    left: calc(50% - 25px);
    bottom: 25px;
}

.hero .adnotation {
    font-size: 20px;
}

.spacing {
    margin-bottom: 50px;
}

.spacing-medium {
    margin-bottom: 25px;
}

.services {
    margin-top: 25px;
    margin-bottom: 25px;
}

.services h2 {
    margin-bottom: 25px;
    font-size: 35px;
}

.gallery {
    justify-content: flex-start;
}

.gallery figure {
    margin: 10px;
    display: inline-block;
}

.gallery img {
    width: 100%;
}

.gallery a {
    text-decoration: none;
}

.gallery .cta-button {
    margin-top: 50px;
    margin-bottom: 30px;
}

.clients .item {
    margin: 10px;
    box-shadow: 0px 0px 10px #888;
    padding: 25px;
    text-align: center;
}

.clients .item img {
    width: 50px;
}

.clients .item h3 {
    font-size: 20px;
    margin: 0px;
    margin-bottom: 10px;
}

.clients .item p {
    font-size: 18px;
    color: #17191a;
}

@media screen and (max-width: 992px) {
    .hero {
        margin-top: 160px;
        align-items: start;
        min-height: unset;
    }

    .hero .content {
        padding-top: 25px;
    }

    .cta-button {
        display: block;
        text-align: center;
        padding: 15px 5px;
    }

    header img {
        width: 175px;
        height: auto;
    }

    header {
        height: 160px;
    }

    .hero .cta-button {
        display: none;
    }

    header .content {
        flex-direction: column;
    }

    header .content {
        gap: 10px;
    }

    header .contact-us {
        font-size: 20px;
    }

    header .contact-us img {
        height: 25px;
        width: 25px;
    }

    header .location img {
        height: 25px;
        width: 25px;
    }
}
