:root {
    --light-azure: #E0EDF6;
    --light-blue: #DEFAF9;
    --blue: #007CBA;
    --dark-blue: #0056A1;
    --green: #81D94E;
    --yellow: #FFF93B;
    --orange: #E87722;
    --brand-primary: var(--blue);
    --brand-primary-hover: var(--dark-blue);
    --brand-secondary: var(--green);
}


body,
html {
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    font-size: 16px;
    margin: 0px;
    min-height: 100%;
    overflow-x: hidden;
    padding: 0px;
    color: #333333;
}



a:hover,
a:focus {
    transition: .2s;
    text-decoration: none;
}

.btn {
    display: inline-block;
    border-radius: 8px;
    background-color: var(--brand-primary);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 12px 16px;
    color: #FFF !important;
    transition: background-color 150ms ease-in-out;
}

.btn:hover {
    background-color: var(--brand-secondary);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 0 20px;
}

h1 .sub-1 {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
}

h1 .sub-2 {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
}

@media screen and (min-width: 992px) {
    h1 {
        font-size: 3.438rem;
    }

    h1 .sub-1 {
        font-size: 2.813rem;
    }

    h1 .sub-2 {
        font-size: 2.125rem;
    }
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
    h2 {
        font-size: 2.875rem;
    }
}

h3 {
    display: block;
    width: 100%;
    font-size: 1.563rem;
    font-weight: 600;
    margin-bottom: 10px;
}

h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}


p {
    font-size: 1rem;
    margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
    p {
        font-size: 1.15rem;
    }
}

ul {
    padding-left: 2.5rem;
}

li {
    font-size: 1rem;
    margin-bottom: 5px;
}

@media screen and (min-width: 992px) {
    li {
        font-size: 1.15rem;
    }
}

h3 strong,
h4 strong {
    font-weight: 700;
}
strong.blue {
    color: var(--blue);
}
strong.yellow {
    color: var(--yellow);
}
strong.green {
    color: var(--green);
}
strong.orange {
    color: var(--orange);
}



hr {
    border-bottom: 1px solid #808080;
    margin: 25px 0;
}

a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
    transition: background-color .2s, color .2s;
}

a.undecorated {
    text-decoration: none;
}

a:hover {
    color: var(--brand-primary);
}

a img {
    transition: filter 150ms ease-in-out;
}

a img:hover {
    filter: brightness(80%);
}

a.unstyled {
    font-weight: 400;
    text-decoration: none;
}

a.unstyled:hover {
    color: unset;
}

.button {
    background-color: var(--brand-primary);
    border-radius: 8px;
    border: 0;
    color: #fff;
    display: inline-block;
    letter-spacing: .05em;
    margin-top: 12px;
    padding: 4px 16px;
    transition: background-color .2s;
    text-decoration: none;
    font-size: 1.5rem;
    text-align: center;
}

.button:hover {
    color: #fff;
}

.button:focus {
    color: #fff;
}

/* Forms */
form {
    margin: 18px 0;
}

label {
    display: block;
    margin: 10px 0 8px;
    width: 100%;
}

input[type="text"] {
    margin-bottom: 8px;
    padding-left: 3px;
    width: 100%;
}

textarea {
    height: 80px;
    margin-bottom: 8px;
    padding: 3px 5px;
    resize: none;
    width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 0 4px 0 2px;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    display: inline-block;
    margin-right: 14px;
    position: relative;
    top: -1px;
    width: auto;
}

input[type="submit"],
input[type="reset"] {
    background-color: var(--brand-primary);
    border-radius: 14px;
    border: 0;
    color: #fff;
    letter-spacing: .05em;
    margin-top: 14px;
    padding: 4px 16px;
    transition: background-color .2s;
}

.button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
    background-color: var(--brand-secondary);
}

.required {
    color: #800;
}

.required span {
    left: -9999px;
    position: absolute;
    top: -9999px;
}

/* MAIN SCREEN */
#screen {
    height: 100%;
    left: 0%;
    position: absolute;
    transition: left .6s;
    width: 100%;
    background-color: var(--brand-primary);
    background-image: url('../images/skyline.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#menu .logo {
    display: block;
    width: 100%;
    padding: 25px;
    background-color: var(--brand-primary);
}

