* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body
{
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 500;
    font-size: 12px;
    color:black;
    text-decoration: none;
}

/* ----- Home Page ----- */
/* Carousel */
.contact-btn {
    background-color: #00aae7 !important;
    color: #fff !important;
    font-size: 2rem !important;
}

.button-62 {
    background: linear-gradient(to bottom right, blue, darkblue);
    border: 0;
    border-radius: 12px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 2.5;
    outline: transparent;
    padding: 0 1rem;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
  }
  
  .button-62:not([disabled]):hover {
    box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(63, 63, 209, 0.5), .125rem .125rem 1rem rgba(29, 10, 236, 0.5);
  }

.what_we_do {
    background-color: #5C5B5A;
    color: #fff;
}

/* Contact Block */
#contact_block {
    background-image: url("../images/contact_banner.png");
    background-repeat: no-repeat;
    color: white;
}
#contact_block a {
    color: white;
    text-decoration: none;
}
#contact_block ul {
    padding-left: 0;
}
#contact_block li {
    display: block;
}
#contact_block .nav-link:hover{
    color: darkgrey;
}
.contact_logo {
    max-width: 100%;
    padding-right: 4rem;
}

/* Footer */
.footer {
    background-color: #212529;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
}
.footer ul {
    color: #ffffff;
}
.footer a {
    text-decoration: none;
    color: #ffffff;
}
.footer a:hover {
    color: darkgrey;
}

.flex-container {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}
.space-around { 
    justify-content: space-around; 
}
/* ---- */