
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/* Imports */
/* Karla */
/* Variables */
:root {
    --primary-color: #26408b;
    --secondary-color: #4570b2;
    /* --text-dark: #0A1929; */
    --text-dark: #292f36;
    --color-error: red;

    /* --light-color: #edf0f5; */
    --light-color: #f2f6ff;

    /* --contrast-1-color: #FB8B24; */
    /* --contrast-1-color: #5e98f1; */
    --contrast-1-color: #3a87ff;
    --contrast-2-color: #f6a704;
    /* --contrast-3-color: #04A777; */
    --contrast-3-color: #FF8936;

    /* --contrast-1-color-hover: #ee7100; */
    /* --contrast-1-color-hover: #4579c7; */
    --contrast-1-color-hover: #1154b9;
    --contrast-3-color-hover: #ff6900;

    /* --max-content-width: 1600px; */
    /* --max-content-width: 1500px; */
    --max-content-width: 1366px;


    /* Spacing  (https://medium.com/eightshapes-llc/space-in-design-systems-188bcbae0d62) */
    --xxsmall: 2px;
    --xsmall: 4px;
    --small: 8px;
    --medium: 16px;
    --large: 32px;
    --xlarge: 64px;
    --xxlarge: 128px;

    /* Typograpy sizes (https://medium.com/eightshapes-llc/typography-in-design-systems-6ed771432f1e) */

    --text-xxlarge: 60px;
    --text-xlarge: 40px;
    --text-large: 32px;
    --text-medium: 24px;
    --text-medium-small: 20px;
    --text-small: 18px;
    --text-xsmall: 15px;
    --text-xxsmall: 12px;

    /* Border radius */
    --hard-corner: 2px;
    --soft-corner: 5px;

    /* Background */
    /* --background-primary: rgb(252 248 245); */
    --background-primary: white;
    --background-secondary: #fafaff;
    --background-dark: #0e162c;

    --dark-gradient: linear-gradient(160deg, rgb(5 9 17) 0%, rgb(14 42 119) 100%);
}
/* Styles */
* {
    box-sizing: border-box;

    line-height: 1.4em;

    font-family: 'Karla', sans-serif;
}
body {
    font-weight: 300;
    color: #292f36;
    color: var(--text-dark);
    font-size: 18px;
    font-size: var(--text-small);
    margin: 0;
}
container {
    display: flex;
    justify-content: center;
}
content {
    width: 100%;
    max-width: 1366px;
    max-width: var(--max-content-width);
    padding: 0 20px;
}
a {
    font-weight: 400;
    color: inherit;
    text-decoration: none;
    transition: all 0.5s ease;
}
a:hover {
    color: #4570b2;
    color: var(--secondary-color);
    cursor: pointer;
}
img {
    max-width: 100%;
}
b, strong {
    font-weight: 500;
}
h1 {
    /* font-size: 1.8em; */
    font-size: 40px;
    font-size: var(--text-xlarge);
    text-align: center;
    margin: 0;
    margin-bottom: 32px;
    margin-bottom: var(--large);

    /* text-transform: uppercase; */
    color: #26408b;
    color: var(--primary-color);
    font-weight: 400;
}
h2 {
    text-align: left;
    line-height: 1.1;
    font-size: 2rem;
    font-size: 40px;
    font-size: var(--text-xlarge);
    color: #17213a;
    margin-top: 0;
    margin-bottom: 32px;
    margin-bottom: var(--large);
}
h3 {
    font-size: 32px;
    font-size: var(--text-large);
    font-weight: 400;
    margin-bottom: 16px;
    margin-bottom: var(--medium);
    margin-top: 0;
}
h4 {
    font-size: 24px;
    font-size: var(--text-medium);
    font-weight: 500;
    margin-bottom: 16px;
    margin-bottom: var(--medium);
    color: #f6a704;
    color: var(--contrast-2-color);
}
/* Utils */
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.background-secondary {
    background: linear-gradient(160deg, rgb(5 9 17) 0%, rgb(14 42 119) 100%);
    background: var(--dark-gradient);
    color: white;
}
.background-secondary h2, .background-secondary h3, .background-secondary h4, .background-secondary h5, .background-secondary h6 {
    color: white;
}
.logo {
    display: flex;
    align-items: center;
    margin: 0;
    margin-top: -3px; /* Alignment fix */
}
.logo .logo-text {
    display: flex;
    flex-wrap: nowrap;

    margin-right: 20px;
    margin-left: 10px;
}
.logo .logo-text * {
    font-family: 'Unica One', cursive;
    /*color: #ffce55;*/
    font-weight: 600;
    font-size: 2.2rem;
    /* letter-spacing: 0.8px; */   
}
.logo .siera {
    color: #26408b;
}
.logo .solutions {
    color: #4570b2;
}
container.header {
    /* position: sticky; */
    top: 0;
    /* background-color: var(--background-primary); */
    /* box-shadow: 0 1px 3px rgb(0 0 0 / 2%), 0 1px 2px rgb(0 0 0 / 14%); */
    /* margin-bottom: var(--medium); */
}
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}
header nav a {
    margin-left: 0.95rem;
    margin-right: 0.95rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #221e41;
    opacity: 0.7;
}
header a.active {
    color: #26408b;
    color: var(--primary-color);
    opacity: 1;
}
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 30px;
}
.page-text {
    font-size: 1.2em;
    max-width: 500px;
    margin: auto 0;
    font-weight: 400;
}
.page-title {

    /* font-size: 5.5rem; */
    font-size: 4.5rem;
    font-weight: 700;
    /* line-height: 0.7; */
    color: #17213a;
    
    padding: 0;
    padding-bottom: 32px;
    padding-bottom: var(--large);
    text-align: left;
    text-align: initial;
    line-height: 1em;
}
.discuss-your-project {
    display: inline-block;
    color: white;
    /* background-color: var(--secondary-color); */
    /* background-color: var(--contrast-1-color); */
    background-color: #FF8936;
    background-color: var(--contrast-3-color);
    padding: 12px 22px;
    white-space: nowrap;
    font-weight: 400;
    margin: 0;
    /* border-radius: 2px; */
    border-radius: 0px 11px 11px 11px;
    margin-left: auto;
}
.discuss-your-project:hover {
    color: white;
    background-color: #ff6900;
    background-color: var(--contrast-3-color-hover);
    transform: scale(1.05);
}
.usp {
    display: inline-block;
    color: white;
    /* background-color: var(--secondary-color); */
    /* background-color: var(--contrast-3-color); */
    background-color: #FF8936;
    background-color: var(--contrast-3-color);
    padding: 12px 16px;
    white-space: nowrap;
    font-weight: 400;
    font-size: 18px;
    font-size: var(--text-small);
    margin: 0;
    /* border-radius: 2px; */
    border-radius: 0px 11px 11px 11px;
}
.usp:hover {
    color: white;
    background-color: #1154b9;
    background-color: var(--contrast-1-color-hover);
}
.text-primary {
    /* color: var(--primary-color); */
    color: #3a87ff;
    color: var(--contrast-1-color);
}
/* ---------------------- */
.test2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.test2 .h {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 19px;
}
.test {
    flex-basis: 300px;
    flex-grow: 1;
    position: relative;
    background-color: #ddecee;
    padding: 50px 40px 80px 40px;
    margin: 10px;
    border-radius: 4px;
    color: #333;

    /* background-image: url('../../images/abstract1.jpg') */
}
.me {
    border-radius: 9999px;
    width: 130px;
    height: 130px;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    bottom: -40px;
    right: -40px;
    -o-object-position: -28px 0px;
       object-position: -28px 0px;
}
/* Index 2 */
.home-test {
    display: flex;
    /* align-items: center;
    justify-content: center; */
    flex-wrap: wrap;
    width: 100%;
}
.home-test .img {
    /* width: 33.33333333333333%; */
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0px;
    
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 550px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    text-align: center;
    min-width: 500px;
}
.home-test .img:nth-child(1) {
    background-image: linear-gradient(to right,rgb(0 0 0 / 19%), rgb(0 0 0 / 19%)), url('https://melriver.com/wp-content/uploads/2020/10/043A0310-scaled-1-2250x1754.jpg');
}
.home-test .img:nth-child(2) {
    background-image: linear-gradient(to right,rgb(0 0 0 / 19%), rgb(0 0 0 / 19%)), url('https://melriver.com/wp-content/uploads/2019/12/043A0310-2250x1754.jpg');
}
.home-test .img:nth-child(3) {
    background-image: linear-gradient(to right,rgb(0 0 0 / 19%), rgb(0 0 0 / 19%)), url('https://melriver.com/wp-content/uploads/2019/12/8-render.jpg');
}
.home-test .img:nth-child(1) .text {
    align-self: flex-start;
}
.home-test .img:nth-child(2) .text {
    align-self: flex-end;
}
.home-test .img:nth-child(3) .text {
    align-self: flex-start;
}
.home-test .img .text {
    color: white;
    font-size: 1.1em;
    font-weight: 400;
    /* margin-top: 100px; */

    background: rgb(0 0 0 / 65%);
    /* padding: 10px; */
    height: 50%;
}
/* .home-test .img:nth-child(1).blue {
    background-image: linear-gradient(to right,rgb(69 112 178 / 49%), rgb(69 112 178 / 49%)), url('https://melriver.com/wp-content/uploads/2020/10/043A0310-scaled-1-2250x1754.jpg');
} */
.home-test .img:hover .text {
    background: rgb(15 25 55 / 65%);
}
/* 
.home-test .img .highlight {
    background-color: rgba(0, 0, 0, 0.8);
    line-height: 2.6em;
    padding: 8px 12px;
} */
.home-test .img .text .f1 {
    font-size: 1.4em;
    margin-top: 40px;
    display: block;
    font-weight: 400;
}
.home-test .img .sub-text {
    font-weight: 200;
    max-width: 60%;
    display: block;
    align-self: center;
    justify-self: center;
    margin: 0px auto;
}
.page-head {
    display: flex;
    justify-content: center;
    /* margin: 150px 0; */
    margin: 8vw 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /* margin-bottom: 70px; */
}
/* Third iteration */
.home-test2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content-block:nth-child(2n) {
    flex-direction: row-reverse;
}
.content-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* margin: 20px; */
    margin-bottom: 80px;
    grid-gap: 50px;
}
.image {
    height: 600px;
    width: 450px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;

    margin: 40px 20px;
    margin-bottom: 16px;
    margin-bottom: var(--medium);
    box-shadow: 0px 1px 2px rgb(128 138 157 / 12%), 0px 8px 32px rgb(128 138 157 / 24%);
}
.title {
    text-align: left;
    font-weight: 600;
    font-size: 40px;
    font-size: var(--text-xlarge);
    margin-bottom: 20px;
    color: #26408b;
    color: var(--primary-color);
}
.text {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #666;
}
.section-links {
    margin-top: 32px;
    margin-top: var(--large);
}
.section-link {
    padding: 10px 0;
    /* text-decoration: underline; */
    border-bottom: 2px #3a87ff solid;
    border-bottom: 2px var(--contrast-1-color) solid;
    /* margin: 0 10px; */
    font-weight: 500;
}
.section-link:hover {
    border-bottom: 2px #1154b9 solid;
    border-bottom: 2px var(--contrast-1-color-hover) solid;
}
.service .section-link {
    display: inline-block;
    margin-top: 32px;
    margin-top: var(--large);
}
footer {
    background-color: #26408b;
    background-color: var(--primary-color);
    color: white;
    margin-top: 64px;
    margin-top: var(--xlarge);
    padding-top: 64px;
    padding-top: var(--xlarge);

    background: linear-gradient(160deg, rgb(5 9 17) 0%, rgb(14 42 119) 100%);

    background: var(--dark-gradient);

}
.divider {
    padding-left: 30px;
    border-left: 1px solid white;
    padding-top: 15px;
    padding-bottom: 15px;
}
footer a {
    font-size: 18px;
    font-size: var(--text-small);
}
footer a:hover {
    color: #3a87ff;
    color: var(--contrast-1-color);
}
footer .pad {
    padding-top: 15px;
    padding-bottom: 15px;
}
.address div {
    margin-bottom: 18px;
}
.address .title {
    font-size: 24px;
    font-size: var(--text-medium);
    font-weight: 500;
    color: white;
}
.copyright {
    margin-top: 50px;
    font-size: 14px;
    padding-top: 80px;
    padding-bottom: 20px;
}
.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 50px;
    gap: 50px
}
footer .call-to-action {
    font-size: 70px;
    font-weight: 500;
    max-width: 600px;
}
footer .call-to-action .discuss-your-project {
    font-size: 25px;
    padding: 26px 56px;
    margin-top: 50px;
}
img.eyecatcher {
    height: 600px;
    width: 450px;
    -o-object-fit: cover;
       object-fit: cover;
}
/* Forms */
form label {
    display: block;
    margin-bottom: 8px;
    margin-bottom: var(--small);
    font-weight: 400;
    font-size: 20px;
    font-size: var(--text-medium-small);
}
form .fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    gap: 16px;
    grid-gap: var(--medium);
    gap: var(--medium);
}
form .field {
    /* flex-basis: 100%; */
    grid-column: span 2;
}
form .field.half {
    /* flex-basis: 50%; */
    grid-column: span 1;
}
form input, form textarea {
    width: 100%;
    border-radius: 5px;
    border-radius: var(--soft-corner);
    border: 1px solid #cdcdcd;
    padding: 8px;
    padding: var(--small);
}
form input:active, form textarea:active, form input:focus, form textarea:focus {
    border: 1px solid #939393;
}
form input {
    min-height: 32px;
    min-height: var(--large);
}
form textarea {
    min-height: 128px;
    min-height: var(--xxlarge);
}
form .actions {
    display: flex;
    justify-content: end;
    margin-top: 8px;
    margin-top: var(--small);
}
.button {
    margin-top: 8px;
    margin-top: var(--small);
    padding: 16px;
    padding: var(--medium);
    border-radius: 2px;
    border-radius: var(--hard-corner);
    color: white;
    background-color: #3a87ff;
    background-color: var(--contrast-1-color);
}
.button:hover {
    color: white;
    background-color: #1154b9;
    background-color: var(--contrast-1-color-hover);
}
.contact-form {
    margin-top: 32px;
    margin-top: var(--large);
}
/* Services */
.services:nth-child(2n) {
    color: white;
    background: linear-gradient(160deg, rgb(5 9 17) 0%, rgb(14 42 119) 100%);
    background: var(--dark-gradient);
}
.services-overview {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 32px;
    gap: 32px;
    grid-gap: var(--large);
    gap: var(--large);
    margin-top: 64px;
    margin-top: var(--xlarge);
    justify-content: center;
}
.service-info {
    background-color: #3a87ff;
    background-color: var(--contrast-1-color);
    max-width: 450px;
    min-width: 400px;
    padding: 64px;
    padding: var(--xlarge);
    color: white;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    border-radius: var(--soft-corner);
    flex: 1;
    flex-basis: 33%;
}
.service-info h3 {
    min-height: 72px;
}
.service-info div {
    font-weight: 500;
}
/* Values */
.values-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    
    flex-wrap: wrap;

    margin-top: 64px;

    margin-top: var(--xlarge);
    max-width: 1200px;
    width: 100%;
}
.values-info {
    color: #606060;
    font-size: 2.3em;
    font-weight: 400;
    flex: 1;
    text-align: center;
    padding: 50px;

    background: #0e162c;

    background: var(--background-dark);
    color: #FF8936;
    color: var(--contrast-3-color);
}
.values-info:nth-child(2), .values-info:nth-child(3) {
    background: #FF8936;
    background: var(--contrast-3-color);
    color: #0e162c;
    color: var(--background-dark);
}
.values-info h3 {
    font-size: 2em;
    margin-bottom: 8px;
    margin-bottom: var(--small);
    font-weight: 500;
    /* color: var(--contrast-3-color); */
}
/* Contact form */
.contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-form-container > * {
    flex: 1;
    width: 100%;
    max-width: 800px;
}
textarea.error, input.error {
    border-color: red;
    border-color: var(--color-error);
}
/* Landing page */
.landing {
    height: calc(100vh - 91px);
}
/* Bolds */
.b200 {
    font-weight: 200;
}
.b300 {
    font-weight: 300;
}
.b400 {
    font-weight: 400;
}
.b500 {
    font-weight: 500;
}
.b600 {
    font-weight: 600;
}
.b700 {
    font-weight: 700;
}
/* Services */
.service-summary {
    display: block;
    flex-basis: 400px;
    min-height: 185px;
    padding: 32px;
    padding: var(--large);
    /* background-color: white; */
    border-radius: 2px;
    border-radius: var(--hard-corner);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border: 1px solid #e3eeff;
}
.service-summary-title, .summary-icon  {
    transition: all 0.5s ease;
}
.service-summary-title {
    font-size: 18px;
    font-size: var(--text-small);
    font-weight: 600;
    color: #292f36;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-bottom: var(--medium);
    margin-top: -12px;
}
.service-summary-text {
    font-size: 18px;
    font-size: var(--text-small);
}
.service-summary:hover, .service-summary:hover .service-summary-title, .service-summary:hover .summary-icon {
    color: white;
    /* box-shadow: 0px 1px 2px rgb(128 138 157 / 12%), 0px 8px 32px rgb(128 138 157 / 24%); */
}
.service-summary:hover {
    /* background-color: var(--primary-color); */
    border: 1px solid #1154b9;
    border: 1px solid var(--contrast-1-color-hover);
    background-color: #1154b9;
    background-color: var(--contrast-1-color-hover);

}
/* Title */
.title-tag {
    font-size: 18px;
    font-size: var(--text-small);
    color: #3a87ff;
    color: var(--contrast-1-color);
    font-weight: 600;
}
.title-text {
    font-size: 40px;
    font-size: var(--text-xlarge);
    color: #FF8936;
    color: var(--contrast-3-color);
    font-weight: 500;
    margin-bottom: 16px;
    margin-bottom: var(--medium);
}
/* Subtitle */
.subtitle-tag {
    font-size: 18px;
    font-size: var(--text-small);
    color: #26408b;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-bottom: var(--small);
}
.subtitle-text {
    font-size: 20px;
    font-size: var(--text-medium-small);
    color: #292f36;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 16px;
    margin-bottom: var(--medium);
}
/* 
.title-divider {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px 0;
} */
.service-text {
    font-size: 18px;
    font-size: var(--text-small);
    font-weight: 400;
    max-width: 1000px;
    margin-bottom: 64px;
    margin-bottom: var(--xlarge);
}
.service-summaries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 16px;
    gap: 16px;
    grid-gap: var(--medium);
    gap: var(--medium);
    /* margin-bottom: var(--xxlarge); */
}
.summary-icon {
    font-size: 32px;
    color: #4570b2;
    color: var(--secondary-color);
    /* margin-top: var(--xsmall);
    margin-bottom: var(--large); */
    justify-content: end;
}
.single-highlight {
    display: flex;
    grid-gap: 32px;
    gap: 32px;
    grid-gap: var(--large);
    gap: var(--large);
    margin-bottom: 32px;
    margin-bottom: var(--large)
}
.single-highlight-content {
    font-size: 20px;
    font-size: var(--text-medium-small);
    font-weight: 500;
}
.service-highlight {
    display: flex;
    grid-gap: 32px;
    gap: 32px;
    grid-gap: var(--large);
    gap: var(--large);
    /* margin-left: var(--medium); */
}
.icon {
    font-size: 20px;
    padding: 10px;
    background-color: #f2f6ff;
    background-color: var(--light-color);
    border-radius: 40px;
    width: 40px;
    height: 40px;
    color: #3a87ff;
    color: var(--contrast-1-color);
}
.service-highlight-content {
    margin-bottom: 32px;
    margin-bottom: var(--large);
}
.service-highlight-title {
    font-size: 20px;
    font-size: var(--text-medium-small);
    font-weight: 500;
    margin-bottom: 8px;
    margin-bottom: var(--small);
}
.service-highlight-text {
    font-size: 18px;
    font-size: var(--text-small);
}
.services .copy {
    max-width: 800px;
}
.copy {
    max-width: 500px;
}
.cases .copy {
    margin: 35px 0;
}
.content-block.content-block-service {
    padding: 50px 0; /* Fix in-page links */
    margin-bottom: 0;
}
.cases .content-block {
    align-items: flex-start;
    /* flex-wrap: nowrap; */
}
.image-with-captions {
    display: flex;
    flex-direction: column;
}
.captions {
    align-self: center;
    font-size: 15px;
    font-size: var(--text-xsmall);
    font-weight: 400;
    color: #666;
    padding: 0 20px;
    max-width: 80%;
    text-align: center;
}
.language-picker {
    position: absolute;
    right: 15px;
    z-index: 100;
}
.languages {
    /* display: flex;
    justify-content: end; */
    /* gap: 20px; */
    font-weight: 500;
    font-size: 15px;
    font-size: var(--text-xsmall);
    padding: 5px 15px;
    background: aliceblue;
    border-radius: 0 0 10px 10px;
}
.languages .active {
    color: #3a87ff;
    color: var(--contrast-1-color);
    font-weight: 800;
}
.languages > * {
    padding-left: 10px;
}
.languages > *:not(:last-child) {
    padding-right: 10px;
    border-right: 1px solid black;
    padding-left: 0px;
}
.calendly-link {
    display: block;
    color: white;
    /* background-color: var(--secondary-color); */
    background-color: #FF8936;
    background-color: var(--contrast-3-color);
    padding: 12px 22px;
    white-space: nowrap;
    font-weight: 400;
    margin: 0;
    /* border-radius: 2px; */
    font-size: 20px;
    font-size: var(--text-medium-small);
    width: 100%;
    text-align: center;
    border-radius: 0px 11px 11px 11px;
}
.calendly-link:hover {
    color: white;
    background-color: #ff6900;
    background-color: var(--contrast-3-color-hover);
    transform: scale(1.05);
}
.founder-image {
    z-index: -1;
    height: 150px;
    width: 150px;
    min-height: 150px;
    min-width: 150px;
    overflow: hidden;
    border-radius: 50%;

    box-shadow: 0px 1px 2px rgb(128 138 157 / 12%), 0px 8px 32px rgb(128 138 157 / 24%);
}
.audit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 16px;
    gap: 16px;
    grid-gap: var(--medium);
    gap: var(--medium);

    max-width: 500px;
}
.audit-head {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

    /* gap: 12px; */
}
.audit-title {
    font-size: 24px;
    font-size: var(--text-medium);
    font-weight: 600;
    /* margin-bottom: var(--medium); */

    margin-top: 32px;

    margin-top: var(--large);
}
.audit-text {
    font-weight: 400;
    margin-top: 8px;
    margin-top: var(--small);

}
.audit-text-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    grid-gap: 8px;

    gap: 8px;

    grid-gap: var(--small);

    gap: var(--small);
}
.audit-button-wrapper {
    /* width: 100%; */

    margin-top: 16px;

    margin-top: var(--medium);
}
.landing-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Overwrite for new style */
.collapse-height {
    height: 0;
    z-index: 100;
}
.page-head {
    align-items: start;
    max-width: 750px;
    margin: 0;
}
.page-title span {
    line-height: 1;
}
.page-text {
    padding: 0;
    padding-bottom: 64px;
    padding-bottom: var(--xlarge);
    font-size: 1.6em;
    text-align: left;
    text-align: initial;
    color: #757384;
}
/* Services on home */
.home-services {
    background-color: #4570b2;
    background-color: var(--secondary-color);
    background: linear-gradient(150deg, rgba(69,112,178,1) 0%, rgba(38,64,139,1) 100%);
    padding: 64px 0;
    padding: var(--xlarge) 0;
    margin-bottom: 64px;
    margin-bottom: var(--xlarge);
}
.home-services h1 {
    color: white;
    margin-bottom: 64px;
    margin-bottom: var(--xlarge);
}
.home-services .service-summary {
    background-color: white;
    box-shadow: none;
}
.home-services  .service-summary:hover {
    border: 1px solid #3a87ff;
    border: 1px solid var(--contrast-1-color);
    background-color: #3a87ff;
    background-color: var(--contrast-1-color);
}
/* Services 3 */
.service-summaries-3 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;

    align-items: center;
    justify-content: space-between;
    
    grid-gap: 32px;
    
    gap: 32px;
    
    grid-gap: var(--large);
    
    gap: var(--large);

    margin: 64px 0 128px 0;

    margin: var(--xlarge) 0 var(--xxlarge) 0;
}
.service-summary-3 {
    flex-basis: 420px;
    min-height: 420px;

    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);

    color: white;
    background-color: #0e162c;
    background-color: var(--background-dark);
}
.service-summary-3:hover {
    color: white;
    background-color: #1154b9;
    background-color: var(--contrast-1-color-hover);
    transform: scale(1.01);
}
.service-summary-content-3 {
    flex-grow: 1;

    display: flex;
    justify-content: center;
    flex-direction: column;

    padding: 32px;

    padding: var(--large);
}
.service-summary-3 img {
    height: 220px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.service-summary-3:last-child img {
    -o-object-position: 0% 20%;
       object-position: 0% 20%;
}
.service-summary-title-3 {
    font-size: 24px;
    font-size: var(--text-medium);
    margin-bottom: 16px;
    margin-bottom: var(--medium);
    font-weight: 700;
}
.service-summary-text-3 {
    font-size: 18px;
    font-size: var(--text-small);
    font-weight: 400;

}
.summary-icon-3 {
    color: white;
    font-size: 42px;
    justify-content: end;
}
.service .section-link {
    margin-top: 2px;
    margin-top: var(--xxsmall);
}
.button-icon .fas {
    margin-left: 17px;
    margin-right: 7px;
    text-align: center;
    transition: all 0.5s ease;
}
.button-icon:hover .fas {
    transform: translateX(10px);
}
.landing-img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;

    z-index: -1;
    opacity: 0.99;

    left: auto;
    right: 0;
    width: 35%;
}
.landing {
    /* background-color: #04A777; */
}
.landing-image {
    width: 500px;
    /* height: 432px; */
    /* flex-grow: 1; */
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 50px;
}
/* NEW (StoryBrand iteration) */
.list-item {
    margin-bottom: 16px;
    margin-bottom: var(--medium);
    font-weight: 500;
    display: flex;
    /* align-items: center; */
}
.list-item i {
    margin-right: 10px;
    margin-top: 3px;
}
.text-block {
    max-width: 600px;
    font-size: 20px;
    font-size: var(--text-medium-small);
    /* font-size: var(--text-medium); */
}
.section {
    padding: 120px 0;
}
.section-image {
    max-width: 500px;
    /* min-width: 400px; */

    /* transform: scale(1.2); */
}
.plan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.plan-title {
    margin-bottom: 32px;
    margin-bottom: var(--large);
}
.cols {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.plan-grid {
    /* display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: repeat(4, 1fr); */

    display: flex;
    flex-direction: column;

    grid-row-gap: 100px;

    justify-content: center;
    align-items: center;
    max-width: 900px;
}
.plan-grid > div {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    grid-column-gap: 50px;
    justify-content: center;
    align-items: center;
}
.plan-grid > div:nth-child(2n+1) {
    display: flex;
    flex-direction: row-reverse;
}
.plan-item {
    display: flex;
    flex-direction: row;
    grid-gap: 17px;

}
.circle-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    /* box-shadow: 0px 1px 2px rgb(128 138 157 / 2%), 0px 8px 32px rgb(128 138 157 / 10%); */
    flex-shrink: 0;
    background: white;
}
.circle-img img {
    width: 100%;
    height: 100%;
}
/* Workaround for images with too much whitespace around */
.circle-img.schedule img {
    transform: scale(1.8);
}
.circle-img.draft img {
    transform: scale(1.7);
}
.circle-img.building img {
    transform: scale(1.1);
}
.circle-img.golive img {
    transform: scale(1.4);
}
.list-number {
    color: #f6a704;
    color: var(--contrast-2-color);
    font-weight: 600;
    font-size: 32px;
    font-size: var(--text-large);
    margin-bottom: 16px;
    margin-bottom: var(--medium);
}
/* Repsonsiveness */
@media screen and (max-width:1270px) {
    header {
        /* flex-direction: column; */
        justify-content: space-between;
    }

    nav {
        order: 1;
        margin-top: 0;
        margin-left: 0;
    }

    .landing-head {
        /* justify-content: space-evenly; */
        /* max-width: 80%; */
        padding: 0 100px;
        overflow: hidden;
    }

    .page-head {
        min-width: 330px;
    }

    .landing-image {
        flex-basis: auto;
    }

    .page-title {
        font-size: 2.8em;
        /* font-size: 2.2em; */
        /* text-align: center; */
    }

    .page-text {
        /* text-align: center; */
        font-size: 1.2em;

    }
    .values-overview {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
        flex-wrap: wrap;
        margin-top: 16px;
        margin-top: var(--medium);
        max-width: 100%;
        width: 100%;
        grid-gap: 20px;
        gap: 20px;
    }
    
    .values-info:nth-child(3) {
        order: 2;
    }

    .discuss-your-project {
        padding: 8px 22px;
    }

    nav {
        width: 100%;
        justify-content: left;
    }
}
@media screen and (max-width:600px) {

    nav {
        justify-content: center;
    }

    .landing-head {
        padding: 40px;
    }

    .page-head {
        min-width: 100%;
    }

    .service-highlight {
        flex-direction: column;
        align-items: center;
    }

    .call-to-action {
        line-height: 1;
    }
    
    .circle-img {
        width: 200px;
        height: 200px;
    }

    .plan-grid {
        grid-row-gap: 80px;
    }

    .plan-grid > div {
        flex-direction: column;
        grid-gap: 40px;
        gap: 40px;
    }

    .plan-grid > div:nth-child(2n+1) {
        flex-direction: column;
    }

    h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.5rem;
    }

    .landing-image {
        display: none;
    }

    .section {
        padding: 80px 20px;
    }

    header {
        /* flex-direction: column; */
        justify-content: center;
        align-items: center;
    }

    header .logo {
        max-width: 180px;
    }

    header .discuss-your-project {
        font-size: 15px;
        margin-left: 0;
        display: none;
    }

    nav {
        /* order: 3; */
        /* margin-top: 20px; */
        /* max-width: 400px; */
        /* min-width: 100%; */
    }

    nav > * {
        margin: 3px
    }

    container.header {
        position: relative;
    }

    .content-block {
        grid-gap: 0;
    }

    .content-block > .image, .content-block > .image-with-captions {
        order: 2;
    }

    .values-info, .values-info:nth-child(2n), .values-info:nth-child(1n) {
        font-size: 0.9em;
        text-align: left;
        align-self: flex-start !important;
    }

    h1 {
        margin-bottom: 32px;
        margin-bottom: var(--large);
    }

    form .field.half {
        grid-column: span 2;
    }

    .page-head {
        align-items: center;
    }

    .page-title {
        /* font-size: 1.8em; */
        /* font-size: 2.2em; */
        text-align: center;
    }

    .page-text {
        text-align: center;
        font-size: 1.3em;

    }

    .landing {
        height: calc(100vh - 146px);
    }
}
@media screen and (max-width:400px) {

    header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .service .title-text {
        font-size: 24px;
        font-size: var(--text-medium);
    }

    .service .title-tag {
        font-size: 15px;
        font-size: var(--text-xsmall);
    }

    footer .call-to-action .discuss-your-project {
        padding: 20px 38px;
    }

    .page-title {
        font-size: 2.0em;
    }

    .page-text {
        font-size: 1.1em;
        padding-bottom: 32px;
        padding-bottom: var(--large);
    }

    .calendly-link {
        font-size: 18px;
        font-size: var(--text-small);
    }

    .call-to-action {
        font-size: 50px;
    }

    footer .call-to-action .discuss-your-project {
        font-size: 20px;
        font-size: var(--text-medium-small);
        padding: 18px 24px;
    }
}
.contact-page.address {
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    font-size: 24px;
    font-size: var(--text-medium);
    /* margin-top: var(--xlarge); */
}
.contact {
    display: flex;
    grid-gap: 50px;
    gap: 50px;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 64px;
    margin-top: var(--xlarge);
    margin-bottom: 64px;
    margin-bottom: var(--xlarge);
}