/* LEFT MENU */
#skipcontent {
    background-color: #fff;
    border: 1px inset #aaa;
    border-radius: 8px;
    box-shadow: 2px 2px 8px 0 #333;
    color: #000;
    font-size: 1.4em;
    font-weight: 700;
    left: -9999px;
    padding: 6px 14px;
    position: absolute;
    top: -9999px;
}

#skipcontent:focus {
    left: 8px;
    top: 8px;
}

#menu {
    background-color: var(--brand-primary);
    float: left;
    height: 100%;
    overflow: auto;
    padding-bottom: 18px;
    width: 15%;
}

#menu div {
    background-color: #f2f2f2;
    border: 1px solid #aaa;
    border-width: 1px 0;
    height: 54%;
    overflow-y: auto;
}

#menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

#menu ul li {
    border-bottom: 1px solid #FFF;
    margin: 0;
    width: 100%;
}

#menu ul li a {
    color: #FFF;
    display: block;
    padding: 2px 8px 10px;
    position: relative;
    width: 100%;
}

#menu ul li a i {
    background-color: var(--brand-secondary);
    color: var(--brand-primary);
    display: inline-block;
    font-size: 1.1em;
    margin: 4px 0;
    opacity: 1;
    padding: 4px;
    position: absolute;
    text-align: center;
    transition: filer 150ms ease-in-out
}

#menu ul li a.showing>i {
    opacity: 1;
    color: var(--brand-primary-hover);
    background-color: var(--brand-secondary);
}

#menu ul li a i:before {
    content: "\f101";
}

#menu ul li a span {
    display: inline-block;
    font-size: .9em;
    font-weight: 700;
    line-height: 1.3em;
    padding: 4px 0 0 30px;
    vertical-align: middle;
}

#menu ul li a:hover {
    filter: brightness(80%);
}

#menu ul li a:hover i {
    filter: brightness(80%);
}

#menu ul li a.showing {
    background-color: var(--brand-primary-hover);
    color: #FFF;
}

/* TRANSLATOR */
#google_translate_element2 {
    display: none;
}

#langaugeselectcont select {
    margin-left: 5%;
    width: 90%;
}

#langaugeselectcont label {
    margin-left: 5%;
    width: 90%;
    color: #FFF;
}

/* SLIDE AREA */

#slides {
    bottom: 0;
    height: 100%;
    position: relative;
    width: 100%;
}

.container {
    bottom: 74px;
    height: auto;
    left: 15%;
    margin: 0;
    position: fixed;
    top: 94px;
    transition: left .6s, margin .6s;
    width: 85%;
    padding: 0;
    max-width: none;
    ;
}

.slide {
    color: #000;
    width: 100%;
    height: 100%;
    margin-left: -1200%;
    margin-top: -22px;
    opacity: 0;
    position: absolute;
    top: -200%;
    transition: 0s;
    background-color: #FFF;
    padding: 30px;
    border-radius: 8px;
}

@media screen and (min-width: 992px) {
    .slide {
        padding: 45px;
    }
}

.slide.showing {
    width: 90%;
    margin-left: 0%;
    margin-top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    top: 0;
    transition: margin-left 0s, margin-top .7s, opacity .8s, top 0s;
    max-height: 100%;
    overflow: auto;
}

.img-full {
    width: 100%;
    height: auto;
}

.img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-fill-lg {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 992px) {
    .img-fill-lg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.icon-and-text {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-and-text .icon {
    width: 80px !important;
    height: auto;
    margin-right: 20px;
    margin-bottom: 0 !important;
}

.small-icon-and-text {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.small-icon-and-text .icon {
    width: 34px !important;
    height: auto;
    margin-right: 15px;
    margin-bottom: 0 !important;
}

.small-icon-and-text .text {
    font-size: 0.75rem;
}

@media screen and (min-width: 992px) {
    .small-icon-and-text .icon {
        margin-right: 20px;
    }
    .small-icon-and-text .text {
        font-size: 1.15rem;
    }
    
}

.contact-open .container {
    margin-left: -390px;
}

#nav-progress {
    bottom: 0;
    height: 50px;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 85%;
}

#nav-progress a {
    background-color: #000;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    float: left;
    height: 100%;
    line-height: 62px;
    text-align: center;
    width: 10%;
}

#nav-progress>a:hover {
    background-color: #000;
}

