:root {
    --blue: #1D8AC1;
    --light-blue: #F1F8FB;
    --orange: #D87045;
    --yellow: #FCD378;
    --medium-blue: #DAF2FD;
    --light-yellow: #FFF7E5;
    --black: #3A3A3A;
    --light-gray: #EFEFEF;
    --brand-primary: var(--blue);
    --brand-secondary: var(--yellow);
}

.blue {
    color: var(--blue) !important;
}

.medium-blue {
    color: var(--medium-blue) !important;
}

.light-blue {
    color: var(--light-blue) !important;
}

.orange {
    color: var(--orange) !important;
}

.yellow {
    color: var(--yellow) !important;
}

.light-yellow {
    color: var(--light-yellow) !important;
}

.black {
    color: var(--black) !important;
}

.white {
    color: #FFF !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.bg-blue>* {
    color: #FFF;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}


.bg-white {
    background-color: #FFF !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.bg-yellow {
    background-color: var(--yellow) !important;
}

.bg-light-yellow {
    background-color: var(--light-yellow) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}


.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 500 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.rounded {
    border-radius: 10px;
    overflow: hidden;
}

body,
html {
    background-color: #AAA;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    margin: 0px;
    min-height: 100%;
    overflow-x: hidden;
    padding: 0px;
}

h1,
h2 {
    font-family: 'Roboto Slab', serif;
    ;
}

h3 {
    font-family: 'Poppins', sans-serif;
}

h5 {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

p,
li {
    font-size: 1rem;
}


p {
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

p.large,
li.large {
    font-size: 1.15rem;
}

p.small,
li.small {
    font-size: 0.85rem;
}

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

    p,
    li {
        font-size: 1.15em;
    }

    p.large,
    li.large {
        font-size: 1.5rem;
    }

    p.small,
    li.small {
        font-size: 1rem;
    }
}

p a,
li a {
    color: var(--blue);
    font-weight: 500;
}

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

.button {
    background-color: var(--brand-primary);
    border-radius: 14px;
    border: 0;
    color: #fff;
    display: inline-block;
    letter-spacing: .05em;
    margin-top: 12px;
    padding: 4px 16px;
    transition: background-color .2s;
}

.button:hover {
    background-color: var(--brand-secondary);
    color: #fff;
}

.button:focus {
    color: #fff;
}


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

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



/* MAIN SCREEN */
#screen {
    height: 100%;
    left: 0%;
    position: absolute;
    transition: left .6s;
    width: 100%;
    background-image: url('../images/blue-rays-bg.png');
    background-size: cover;
    background-position: center;
}

#menu .top-menu {
    padding: 15px;
    height: auto;
    background-color: #FFF;
}

#menu .top-menu .logo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
    #menu .top-menu .logo {
        max-width: 160px;
        margin-bottom: 20px;
    }
}

#menu .top-menu h1 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

#menu .top-menu h1 .subhead {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    text-transform: initial;
    margin-top: 5px;
    font-weight: 700;
}

@media screen and (min-width: 100px) {
    #menu .top-menu h1 {
        font-size: 1.5rem;
    }
}

/* 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 {
    position: relative;
    background-color: #FFF;
    float: left;
    height: 100%;
    overflow: auto;
    padding-bottom: 18px;
    width: 15%;
}



#menu div {
    background-color: var(--black);
    border-width: 1px 0;
}

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

#menu ul li {
    border-bottom: 1px solid #ccc;
    margin: 0;
    width: 100%;
    font-size: 1rem;
}

#menu ul li a {
    color: var(--black);
    display: block;
    padding: 2px 8px 10px;
    position: relative;
    width: 100%;
    background-color: var(--medium-blue);
}

#menu ul li a i {
    background-color: var(--blue);
    color: #FFF;
    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 {
    background-color: #FFF;
    color: var(--blue);
    opacity: 1;
}

#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 {
    background-color: var(--yellow);
}

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

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

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

#langaugeselectcont {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}

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

#langaugeselectcont label {
    margin-left: 5%;
    width: 90%;
    color: var(--black);
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* 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;
    border-radius: 10px;
}

.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;
}

.slide h2 {
    font-size: 1.75rem;
    color: var(--black);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.slide h3 {
    font-size: 1.35rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 700;
}

@media screen and (min-width: 992px) {
    .slide h3 {
        font-size: 1.75rem;
    }
}

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

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

#nav-progress a {
    background-color: var(--medium-blue);
    color: var(--black);
    float: left;
    height: 100%;
    line-height: 62px;
    text-align: center;
    width: 10%;
}

#nav-progress>a:hover {
    background-color: var(--yellow);
}

#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(--black);
    border: 1px solid var(--medium-blue);
    border-width: 23px 2px;
    height: 100%;
    width: 100%;
}

#nav-progress ul li a.active {
    background-color: var(--black);
    border-color: var(--blue);
}

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

#nav-progress ul li a:hover {
    border-color: var(--yellow);
}

/* MENU & COMMENT BUTTONS */
.meeting-button {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px var(--brand-primary);
    color: var(--brand-primary);
    font-size: .9em;
    font-weight: 700;
    height: 60px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 60px;
}

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

