.content_box_image {
	margin-bottom: 15px;
}

.text-shadow {
    text-shadow: 0px 0px 10px rgba(54,54,54,.5);
}

.text-shadow-dark {
    text-shadow: 0px 0px 10px rgba(54,54,54,1);
}

.box-shadow {
	box-shadow: 0px 10px 20px rgba(0,0,0,.08);
}

.no-hover {
	color: inherit;
    text-decoration: none;
}

.no-hover:hover {
	text-decoration: none;
	color: inherit;
}

.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.object-fit-cover {
    -webkit-object-fit: cover !important;
    -moz-object-fit: cover !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
    height: 100%;
}

.bg-favicon {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0)), url('/assets/img/logos/favicons/favicon.svg') center center no-repeat;
}

.bg-favicon-faded {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background: linear-gradient(rgba(255,255,255,.95),rgba(255,255,255,.95)), url('/assets/img/logos/favicons/favicon.svg') center center no-repeat;
}

.bg-green-gradient {
    background: linear-gradient(0deg, #C8E16F 0%, #5BBB63 100%) !important;
}

.bg-blue-gradient {
    background: linear-gradient(0deg, #0477BB 0%, #2FAAE0 100%) !important;
}

.bg-orange-gradient {
    background: linear-gradient(0deg, #F26135 0%, #F89F59 100%) !important;
}

@media (min-width: 1200px) {
    .home-duotone-bg {
        background: linear-gradient(90deg, #F8F9FA 50%, #005CB9 50%) !important;
    }

    .home-duotone-bg-bo {
        background: linear-gradient(90deg, #0477BB 50%, #F26135 50%) !important;
    }
}

@media (max-width: 1199.98px) {
    .container-lg-stretched {
        max-width: 100% !important;
    }

    .bg-lg-light {
        background: #F8F9FA;
    }

    .bg-lg-rblue {
        background: #005CB9;
    }

    .bg-lg-blue {
        background: #0477BB;
    }

    .bg-lg-orange {
        background: #F26135;
    }
}

@media (max-width: 1199.98px) {
	.tooltip {
		display: none;
	}
}


/* MARGIN/PADDING */

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-n10 {
    margin-top: -6rem;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-18 {
    padding-bottom: 18px;
}

.pb-33 {
    padding-bottom: 33px;
}

.pb-38 {
    padding-bottom: 38px;
}

.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 768px) {
    .px-sm-30 {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.pt-14 {
    padding-top: 14px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-18 {
    padding-top: 18px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-38 {
    padding-top: 38px;
}

.row-15 {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row-15 [class*=col-] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}


/* COLORS

Royal: #005CB9;
Blue: #0477BB;
Light Blue: #2FAAE0;
Green: #5BBB63;
Light Green: #C8E16F;
Orange: #F26135;
Light Orange: #F89F59;
Grey: #808285;
Slate: #363636;

*/

.bg-bgo-gradient {
    background: #005cb9;
    background: -moz-linear-gradient(left, #005cb9 0%, #5BBB63 50%, #F26135 100%);
    background: -webkit-linear-gradient(left, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    background: linear-gradient(to right, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#005cb9', endColorstr='#F26135',GradientType=1 );
}

.bg-rblue {
    background-color: #005CB9;
}

.text-rblue {
    color: #005CB9;
}

.bg-blue {
    background-color: #0477BB;
}

.text-blue {
    color: #0477BB;
}

.bg-lblue {
    background-color: #2FAAE0;
}

.text-lblue {
    color: #2FAAE0;
}

.bg-green {
    background-color: #5BBB63;
}

.text-green {
    color: #5BBB63;
}

.bg-lgreen {
    background-color: #C8E16F;
}

.text-lgreen {
    color: #C8E16F;
}

.bg-orange {
    background-color: #F26135;
}

.text-orange {
    color: #F26135;
}

.bg-lorange {
    background-color: #F89F59;
}

.text-lorange {
    color: #F89F59;
}

.bg-grey {
    background-color: #808285;
}

.text-grey {
    color: #363636;
}

.bg-dgrey {
    background-color: #666;
}

.text-dgrey {
    color: #666;
}

.text-black {
    color: #000;
}

.bg-black {
    color: #000;
}

.text-slate {
    color: #363636;
}

.bg-slate {
    color: #363636;
}

.bg-faded-white {
    background-color: rgba(255,255,255,.8);
    backdrop-filter: blur(2px);
}

.bg-faded-black {
    background-color: rgba(0,0,0,.5);
    backdrop-filter: blur(2px);
}

.bg-faded-slate {
    background-color: rgba(54,54,54,.8);
    backdrop-filter: blur(2px);
}

.bg-trans {
    background: transparent;
}

.divided-text-grey {
    overflow: hidden;
    text-align: center;
}

.divided-text-grey:before,
.divided-text-grey:after {
    background-color: #808285;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.divided-text-grey:before {
    right: 7.5px;
    margin-left: -50%;
}

.divided-text-grey:after {
    left: 7.5px;
    margin-right: -50%;
}

.border-bot-gradient,
.border-top-gradient {
    position: relative;
}

.border-top-gradient::before {
    content: '';
    height: 5px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    background: #005cb9;
    background: -moz-linear-gradient(right, #005cb9 0%, #5BBB63 50%, #F26135 100%);
    background: -webkit-linear-gradient(right, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    background: linear-gradient(to right, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#005cb9', endColorstr='#F26135',GradientType=1 );
}

.border-bot-gradient::after {
    content: '';
    height: 5px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    background: #005cb9;
    background: -moz-linear-gradient(right, #005cb9 0%, #5BBB63 50%, #F26135 100%);
    background: -webkit-linear-gradient(right, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    background: linear-gradient(to right, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#005cb9', endColorstr='#F26135',GradientType=1 );
}

.overlay-white {
    position: relative;
    display: block;
    width: 100%;
}

.overlay-white:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-180deg, rgba(255,255,255,.2),rgba(255,255,255,.2));
}


/* TYPOGRAPHY

font-family: 'Balthazar', serif;
font-family: 'Lato', sans-serif;

*/

@media (max-width: 1199.98px) {
    h1, .h1 {
        font-size: calc(1.5rem + 1vw);
    }

    h2, .h2 {
        font-size: calc(1.4rem + 0.75vw);
    }

    h3, .h3 {
        font-size: calc(1.3rem + 0.6vw);
    }

    h4, .h4 {
        font-size: calc(1.25rem + 0.5vw);
    }

    .display-1 {
        font-size: calc(1.8rem + 4vw);
    }

    .display-2 {
        font-size: calc(1.7rem + 3.5vw);
    }

    .display-3 {
        font-size: calc(1.6rem + 3vw);
    }

    .display-4 {
        font-size: calc(1.5rem + 2.5vw);
    }
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #363636;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}

ul {
    list-style-type: square;
}

.spaced-list li {
    line-height: 1.25;
    padding: .5rem 0;
}

ul.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    line-height: 1.25;
    position: relative;
    padding: .25rem 0 .25rem 1.5em;
}

.checklist li:before {
    content: '';
    position: absolute;
    left: 0;
    width: 1em;
    height: 1em;
    background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path fill='%23363636' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}

a {
    font-weight: 700;
    color: #0477BB;
}

a:hover,
a:focus,
a:target,
a:active {
  color: #2FAAE0;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #363636;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .5rem;
}

.medium {
    font-size: 14px;
}

.large {
    font-size: 17px;
}

.lead {
    font-size: 1.25rem;
}

@media (max-width: 1199.98px) {
    .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .lead {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .lead {
        font-size: 1.05rem;
    }
}

.service-text ul {
    font-size: 15px;
    padding-left: 1.5rem;
}

.service-text ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    column-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
}

.no-columns {
	columns:1 !important;
	-webkit-columns: 1 !important;
    -moz-columns: 1 !important
}

@media (min-width: 992px) {
    .service-text ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (min-width: 1200px) {
    .service-text ul {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
}

.divided-text {
    overflow: hidden;
    text-align: center;
}

.divided-text:before,
.divided-text:after {
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.divided-text:before {
    right: 7.5px;
    margin-left: -50%;
}

.divided-text:after {
    left: 7.5px;
    margin-right: -50%;
}

.divided-text.orange:before,
.divided-text.orange:after {
    background-color: #F26135;
}


/* BUTTONS */

.btn {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: normal;
    transition: all .3s ease;
}

.btn .fa-external-link-alt {
    font-size: 12px;
    margin-bottom: 1px;
}

.btn-light {
    color: #0477BB;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:target,
.btn-light:active {
    color: #2FAAE0;
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle {
    color: #2FAAE0;
}

.btn-block {
    white-space: normal;
}

.btn-reg {
    padding: .75rem 1.5rem;
    border-radius: 30px;
}

.btn-blue {
    background-color: #0477BB;
    color: #FFF;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:target,
.btn-blue:active {
    background-color: #2FAAE0;
    color: #FFF;
}

.btn-green {
    background-color: #006F66;
    color: #FFF;
}

.btn-green:hover,
.btn-green:focus,
.btn-green:target,
.btn-green:active {
    background-color: #00524B;
    color: #FFF;
}

.btn-blue.disabled, .btn-blue:disabled {
    opacity: .75;
}

.btn-outline-blue {
    background-color: transparent;
    color: #0477BB;
    border: 1px solid #0477BB;
}

.btn-outline-blue:hover,
.btn-outline-blue:focus,
.btn-outline-blue:target,
.btn-outline-blue:active {
    background-color: #0477BB;
    color: #FFF;
    border: 1px solid #0477BB;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:target,
.btn-outline-light:active {
    color: #2FAAE0 !important;
    background-color: #FFF;
}


/* NAVIGATION */

.navbar {
    padding: 15px 0;
    transition: all .3s ease;
}

a.navbar-brand {
    padding: 0;
    margin: 0 15px 0 0;
}

.navbar-brand img {
    width: 180px;
    height: 49px;
}

.navbar-nav .nav-item .nav-link {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all .3s ease;
}

.dropdown-toggle::after {
    font-size: 10px;
}

.dropdown-item {
    padding: .5rem 1rem;
    font-size: 15px;
    color: #0477BB;
    white-space: normal;
    line-height: 1.35;
    border-radius: 30px;
    transition: all .3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active {
    color: #2FAAE0;
    background-color: #FFF;
    box-shadow: 0px 10px 20px rgba(0,0,0,.04);
}

.dropdown-menu {
    margin: 0;
    padding: .75rem .5rem;
    border: 0;
    border-radius: 0;
    background-color: #F8F9FA;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(-180deg);
    transition: all .1s ease-in-out;
}

#social-nav span {
    text-transform: capitalize;
}

.social-icon {
    width: 25px;
}

.nav-link .fa-external-link-alt {
    margin-left: 4px;
    margin-top: 6px;
    vertical-align: top;
    font-size: 10px;
}

@media (min-width: 1200px) {
    .nav-offset {
        margin-top: -79px;
    }

    .nav-padding {
        padding-top: 79px;
    }

    .navbar.navbar-scrolled {
        background: #FFF;
        box-shadow: 0px 10px 20px rgba(0,0,0,.08);
    }

    .navbar {
        background: linear-gradient(rgba(54,54,54,.4),rgba(0,0,0,0));
    }

    .navbar::after {
        background: linear-gradient(rgba(54,54,54,.8),rgba(0,0,0,0));
        content: '';
        width: 100%;
        height: 160px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: -1;
    }

    .navbar-scrolled.navbar::after {
        background: transparent;
        content: '';
        width: 100%;
        height: 0;
        position: absolute;
        left: 0;
        right: 0;
        z-index: -1;
    }

    .navbar-nav .nav-item .nav-link {
        text-align: center;
        padding: .5rem 1rem;
        color: #FFF;
        text-shadow: 0px 0px 10px rgba(54,54,54,.5);
    }

    .navbar-scrolled .navbar-nav .nav-item .nav-link {
        color: #0477BB;
        text-shadow: none;
    }

    .navbar-nav .nav-item .nav-link:hover,
    .navbar-nav .nav-item .nav-link:focus {
        opacity: .85;
    }

    .navbar-scrolled .navbar-nav .nav-item .nav-link:hover,
    .navbar-scrolled .navbar-nav .nav-item .nav-link:focus {
        color: #2FAAE0;
    }

    .nav-item.divider {
        border-left: 1px solid #DEE2E6;
        margin: 0 .5rem;
    }

	.dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
 	}

    .dropdown:hover a.nav-link {
        opacity: .85;
    }

    .dropdown.show a.nav-link {
        opacity: .85;
    }

    .navbar-scrolled .dropdown:hover a.nav-link {
        color: #2FAAE0;
    }

    .navbar-scrolled .dropdown.show a.nav-link {
        color: #2FAAE0;
    }

	.dropdown:hover .fa-chevron-down {
		transform: rotate(-180deg);
		transition: all .1s ease-in-out;
	}

	.dropdown>a.nav-link {
        pointer-events: none;
	}

	.dropdown>.dropdown-toggle:active {
        pointer-events: none;
	}

    .dropdown-menu {
        min-width: 225px;
        box-shadow: 0px 10px 20px rgba(0,0,0,.08);
    }

    /* .dropdown:last-of-type > .dropdown-menu {
        left: auto;
        right: 0;
	} */

    .nav-item.nav-link-active a.nav-link:before,
    .nav-item a.nav-link.active:before {
        height: 1px;
        content: "";
        position: absolute;
        left: .75rem;
        right: .75rem;
        bottom: .25rem;
        margin-left: auto;
        margin-right: auto;
        background-color: #2FAAE0;
    }

    #social-nav {
        margin-left: 15px;
        width: 180px;
        /* margin-left: 1rem; */
        justify-content: flex-end;
        text-align: center;
    }

    #social-nav li {
        margin-left: 1rem;
    }

    #social-nav li:first-of-type {
        margin-left: 0;
    }

    #social-nav li a {
        padding: 0;
    }
}

@media (max-width: 1199.98px) {
    .navbar {
        background: #FFF;
    }

    .navbar .container {
        padding: 0 15px;
    }

    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-collapse {
        max-height: calc(80vh - 61px);
        overflow-y: auto;
        max-height: 600px;
    }

    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

    .navbar-brand img {
        width: 164px;
        height: 45px;
    }

    .brand-color,
    .brand-white {
        display: none !important;
    }

	.navbar-nav .nav-item .nav-link {
		padding: .75rem 0;
        color: #0477BB;
        font-size: 1rem;
	}

    .nav-item.divider {
        border-top: 1px solid #DEE2E6;
        margin: 1rem 0;
    }

	.dropdown.show .nav-link {
		color: #2FAAE0;
	}

	.dropdown.show .fa-chevron-down {
		transform: rotate(-180deg);
		transition: all .1s ease-in-out;
	}

    .dropdown-menu {
        margin: 0 0 .75rem 0;
    }

    /* .nav-item.nav-link-active a.nav-link:before {
        height: 1px;
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: .5rem;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        background-color: #2FAAE0;
    } */

    #social-nav {
        border-top: 1px solid #DEE2E6;
        flex-direction: row;
        justify-content: center;
        padding-bottom: 0;
    }

    #social-nav li a {
        padding: .75rem;
    }
}

@media (max-width: 575.98px) {
    .navbar .container {
        padding: 0 15px;
    }
}


/* MOBILE MENU */

.navbar-toggler {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 100%;
}

.navbar-toggler:focus {
    outline: none;
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    background-color: #0477BB;
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:hover>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:active>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    background: #DC3545;
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    background: #DC3545;
    transform: rotate(-45deg) translate(4px, -4px);
    transition: ease all .2s;
}


/* HOME */

.hero-full {
    position: relative;
}

.hero-full .carousel-item {
    overflow: hidden;
}

.hero-bg {
    height: calc(80vh - 75px);
    min-height: 540px;
    max-height: 810px;
    display: block;
    position: relative;
}

.hero-bg-tall {
    height: calc(80vh - 75px);
    min-height: 540px;
    max-height: 1080px;
    display: block;
    position: relative;
}

.hero-text {
    z-index: 2;
}

.hero-text-centered {
    top: 40%;
    transform: translateY(-40%);
    left: 0;
    right: 0;
    position: absolute;
    display: block;
    z-index: 2;
}

.hero-text-centered h2 {
    color: #FFF;
    text-shadow: 0px 0px 10px rgba(54,54,54,.5);
}

.hero-text-centered p {
    color: #FFF;
    text-shadow: 0px 0px 10px rgba(54,54,54,1);
}

.hero-box {
    /* background-color: rgba(54,54,54,.8);
    backdrop-filter: blur(2px); */
    background: #FFF;
    box-shadow: 0px 10px 20px rgba(0,0,0,.08);
}

.hero-button {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
}

@media (min-width: 1200px) {
    .hero-bg {
        height: 85vh;
        min-height: 540px;
        max-height: 1080px;
    }

    .hero-bg-tall {
        height: 100vh;
        min-height: 540px;
        max-height: 1080px;
    }

    .hero-text-centered {
        top: 45%;
        transform: translateY(-45%);
    }
}

@media (min-width: 576px) {
    .hero-text {
        top: 100%;
        transform: translateY(-100%);
        left: 0;
        right: 0;
        position: absolute;
        display: block;
    }

    .hero-col {
        margin-bottom: -3rem;
    }
}

@media (max-width: 575.98px) {
    .hero-text {
        position: relative;
        display: block;
    }

    .hero-col {
        padding-left: 0;
        padding-right: 0;
    }
}

.hero-pp-container {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 5;
}

.hero-pp-btn {
    font-size: 14px;
    color: #FFF;
    width: 15px;
    height: 15px;
    margin: 2px 5px 0 5px;
    padding: 0;
    border: 0;
    background-color: transparent;
    line-height: 1;
    overflow: visible;
}

/* #intro-box::after {
    content: '';
    width: 5px;
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    background: #005cb9;
    background: -moz-linear-gradient(bottom, #005cb9 0%, #5BBB63 50%, #F26135 100%);
    background: -webkit-linear-gradient(bottom, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    background: linear-gradient(to bottom, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#005cb9', endColorstr='#F26135',GradientType=1 );
} */

/* #intro-box::after {
    content: '';
    width: 5px;
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    background: #005cb9;
    background: -moz-linear-gradient(top, #005cb9 0%, #5BBB63 50%, #F26135 100%);
    background: -webkit-linear-gradient(top, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    background: linear-gradient(to top, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#005cb9', endColorstr='#F26135',GradientType=1 );
} */

.squares-right {
    float: right;
    margin: 23px -24px 15px -15px;
}

.squares-right img {
    width: 100px;
    transform: rotate(90deg);
}

@media (min-width: 1200px) {
    #intro-box {
        margin-top: -170px;
    }

    #intro-swiper {
        margin-top: -170px;
    }
}

@media (max-width: 1199.98px) {
    #intro {
        height: 400px;
    }

    #intro-box {
        margin-top: -150px;
    }
}

@media (max-width: 991.98px) {
    #intro {
        height: 350px;
    }

    #intro-box {
        margin-top: -100px;
    }
}

@media (max-width: 767.98px) {
    #intro {
        height: 300px;
    }

    #intro-box {
        margin-top: -75px;
    }
}

@media (max-width: 575.98px) {
    #intro {
        height: 250px;
    }

    #intro-box {
        margin-top: -50px;
    }
}

@media (min-width: 1200px) {
    #home-boxes .column-box {
        padding: 0 1.5rem;
    }
}

.quote-icon-bg {
    position: relative;
}

.quote-icon-bg:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-decoration: inherit;
    text-rendering: auto;
    position: absolute;
    font-size: 3rem;
    color: #808285;
    opacity: .15;
    top: 15%;
    transform: translateY(-15%);
    left: 15px;
    z-index: -1;
    -webkit-font-smoothing: antialiased;
}

.quote-icon-bg:after {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-decoration: inherit;
    text-rendering: auto;
    position: absolute;
    font-size: 3rem;
    color: #808285;
    opacity: .15;
    top: 15%;
    transform: translateY(-15%);
    right: 15px;
    z-index: -1;
    -webkit-font-smoothing: antialiased;
}


/* SWIPERS */

.swiper-container {
    padding: 0 15px;
	margin: 0 -15px;
}

.swiper-wrapper {
	margin: 0 0 30px 0;
}

.swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: top;
    -ms-flex-pack: top;
    -webkit-justify-content: top;
    justify-content: top;
    -webkit-box-align: top;
    -ms-flex-align: top;
    -webkit-align-items: top;
    align-items: top;
	height: auto;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.swiper-slide .card {
    background: transparent;
}

.swiper-slide .card-zoom:hover,
.swiper-slide .card-zoom:focus {
    color: #000;
    background-color: #FFF;
    box-shadow: 0px 10px 20px rgba(0,11,28,.08);
}

.swiper-slide .card .card-body {
    padding: .75rem;
    text-align: left;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #0477BB;
    border-radius: 100%;
    padding: 1rem;
    border: 1px solid #0477BB;
    transition: all .3s ease;
}

.swiper-button-prev:hover,
.swiper-button-prev:focus,
.swiper-button-next:hover,
.swiper-button-next:focus {
    background-color: #2FAAE0;
    border: 1px solid #2FAAE0;
    transition: all .3s ease;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23FFF'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23FFF'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-button-prev {
    width: 13.5px;
    height: 22px;
    background-size: 13.5px 22px;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: none;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #DDD;
    border: 1px solid #DDD;
}

.swiper-pagination-bullet-active {
    background: #0477BB;
    border: 1px solid #0477BB;
}


/* SUB PAGES */

@media (min-width: 1200px) {
    .subpage-text {
        margin-top: -79px;
        padding-top: 64px;
    }
}

.subpage-text {
    color: #FFF;
    background: #363636;
    text-align: center;
}

.subpage-text .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.subpage-text h1 {
    color: #FFF;
    text-shadow: 0px 0px 10px rgba(54,54,54,.5);
}

.subpage-text p {
    margin-bottom: 0;
    text-shadow: 0px 0px 10px rgba(54,54,54,1);
}

.subpage-banner {
    padding: 8rem 0;
    text-align: center;
}

.subpage-banner h1 {
    color: #FFF;
    text-shadow: 0px 0px 10px rgba(54,54,54,.5);
}

.subpage-banner p {
    color: #FFF;
    margin-bottom: 0;
    text-shadow: 0px 0px 10px rgba(54,54,54,1);
}

.subpage-banner address {
    color: #FFF;
    margin-bottom: 0;
    text-shadow: 0px 0px 10px rgba(54,54,54,1);
}

.subpage-banner address a .fa-external-link-alt {
    margin-left: 6px;
    margin-top: 6px;
    vertical-align: top;
    font-size: 70%;
}

.subpage-banner a {
    color: #FFF;
}

.subpage-banner a.btn {
    text-shadow: 0px 0px 10px rgba(54,54,54,1);
}

.subpage-banner a.btn svg {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(54,54,54,1));
    filter: drop-shadow(0px 0px 10px rgba(54,54,54,1));
}

.subpage-banner a.btn:hover,
.subpage-banner a.btn:focus,
.subpage-banner a.btn:target,
.subpage-banner a.btn:active {
    text-shadow: none;
}

.subpage-banner a.btn:hover svg,
.subpage-banner a.btn:focus svg,
.subpage-banner a.btn:target svg,
.subpage-banner a.btn:active svg {
    -webkit-filter: none;
    filter: none;
}

.subpage-banner p.eyebrow {
    margin-bottom: .5rem;
}

@media (min-width: 1200px) {
    .subpage-banner .container {
        padding-top: 64px;
    }
}

@media (max-width: 1199.98px) {
    .subpage-banner {
        padding: 7rem 0;
    }
}

@media (max-width: 991.98px) {
    .subpage-banner {
        padding: 6rem 0;
    }
}

@media (max-width: 767.98px) {
    .subpage-banner {
        padding: 5rem 0;
    }
}

@media (max-width: 575.98px) {
    .subpage-banner {
        padding: 4rem 0;
    }
}

.banner-text {
    padding: 18rem 0;
}

@media (max-width: 1199.98px) {
    .banner-text {
        padding: 16rem 0;
    }
}

@media (max-width: 991.98px) {
    .banner-text {
        padding: 14rem 0;
    }
}

@media (max-width: 767.98px) {
    .banner-text {
        padding: 12rem 0;
    }
}

@media (max-width: 575.98px) {
    .banner-text {
        padding: 10rem 0;
    }
}


/* NAV PILLS */

ul.nav.nav-pills li.nav-item {
    margin: 0 5px;
}

ul.nav.nav-pills li.nav-item a.active {
    color: #FFF;
    background: #0477BB;
    border: 1px solid #0477BB !important;
}


/* VIDEOS */

.video-play-btn {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    color: #FFF;
}

.video-play-btn h3 {
	color: #FFF;
	margin-bottom: .5rem;
}

.video-play-btn:hover {
	color: #A7A9AB;
	transition: all .3s ease;
}


/* LOCATIONS */

.location-text {
  color: #FFF;
  text-align: center;
}

a.hero-link {
  color: #FFF;
  padding: .5rem .75rem;
  font-weight: 700;
  border-radius: .3rem;
}

a.hero-link:hover {
  color: #FFF;
  background-color: rgba(255,255,255,.25);
  text-decoration: none;
  transition: all .3s ease;
}

.location-text .badge {
  color: #0477BB;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: .5rem;
  padding: .5rem 1rem;
}

.location-text h1 {
  color: #FFF;
  margin-bottom: 0;
}

.location-text p {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: bold;
}

@media (max-width: 1500px) {
  .location-text h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 1199.98px) {
  .location-text p {
    font-size: 1.25rem;
  }

  .location-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .location-text h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 767.98px) {
  .location-text p {
    font-size: 1.15rem;
  }

  .location-text h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 575.98px) {
  .location-text p {
    font-size: 1rem;
  }

  .location-text h1 {
    font-size: 1.9rem;
  }

  a.hero-link {
    display: block;
    width: 100%;
  }
}

.ciena-group-logo {
  width: 275px;
  height: 78px;
}

.logo-link {
  display: inline-block;
}

.logo-link:hover {
  background-color: #F8F9FA;
  transition: all .3s ease;
}

.logo-link img {
  width: 200px;
  height: 50px;
}

@media (max-width: 767.98px) {
  .ciena-group-logo {
    width: 175px;
    height: 49px;
  }

  .logo-link img {
    width: 150px;
    height: 35px;
  }
}


/* CARDS */

.card {
    border-radius: 0;
}

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

.card-body ul:last-child {
  margin-bottom: 0;
}

.card-footer {
  border-top: 0;
}

.card-logo {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 99;
}

.card-logo img {
  width: 80px;
  height: 40px;
}

.card.top-card {
  margin-top: -4rem;
}

@media (max-width: 1199.98px) {
  .card.top-card {
    margin-top: -3rem;
  }
}

@media (max-width: 991.98px) {
  .card.top-card {
    margin-top: -2.5rem;
  }
}

@media (max-width: 767.98px) {
  .card.top-card {
    margin-top: -2rem;
  }
}

@media (max-width: 575.98px) {
  .card.top-card {
    margin-top: -1.5rem;
  }
}

.event-h1 {
  line-height: 1;
  margin-bottom: 1rem;
}

.link-card {
  color: inherit;
  display: block;
}

.link-card:hover,
.link-card:focus {
  text-decoration: none;
	color: inherit;
}

.link-card .h5 {
  color: #0477BB;
}

.link-card:hover .h5,
.link-card:focus .h5 {
	color: #2FAAE0;
  transition: all .3s ease;
}

.link-card .card-footer p {
  padding: .6rem 1.75rem;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  background-color: #0477BB;
	color: #FFF !important;
  margin-bottom: 0;
  text-align: center;
  border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
  transition: all .3s ease;
}

.link-card:hover .card-footer p,
.link-card:focus .card-footer p {
	background-color: #2FAAE0 !important;
  transition: all .3s ease;
}

.link-card:hover .card,
.link-card:focus .card {
  transition: all .3s ease;
  box-shadow: 0px 10px 20px rgba(0,0,0,.08);
}

.link-card .card-footer {
  padding: 0;
}

.card-columns {
  column-gap: 1.5rem;
}

@media (min-width: 576px) {
  .card-columns {
    column-count: 1;
  }
}

@media (min-width: 768px) {
  .card-columns {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .card-columns {
    column-count: 2;
  }
}

ul.list-columns {
  columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
  column-gap: 30px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
}

@media (min-width: 992px) {
  ul.list-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}

@media (min-width: 1200px) {
  ul.list-columns {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
  }
}


/* ZOOM WRAPPER */

@media (min-width: 1200px) {
  .zoom-wrapper {
		position: relative;
		overflow: hidden !important;
	}

	.zoom-wrapper img {
		max-width: 100% !important;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		transition: all .3s ease;
	}

	a.link-card:hover .card-zoom img.card-img-top,
	a.link-card:focus .card-zoom img.card-img-top {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		transform: scale(1.1);
  }
}


/* COLLAPSE */

.expand-btn {
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #2FAAE0 !important;
    text-align: left;
    padding: .5rem 2.5rem .5rem 1rem;
    white-space: normal;
    background-color: #E2E6EA;
    position: relative;
}

.expand-btn.collapsed {
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #0477BB !important;
    text-align: left;
    padding: .5rem 2.5rem .5rem 1rem;
    white-space: normal;
    background-color: #F8F9FA;
    position: relative;
}

.expand-btn:hover,
.expand-btn:focus,
.expand-btn:target,
.expand-btn:active {
    color: #2FAAE0 !important;
}

.expand-btn::after {
    font-size: 1rem;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 1rem;
    top: .5rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    transform: rotate(-180deg);
    -webkit-font-smoothing: antialiased;
    transition: all .3s ease;
    margin-left: 1rem;
}

.expand-btn.collapsed::after {
    font-size: 1rem;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 1rem;
    top: .5rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: rotate(0deg);
    transition: all .3s ease;
    margin-left: 1rem;
}

ul.link-list {
  padding: 0;
  margin: 0;
}

.link-list li {
  list-style-type: none;
  padding: 0;
  border-bottom: 1px solid #DEE2E6;
}

.card-body .link-list li {
  padding: 0;
}

.link-list li:last-child {
  border-bottom: none;
}

.link-list li a {
  font-size: .9rem;
  text-transform: uppercase;
  padding: .5rem .5rem .5rem .75rem;
  color: #0477BB;
  font-weight: 600;
  display: block;
  width: 100%;
  border-radius: .3rem;
  transition: all .3s ease;
}

.link-list li a:hover {
  color: #2FAAE0;
  background-color: #FFF;
  text-decoration: none;
  transition: all .3s ease;
}

.link-list li small {
  font-size: .7rem;
}


/* SOCIAL FOOTER */

ul.sm-nav-footer {
	padding: 0;
	margin: 0;
}

.sm-nav-footer li {
	list-style-type: none;
	padding: 0 .75rem;
	display: inline-block;
}

.sm-nav-footer li a {
	font-size: 2rem;
	color: #0477BB;
  transition: all .3s ease;
}

.sm-nav-footer li a:hover {
	color: #2FAAE0;
  text-decoration: none;
  transition: all .3s ease;
}


/* FOOTER */

footer {
    position: relative;
}

footer::after {
    content: '';
    height: 7.5px;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    background: #005cb9;
    background: -moz-linear-gradient(right, #005cb9 0%, #5BBB63 50%, #F26135 100%);
    background: -webkit-linear-gradient(right, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    background: linear-gradient(to right, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#005cb9', endColorstr='#F26135',GradientType=1 );
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-links li {
    line-height: 1.35;
}

.footer-links li a {
    padding: .25rem 0;
    display: block;
}


/* MODALS */

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

.modal .close {
  font-size: 2rem;
  opacity: 1;
  color: #0477BB;
}

.modal .close:hover {
  color: #2FAAE0 !important;
  transition: all .3s ease;
}


/* EMBED */

/* .embed-responsive::after {
    content: '';
    height: 7.5px;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    background: #005cb9;
    background: -moz-linear-gradient(right, #005cb9 0%, #5BBB63 50%, #F26135 100%);
    background: -webkit-linear-gradient(right, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    background: linear-gradient(to right, #005cb9 0%,#5BBB63 50%,#F26135 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#005cb9', endColorstr='#F26135',GradientType=1 );
} */


/* FACILITY PAGE */

.star-ratings {
    display: block;
    /* color: #FFF !important; */
    text-decoration: none !important;
}

.star-ratings .fa-star {
    color: #FFC107;
}


/* BREADCRUMB */

.breadcrumb {
    background-color: #F8F9FA;
    margin: 0;
    padding: 15px 0;
    border-radius: 0;
    font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #808285;
}

.breadcrumb-item.active {
    color: #808285;
}


/* FORMS */

legend {
    font-weight: 700;
}

label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-control,
.custom-select {
    background-color: #F8F9FA;
    border-radius: 0;
    border: 1px solid #DEE2E6;
}

.form-control.flush {
    background-color: #F8F9FA;
    border: 1px solid #F8F9FA;
}

.form-control.flush:focus {
    background-color: #FFF;
    border: 1px solid #FFF;
    border-right: 1px solid #DEE2E6;
}

.custom-select.flush {
    background-color: #F8F9FA;
    border: 1px solid #F8F9FA;
}


/* LIGHT GALLERY */

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #2FAAE0;
}

img.lg-image {
  border-radius: .25rem;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 0rem;
  right: 0rem;
  transform: translateY(-50%);
  text-align: center;
}

.tour-logo {
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 125px;
}

@media (max-width: 1199.98px) {
  .tour-logo {
    width: 100px;
  }
}

@media (max-width: 767.98px) {
  .tour-logo {
    width: 75px;
  }
}


/* ALERTS */

#alertBar {
    z-index: 2;
}

.alert {
    border: 0;
    border-radius: 0;
    padding: .5rem 0;
    margin-bottom: 0;
    font-size: 14px;
}

.alert p {
    margin-bottom: 0;
}

.alert p strong {
    font-weight: 700;
    margin-right: .375rem;
}

.alert .close {
    color: #E4002B;
    font-size: 1rem;
    line-height: 1;
    position: relative;
    top: 1px;
    right: 5px;
    padding: 0;
    opacity: 1;
    text-shadow: none;
}

@media (max-width: 1199.98px) {
    .alert .col-auto {
        padding-right: .7rem;
    }
}


/* TO TOP */

.scroll-top {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    z-index: 9;
    background-color: #0477BB;
    color: #FFF;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    right: 15px;
    bottom: 15px;
    transition: all .3s ease-in-out;
}

.scroll-top.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

.scroll-top.show:hover,
.scroll-top.show:focus {
    color: #FFF;
    background-color: #2FAAE0;
}


/* USED FOR HIDING BODY UNTIL JS LOADS - LEAVE AT THE END */

body {
    opacity: 0;
}