#nav-progress a span {
    left: -9999px;
    position: absolute;
    top: -9999px;
}

#nav-progress a i {
    font-size: 1.9em;
}

#nav-progress ul {
    display: table;
    float: left;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 80%;
}

#nav-progress ul li {
    display: table-cell;
    height: 100%;
    padding: 0;
}

#nav-progress ul li a {
    background-color: var(--brand-secondary);
    border: 1px solid #222;
    border-width: 19px 2px;
    height: 100%;
    width: 100%;
}

#nav-progress ul li a.active {
    background-color: var(--brand-primary);
}

#nav-progress ul li a.active i {
    color: var(--brand-secondary);
}

#nav-progress ul li a span {
    color: #000;
    left: -9999px;
    position: absolute;
    top: -9999px;
}

#nav-progress ul li a:hover {
    border-color: #333;
}

/* MENU & COMMENT BUTTONS */
.meeting-button {
    background-color: var(--brand-primary);
    color: #FFF;
    border-radius: 4px;
    font-size: .9em;
    font-weight: 700;
    height: 60px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 60px;
    text-decoration: none;
    transition: background-color 150ms ease-in-out;
}

#menu-toggle {
    display: none;
    left: 20px;
    padding-top: 8px;
    top: 14px;
    width: 60px;
    z-index: 1;
}

#menu-toggle:hover {
    color: #FFF;
}

#menu-toggle span {
    background-color: var(--brand-secondary);
    display: block;
    height: 4px;
    margin: 4px auto;
    transition: margin .2s, transform .2s;
    width: 40%;
}

#menu-toggle:hover span {
    background-color: #FFF;
}

#contact {
    background-color: #FFF;
    height: 100%;
    left: 100%;
    margin: 0;
    overflow-y: auto;
    padding: 12px;
    position: fixed;
    top: 0;
    transition: margin .6s;
    width: 390px;
}

#menuOffScreen {
    background-color: rgba(35, 35, 35, .3);
    cursor: pointer;
    height: 100%;
    left: -200%;
    margin-left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: left 0s ease-in-out .3s, margin 0s, opacity .3s;
    width: 100%;
    z-index: 2;
}

#closecomment {
    color: var(--dark-blue);
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
}

#contact-button {
    right: 5%;
    top: 14px;
    width: 84px;
}

#contact-button i {
    font-size: 1.8em;
    padding-top: 8px;
}

.contact-open #screen {
    left: -390px;
}

.menu-open #menuOffScreen,
.contact-open #menuOffScreen {
    left: 0px;
    margin-left: -390px;
    opacity: 1;
    transition: left 0s, margin .6s, opacity .6s;
}

.menu-open #menuOffScreen {
    margin-left: 240px;
}

.contact-open #contact {
    margin-left: -390px;
}

.meeting-button:before,
.meeting-button:after {
    border: 2px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    width: 0;
}

.meeting-button:before {
    left: 0;
    top: 0;
}

.meeting-button:after {
    bottom: 0;
    right: 0;
}

.meeting-button:hover {
    color: #FFF;
    background-color: var(--dark-blue);
    transition: color .8s;
    color: #FFF;
}

.meeting-button:hover:before,
.meeting-button:hover:after {
    height: 100%;
    width: 100%;
}

.meeting-button:hover:before {
    border-right-color: #FFF;
    border-top-color: #FFF;
    transition: width 0.2s ease-out, height 0.2s ease-out 0.2s;
}

.meeting-button:hover:after {
    border-bottom-color: #FFF;
    border-left-color: #FFF;
    transition: height 0.2s ease-out .6s, width 0.2s ease-out 0.4s;
}

/* LIGHTBOX */
#lightbox {
    height: 0%;
    position: fixed;
    top: -100%;
    transition: top .85s, height .85s;
    width: 100%;
    z-index: 3;
}

#lightbox>span {
    background-color: rgba(35, 35, 35, .8);
    cursor: pointer;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

#lightbox>span span {
    color: #fff;
    font-size: 3.6em;
    line-height: .4em;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}

#lightbox div {
    box-shadow: 0 8px 15px 0 #000;
    margin: -120px auto 0;
    max-height: 80%;
    overflow: auto;
    position: relative;
    transform: rotateX(90deg) translateY(-160px);
    transition: .24s;
    width: 88%;
}

