body {
    font-family: 'Sofia Sans', sans-serif;
}

h3, h2 {
    font-weight: bold;
    color: #9f172b;
}

img {
    max-width: 100%;
    height: auto;
}

#site-header {
    z-index: 2;
    width: 100%;
    padding: 15px 0;
    background-color: #FFFFFF;
}

#header-spacer {
    height: 92px;
    position: relative;
    z-index: 1;
}

#site-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

#site-navigation ul li {
    margin-right: 30px;
}

#site-navigation ul li:last-child {
    margin-right: 0;
}

#site-navigation ul li a {
    text-decoration: none;
    color: #9f172b;
    font-size: 20px;
    font-weight: 500;
}

#site-navigation ul li a:hover {
    text-decoration: underline;
    text-decoration-color: #9f172b;
}

.page-header {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/gavel.jpg");
    padding-top: 30%;
}

.page-header.smaller-header {
    padding-top: 20%;
}

.page-section {
    padding: 50px 10px 20px 10px;
}

.box-with-icon i{
    width: 80px;
    margin: 0 auto 30px auto;
    font-size: 40px;
    height: 80px;
    background-color: #9f172b;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-with-icon {
    margin-bottom: 50px;
    text-align: center;
}


.box-with-icon p {
    margin-bottom: 0;
}

.page-section-grey {
    background-color: #F4F4F4;
}

.page-section-pink {
    background-color: #ff7bac;
}

.page-section-blue {
    background-color: #9f172b;
}

.page-section-blue * {
    color: #FFFFFF;
}

#who-we-are-image {
    margin-bottom: -200px;
    margin-left: auto;
    margin-top: 50px;
    margin-right: auto;
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(10, 148, 190, 0.99);
}

#who-we-are-image img {
    width: 100%;
}

#about {
    padding-top: 250px;
}

#clients {
    padding-bottom: 0;
    border-bottom: 4px solid #9f172b;
    border-top: 4px solid #9f172b;
}

#client-cloud {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.client {
    width: 20%;
    margin: 0 0 50px 0;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center;
    padding: 0 10px;
}

#banner-mod {
    text-align: center;
}

#contact {
    padding-bottom: 70px;

}

.btn-primary {
    background-color: #9f172b;
}

p a {
    color: #9f172b;
}

#site-footer {
    background: #E5E5E5;
    padding: 60px 10px;
}

#contact-form-errors {
    margin-bottom: 20px;
    background-color: rgba(100,26,33,0.1);
    padding: 10px;
    border-radius: 5px;
    display: none;
}

#about,
#what-we-do {
    padding-bottom: 0;
}

#contact-form-errors * {
    color: #6a1a21;
    margin-bottom: 0;
}

#contact-form-sent{
    margin-bottom: 20px;
    background-color: rgba(20,108,167,0.1);
    padding: 10px;
    border-radius: 5px;
    display: none;
}

#contact-form-sent * {
    color: #146c43;
    margin-bottom: 0;
}

#mobile-menu-toggle {
    display: none;
    font-size: 20px;
}

@media all and (max-width: 1200px) {
   #mobile-menu-toggle {
       display: block;
   }


    iframe {
        max-width: 100%;
    }






    #site-header {
        position: relative;
        height: auto;
    }

    #header-spacer {
        display: none;
    }


}


@media all and (min-width: 767px) {
    p.larger-on-desktop {
        font-size: 18px;
    }
}

@media all and (max-width: 767px) {
    .client {
        width: 33.33%;
    }


    #site-navigation ul li a {

        font-size: 14px;
    }


    #banner-mod {
        padding-top: 20px;
    }
}