#menu-toggle:hover {
    color: var(--brand-secondary);
}

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

#menu-toggle:hover span {
    background-color: var(--brand-secondary);
}

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

#contact .logo {
    width: 100%;
    height: auto;
    max-width: 170px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

@media screen and (min-width: 992px) {
    #contact .logo {
        margin-left: 15px;
        margin-right: 0;
    }
    
}

#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: #333;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
}

#closecomment:hover {
    text-decoration: underline;
    color: var(--blue);
}

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

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

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

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

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

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

.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: var(--brand-secondary);
    transition: color .8s;
}

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

.meeting-button:hover:before {
    border-right-color: var(--brand-secondary);
    border-top-color: var(--brand-secondary);
    transition: width 0.2s ease-out, height 0.2s ease-out 0.2s;
}

.meeting-button:hover:after {
    border-bottom-color: var(--brand-secondary);
    border-left-color: var(--brand-secondary);
    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: 100;
}

#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);
}

img.lightbox {
    transition: filter 150ms ease-in-out;
    position: relative;
}

img.lightbox:hover {
    cursor: pointer;
    filter: brightness(80%);
}

.lightbox-container {
    position: relative;
    overflow: hidden;
}

.lightbox-container::after {
    content: "Click to enlarge";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0px 8px 0px 5px;
    padding: 5px;
    background-color: #FFF;
    color: var(--black);

}

.slide-content {
    padding: 30px;
}

.global-cta-container {
    position: absolute;
    top: 20px;
    right: 40px;
    display: flex;
    align-items: center;
}

.global-cta-container a img {
    transition: filter 150ms ease-in-out;
}

.global-cta-container a:hover img {
    filter: brightness(80%);
}

.global-cta-container .comment-button {
    background-color: var(--yellow);
    display: inline-block;
    width: 128px;
    text-align: center;
    padding: 5px 10px;
    border-radius: 8px;
    color: #464646;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    margin-top: -10px;
}

.global-cta-container .comment-button:hover {
    background-color: #c7a65e;
}

.global-cta-container .comment-button i {
    font-size: 1.5rem;
}

.lightbox-text {
    font-size: 0.75rem !important;
    margin-top: 10px;
    margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
    .lightbox-text {
        font-size: 0.9rem !important;
    }
}

.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: 500;
}

.accordion .accordion-button {
    background-color: var(--yellow);
    border-radius: 12px 12px 0px 0px !important;
    padding: 18px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: filter 150ms ease-in-out;
}

@media screen and (min-width: 992px) {
    .accordion .accordion-button {
        font-size: 1.5rem;
        padding: 18px 30px;
    }
}

.accordion .accordion-button:hover {
    filter: brightness(80%);
}

.accordion-button:not(.collapsed) {
    color: var(--black);
}

.accordion .accordion-item {
    margin-bottom: 20px;
    border: 0;
}

.accordion .accordion-body {
    background-color: var(--light-yellow);
    padding: 20px;
    border-radius: 0px 0px 12px 12px;

}

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

}

.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 .item {
    z-index: 2;
}

.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;
}

.star-icon {
    width: 100%;
    height: auto;
    max-width: 80px;
}

@media screen and (min-width: 992px) {
    .star-icon {
        width: 100%;
        height: auto;
        max-width: 140px;
    }
}

.standard-section {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
}

