@import url('https://fonts.googleapis.com/css2?family=Sora:wght@200;300;400;500;600&display=swap');

body {
    font-family: 'Sora', sans-serif;
}
svg {
    max-width: 85%;
    fill: #278EB7;
}
section.section-container {
    background-color: #C0C4C7;
    min-height: 100vh;
}
.business-card-container .row {
    max-width: 700px;
    margin: auto;
}
.business-card-row {
    align-items: center;
    -webkit-box-shadow: 8px 6px 19px -10px rgb(95 97 113);
    -moz-box-shadow: 8px 6px 19px -10px rgba(95, 97, 113, 1);
    box-shadow: 8px 6px 19px -10px rgb(95 97 113);
    border-radius: 25px;
}
.upper-col {
    height: 100%;
    /*min-height: 375px;*/
    display: flex;
    justify-content: center;
    align-items: center;
}
.lower-col {
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lower-col > * {
    margin-bottom: .75rem;
}
header.header {
    background: #278EB7;
    line-height: 1.1;
    -webkit-box-shadow: 0px 8px 10px -7px rgb(0 0 0);
    -moz-box-shadow: 0px 8px 10px -7px rgba(0, 0, 0, 1);
    box-shadow: 0px 8px 10px -7px rgb(0 0 0);
}
header.header h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 200;
}
header.header h5 {
    margin: 0;
    font-weight: 300;
}
nav {
    min-height: 50px;
    display: flex;
    align-items: center;
}

nav span {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #278EB7;
    border-radius: 100%;
    border: solid 2px;
    -webkit-box-shadow: 0px 0px 18px -7px rgb(187 187 187);
    -moz-box-shadow: 0px 0px 18px -7px rgba(187, 187, 187, 1);
    box-shadow: 0px 0px 18px -7px rgb(187 187 187);
}
nav a {
    text-decoration: none;
    color: #fff;
}
nav a:hover {
    text-decoration: underline;
    color: #fff;
}
section.contact-form-section {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 700px;
    background: #fff;
}
section.contact-form-section input,
section.contact-form-section textarea {
    width: 100%;
}
section.contact-form-section form {
    padding: 3rem 2rem;
}
nav.form-close {
    position: absolute;
    top: .35rem;
    right: 1rem;
    cursor: pointer;
    font-size: 2rem;
}
.form-group label {
    font-size: .9rem;
    font-weight: 500;
}
.form-group input, textarea {
    margin-top: .5rem;
    padding: 10px;
    background: #f7f7f7;
    border: none;
    width: 100%;
}
.form-group textarea {
    height: 150px;
}
.form-group button[type="submit"] {
    text-transform: uppercase;
    min-width: 200px;
    border: none;
    font-size: .95rem;
    border-radius: 0;
    background: #278EB7;
    color: #fff;
    font-weight: 900;
    padding: 1rem;
}

.more-info-container {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX( -50% );
    max-width: 700px;
    width: 100%;
    background: #278EB7;
    color: #fff;
    font-weight: 200;
    font-size: 1.25rem;
    padding: .5rem;
    text-align: center;
    -webkit-box-shadow: 0 -5px 19px -9px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0 -5px 19px -9px rgba(66, 68, 90, 1);
    box-shadow: 0 -5px 19px -9px rgba(66, 68, 90, 1);
    margin-bottom: 0!important;
}
.more-info-container a {
    text-decoration: none;
}
.more-info-container a:hover {
    text-decoration: underline;
}
.more-info-container a, .more-info-container a:hover {
    color: #fff;
    font-weight: 300;
}
.more-info-container-mobile {
    position: static!important;
    transform: none!important;
    display: block!important;
    border-radius: 0 0 22px 22px;
    -webkit-box-shadow: 0px -8px 10px -7px rgb(0 0 0);
    -moz-box-shadow: 0px -8px 10px -7px rgba(0, 0, 0, 1);
    box-shadow: 0px -8px 10px -7px rgb(0 0 0);
}

@media screen and (max-width: 350px) {
    .upper-col {
        min-height: 175px;
    }
    .upper-col img {
        max-height: 150px!important;
    }
    .business-card-container {
        padding: 5px;
    }
}
@media screen and (min-width: 350px) and (max-width: 768px) {
    .upper-col {
        min-height: 200px;
    }
    .business-card-container {
        padding: 15px;
    }
}
@media screen and (max-width: 768px) {
    section {
        display: flex;
        align-items: center;
    }
    .business-card-row {
        background: linear-gradient(180deg, rgb(255,255,255) 35%, rgb(38,38,38) 0);
        justify-content: flex-start!important;
    }
    header.header {
        padding: .95rem;
        text-align: center;
        margin-bottom: 1rem!important;
    }
    nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    nav span {
        margin-bottom: .75rem;
        margin-right: 0!important;
    }
    .lower-col {
        min-height: 200px;
    }
    .upper-col img {
        max-width: 150px;
    }
    .more-info-container-desktop {
        display: none!important;
    }
}
@media screen and (min-width: 768px) {
    .business-card-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate( -50%, -50% );
    }
    .business-card-row {
        background: linear-gradient(100deg, rgb(255,255,255) 42.9%, rgb(38,38,38) 43.1%);
    }
    header.header {
        padding: .5rem 0 .5rem 3rem;
        margin-bottom: 1rem!important;
    }
    nav.phone {
        margin-left: 3rem;
    }
    nav.email {
        margin-left: 2.25rem;
    }
    nav.location {
        margin-left: 1.5rem;
    }
    nav.form {
        margin-left: .75rem;
    }
    .lower-col {
        min-height: 375px;
    }
    .upper-col img {
        max-width: 200px;
    }
    .more-info-container-mobile {
        display: none!important;
    }
}