#lightbox img {
    display: block;
    width: 100%;
    background-color: #FFF;
}

#lightbox.on {
    top: 0;
    height: 100%;
}

#lightbox.on div {
    margin-top: 50px;
    transition: .8s ease-out .32s;
    transform: rotateX(0deg) translateY(0px);
}

.slide img.lightbox {
    cursor: pointer;
}

.slide-content {
    padding: 30px;
}

.video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-list {
    padding: 0;
}

.icon-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-list li a {
    font-weight: bold;
    text-decoration: underline;
}

.icon-list .icon {
    width: 65px;
    height: auto;
    margin-right: 25px;
}

.icon-list .text {
    flex: 1;
    font-weight: 600;
}

.accordion .accordion-button {
    padding: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    border: 0;
    box-shadow: none;
}

.accordion .accordion-button:hover {
    background-color: #F2F2F2;
}

.accordion .accordion-button .icon {
    height: 62px;
    width: auto;
    margin-right: 15px;
}

.accordion .accordion-button::after {
    background-image: url('../images/icons/accordion-arrow.svg');
    height: 16px;
}

.accordion .accordion .accordion-button:not(.collapsed)::after {
    background-image: url('../images/icons/accordion-arrow.svg');
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--brand-primary);
}

.accordion .accordion-item {
    border-bottom: 1px solid #000;
    padding: 0px;
}

.accordion .accordion-body {
    padding-top: 10px;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20PX;
}

.owl-carousel iframe {
    min-height: 600px !important;
}

.divider {
    display: block;
    width: 80%;
    height: 5px;
    background-color: var(--brand-primary);
    margin: 25px auto 50px;
}

.logos-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logos-row .logo {
    width: 50%;
    height: auto;
}

.carousel-row {
    display: flex;
    flex-wrap: wrap;
}

.carousel-row>div {
    width: 50%;
}

.aw-carousel h4 {
    background-color: var(--brand-secondary);
    color: #FFF;
    display: block;
    padding: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 25px;
}

.aw-carousel {
    padding: 0 15px;
}

.aw-carousel .owl-nav button {
    height: 100%;
    background-color: var(--brand-primary) !important;
    width: 35px;
    opacity: 50%;
    transition: opacity 300ms ease-in-out;
    position: absolute;
    top: 0;
}

.aw-carousel .owl-nav button.disabled {
    display: none;
}

.aw-carousel .owl-nav button.owl-prev {
    left: -35px;
}

.aw-carousel .owl-nav button.owl-next {
    right: -35px;
}

.aw-carousel .owl-nav button:hover {
    opacity: 100%;
}

.aw-carousel .owl-nav button span {
    font-size: 3rem;
    color: #000;
    font-weight: 700;
}

.modal .logo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

@media screen and (min-width: 992px) {
    .modal .logo {
        max-width: 200px;
    }
}

.modal .modal-title {
    font-size: 2rem;
    font-weight: 850;
    margin-bottom: 30px;
}

.modal-dialog {
    position: relative;
}

.modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    filter: invert(100%);
}

.modal .modal-content {
    padding: 0px;
    background-color: var(--brand-primary);
}


.modal .modal-dialog {
    width: 95%;
    max-width: 1400px;
}

.modal .modal-dialog h1 {
    color: #FFF;
}

.modal .modal-header,
.modal .modal-footer {
    border: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}

.modal .intro-text {
    font-size: 1.25rem;
    font-weight: 700;
}


.modal .modal-body {
    max-height: 70vh;
    overflow: auto;
}

@media screen and (min-width: 992px) {
    .modal .modal-body {
        padding: 0 40px;
    }
}

.modal .btn {
    background-color: var(--light-blue);
    color: #000 !important;
    transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
    padding: 12px 16px;
    font-size: 1.15rem;
    border: 0;
    font-weight: 600;
}

.modal .btn:hover {
    background-color: var(--dark-blue);
    color: #FFF !important;
}


@media screen and (min-width: 992px) {

    .modal .intro-text {
        font-size: 1.688rem;
    }

    .modal p.small {
        font-size: 1.15rem;
    }

}

.blurb {
    background-color: #eee;
    padding: 20px;
    border-radius: 8px;
}