@media screen and (min-width: 992px) {
    .standard-section {
        padding: 50px 30px;
    }

}

hr {
    margin: 40px 0;
    border-color: #757575;
    opacity: 1;
}

@media screen and (min-width: 992px) {
    hr {
        margin: 60px 0;
    }
}

.criteria {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.criteria .criteria-item {
    display: flex;
    margin: 10px 5px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--blue);
    font-size: 1rem;
}

.criteria .criteria-item .icon-or-number {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    color: var(--blue);
    font-weight: 700;
}

.criteria .criteria-item .icon-or-number .icon {
    width: 100%;
    height: auto;
    padding: 10px;
}

.criteria-col .criteria {
    margin: 0;
}

.criteria-col .criteria .criteria-item {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
}

.criteria-col .criteria .icon-or-number {
    width: 50px;
    min-width: 50px;
}

.criteria-col .criteria .icon-or-number .icon {
    padding: 5px;
}

.criteria-col .criteria .criteria-item .name {
    padding: 10px;
    font-size: 1rem;
    justify-content: flex-start;
}

.criteria .criteria-item .name {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue);
    color: #FFF;
    font-weight: 700;
    padding: 10px 20px;
}

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

@media screen and (min-width: 992px) {
    .criteria-col h3 {
        font-size: 2rem;
    }
}




.blurb {
    border-radius: 8px;
    overflow: hidden;
}

.blurb.top-border {
    border-top: 30px solid var(--black);
}

.blurb.bg-light-yellow.top-border {
    border-color: var(--yellow);
}

.blurb.bg-light-blue.top-border {
    border-color: var(--blue);
}

.blurb .blurb-header {
    padding: 10px 25px;
}

.blurb .blurb-header h3 {
    margin-bottom: 0;
}

.blurb .blurb-header.bg-blue h3 {
    color: #FFF;
}

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

.icon-blurb {
    padding-top: 50px;
}

.icon-blurb .content {
    border-radius: 8px;
    background-color: var(--orange);
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    text-align: center;
}

.icon-blurb .content .icon {
    width: auto;
    height: 100px;
    margin-top: -50px;
    margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
    .icon-blurb {
        padding-top: 70px;
    }

    .icon-blurb .content {
        padding-left: 35px;
        padding-right: 35px;
        padding-bottom: 35px;
    }

    .icon-blurb .content .icon {
        height: 140px;
        margin-top: -70px;
    }
}

.intro-modal {
    background-image: url('../images/meeting-bg.png');
    background-size: cover;
    background-position: center;
}

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

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

.modal .btn-close {
    position: absolute;
    top: -20px;
    right: 10px;
}

.modal .modal-content {
    padding: 0px;
    border-top: 24px solid var(--yellow);
}

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

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

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

.modal .modal-header,
.modal .modal-footer {
    border: 0;
}

.modal .modal-blurb {
    background-color: var(--orange);
    border-radius: 12px;
    color: #000;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.modal h2 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.modal h2 .pre {
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.modal h2 .post {
    font-size: 1.25rem;
    display: block;
    margin-top: 10px;
}

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

    .modal h2 .pre {
        font-size: 2rem;
    }

    .modal h2 .post {
        font-size: 2rem;
    }
}

.modal h3 {
    font-size: 1.25rem;
    display: block;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
}

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

.modal .btn {
    background-color: var(--black);
    color: #FFF;
    transition: background-color 150ms ease-in-out;
    padding: 12px 16px;
    font-size: 1.15rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.modal .btn:hover {
    background-color: var(--blue);
}

@media screen and (min-width: 992px) {
    .modal .btn {
        font-size: 1.25rem;
    }
}

.comment-modal .modal-body {
    max-height: 80vh;
}



.icon-and-text {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}

.icon-and-text .icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.icon-and-text .text {
    width: 100%;
}

@media screen and (min-width: 992px) {
    .icon-and-text .icon {
        width: 150px;
        margin-bottom: 0px;
        margin-right: 20px;
    }

    .icon-and-text .text {
        flex: 1;
        width: auto;
    }
}


/* MEDIA QUERIES */

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

    img.logo {
        display: block;
        width: 50%;
        margin: 0 auto;
        padding-top: 15px;
    }

    #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%;
    }
}