:root {
    --color-navy:#001A7A;
    --color-red:#FF4532;
    --color-tofu:#FCF2E8;
}

html, body {
    margin:0;
    padding:0;
    background-color:white;
    font-family: 'Roboto', sans-serif;
    font-weight:300;
    color:var(--color-navy);
    font-size:16px;
}

h1 {
    margin:0;
    padding:0;
}

h1 img {
    width:auto;
}

h2 {
    font-weight: 500;
    font-size: 42px;
    line-height: 50px;
}

h2 a {
    text-decoration: none;
    color:var(--bs-heading-color)
}

h2 a:hover {
    text-decoration: none;
}

h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 300;
}

#experience {
    font-weight: 300;
    padding:0;
    margin:0;
    font-size: 24px;
    line-height: 32px;
}



button {
    background-color:var(--color-navy);
    color:white;
    text-align: center;
    padding:8px 32px;
    border:none;
}

img {
    width:100%;
}

.cta {
    margin-top:32px;
    color:var(--color-red);
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    display:block;
    text-decoration: none;
}

.cta:hover {
    text-decoration: underline;
    color:var(--color-red);
}

#header {
    border-bottom:solid 1px var(--color-navy);
    background-color:white;
}

#header #navigation, #header #navigation a {
    color:var(--color-navy);
    text-decoration: none;
    font-weight:400;
}

#header #navigation a:hover {
    text-decoration: underline;
}

#what-we-do {
    background-color:#FCF2E8;
}

#what-we-do .image {
    width:100%;
    height:100%;
}

#what-we-do .image img {
    width:100%;
}

#what-we-do .description {
    font-weight: 300;
    line-height: 30px;
}

#what-we-do .description  button {
    display:block;
}

#experience {
    background-color:var(--color-navy);
    text-align:center;
    color:white;
    font-weight: 300;
}

#what-makes-us-different .differences {
    border-bottom: solid 1px var(--color-navy);
}

#services {
    background-color:var(--color-tofu);
    border-bottom:solid 1px var(--color-navy);
}

#services .services-heading {
    margin-bottom:58px;
}

#services .service-item {
    margin-bottom:44px;
}

#services .service-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    margin-bottom:8px;
    display:block;
}

#get-in-touch .dont-be-shy {
    color:var(--color-red);
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    display:block;
    text-decoration: none;
    margin-bottom:10px;
}

#footer {
    
    background-color:var(--color-navy);
    color:white;
}

#footer a {
    color:white;
    font-weight:400;
}

#footer .book {
    text-align: center;
    padding:8px 32px;
    border:none;
    background-color:white;
    color:var(--color-navy);
    display:inline-block;
}

#contact-us {
    padding-top:20px;
    background-color:var(--color-tofu);
}

#contact-us input, #contact-us textarea {
    max-width:800px;
    width:100%;
    display:block;
    margin-bottom:7px;
}

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

.text-center
{
    text-align: center;
}

picture.profile-picture {
    border-radius: 200px;
}

img.profile-picture {
    width:150px;
    height:150px;
    border-radius: 200px;
    border:solid 3px var(--color-red);
}

@media (min-width: 1200px) {
    img.profile-picture {
        width:200px;
        height:200px;
    }
}

/* Above Medium */
@media (min-width: 768px) { 
    html, body {
        font-size:18px;
    }

    h2 {
        font-size: 80px;
        line-height: 88px;
    }

    h2.job-title {
        font-size:50px;
        line-height:55px;
    }

    #experience {
        font-size: 48px;
        line-height: 60px;
    }

    #header {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    #header .container {
        position:relative;
    }

    .navigation-row {
        position:absolute;
        right:0;
        top:50%;
        width:500px;
    }

    .navigation-row a {
        display:inline-flex;
        text-align: left;
    }

    .text-md-start {
        text-align: left;
    }
}

/* Above Large */
@media (min-width: 992px) {
    .text-lg-center {
        text-align:center;
    }
}


/* Menu */
.menu-group .drop-down{
    display:none;
    position: absolute;
    text-align: left;
    box-shadow: 0 .15em 2em 0 rgba(0,0,0,.15);
    background-color:white;
    border-radius:10px;
    padding:7px;
}

.menu-group .drop-down a {
    display:block;
    color:var(--color-navy);
    margin:8px 16px;
}

.menu-group:hover .drop-down, .menu-group:active .drop-down {
    display:block;

}