.blurb.dark-blue-border {
    border: 2px solid var(--dark-blue);
}

.blurb.white {
    background-color: #FFF;
}

.blurb.white * {
    color: #333333;
}

.blurb.blue {
    background-color: var(--blue);
}

.blurb .icon {
    width: 100%;
    height: auto;
    max-width: 160px;
    margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
    .blurb .icon {
        margin-bottom: 40px;
    }
}

.blurb.blue h3,
.blurb.blue h4,
.blurb.blue p,
.blurb.blue li,
.blurb .blurb.blue h3,
.blurb .blurb.blue h4,
.blurb .blurb.blue p,
.blurb .blurb.blue li {
    color: #FFF;
}

.blurb.light-blue {
    background-color: var(--light-blue);
}

.blurb.light-blue h3,
.blurb.light-blue h4,
.blurb.light-blue p,
.blurb.light-blue li {
    color: #333333;
}

.blurb h3,
.blurb h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.25rem;
    border: 0;
}

.blurb h3.green,
.blurb h4.green {
    color: var(--yellow);
}

.blurb p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 992px) {

    .blurb h3,
    .blurb h4 {
        font-size: 1.4rem;
    }
}


@media screen and (min-width: 1400px) {

    .blurb h3,
    .blurb h4 {
        font-size: 1.688rem;
    }
}

.blurb.light-azure {
    background-color: var(--light-azure);
}

.speech-bubble {
    display: block;
    position: relative;
    width: 100%;
    height: calc(100% - 60px);
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF;
    padding: 20px;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 8px;
}

.speech-bubble p {
    color: #333333 !important;
    font-weight: 600;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #ffff;
}

.timeline .timeline-blurb {
    background-color: #FFF;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    border: 3px solid var(--brand-primary);
    border-radius: 8px;
}

.timeline .timeline-blurb * {
    color: var(--brand-primary);
}

.timeline .timeline-blurb.active {
    background-color: #FEFFCB;
}

.timeline .current {
    text-align: center;
    display: block;
    color: var(--brand-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 5px;
}

.timeline .current .arrow {
    display: block;
    line-height: 1;
}

@media screen and (min-width: 992px) {
    .timeline .current {
        font-size: 1.563rem;
    }

    .timeline .timeline-blurb {
        height: 100%;
    }
}


.blue-table {
    border: 1px solid var(--blue);
    margin-bottom: 20px;
    width: 100%;
}

.blue-table tr {
    width: 100%;
}

.blue-table th {
    background-color: var(--blue);
    color: #FFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px;
}

.blue-table tr:nth-child(odd) {
    background-color: #E0EDF6;
}

.blue-table tr td:first-child {
    font-weight: 600;
}

.blue-table td {
    font-size: 0.75rem;
    padding: 8px;
}

@media screen and (min-width: 992px) {
    .blue-table td {
        font-size: 1rem;
    }

    .blue-table th {
        font-size: 1.15rem;
    }

}


/* MEDIA QUERIES */
@media screen and (max-width: 992px) {
    #menu {
        margin-left: -240px;
        position: relative;
        width: 240px;
        z-index: 2;
    }

    #menu div {
        height: 60%;
    }


    #menu-toggle {
        display: block;
    }

    #contact-button {
        right: 20px;
    }

    .menu-open #screen {
        left: 240px;
    }

    #nav-progress {
        width: 100%;
    }

    #nav-progress a {
        width: 15%;
    }

    #nav-progress ul {
        width: 70%;
    }

    #nav-progress ul li a {
        border-width: 20px 1px;
    }

    #slides {
        height: 84%;
        top: 0;
    }

    .container {
        left: 0;
        width: 100%;
    }

    .slide {
        height: 100%;
        width: 100%;
    }

    .slide.showing {
        margin-left: 0;
    }

    .menu-open .container {
        margin-left: 240px;
    }

    #lightbox img {
        max-width: 8000%;
        width: 160%;
    }
}

#menuinner {
    background-color: var(--brand-primary) !important;
}

.card {
    background-color: #FFF;
    padding: 20px;
    margin-bottom: 20px;
}

.card .icon {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    height: auto;
    max-width: 150px;
}

.card p {
    color: #000 !important;
}

.card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.card p {
    font-size: 1rem;
}

.card *:last-child {
    margin-bottom: 0 !important;
}