@font-face {
    font-family: 'heavitasregular';
    src: url('../fonts/heavitas-webfont.woff2') format('woff2'),
         url('../fonts/heavitas-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
    --brand-white: #ffffff;
    --brand-black: #000000;
    --brand-blue: #12239d;
    --brand-dark-grey: #5a5a5a;
    --brand-font-medium: font-weight: 700;
    --brand-light-grey: #eeeeee;
}

.img-fluid {
    max-width: 100%;
}

body {
    background: var(--brand-white);
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'heavitasregular';
}

p, ul, li {
   font-family: "Roboto", sans-serif;
   font-size: 14px; 
}

a {
    text-decoration: none;
}

.logo {
    text-align: center;
    border-bottom: 1px solid #000;
}

@media (min-width: 576px) {
    .logo {
        text-align: left;
        border-bottom: none;
    }
}

.nav {
    text-align: center;
    display: block;
    margin: 15px 0;
    float: none;
}

@media (min-width: 576px) {
    .nav {
        margin: 15px 0 0 0;
        float: right;
    }
}

.nav ul {
    padding: 0;
    margin: 0 0 5px 0;
}

.nav li {
    font-family: 'heavitasregular';
    list-style: none;
}

@media (min-width: 576px) {
    .nav li {
       float: left; 
       margin: 0 10px;
    }
}

@media (min-width: 1024px) {
    .nav li {
        margin: 0 30px;
    }
}

.nav li a {
    text-decoration: none;
    color: var(--brand-black);
    font-size: 20px;
}

.nav li a:hover {
    color: var(--brand-blue);
}

.bar {
    background: var(--brand-dark-grey);
    color: var(--brand-white);
    text-align: center;
    padding: 10px 0;
}

.bar p {
    font-family: 'heavitasregular';
    font-size: 16px;
}

@media (min-width: 576px) {
    .bar p {
        font-size: 20px;
    }
}

.bar a {
    color: var(--brand-white);
    text-decoration: none;
}

.banner {
    background-image: url(../images/banner.jpg);
    height: auto;
    text-align: center;
    background-repeat: no-repeat;
    padding: 0 0 20px 0;
    background-position: 70% 0%;
}

@media (min-width: 576px) {
    .banner {
        height: 425px;
    }
}

.banner .header {
    display: inline-block;
    margin: 60px 0 0 0;
}

@media (min-width: 576px) {
    .banner .header {
        margin: 90px 0 0 0;
    }
}

.banner h1 {
    font-family: 'heavitasregular';
    text-align: center;
    color: var(--brand-white);
    font-size:30px;
}

@media (min-width: 576px) {
    .banner h1 {
        font-size: 40px;
    }
}

.banner span {
    background: var(--brand-white);
    border-radius: 5px;
    padding: 5px 10px;
    color: var(--brand-blue);
    display: block;
    margin: 0 0 5px 0;
}

.banner p {
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    color: var(--brand-white);
    font-weight: 300;
}

@media (min-width: 576px) {
    .banner p {
        font-size: 34px;
    }
}

.sec {
    text-align: center;
    padding: 0 30px;
    width: 20%;
}

@media (min-width: 576px) {
    .sec{
        width:100%;
    }
}

.sec-strip {
    background: var(--brand-blue);
    padding: 40px 0;
}

.sec-circle {
    background: var(--brand-white);
    border-radius: 100px;
    height: 150px;
    width: 150px;
    text-align: center;
    padding: 20px;
    display: inline-block;
    margin: 0 0 20px 0;
}

.sec-strip p {
    font-family: 'heavitasregular';
    color: var(--brand-white);
    font-size: 20px;
}

.sec-mobile {
    background: var(--brand-white);
    border-radius: 10px;
    padding: 10px 5px;
}

.sec-mobile p {
    color: var(--brand-black);
    margin: 0 0 0 5px;
    font-size: 12px;
}

.white-section {
    background: var(--brand-white);
    padding: 20px;
}

@media (min-width: 576px) {
    .white-section {
        padding: 0;
    }
}

.white-section h2, .grey-section h2 {
    font-size: 24px;
    margin: 5px 0 0 0;
}

@media (min-width: 1024px) {
    .white-section h2, .grey-section h2 {
        font-size: 28px;
    }
}

.grey-section {
    background: var(--brand-light-grey);
    padding: 20px;
}

@media (min-width: 576px) {
    .grey-section {
        padding: 0;
    }
}

p.sub {
    font-size: 18px;
    font-weight: var(--brand-font-medium);
}

.testimonials {
    background: var(--brand-black);
    height: auto;
    text-align: center;
    padding: 40px 20px;
}

@media (min-width: 1200px) {
    .testimonials {
        height: 435px;
        background-image: url(../images/testimonials.jpg);
        background-repeat: no-repeat;
    }
}

.testimonials p {
    margin: 0;
    color: var(--brand-white);
    font-style: italic;
    font-size: 20px;
    font-weight: 300;
}

@media (min-width: 576px) {
    .testimonials p {
        margin: 50px 150px;
        font-size: 26px;
    }
}

.testimonials p.customer {
    color: var(--brand-blue);
    font-family: 'heavitasregular';
    font-style: normal;
}

.contact {
    background: var(--brand-blue);
    text-align: center;
    color: var(--brand-white);
    padding: 20px;
}

@media (min-width: 576px) {
    .contact {
        padding: 0px;
    }
}

.contact p a {
    color: var(--brand-white);
}

.contact h3 a {
    color: var(--brand-white);
    display: block;
}

@media (min-width: 576px) {
    .contact h3 a {
        display: inline-block;
        margin: 0 0 0 10px;
    }
}