body{
    font-family:'Open Sans';
    overflow-x:hidden;
    color:#5B5C5F;
    font-size:30px;
    line-height:40px;
    padding-top:130px;
}

#form1{
	overflow-x:hidden;
}

body.noscroll{
    overflow-y:hidden;
}

.page-content{
    position:relative;
    background:transparent;
}

.custom-container{
    padding: 0 30px;
    max-width: 1380px;
    margin:auto;
    position:relative;
}

.wide-container{
    padding: 0 30px;
    max-width:1580px;
    margin:auto;
    position:relative;
}

.modal-scrollable{
    top:105px;
}

.modal-scrollable .modal-footer{
    padding-bottom: 30px !important;
}

@media only screen and (max-width:767px){
    .custom-container{
        padding: 0 15px;
    }

    .wide-container{
        padding:0 15px;
    }

    body{
        padding-top:105px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6{
    font-family:'Montserrat';
    color:#151515;
}

h1{
    font-weight:700;
    font-size:75px;
    line-height:78px;
}

h2{
    font-size:60px;
    font-weight:700;
    line-height:78px;
}

h3{
    font-size:40px;
    font-weight:700;
    line-height:50px;
}

h4{
    font-size:30px;
    line-height:40px;
    font-weight:700;
}

@media only screen and (max-width:1199px){
    h1{
        font-size:60px;
        line-height:62px;
    }

    h2{
        font-size:50px;
        line-height:62px;
    }

    h3{
        font-size:36px;
        line-height:46px;
    }

    h4{
        font-size:26px;
        line-height:30px;
    }
}

@media only screen and (max-width:767px){
    h1{
        font-size:40px;
        line-height:42px;
    }

    h2{
        font-size:34px;
        line-height:42px;
    }

    h3{
        font-size:30px;
        line-height:38px;
    }

    h4{
        font-size:22px;
        line-height:26px;
    }
            
    body{
        font-size:20px;
        line-height:28px;
    }
}

/* Resuable Sections */
.blue-block{
    background: #112D44;
    color:#fff;
    position:relative;
}

.blue-block h1, .blue-block h2, .blue-block h3, .blue-block h4, .blue-block h5, .blue-block h6{
    color:#fff;
}

/* Buttons */
.cta-btn{
    background:#f08833;
    color:#fff;
    font-weight:600;
    display: inline-block;
    font-family:'Montserrat';
    font-size:22px;
    line-height:25px;
    padding: 22px 28px;
    text-transform:uppercase;
    border-radius:10px;
    transition:all ease 0.5s;
    text-align:center;
}

.cta-btn.blue-btn{
    background:#112D44;
}

.cta-btn.beige-btn{
    background:#c69c6d;
}

.cta-btn:hover, .cta-btn:focus, .cta-btn-small:hover, .cta-btn-small:focus{
    color:#fff;
    background:#ae501f;
    text-decoration:none;
}

.cta-btn.beige-btn:hover, .cta-btn.beige-btn:focus{
    color:#fff;
    background:#112D44;
    text-decoration:none;
}

@media only screen and (max-width:1199px)
{
    .cta-btn{
        font-size:20px;
        line-height:23px;
        padding:18px 25px;
    }
}

@media only screen and (max-width:768px)
{
    .cta-btn{
        font-size:17px;
        line-height:20px;
        padding:12px 15px;
    }
}

/* Nav CSS */

header .navbar{
    background: #112D44;
    height:130px;
    margin-bottom:0;
    position:fixed;
    top:0;
    width: 100%;
    z-index: 3;
}

header .page-menu{
    float:none;
    width:100%;
}

.desktop-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:130px;
    margin:auto;
    max-width:1370px;
    padding:0 30px;
}

.logo-nav img{
    width:286px;
    max-width:100%;
    margin-top: -25px;
}

.desktop-nav a:hover, .desktop-nav a:focus{
    text-decoration:none;
}

.left-nav, .right-nav{
    display:flex;
    column-gap:50px;
    margin-top:5px;
}

.desktop-nav .menu-button{
    display:flex;
    align-items: center;
    column-gap:10px;
    color:#fff;
    font-size:24px;
    line-height:35px;
    font-family:"acumin-pro";
}

.desktop-nav .menu-button img{
    height:23px;
}

.desktop-nav.open .menu-show{
    display:none;
}

.menu-close{
    display:none;
    padding-left:7px;
}

.desktop-nav.open .menu-close{
    display:block;
}

.mobile-nav{
    opacity:0;
    position:fixed;
    width: 100%;
    pointer-events:none;
    height: auto;
    top: 130px;
    background: rgba(17, 45, 68, 0.95);
    transition:ease 0.4s all;
    padding:15px 30px;
    width:100%;
    height:100%;
}

.nav-right-wrapper{
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    width: 60%;
    position: absolute;
    right: 0;
    top: 0;
    padding-left: 50px;
    transition:ease 0.4s all;
}

.nav-right-wrapper .back-button{
    display:none;
}

.mobile-nav.open .nav-right-wrapper.active{
    visibility:visible;
    opacity:1;
    pointer-events:all;
}

.mobile-nav .navbar-nav{
    float: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width:1310px;
    margin:auto;
    position:relative;
}

.mobile-only-buttons{
    display:none;
}

.mobile-nav.open{
    opacity:1;
    width:100%;
    height: calc(100vh - 130px);
    overflow: auto;
    pointer-events:all;
    z-index: 3;
}

@media only screen and (max-width:767px)
{
.mobile-nav.open{
    height: calc(100vh - 105px);
}
}

.mobile-nav li a{
    color: #fff;
    font-size: 20px;
    padding: 10px 20px;
    line-height: 30px;
    font-family: "acumin-pro";
    background: transparent !important;
    white-space:nowrap;
}

li.top-level-parent, li.top-level-single{
    width:100%;
    position: unset;
}
.mobile-nav li a.top-level-toggle, .mobile-nav li a.top-level-link{
    padding:20px 20px;
    border-right: 2px solid #ffffff33;
    border-left:4px solid transparent;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 96px;
}

.mobile-nav li a.top-level-toggle h2, .mobile-nav li a.top-level-link h2{
    font-size:30px;
    line-height:34px;
   padding:0;
    color:#fff;
    margin:0;
    display:block;
    font-weight: 500;
    position:relative;
    z-index:1;
}

.nav-right-wrapper .mobile-only-heading{
    display:none;
}

.mobile-nav a.top-level-toggle:before{
    background-color: #f08833;
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    top:0;
    width:0;
    position: absolute;
}

.mobile-nav a.top-level-toggle.active:before {
    -webkit-transition: width .4s ease;
    transition: width .4s ease;
    width: 100%;
}


.mobile-nav a.top-level-toggle.active:after {
    left: 100%;
    -webkit-transition: left .4s ease;
    transition: left .4s ease;
    visibility: visible;
}

.mobile-nav a.top-level-toggle:after {
    border-color: transparent transparent transparent #f08833;
    border-style: solid;
    border-width: 48px 0 48px 50px;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 0;
}


.mobile-nav li a.top-level-toggle:hover, .mobile-nav li a.top-level-toggle.active, .mobile-nav li a.top-level-link:hover{
    border-left:4px solid #f08833;
}

.mobile-nav li.dropdown{
    float:none;
    width:100%;
}

.top-level-toggle p, .top-level-link p{
    white-space: normal;
    font-size: 16px;
    line-height: 20px;
    opacity: .75;
    margin-top: 5px;
    margin-bottom:0;
}

.mobile-nav .dropdown-menu{
    position: relative;
    top: 0;
    padding: 0 30px;
    width: 100%;
    box-shadow: none;
    background: transparent;
    border: none;
}

.mobile-nav .dropdown-menu li a{
    padding: 5px 20px;
    font-size:16px;
    line-height:22px;
}

.mobile-nav .dropdown-menu li a:hover, .mobile-nav .dropdown-menu li a:focus{
    color:#fff;
}

.mobile-nav .nav-level-three{
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.mobile-nav .nav-level-two a{
    font-size:22px;
    padding:12px 20px;
    display:inline-block;
}

.mobile-nav .nav-level-three a{
    font-size:17px;
    padding: 3px 20px;
    display:inline-block;
}

.mobile-nav .nav-level-two a:hover{
    text-decoration:none;
    filter:brightness(0.8);
}

@media only screen and (max-width:1300px)
{
    .mobile-nav{
        left:0;
    }
}

@media only screen and (max-width:991px)
{
    .left-nav, .right-nav{
        column-gap:30px;
    }

    .logo-nav img{
        width:200px;
        margin-top:-20px;
    }

    .desktop-nav .menu-button{
        column-gap:8px;
        font-size:18px;
        line-height:24px;
    }

    .mobile-nav li a.top-level-toggle h2, .mobile-nav li a.top-level-link h2{
        font-size:26px;
        line-height:30px;
    }
}

@media only screen and (max-width:767px){
    .desktop-nav{
        padding: 0 15px;
        flex-wrap:wrap;
        align-items: flex-start;
    }

    .mobile-only-buttons{
        display:flex;
        justify-content:space-evenly;
        padding: 0 15px;
        width:100%;
        margin-bottom: 10px;
    }

    .mobile-only-buttons a{
        column-gap: 6px;
        font-size: 17px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .mobile-only-buttons a:hover{
        text-decoration:none;
    }

    .mobile-only-buttons a img{
        height: 18px;
    }

    .mobile-nav a.top-level-toggle:after, .mobile-nav a.top-level-toggle:before{
        display:none;
    }

    .mobile-nav li a.top-level-toggle, .mobile-nav li a.top-level-link{
        width:100%;
        border-right:none;
        padding: 8px 0;
        border-left:none;
        height: 70px;
    }

    .mobile-nav li a.top-level-toggle:hover, .mobile-nav li a.top-level-link:hover, .mobile-nav li a.top-level-toggle.active{
        border-left: none;
    }

    .mobile-nav li a.top-level-toggle h2, .mobile-nav li a.top-level-link h2{
        font-size:18px;
        line-height:20px;
    }

    .top-level-toggle p, .top-level-link p {
        font-size: 13px;
        line-height: 15px;
        margin-top:2px;
    }

    .nav-right-wrapper{
        width:0;
        visibility:hidden;
      
    }

    header .navbar, .desktop-nav{
        height:105px;
    }

    .logo-nav{
        order:1;
        width:100%;
        text-align: center;
    }

    .nav-right-wrapper{
        display: block;
        width: calc(100% + 60px);
        left: -30px;
        padding-top: 50px;
        padding-left: 0;
        height: 100%;
        top: -10px;
        background: #112D44;
        z-index: 5;
        opacity:0;
        transition:ease 0.4s all;
    }

    .active .nav-right-wrapper
    {
        visibility:visible;
        opacity:1;
    }

    .logo-nav img{
        margin-top:0;
    }

    .left-nav{
        order:2;
        width:50%;
        justify-content:center;
        margin-top:0;
    }

    .desktop-nav .menu-button{
        column-gap:6px;
        font-size:17px;
        line-height:20px;
    }

    .desktop-nav .menu-button img {
        height: 18px;
    }

    .right-nav{
        order:3;
        width:50%;
        justify-content:center;
        margin-top:0;
    }

    .nav-right-wrapper .back-button{
        display:block;
        position:absolute;
        left:20px;
        top:10px;
        cursor:pointer;
        color:#eee;
        font-size:16px;
    }

    .nav-right-wrapper .mobile-only-heading{
        display:block;
        font-size:23px;
        line-height:27px;
        padding:0;
        color:#fff;
        margin:0;
        padding: 10px 20px;
        display:block;
        font-weight: 600;
    }

    .mobile-nav .nav-level-two a {
        font-size: 17px;
        line-height:21px;
        padding: 6px 20px;
    }

    .mobile-nav .nav-level-three a {
        font-size: 15px;
        line-height:18px;
        padding: 5px 20px;
    }

    .back-button svg{
            fill: #fff;
            height: 13px;
            width: 7px;
            margin-right:6px;
    }

    .desktop-nav .menu-button:nth-child(2){
        display:none;
    }

    .mobile-nav{
        height: calc(100% - 105px);
        top: 105px;
    }

    .mobile-nav li a{
        font-size: 17px;
        padding: 10px 12px;
        line-height: 25px;
    }

    .mobile-nav{
        padding-top:10px;
        max-width:100%;
    }
}


/* Footer CSS */
footer{
    background:#151515;
    padding:120px 30px 30px 30px;
}

.footer-top, .footer-bottom{
    max-width:1780px;
    margin:auto;
    display:flex;
    column-gap:40px;
    justify-content:space-evenly;
}

.footer-bottom{
    margin-top:120px;
    border-top: 1px solid #f08833;
    display:flex;
    justify-content:space-between;
    padding-top:30px;
    align-items: center;
    color:#fff;
    overflow:hidden;
}

.subfooter-logo{
    width:77px;
    max-width:100%;
}

.subfooter-tagline{
    font-family:'Montserrat';
    font-size:26px;
    text-transform:uppercase;
}

.subfooter-left, .subfooter-right, .footer-socials{
    width:33.3%;
}

.subfooter-right{
    text-align:right;
    white-space: nowrap;
}

.footer-socials .social-links{
    display:flex;
    column-gap:40px;
    justify-content:center;
    color:#f08833;
    font-size:32px;
}

.footer-socials .social-links i{
    color:#f08833;
    transition: ease all 0.5s;
}

.footer-socials .social-links a:hover i{
    color:#c69c6d;
}

.footer-campuses, .footer-NAP{
    width:25%;
}

.footer-menus{
    width:50%;
}

footer{
    margin-bottom:0;
}

footer h3{
    color:#f08833;
    font-weight:700;
    text-transform:uppercase;
    font-size:30px;
    margin-top:0;
    margin-bottom:15px;
    line-height:40px;
}

.footer-campuses p, .footer-NAP p{
    font-size:22px;
    color:#fff;
    line-height:40px;
    margin-bottom:30px;
}

.footer-NAP p a{
    color:#fff;
}

footer h5{
    color:#fff;
    text-transform:uppercase;
    font-weight:600;
    margin:0;
    line-height:50px;
    font-size:28px;
}

.footer-logo{
    max-width:100%;
    width:270px;
    margin-bottom:5px;
    margin-top: -20px;
}

.footer-menu-wrapper{
    display:flex;
    column-gap:40px;
}

.footer-menu-wrapper > div{
    width:50%;
    padding: 0 20px;
}

.footer-menu-wrapper h3{
    margin-top:70px;
}

.footer-menu-wrapper h3:first-child{
    margin-top:0;
}

.footer-menu-wrapper a{
   color:#fff;
   font-size:24px;
   display:block;
   line-height:45px;
}

.footer-copyright{
    margin-top: 20px;
    font-size: 16px;
    color: #aaa;
    display: flex;
    width: 100%;
    line-height: 28px;
    align-items: center;
    flex-direction: column;
    text-align:center;
}

.footer-copyright a{
    color:#f08833;
}

.footer-copyright a:hover{
    color:#f08833;
    text-decoration:none;
}

@media only screen and (max-width:1300px){  
    footer h3{
        font-size:26px;
        margin-top:0;
        margin-bottom:15px;
        line-height:35px;
    }

    .subfooter-tagline {
        font-size:22px;
    }

    .footer-campuses p, .footer-NAP p{
        font-size:18px;
        color:#fff;
        line-height:34px;
        margin-bottom:30px;
    }

    .footer-menu-wrapper > div{
        padding:0;
    }

    footer h5{
        line-height:40px;
        font-size:24px;
    }

    .footer-menu-wrapper a {
        font-size: 18px;
        display: block;
        line-height: 34px;
    }
}

@media only screen and (max-width:991px){
    .footer-top{
        flex-wrap:wrap;
        row-gap:30px;
    }
    .footer-campuses{
        order:1;
        width:calc(50% - 20px);
    }

    .footer-NAP{
        order:2;
        width:calc(50% - 20px);
    }

    .footer-menus{
        order:3;
        width:100%;
    }
}

@media only screen and (max-width:767px){
    footer{
        padding:50px 15px 30px 15px;
    }

    .footer-copyright{
        font-size:13px;
        line-height:18px;
        row-gap:5px;
    }

    .footer-campuses, .footer-NAP{
        width:100%;
    }

    .footer-menu-wrapper{
        flex-direction:column;
        row-gap:30px;
    }

    .footer-menu-wrapper h3 {
        margin-top: 30px;
    }

    .footer-bottom{
        margin-top:40px;
        flex-wrap:wrap;
        row-gap:30px;
        column-gap:20px;
    }

    .footer-logo{
        display:none;
    }

    footer h3{
        font-size:22px;
        margin-top:0;
        margin-bottom:5px;
        line-height:30px;
    }

    .footer-campuses p, .footer-NAP p{
        font-size:15px;
        color:#fff;
        line-height:28px;
        margin-bottom:20px;
    }

    .footer-campuses p:last-child, .footer-NAP p:last-child{
        margin-bottom:0;
    }

    .footer-menu-wrapper > div{
        padding:0;
    }

    footer h5{
        line-height:30px;
        font-size:20px;
    }

    .footer-menu-wrapper a {
        font-size: 15px;
        display: block;
        line-height: 28px;
    }

    .footer-socials{
        order:1;
        width:100%;
    }

    .subfooter-left{
        order:2;
        width:calc(50% - 10px);
    }
    
    .subfooter-right{
        order:3;
        width:calc(50% - 10px);
    }

    .subfooter-right {
        text-align: right;
        white-space:initial;
    }

    .subfooter-tagline {
        font-size: 18px;
    }
}

/* Hero Section CSS */
.hero-section{
    margin:30px;
    height:800px;
    position:relative;
    z-index:1;
}

.hero-section img{
    max-width:100%;
    width:100%;
    height:100%;
    border-radius: 20px;
    object-fit:cover;
    object-position:top center;
}

.hero-section video + img{
    display:none;
}

.hero-section video{
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center center;
}

.hero-section img.darkenHero, .hero-section video.darkenHero {
    filter: brightness(0.5);
}

@media only screen and (max-width:767px){
    .hero-section video + img{
        display:block;
    }

    .hero-section video{
       display:none;
    }
}

.hero-overlay{
    position: absolute;
    width: 80%;
    max-width: 1310px;
    height: 500px;
    left: calc((100% - 1310px) /2 );
    margin: auto;
    top: 150px;
    display: flex;
    flex-direction: column;
}

.hero-overlay h1{
    color:#fff;
}

.hero-overlay{
    color:#fff;
}

.hero-overlay-inner{
    height:500px;
    display: flex;
    flex-direction: column;
}

.cta-buttons{
    margin-top:auto;
    display: flex;
    justify-content: space-between;
    column-gap:40px;
    flex-wrap:wrap;
    row-gap:40px;
}

.cta-buttons .btn{
    flex:1;
}

.hero-accents{
    position:relative;
}

.left-hero-accent{
    height: 400px;
    top: -240px;
    left: -120px;
    position: absolute;
}

.right-hero-accent{
    height: 400px;
    position: absolute;
    right: -120px;
    z-index: 0;
    top: -100px;
}

.animate-from-right{
    animation: flyInFromRight 1s 1;
}

.animate-from-left{
    animation: flyInFromLeft 1s 1;
}

@keyframes flyInFromRight {
    0%   { 
        transform: translate(100%, -100%); 		
    }
    100% { 
        transform: translate(0%, 0%);
    }
}

@keyframes flyInFromLeft {
    0%   { 
        transform: translate(-100%, -100%); 		
    }
    100% { 
        transform: translate(0%, 0%);
    }
}

@media only screen and (min-width:1921px){
    .hero-section{
        max-width:1820px;
        margin-left:auto;
        margin-right:auto;
    }
}

@media only screen and (max-width:1700px){
    .hero-overlay{
        left:10%;
    }
}

@media only screen and (max-width:1300px){
    .hero-overlay{
        left:6%;
        width:88%;
    }
}

@media only screen and (max-width:991px){
    .hero-overlay, .hero-overlay-inner{
        height:575px;
    }
}

@media only screen and (max-width:767px){
    .homepage-header{
        text-align:center;
    }

    .hero-section{
        margin:15px;
        height: calc(100vh - 100px);
    }

    .cta-buttons{
        column-gap:15px;
        row-gap:15px;
    }

    .hero-overlay, .hero-overlay-inner{
        height: calc(100vh - 180px);
        top: 40px;
    }

    .right-hero-accent{
        height: 200px;
        position: absolute;
        right: -80px;
        z-index: 0;
        top: -120px;
    }

    .left-hero-accent{
        height: 200px;
        top: -140px;
        left: -90px;
        position: absolute;
    }
}

/* Homepage Overlay Specific Styles */
.homepage-header{
    max-width:700px;
    margin:0;
}

.homepage-tagline{
    font-size:30px;
    font-weight:500;
    line-height:40px;
    max-width:530px;
    padding-left:2px;
    margin-top:20px;
}

@media only screen and (max-width:767px){
    .homepage-tagline{
        text-align:center;
        font-size:18px;
        line-height:26px;
        margin-top:15px;
    }
}

/* Homepage Content Specific Styles */
.homepage-greeting{
    padding: 105px 30px 100px 30px;
    position:relative;
}

.homepage-greeting h2{
    width:850px;
    max-width:65%;
}

.homepage-greeting p{
    width:745px;
    max-width:65%;
}

.homepage-greeting img{
    position: absolute;
    width: 647px;
    max-width: 40%;
    z-index: 1;
    bottom: 0;
    right: -80px;
}

@media only screen and (max-width:991px){
    .homepage-greeting{
        padding: 65px 30px 60px 30px;
    }
}

@media only screen and (max-width:767px){
    .homepage-greeting{
      padding-bottom:0;
      padding-left:15px;
      padding-right:15px;
      text-align:center;
    }

    .homepage-greeting h2, .homepage-greeting p{
       max-width:100%;
    }

    .homepage-greeting img{
        position: relative;
        width: 60%;
        max-width:300px;
        right: 0;
        display: block;
        margin: auto;
    }

}

.find-a-location-inner{
    max-width: 1350px;
    text-align:center;
    padding: 620px 30px 80px 30px;;
    margin: 250px auto auto auto;
    position:relative;
    z-index:2;
}

.find-a-location-inner .video-wrapper{
    width: calc(100% + 60px);
    aspect-ratio: 1.88;
    left: -30px;
    box-shadow: 0px 3px 30px #00000033;
    top: -250px;
    position: absolute;
    border-radius: 20px;
    background: #fff;
    padding:45px;
}

.find-a-location-inner .video-wrapper iframe{
 width:100%;
aspect-ratio:16/9;
}

.find-a-location-inner p{
    max-width:944px;
    margin:15px auto 45px auto;
}

.find-a-location-inner img.video{
    width:100%;
    object-fit:cover;
	aspect-ratio:16/9;
    border-radius:20px;
}

.play-btn{
    position:absolute;
    z-index:1;
    left:50%;
    top:50%;
    width:162px;
    height:162px;
    left:calc(50% - 81px);
    top:calc(50% - 81px);
}

.find-a-location-wrapper .accent {
    width: 380px;
    position: absolute;
    z-index: 1;
    left: -150px;
    bottom: -140px;
}

.buttons-overlap .cta-buttons{
    margin-bottom:-114px;
}

.video-wrapper iframe{
    border-radius:20px;
}

@media only screen and (max-width:1500px){
    .find-a-location-inner {
        width:calc(100% - 60px);
        margin-top:15vh;
        padding-top: calc((100% / 1.68) - 15vh);
        padding-left:0px;
        padding-right:0px;
    }

    .find-a-location-inner .video-wrapper {
        width:100%;
        left:0;
        top:-15vh;
    }

    .find-a-location-wrapper .accent {
        width: 190px;
        left: -80px;
        bottom: -70px;

    }    
}

@media only screen and (max-width:767px){
    .find-a-location-inner {
        width:calc(100% - 30px);
        padding-bottom:60px;
    }
    .play-btn{
        width:81px;
        height:81px;
        left:calc(50% - 40.5px);
        top:calc(50% - 40.5px);
    }

    .find-a-location-inner .video-wrapper{
       width:calc(100% + 30px);
       left:-15px; 
       padding:5px;
    }

    .find-a-location-wrapper .accent {
        left: -100px;
    }
}

/* Two Column Text Block Styles */
.two-column-text{
    margin:80px auto 80px auto;
    display:flex;
    column-gap:80px;
    position:relative;
}

.two-column-text h2{
    margin:0;
}

.two-column-text p{
    margin:0;
}

.two-column-text > div:first-child{
    width:47.5%;
}

.two-column-text > div:last-child{
    width:52.5%;
}

@media only screen and (max-width:767px){
    .two-column-text{
        flex-direction:column;
        row-gap:20px;
        margin: 40px auto;
        padding: 0 15px;
        text-align:center;
    }

    .two-column-text > div:first-child{
        width:100%;
    }
    
    .two-column-text > div:last-child{
        width:100%;
    }
}

/* Image Link Grid CSS */
.image-link-grid{
    max-width:1580px;
    margin-left:auto;
    margin-right:auto;
    padding-left:30px;
    padding-right:30px;
    display:flex;
    column-gap:15px;
    row-gap:15px;
    position:relative;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
}

.image-link-grid a{
    position:relative;
    border-radius:20px;
    height: 580px;
    transition:ease all 0.3s;
}

.image-link-grid a:hover{
    filter:brightness(1.2);
}

.image-link-grid a.w25{
    width:calc(25% - 12px);
}

.image-link-grid a.w33{
    width:calc(33.3% - 10px);
    height: 400px;
}

.image-link-grid a.w50{
    width:calc(50% - 7px);
}

.image-link-grid a img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
    object-position:center center;
}

.image-link-grid a img.play-btn{
    position:relative;
    display:block;
    width:92px;
    height:92px;
    margin-bottom:25px;
    left:0;
    top:0;
}

.image-link-grid a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%)
}

.image-link-grid span{
    font-family:"Montserrat";
    font-weight:700;
    color:#fff;
    display:block;
    position:absolute;
    left:40px;
    font-size:40px;
    bottom:40px;
    width:calc(100% - 80px);
    max-width:600px;
    z-index:2;
}

@media only screen and (max-width:1199px){
    .image-link-grid a.w25{
        width:calc(33.3% - 10px);
        height:450px;
    }
    
    .image-link-grid a.w50{
        width:calc(66.6% - 7px);
        height:450px;
    }
}

@media only screen and (max-width:1199px){
    .image-link-grid a.w25{
        width:calc(50% - 8px);
        height:400px;
    }
    
    .image-link-grid a.w50{
        width:calc(100%);
        height:400px;
    }
}

@media only screen and (max-width:767px){
    .image-link-grid span{
        left:15px;
        font-size:26px;
        line-height:30px;
        bottom:15px;
        width:calc(100% - 30px);
    }

    .image-link-grid{
        padding-left:15px;
        padding-right:15px;
    }

    .image-link-grid a{
        max-width: 400px;
    }

    .image-link-grid a.w25{
        width:calc(100%);
        height:350px;
    }

    .image-link-grid a.w33{
        width:calc(100%);
        height:300px;
    }
    
    .image-link-grid a.w50{
        width:calc(100%);
        height:400px;
    }
}

/* Heading CTA Block */
.heading-cta{
    padding: 0 30px;
    margin: 70px auto;
    text-align:center;
    max-width:1000px;
}

.heading-cta h3{
    margin: 0 0 30px 0;
}

@media only screen and (max-width:767px){
    .heading-cta{
        padding: 0 15px;
        margin:50px auto;
    }
}

/* Image Stack Block */
.image-stack{
    margin:200px 0 0 0;
    z-index: 1;
    position: relative;
    padding-bottom:200px;
    padding-top: 150px;
    background-size:cover !important;
    background-repeat:no-repeat !important;
    background-position: center bottom !important;
    width:100%;
}

.image-stack.bottom-border{
    padding-bottom:130px;
}

.image-stack-inner{
    display:flex;
    column-gap:100px;
    align-items:flex-end;
}

.image-stack-inner .content{
    margin-bottom:30px;
    width:50%;
}

.image-stack-inner .content h2, .image-stack-inner .content p {
    max-width:570px;
}

.image-stack-inner .content p{
    margin-bottom:30px;
}

.image-stack-inner .images{
    width:50%;
    position:relative;
}

.image-stack-inner .images img:first-child{
    width:100%;
    border-radius:20px;
}

.image-stack-inner .images img:nth-child(2){
    width:384px;
    height:346px;
    border-radius:20px;
    object-fit:cover;
    position:absolute;
    top:-220px;
    right: -70px;
}

.image-stack-inner .cta-btn{
    min-width:250px;
}

@media only screen and (max-width:1199px){
    .image-stack-inner .images img:nth-child(2) {
        width: 240px;
        height: 240px;
        top:-180px;
    }

    .image-stack{
        margin:150px 0 0 0;
        padding-top:110px;
        padding-bottom:150px;
    }
}

@media only screen and (max-width:767px){
    .image-stack{
        margin:100px 0 0 0;
        padding-top:60px;
        padding-bottom:80px;
    }

    .image-stack.bottom-border{
        padding-bottom:80px;
    }

    .image-stack-inner .content h2, .image-stack-inner .content p {
        margin-left:auto;
        margin-right:auto;
    }

    .image-stack-inner{
        flex-direction: column;
        row-gap: 30px;
        padding: 0 15px;
    }

    .image-stack-inner .images, .image-stack-inner .content{
        width:100%;
        text-align:center;
    }

    .image-stack-inner .images img:first-child{
        max-width:400px;
    }
    
    .image-stack-inner .images img:nth-child(2){
        width:200px;
        height:200px;
        border-radius:20px;
        object-fit:cover;
        position:absolute;
        top:-100px;
        right: calc(50% - 100px);
    }
}

/* Stories Grid Block CSS */
.stories-grid{
    margin-bottom:100px;
}

.stories-grid-wrapper{
    position:relative;
}

.stories-grid p{
    color:#151515;
}

.stories-grid-inner{
    margin-top:80px;
    display:flex;
    column-gap:40px;
    row-gap:40px;
    flex-wrap:wrap;
    position: relative;
}

.stories-grid-inner > a{
    width: calc(50% - 20px);
    box-shadow: 0px 3px 30px #00000033;
    border-radius: 20px;
    padding: 22px;
    text-align:center;
    background:#fff;
}

.stories-grid-inner h4{
    margin:25px 20px 5px 20px;
}

.stories-grid-inner > a:hover{
    text-decoration:none;
}

.stories-grid-inner > a:hover .play-btn{
    filter:brightness(1.25);
    transition: ease all 0.4s;
}

.stories-grid-inner .img-wrapper{
    position:relative;
    width:100%;
}

.stories-grid-inner .thumb{
    border-radius:20px;
    width:100%;
    object-fit:cover;
    aspect-ratio: 16 / 9;
}

.stories-grid-inner .play-btn{
    width: 76px;
    height: 76px;
    left: calc(50% - 38px);
    top: calc(50% - 38px);
}

.stories-grid-wrapper .accent{
    position: absolute;
    z-index: 0;
    right: -150px;
    bottom: 250px;
}

@media only screen and (max-width:991px){
    .stories-grid-wrapper .accent{
        width:270px;
        right: -100px;
        bottom: 200px;
    }
}

@media only screen and (max-width:767px){
    .stories-grid-inner > a{
        width: calc(100%);
        padding:12px;
    }

    .stories-grid-inner{
        margin-top:40px;
        row-gap:20px;
    }

    .stories-grid-inner .play-btn{
        width: 50px;
        height: 50px;
        left: calc(50% - 25px);
        top: calc(50% - 25px);
    }

    .stories-grid-inner h4{
        margin:15px 20px 0px 20px;
    }
}

/* Callout Content Component CSS */
.callout-wrapper{
    max-width:1580px;
    margin: 100px auto;
    padding-left: 30px;
    padding-right: 30px;
}

.callout-inner{
    width:100%;
    background-size: cover !important;
    background-position: center center !important;
    padding: 120px 80px;
    text-align: center;
    color:#fff;
    border-radius:20px;
}

.callout-inner .cta-buttons{
    justify-content:center;
}

.callout-wrapper h1{
    color:#fff;
    max-width:800px;
    margin:auto;
    margin-bottom:50px;
}

.callout-inner p{
    margin-bottom:50px;
    max-width:1150px;
    margin-left:auto;
    margin-right:auto;
}

@media only screen and (max-width:767px){
    .callout-wrapper{
        margin: 0px auto;
        padding-left:0;
        padding-right:0;
    }

    .callout-inner{
        padding:50px 20px;
        border-radius:0;
    }

    .callout-wrapper h1{
        margin-bottom:20px;
    }
    
    .callout-inner p{
        margin-bottom:20px;
    }
}

/* Narrow Centered Text Content Component CSS */
.narrow-centered-text{
    text-align:center;
    max-width:1048px;
    padding:0 30px;
    margin:90px auto 50px auto;
}

.narrow-centered-text .content{
    color:#5B5C5F;
}

@media only screen and (max-width:767px){
    .narrow-centered-text{
        padding: 0 15px;
    }
}


/* Blog Carousel CSS*/
.blog-carousel-wrapper{
    max-width:1580px;
    margin: 70px auto 170px auto;
    padding-left: 30px;
    padding-right: 30px;
}

.blog-carousel-wrapper .carousel-card{
    aspect-ratio: 16/9;
    border-radius:20px;
    width:100%;
    display:block;
    position:relative;
    background-position:center center !important;
    background-size:cover !important;
}

.blog-carousel-wrapper .carousel-card span{
    display:flex;
    flex-direction:column;
    position:absolute;
    font-family: "Montserrat";
    font-weight: 700;
    color: #fff;
    left: 40px;
    font-size: 40px;
    bottom: 40px;
    width: calc(100% - 80px);
    z-index: 2;
}

.blog-carousel-wrapper .carousel-card span.series-date{
position: relative;
    display: block;
    font-size: 24px;
    width: 100%;
    left: 0;
    top: 0;
}

.blog-carousel-wrapper .carousel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
}

.blog-carousel-wrapper .owl-dots{
    margin: -170px calc(50% - 50vw);
    padding-top: 210px;
    padding-bottom: 90px;
    background: #112D44;
    justify-content: center;
    column-gap: 10px;
    display: flex;
}

.blog-carousel-wrapper .owl-dots button span{
    width: 28px;
    height: 28px;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
}

.blog-carousel-wrapper .owl-dots button.active span{
    background: #f08833;
}

.blog-carousel-wrapper .owl-carousel .owl-nav button.owl-prev, .blog-carousel-wrapper .owl-carousel .owl-nav button.owl-next{
    position: absolute;
    top: calc(50% - 130px);
    left: 30px;
    display: flex;
    height: 92px;
    width: 92px;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #f08833;
    font-weight: 400;
    font-size: 92px;
    line-height: 92px;
    border-radius: 50%;
}

.blog-carousel-wrapper button.owl-prev span, .blog-carousel-wrapper button.owl-next span{
    margin-top:-18px;
}

.blog-carousel-wrapper .owl-carousel .owl-nav button.owl-next{
    left:unset;
    right:30px;
}

@media only screen and (max-width:991px){
    .blog-carousel-wrapper .carousel-card span{
        left: 30px;
        font-size: 30px;
        line-height:34px;
        bottom: 30px;
        width: calc(100% - 50px);
    }

    .blog-carousel-wrapper .owl-carousel .owl-nav button.owl-prev, .blog-carousel-wrapper .owl-carousel .owl-nav button.owl-next{
        top: calc(50% - 110px);
        height: 50px;
        width: 50px;
        font-size: 50px;
        line-height: 50px;
    }

    .blog-carousel-wrapper button.owl-prev span, .blog-carousel-wrapper button.owl-next span {
        margin-top: -8px;
    }
}

@media only screen and (max-width:767px){
    .blog-carousel-wrapper{
        padding-left: 15px;
        padding-right: 15px;
    }

.blog-carousel-wrapper .carousel-card span.series-date{
    font-size: 18px;

}


    .blog-carousel-wrapper .carousel-card span{
        left: 15px;
        font-size: 22px;
        line-height:28px;
        bottom: 15px;
        width: calc(100% - 30px);
    }

    .blog-carousel-wrapper{
        margin-bottom:100px;
        margin-top:40px;
    }

    .blog-carousel-wrapper .owl-carousel .owl-nav button.owl-prev, .blog-carousel-wrapper .owl-carousel .owl-nav button.owl-next {
        top: calc(50% - 70px);
        left:15px;
        height: 40px;
        width: 40px;
        font-size: 40px;
        line-height: 40px;
    }

    .blog-carousel-wrapper .owl-dots button span {
        width: 20px;
        height: 20px;
        display: inline-block;
        background: #fff;
        border-radius: 50%;
    }

    .blog-carousel-wrapper .owl-carousel .owl-nav button.owl-next{
        left:unset;
        right:15px;
    }

    .blog-carousel-wrapper .owl-dots {
        margin: -100px calc(50% - 50vw);
        padding-top: 120px;
        padding-bottom: 30px;
        column-gap: 5px;
    }
}

/* Hero Overlay Content Component */

.hero-overlay-inner.hero-overlay-content h1{
    text-align:center;
    max-width:1200px;
    margin-top:auto;
    margin-left: auto;
    margin-right: auto;
}

.hero-overlay-inner.hero-overlay-content .homepage-tagline{
    font-size:40px;
    text-align:center;
    line-height:40px;
    max-width:900px;
    margin: 25px auto auto auto;
}

.campus-hero .hero-overlay-inner.hero-overlay-content h1{
    max-width:950px;
}

.hero-overlay-inner.hero-overlay-content .homepage-tagline{
    max-width:1100px;
}

.hero-overlay-inner.hero-overlay-content .cta-buttons{
    justify-content:center;
}

.hero-overlay-inner.hero-overlay-content .cta-buttons .btn{
    flex:0;
    min-width:400px;
}

@media only screen and (max-width:991px){
    .hero-overlay-inner.hero-overlay-content .homepage-tagline{
        font-size:30px;
        line-height:40px;
    }
}

@media only screen and (max-width:767px){
    .hero-overlay-inner.hero-overlay-content .homepage-tagline{
        font-size:26px;
        line-height:32px;
    }

    .hero-overlay-inner.hero-overlay-content .cta-buttons .btn{
        flex:0;
        min-width:230px;
    }
}

/* Two Column / Full Width Callout CSS */
.two-column-callouts{
    display: flex;
    column-gap: 20px;
}

.two-column-callouts > div{
    border-radius:20px;
    margin-bottom:20px;
    flex:1;
    padding:50px;
    background-size:cover !important;
    background-repeat:no-repeat !important;
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
}

.two-column-callouts > div h3, .full-width-callout > div h3{
    margin-top:300px;
    color:#fff;
}

.full-width-callout > div h3{
    margin-top:150px;
    color:#fff;
}

.two-column-callouts > div p, .full-width-callout div p{
    max-width:700px;
    margin-bottom:30px;
    color:#fff;
}

.two-column-callouts > div p:last-child, .full-width-callout div p:last-child{
    margin-bottom:0px;
}

.two-column-callouts > div img{
    align-self:flex-start;
    max-width:100%;
}

.full-width-callout > div{
    border-radius:20px;
    margin-bottom:20px;
    padding:50px;
    background-size:cover !important;
    background-repeat:no-repeat !important;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    column-gap:40px;
}

.full-width-callout > div > div:first-child{
    max-width:680px;
}

.full-width-callout > div >div.buttons{
    max-width:410px;
    display:flex;
    flex-direction:column;
    row-gap:30px;
}

@media only screen and (max-width:1199px){
    .two-column-callouts{
        flex-wrap:wrap;
    }
    
    .two-column-callouts > div{
        flex:auto;
        width:100%;
    }

    .two-column-callouts > div h3{
        margin-top:200px;
    }
}

@media only screen and (max-width:991px){
    .full-width-callout > div{
        flex-direction:column;
        row-gap:30px;
    }

    .full-width-callout > div > div:first-child {
        width:100%;
        max-width:100%;
    }

    .full-width-callout > div > div.buttons{
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        column-gap: 30px;
        margin-top: 30px;
        flex-wrap:wrap;
    }
}

@media only screen and (max-width:767px)
{
    .two-column-callouts > div h3, .full-width-callout div h3{
        margin-top:150px;
    }

    .two-column-callouts > div, .full-width-callout > div{
       padding:25px;
    }
}

@media only screen and (max-width:500px){
    .full-width-callout > div > div.buttons a{
        width:100%;
    }
}

/* Accordion Content Component CSS */
.accordion-wrapper{
    max-width:1410px;
    margin: 60px auto;
    background:#fff;
    box-shadow: 0px 3px 30px #00000033;
    border-radius: 20px;
    padding: 40px 60px;
}

.accordion-item{
    padding: 30px 0;
    border-bottom: 1px solid #999;
}

.accordion-toggle{
    display:block;
    font-family: 'Montserrat';
    font-size: 35px;
    font-weight: 700;
    color: #f08833;
    transition: ease all 0.3s;
    position: relative;
}

.accordion-toggle:hover, .accordion-toggle:focus{
    color:#ae501f;;
    text-decoration:none;
}

.accordion-item:last-child{
    border-bottom:none;
}

.accordion-toggle:after {
    content: "+";
    position: absolute;
    display: block;
    font-size: 40px;
    font-family: 'acumin-pro';
    font-weight: 500;
    right: 0;
    top: 0;
    color: #f08833;
}

.accordion-toggle:hover:after{
    color:#ae501f;;
}

.accordion-content{
    font-size: 26px;
    line-height: 34px;
    padding-top:20px;
    color:#5B5C5F;
}

.accordion-toggle[aria-expanded="true"]:after {
    content: "-";    
}

.pull-up{
    padding-top:200px;
}

.pull-up-inner{
    transform: translateY(-250px);
    margin-bottom: -250px;
}

.pull-up > div{
    padding-bottom:80px;
}

.below-faq{
    max-width:960px;
    text-align:center;
    margin:auto;
    padding:0 30px;
}

@media only screen and (max-width:1480px){
    .accordion-wrapper{
        max-width:100%;
        margin:60px 30px;
    }
}

@media only screen and (max-width:991px){
    .accordion-toggle{
        font-size: 28px;
        line-height:30px;
    }

    .accordion-content{
        font-size: 24px;
        line-height: 30px;
        padding-top:10px;
    }
}

@media only screen and (max-width:767px){
    .accordion-wrapper{
        padding:15px 30px;
        margin:30px 15px;
    }

    .accordion-toggle{
        font-size: 22px;
        line-height:24px;
    }

    .accordion-content{
        font-size: 18px;
        line-height: 24px;
        padding-top:10px;
    }

    .accordion-item{
        padding:20px 0;
    }

    .accordion-toggle:after {
        font-size: 28px;        
    }

    .below-faq{
        padding:0 15px;
    }
}

/* Staff Card Grid CSS */
.staff-cards-top{
    display:flex;
    padding-top:120px;
    padding-bottom:320px;
    background: linear-gradient(to right, #f08833 0%, #f08833 45%, #ffffff 45%, #ffffff 100%);
}

.staff-cards-top-inner{
    display:flex;
    width:100%;
    padding: 0 30px;
}

.staff-cards-top-inner > div:first-child{
    width:45%;
    text-align:right;
    padding-right:65px;
}

.staff-cards-top-inner h2{
    color:#fff;
    margin:0;
}

.staff-cards-top-inner > div:nth-child(2){
    width:55%;
    text-align:left;
    padding-left:65px;
}

.staff-cards-top-inner p{
    max-width:700px;
}

.staff-cards-inner{
    margin-top:-275px;   
}

.staff-cards-grid{
    display:flex;
    flex-wrap:wrap;
    column-gap:10px;
    row-gap:15px;
}

.staff-cards-grid .staff-card{
    width:calc(25% - 7.5px);
    border-radius:20px;
    position:relative;
    display:flex;
}

.staff-card img{
    max-width: 100%;
    width:100%;
    object-fit: cover;
    height:100%;
    border-radius:20px;
}

.staff-card .text{
    position:absolute;
    bottom:30px;
    left:30px;
    max-width: calc(100% - 60px);
}

.staff-card h4{
    color:#fff;
    position:relative;
    z-index:1;
    margin:0;
    line-height: 34px;
    margin-bottom: 5px;
}

.staff-card h6{
    color:#fff;
    position:relative;
    z-index:1;
    font-family:'Open Sans';
    font-size:24px;
    font-weight:500;
    margin:0;
    word-wrap: break-word;
}

.staff-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.925) 0%,rgba(0,0,0,0) 100%);
}

.staff-cards-inner .cta{
    margin-top:55px;
    margin-bottom:100px;
    text-align:center;
}

.staff-cards-inner .cta .cta-btn{
    width:410px;
    max-width:100%;
}

.staff-card .campus-badge{
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 6px 12px;
    background: #f08833;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    border-radius: 8px;
}

@media only screen and (max-width:1400px){
    .staff-cards-grid .staff-card{
        width:calc(33.3% - 7px);
    }
}

@media only screen and (max-width:1199px){
    .staff-card h6{
        font-size:22px;
        line-height:25px;
    }

    .staff-cards-top{
        padding-top:80px;
    }
}

@media only screen and (max-width:991px){
    .staff-cards-grid .staff-card{
        width:calc(50% - 5px);
    }
}

@media only screen and (max-width:767px){
    .staff-cards-top{
        padding-top:50px;
        background:#f08833;
    }

    .staff-cards-top-inner{
        flex-direction: column;
        padding:0 15px;
    }

    .staff-cards-top-inner > div {
        width:100% !important;
        text-align:center !important;
        padding:0 !important;
    }

    .staff-cards-top-inner p {
        color:#fff;
    }

    .staff-cards-grid .staff-card{
        width:100%;
        max-width:350px;
    }

    .staff-cards-inner{
        margin-top:-300px;
    }

    .staff-cards-grid{
        justify-content:center;
    }

    .staff-cards-inner .cta{
        margin-bottom:60px;
        margin-top:35px;
    }
}

/* Campus Map Lava Template CSS */
.light-grey-bg{
    background:#F9F9F9;
}

.beige-bg{
    background:#C69C6D;
}

.light-grey-bg .narrow-centered-text{
    margin-top:0;
}

.visit-directions .cta-buttons a{
    width:410px;
    max-width:100%;
}

.visit-directions .cta-buttons{
    justify-content:space-evenly;
    margin-bottom:50px;
}

.visit-directions .cta-buttons a.active, .campus-events .cta-buttons a.active{
    background: #ae501f;
}

.visit-directions-lower{
    padding-bottom:100px;
}

.campus-directions-wrapper{
    display:none;
}

.campus-directions-wrapper.active{
    display:block;
}

.visit-directions-lower .map-embed-wrapper iframe{
    width:100%;
    height:680px;
}

.map-overlay{
    border-radius:20px;
    margin-top:-250px;
    background:#112D44;
    display:flex;
}

.map-overlay .campus-map{
    width:50%;
}

.map-overlay .campus-meta{
    border-top-left-radius:20px;
    border-bottom-left-radius:20px;
    padding:40px 35px;
    width:50%;
}

.map-overlay .campus-meta h3{
    color:#fff;
    margin-top:0;
}

.map-overlay .campus-map img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-top-right-radius:20px;
    border-bottom-right-radius:20px;
}

.campus-meta-row{
    margin: 30px 0;
    display:flex;
    column-gap:20px;
}

.map-overlay h3{
    font-size:45px;
    line-height:52px;
    margin-bottom:45px;
}

.campus-meta-row h5{
    color:#fff;
    font-weight:700;
    font-size:30px;
    line-height:34px;
    margin-top:0;
    margin-bottom:5px;
}

.campus-meta-row img{
    margin-top:5px;
}

.campus-meta-row p, .campus-meta-row a{
    font-size:25px;
    color:#fff;
}

.campus-meta-row > div:first-child{
    min-width:71px;   
}

@media only screen and (max-width:991px){
    .visit-directions .cta-buttons{
        row-gap:20px;
    }

    .map-overlay{
        flex-direction:column;
    }

    .map-overlay .campus-meta{
        width:100%;
        border-top-left-radius:20px;
        border-top-right-radius:20px;
        border-bottom-left-radius:0;
        border-bottom-right-radius:0;
    }

    .map-overlay .campus-map {
        width: 100%;
    }

    .map-overlay .campus-map img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        height: 400px;
    }

    .campus-meta-row:last-child {
        margin-bottom:0;
    }
}

@media only screen and (max-width:767px){
    .map-overlay .campus-meta {
        padding:25px 15px;
    }

    .map-overlay .campus-meta h3 {
        font-size:30px;
        line-height:34px;
        margin-bottom:25px;
    }

    .campus-meta-row > div:first-child {
        min-width:45px;
    }

    .campus-meta-row > div:first-child img {
        height:40px;
    }

    .campus-meta-row {
        margin: 15px 0;
        column-gap: 10px;
    }

    .campus-meta-row h5 {
        font-size: 20px;
        line-height: 24px;
    }

    .campus-meta-row p, .campus-meta-row a {
        font-size: 16px;
    }

    .map-overlay .campus-map img {
        height: 320px;
    }

    .campus-directions-wrapper .map-embed-wrapper iframe {
        height: 480px;
    }

    .map-overlay {
        margin-top: -140px;
    }

    .map-embed-wrapper .custom-container{
        margin-right: 40px;
    }
}

/* Plan a Visit Style Form Block CSS */
.form-wrapper{
    border-radius:20px;
    padding: 120px 0 100px 0;
}

.form-wrapper h1, .form-wrapper h2, .form-wrapper h3, .form-wrapper h4, .form-wrapper h5, .form-wrapper h6, .form-wrapper p{
    color:#fff;
}

.form-wrapper h1{
    margin-bottom:20px;
}

.form-wrapper h3{
    margin-bottom:15px;
}

.form-wrapper-inner{
    max-width:1360px;
    padding:0 30px;
    margin: 60px auto;
}

.emailform{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 40px;
}

.form-wrapper .emailform .form-group.label-hidden label{
    display:none;
}

.form-wrapper .emailform .form-group {
    width:100%;
    margin-bottom: 0;
}

.form-wrapper .emailform .form-group.half {
    width:calc(50% - 20px);
}

.form-wrapper .emailform .form-group input, .form-wrapper .emailform .form-group textarea {
    font-size:30px;
    color:#151515;
    padding:15px 30px;
    line-height:42px;
    height:auto;
    border-radius:5px;
}

.form-wrapper .emailform div[Id*='ButtonWrap'], .form-wrapper .emailform .emailform-messages{
    width:100%;
}

.form-wrapper input[type="submit"]{
    background: #f08833;
    color: #fff;
    font-weight: 600;
    font-family: 'Montserrat';
    font-size: 22px;
    line-height: 25px;
    padding: 22px 28px;
    text-transform: uppercase;
    width: 250px;
    display: block;
    border-radius: 10px;
    border: none;
    transition: all ease 0.5s;
    text-align: center;
    margin:auto;
}

.form-wrapper input[type="submit"]:hover, .form-wrapper input[type="submit"]:focus{
    background: #ae501f;
}

.brown-overlap{
    background: #C69C6D;
}

.form-wrapper .alert-info{
    color: #fff;
    background-color: #112D44;
    border-color: #112D44;
    border-radius: 20px;
    text-align: center;
}

@media only screen and (max-width:991px){
    .form-wrapper .emailform .form-group input, .form-wrapper .emailform .form-group textarea{
        font-size:20px;
        padding:10px 20px;
        line-height:32px;
    }

    .form-wrapper{
        padding: 60px 0 40px 0;
    }
}

@media only screen and (max-width:767px){
    .form-wrapper input[type="submit"]{
        font-size: 17px;
        line-height: 20px;
        padding: 12px 15px; 
        max-width:100%;
    }

    .form-wrapper .emailform .form-group input{
        font-size:18px;
        padding:8px 12px;
        line-height:24px;
    }

    .form-wrapper .emailform .form-group.half {
        width:100%;
    }

    .form-wrapper-inner {
        padding: 0 15px;
        margin: 40px auto;
    }
}

/* Campus Inspiration Custom CSS */
.campus-inspiration{
    display:flex;
    margin-top: -60px;
}

.campus-inspiration > div:first-child{
    width:65%;
    padding-top:330px;
}

.campus-inspiration > div:nth-child(2){
    width:35%;
    display:flex;
}

.campus-inspiration > div:nth-child(2) img{
    max-width:130%;
    margin-left:-20%;
    margin-top:auto;
}

.campus-inspiration p{
    max-width:740px;
    margin-bottom:70px;
}

.campus-inspiration .sig-sub{
    display: block;
    color: #151515;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 20px;
    margin-left: 10px;
}

@media only screen and (max-width:1199px){
    .campus-inspiration > div:first-child {
        padding-top: 200px;
    }
}

@media only screen and (max-width:1199px){
    .campus-inspiration > div:first-child {
        padding-top: 100px;
    }
}

@media only screen and (max-width:767px){
    .campus-inspiration > div:first-child {
        padding-top: 0px;
        text-align:center;
        width:100%;
    }

    .campus-inspiration {
        margin-top: 0px;
        flex-wrap:wrap;
    }

    .campus-inspiration p {
        margin-bottom: 20px;
    }

    .campus-inspiration > div:nth-child(2){
        width:100%;
        display:flex;
    }

    .campus-inspiration > div:nth-child(2) img {
        max-width: 100%;
        margin-left: auto;
        margin-top:30px;
        margin-right:auto;
        max-width: 240px;
    }
}

/* Campus Callout */
.campus-callout .callout-inner{
    min-height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.campus-callout .callout-inner h1{
    margin-top:0;
    max-width:800px;
    margin-bottom:30px;
}

@media only screen and (max-width:767px){
    .campus-callout .callout-inner{
        min-height: 500px;
    }
}

/* Step by Step Accordion CSS */
.step-by-step-wrapper{
    margin:100px 0;
    position:relative;
}
.step-by-step-wrapper h2{
    text-align:center;
    margin-bottom:40px;
}

.step-by-step-inner{
    display:flex;
    column-gap:15px;
    position: relative;
    z-index: 1;
}

.step-by-step-inner .step{
    background-size:cover !important;
    background-position:left center !important;
    border-radius:20px;
    min-height:700px;
    min-width:265px;
    flex:0;
overflow:hidden;
    padding:50px 40px;
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
    transition:ease all 0.75s;
    position:relative;
}

.step-by-step-inner .step:hover{
   text-decoration:none;
   filter:brightness(1.1);
}

.step-by-step-inner .step span{
    display:none;
    position:relative;
    z-index:1;
}

.step-by-step-inner .step.expanded span{
    display:block;
    color:#fff;
}

.step-by-step-inner .step.expanded{
    flex:1;
}

.step-by-step-inner .step h3{
    color:#fff;
    font-size:36px;
    line-height:44px;
    position:relative;
    z-index:1;
}

.step-by-step-inner .step::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
}

.step-by-step-wrapper .accent {
    width: 380px;
    position: absolute;
    z-index: 0;
    left: -150px;
    bottom: -240px;
}

@media only screen and (max-width: 1500px)
{
    .step-by-step-wrapper .accent {
        width: 190px;
        left: -80px;
        bottom: -70px;
    }
}

@media only screen and (max-width:991px){
    .step-by-step-inner{
        flex-direction: column;
        row-gap: 15px;
    }

    .step-by-step-inner .step {
        flex: 1;
        min-height:unset;
        padding: 150px 40px 20px 40px;
    }

    .step-by-step-inner .step span {
        display: block;
        color:#fff;
    }

    .step-by-step-inner .step h3{
        font-size:32px;
        line-height:40px;
        margin-bottom:5px;
    }

    .step-by-step-inner .step::after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        height: 70%;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
    }
}

@media only screen and (max-width:767px){
.step-by-step-inner .step h3{
font-size:24px;
    line-height:30px;

}
.step-by-step-inner .step span {
        line-height: 24px;
        font-size: 17px;
    }
}


/* Service Times CSS */
.service-times-wrapper {
    max-width: 1580px;
    margin: 80px auto 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    position:relative;
}

.service-times-inner{
    position:relative;
}

.service-times-inner::after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        border-radius: 20px;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
}

.service-times-inner
{
    z-index: 0;
    position: relative;
    border-radius: 20px;
    background-position: center center !important;
    background-size: cover !important;
    padding: 30px 30px 200px 30px;
}

.service-times-inner h3{
    margin:0 0 20px 0;
    color:#fff;
    position:relative;
    z-index:1;    
}

.service-times-content{
    position:relative;
    z-index:1;
}

.service-times-inner {
    color:#fff;
}

.service-times-inner ul, .service-times-inner p{
    max-width:700px;
    margin-bottom:20px;
}

.service-times-inner ul{
    font-size:24px;
}

@media only screen and (max-width:767px){
    .service-times-inner ul{
        font-size:16px;
    }

    .service-times-wrapper {
        padding-left: 15px;
        padding-right: 15px;
        margin:40px 0;
    }
}

.blog-carousel-wrapper.testimonials .owl-dots{
    background:#f5f5f5;
    padding-bottom: 200px;
}

.blog-carousel-wrapper.testimonials .owl-carousel .owl-nav button.owl-prev, .blog-carousel-wrapper.testimonials .owl-carousel .owl-nav button.owl-next{
    top:calc(50% - 200px);
}

.blog-carousel-wrapper.testimonials .owl-dots button span {
    background: #C69C6D;
}

.blog-carousel-wrapper.testimonials .owl-dots button.active span {
    background: #f08833;
}

@media only screen and (max-width:767px){
    .blog-carousel-wrapper.testimonials .owl-carousel .owl-nav button.owl-prev, .blog-carousel-wrapper.testimonials .owl-carousel .owl-nav button.owl-next {
        top: calc(50% - 160px);
    }
}

/* Campus Events */
.campus-events{
    margin: 40px auto 80px auto;
}

.campus-events .cta-buttons{
    justify-content:center;
}

.event-cards{
    margin-bottom:100px;
    display:none;
}

.event-cards-inner{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 40px;
}

.event-card{
    width:calc(50% - 20px);
    padding:30px 35px;
    box-shadow:0px 0px 20px #00000011;
    border-radius:20px;
    transition: ease all 0.3s;
}

.event-card:hover{
    text-decoration:none;
    transform:scale(1.03);
}

.event-cards .cta-buttons{
    margin-top:60px;
    justify-content:center;
}

.event-card img{
    max-width:100%;
    width:100%;
    object-fit:cover;
    border-radius:20px;
    aspect-ratio: 1.43;
}

.event-card h4{
    margin-left:20px;
    margin-top:20px;
    margin-bottom:0;
}

.event-card span{
    color:#5B5C5F;
    display:block;
    margin-left:20px;
}

.event-card:hover span{
    color:#5B5C5F;
}

.event-cards.active{
    display:block;
}

@media only screen and (max-width:1199px){
    .event-card span{
        font-size:22px;
        line-height:30px;
        margin-left:0;
    }

    .event-card h4{
        margin-left:0px;
    }   
}

@media only screen and (max-width:767px){
    .event-card{
        width:calc(100%);
        padding:15px 20px;
    }

    .campus-events{
        margin:20px auto 40px auto;
    }

    .event-card span{
        font-size:17px;
        line-height:22px;
    }
}

.decorative-bottom-border{
    height:50px;
    background: linear-gradient(to right, #f08833, #f08833 70%, #C69C6D 70%, #C69C6D 100%); 
}

@media only screen and (max-width:767px){
    .decorative-bottom-border {
        height: 30px;
    }
}

/* Two Column Text Content Component Styles */
.two-column-component{
    padding:120px 0;
}

.two-column-component{
    h2{
        margin:0;
        text-align:center;
    }

    .two-column-inner{
        display:flex;
        column-gap:80px;
        margin-top:40px;
    }

    .two-column-inner > div{
        flex:1;
        display: flex;
        flex-direction: column;
    }

    .two-column-inner > div p:last-child{
        margin-bottom:0;
    }
}

@media only screen and (max-width:767px){
    .two-column-component{
        .two-column-inner{
            row-gap:30px;
            flex-direction:column;
        }
    }

    .two-column-component{
        padding:60px 0;
    }
    
}

/* Video Resources Component Styles */
.video-resources-wrapper{
    display: flex;
    column-gap: 30px;
    margin-bottom: 120px;
}

.video-resources-buttons{
    max-width: 440px;
    flex-direction: column;
    row-gap: 15px;
    display: flex;
    max-height: 490px;
    padding-right: 15px;
    overflow-y: scroll;
}

.video-resources-buttons a{
    background:#c69c6d;
    line-height:24px;
    text-align:left;
    min-height:84px;
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px 28px;
}

.video-resources-buttons a.active{
    background:#f08833;
}

.video-resources-embeds{
    width:calc(100% - 470px);
    display:flex;
    align-items:center;
}

.embed-wrapper{
    width:100%;
    padding: 30px;
    box-shadow: 0px 3px 30px #ddd;
    border-radius: 20px;
}

.embed-wrapper iframe{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
}

.embed-wrapper{
    display:none;
}

.embed-wrapper.active{
    display:block;
}

@media only screen and (max-width:1199px){
    .video-resources-buttons{
        max-width: 340px;
    }

    .video-resources-embeds{
        width:calc(100% - 370px);
    }

    .video-resources-buttons a{
        min-height: unset;
        font-size:17px;
        line-height:20px;
        padding: 12px 20px;
    }
}

@media only screen and (max-width:991px)
{
    .video-resources-wrapper {
        row-gap: 30px;
        flex-direction: column;
        margin-bottom:60px;
    }

    .video-resources-buttons {
        max-width: 100%;
        width:100%;
        flex-direction:row;
        flex-wrap:wrap;
        justify-content:center;
        column-gap:15px;
        max-height:unset;
        overflow:hidden;
    }

    .video-resources-buttons a{
        max-width:350px;
        justify-content:center;
        text-align:center;
    }

    .video-resources-embeds {
        width: 100%;
    }
}

@media only screen and (max-width:767px){
    .video-resources-buttons a{
        max-width:350px;
        width:100%;
        font-size:15px;
        line-height:18px;
    }

    .embed-wrapper {
        padding: 15px;
    }
}

/* Latest Message CSS */
.latest-message-ux{
    margin: 100px auto;
}

.latest-message{
    display: flex;
    column-gap: 70px;
    margin-top: 25px;
}

.latest-message-ux h2{
    margin-bottom:25px;
}

.latest-message-wrapper.espanol{
    display:none;
}

.latest-message .artwork{
    width: calc(100% - 320px);
    position:relative;
    height: 100%;
}

.latest-message .artwork img{
    max-width:100%;
    border-radius: 8px;
}

.latest-message .info a:hover{
    text-decoration:none;
}

.latest-message h5{
    font-size:18px;
    text-decoration:underline;
    font-weight:600;
    margin-bottom:30px;
}

.latest-message .info{
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.latest-message .info .metadata{
    width: 275px;
    border-top: 1px solid #BBB;
    color: #78736E;
    padding-top: 10px;
    font-size: 16px;
    letter-spacing: 0;
    display: flex;
    column-gap: 8px;
}

.latest-message .buttons{
    margin-top:45px;
    margin-bottom:70px;
    display: flex;
    flex-direction: column;
    max-width: 410px;
    row-gap: 12px;
}

.social-buttons{
    display:flex;
    column-gap:12px;
    margin-bottom:10px;
    margin-top: 30px;
}

.social-buttons a{
    display:flex;
    justify-content:center;
    align-items:center;
    background: #f08833;
    border-radius: 5px;
    height:38px;
    width:38px;
    color:#fff;
    font-size:16px;
    text-decoration:none !important;
}

.social-buttons a:hover{
    background:#ae501f;
}

.responsive-video-wrapper iframe {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    display:block;
}

@media only screen and (max-width:991px){
    .latest-message .play-icon{
        width: 80px;
        height: 80px;
        top: calc(50% - 40px);
        left: calc(50% - 40px);
        position: absolute;
    }
}

@media only screen and (max-width:767px){
    .latest-message{
        flex-direction: column;
        align-items:center;       
        column-gap:0;
    }

    .latest-message-ux{
        margin:50px 0;
    }
    
    .latest-message .artwork{
        width: 100%;
        max-width: 340px;
    }

    .latest-message .info{
        width: 100%;
        max-width: 340px;
    }

    .latest-message .info .accent{
        display:none;
    }

    .latest-message .buttons{
        margin-top:20px;
        margin-bottom:20px;
    }
}

/* Series UX CSS */
.watch-by-series-wrapper{
    margin: 100px auto;
}

.series-pagination, .message-pagination{
    display: flex;
    justify-content: center;
    column-gap: 8px;
    flex-wrap: wrap;
}

.series-grid{
    display:flex;
    flex-wrap:wrap;
    column-gap:25px;
    margin-top:30px;
    row-gap:25px;
    justify-content:flex-start;
}

.series-pagination, .message-pagination{
    margin-top:30px;
}

.series-pagination a, .message-pagination a {
    cursor: pointer;
    font-size: 18px;
    color:#f08833;
}

.series-pagination .pagination-button.active, .message-pagination .pagination-button.active {
    color: #999;
    cursor: none;
    pointer-events: none;
}

.series-card{
    display:none;
    width: calc(33.3% - 17px);
    box-shadow: 0px 3px 30px #00000033;
    border-radius: 20px;
    background:#fff;
}

.series-art{
    position:relative;
}

.series-card .series-info{
    padding: 20px 25px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.series-card .series-card-inner{
    display: flex;
    flex-direction: column;
    height:100%;
}

.series-card .series-info .series-date{
    letter-spacing: 0px;
    color: #78736E;
    font-size:16px;
}

.no-messages h5{
    font-size:20px;
}

.series-card a:hover, .past-message-wrapper a:hover{
    text-decoration:none;
}

.series-card .series-info h5, .message-info h5{
  font-size:24px;
  font-weight:600;
}

.series-card img{
    max-width:100%;
    border-top-left-radius:20px;
    border-top-right-radius:20px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.watch-by-series .top-section, .latest-message-ux .top-section{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.watch-by-series .top-section a, .latest-message-ux .top-section a{
    text-decoration: underline;
    font-size:18px;
    font-weight:600;
    color:#151515;
}

@media only screen and (max-width:991px)
{
    .series-card{
        width: calc(50% - 13px);
    }
}

@media only screen and (max-width:767px){
    .watch-by-series .top-section, .latest-message-ux .top-section {
        flex-direction:column;
    }

    .latest-message-ux h3{
        text-align:center;
    }

    .watch-by-series-wrapper{
        margin:80px auto;
    }
}

@media only screen and (max-width:450px)
{
    .series-card{
        width: 100%;
    }
}

/* Messages UX CSS */
.message-grid-outer{
    display:none;
}

.messages-ux-wrapper{
    margin-top:55px;
}

.clear-filters{
    cursor:pointer;
    background: #f08833;
    border:none;
    color:#fff;
    border-radius: 8px;
    font-size:14px;
    text-transform:uppercase;
    line-height:36px;
    padding-left:35px;
    padding-right:18px;
    position:relative;
    font-weight: 600;
    display:none;
}

.clear-filters:hover{
    color:#fff;
    background:#ae501f;
    text-decoration:none;
}

.message-grid-outer{
    margin: 100px 0;
}

.clear-filters::before{
    content:'x';
    position:absolute;
    left:15px;
    font-family: monospace;
    top:0px;
}

.message-filters, .staff-filters-outer{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 30px #00000014;
    border-radius: 8px;
    opacity: 1;
    padding: 35px;
}

.message-filters .top-section, .staff-filters-outer .top-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-filters .filters-outer, .staff-filters-outer .filters-outer{
    display:flex;
    column-gap:35px;
    margin-top:40px;
}

.message-filters .filter-inner{
    width:33.3%;
    position:relative;
}

.staff-filters-outer .filter-inner{
    width:33%;
    position:relative;
}

.message-filters .filter-inner:last-child{
    width:50%;
}

.filter-wrapper{
    display:none;
    position:absolute;
    left:0;
    z-index:2;
    width:100%;
    padding:9px 18px;
    border: 2px solid #78736E;
    border-radius: 8px;
    top: 76px;
    background: #fff;
}

.filter-top.expanded + .filter-wrapper{
    display:block;
}

.message-filters h5, .staff-filters-outer h5{
    font-size:20px;
    line-height:23px;
    font-weight:600;
    text-transform: uppercase;
    margin:0;
}

.message-filters h3, .staff-filters-outer h3{
    text-transform: uppercase;
    opacity: 1;
    font-size:30px;
    line-height:33px;
    margin:0;
}

.message-filters .filter-top, .staff-filters .filter-top{
    border: 2px solid #aaa;
    border-radius: 8px;
    color: #78736E;
    line-height:42px;
    padding:0 15px;
    font-size: 18px;
    letter-spacing: 0;
    margin-top:5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor:pointer;
}

.message-filters .filter-top.active, #two-inputs input.active, .staff-filters .filter-top.active{
    border: 2px solid #333;
}

.message-filters .filter-top i, .staff-filters .filter-top i{
    font-size:14px;
    color:#000;
}

.filter-speaker, .filter-category, .filter-language, .filter-campus, .filter-ministry, .filter-team{
    display: block;
    letter-spacing: 0px;
    color: #78736E;
    padding: 2px 0px;
    font-size: 16px;
    line-height: 22px;
    cursor:pointer;
}

.filter-speaker:hover, .filter-category:hover, .filter-language:hover, .filter-campus:hover, .filter-ministry:hover, .filter-team:hover{
  color:#000;
}

.date-range-wrapper{
    display:flex;
    column-gap:7px;
}

#two-inputs{
    display:flex;
    column-gap:7px;
    width: 100%;
}

#two-inputs input{
    border: 2px solid #aaa;
    border-radius: 8px;
    color: #78736E;
    line-height: 42px;
    padding: 0 15px;
    font-size: 18px;
    width: calc(50% - 25px);
    letter-spacing: 0;
    margin-top: 5px;
    cursor: pointer;
}

.calendar-button{
    background: #f08833 0% 0% no-repeat padding-box;
    border-radius: 8px;
    width: 47px;
    margin-top: 5px;
    color: #fff;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: flex;
}

.calendar-button:hover{
    background:#ae501f;
}

.calendar-button i{
    font-size: 20px;
}

.message-grid-outer h2{
    color:#000;
    font-size:36px;
    letter-spacing:0px;
    text-transform:uppercase;
    margin:0;
}

.past-messages{
    display:flex;
    flex-wrap:wrap;
    column-gap:25px;
    margin-top:30px;
    row-gap:25px;
    justify-content:flex-start;
}

.past-message-wrapper{
    display:none;
    width: calc(33% - 17px);
    box-shadow: 0px 3px 30px #00000014;
    background:#fff;
    border-radius: 20px;
}

.message-art{
    position:relative;
}

.message-info{
    padding: 20px 25px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;;
}

.message-card-inner{
    display: flex;
    flex-direction: column;
    height:100%;
}

.message-info .message-meta{
    letter-spacing: 0px;
    color: #78736E;
    font-size:16px;
}

.message-info h6{
    text-decoration:underline;
    letter-spacing: 0px;
    color: #333;
    font-size:16px;
    font-weight:600;
    margin-top:5px;
    margin-bottom: 20px;
}

.message-art img{
    max-width:100%;
    border-top-left-radius:8px;
    border-top-right-radius:8px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.date-picker-wrapper .drp_top-bar .apply-btn{
    background: #f08833 !important;
    border-color:#f08833  !important;
    color: #fff !important;
}

.date-picker-wrapper .drp_top-bar .apply-btn:hover{
    background: #ae501f !important;
    border-color: #ae501f !important;
}

.date-picker-wrapper .first-date-selected, .date-picker-wrapper .last-date-selected{
    background-color: #333 !important;
}

.date-picker-wrapper .month-wrapper table .day.checked{
    background-color:#aaa;
}

.date-picker-wrapper .month-wrapper table .day.toMonth.hovering{
    background-color:#ccc;
}

.language-toggles{
    margin-left: auto;
    margin-right: 40px;
    font-size: 18px;
    display: flex;
    column-gap: 0px;
    text-decoration: none;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 3px 30px #00000014;
}

.language-toggles a{
    text-decoration:none !important;
    cursor:pointer;
    padding-right:30px;
    padding-left:25px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius:30px;
    border-bottom-right-radius:30px;
}

.language-toggles a:first-child{
    padding-left:30px;
    padding-right:25px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius:0;
    border-bottom-right-radius:0;
}

.language-toggles a.active{
    background: #f08833;
    color: #fff;
}

.language-toggles a:hover{
    background:#eee;
}

.language-toggles a.active:hover{
    background: #ae501f;
}

@media only screen and (max-width:991px)
{
    .past-message-wrapper{
        width: calc(50% - 13px);
    }

    .message-filters .filters-outer{
        column-gap:15px;
    }

    .message-filters .filter-top, #two-inputs input{
        font-size:16px;
    }
}

@media only screen and (max-width:767px){
    .message-filters .top-section, .staff-filters-outer .top-section {
        flex-direction: column;
        row-gap: 20px;
    }

    .language-toggles{
        margin-bottom:10px;
        margin-right: auto;
    }

    .message-filters .filter-inner:last-child{
        width:100%;
    }

    .message-filters{
        padding: 35px 15px;
    }

    .message-filters .filters-outer {
        flex-direction: column;
        row-gap: 15px;
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
        margin-top: 15px;
    }

    .message-filters .filter-inner {
        width:100%;
    }

    .message-filters h5 {
        text-align:center;
    }

    .message-filters .filter-top{
        font-size:16px;
        line-height:36px;
    }
}

@media only screen and (max-width:450px)
{
    .past-message-wrapper{
        width: 100%;
    }
}

/* Message Details CSS */

.message-detail{
    margin:20px auto;
    display:flex;
    column-gap:30px;
}

.video-embed-col{
    width:calc(100% - 340px);
}

.video-metadata{
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 5px;
}

 .video-metadata .accent, .from-this-series .accent{
    border-top:7px solid #D5D5CC;
    width:60px;
}

.video-metadata h2, .from-this-series h2{
    font-size:40px;
    line-height:50px;
    letter-spacing:0px;
    margin-top:0px;
    margin-bottom:10px;
}

.video-metadata h5{
    font-size: 18px;
    text-decoration: underline;
    font-weight: 600;
    margin-bottom: 30px;
}

.video-metadata p{
    line-height:24px;
    font-size:18px;
    color: #78736E;
}

.video-metadata .message-meta{
    display:flex;
    column-gap:5px;
    font-size:16px;
     color: #78736E;
}

.video-metadata .buttons{
    margin-top:30px;
    flex-direction: column;
    display:flex;
    max-width: 410px;
    row-gap: 12px;
}

  .video-metadata .buttons > a{
    background: #f08833;
    color:#fff;
    font-size:18px;
    text-transform:uppercase;
    font-weight:600;
    height:48px;
    border-radius: 8px;
    border: 2px solid #f08833;
    line-height: 34px;
}

.video-metadata .buttons .secondary-cta{
    background: transparent;
    color:#333;
}

.from-this-series{
    margin:100px auto 80px auto;
}

.from-this-series .past-message-wrapper{
    display:block;
}

 @media only screen and (max-width:991px)
{
    .from-this-series{
        margin: 60px 0 80px 0;
    }
}

@media only screen and (max-width:767px){
    .message-detail{
        flex-direction: column;
        row-gap: 20px;
    }

    .video-embed-col, .video-metadata {
        width: 100%;
    }

    .video-metadata h2, .from-this-series h2 {
        font-size: 30px;
        line-height: 38px;
    }
}

.anchor{
    position:absolute;
    top:-140px;
}

.message-single.from-this-series{
    width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5px;
    margin:0;
    padding: 0 10px;
    position: absolute;
    height: 100%;
    right: 0;
    overflow-y: scroll;
}

.message-single.from-this-series h2{
    font-size:28px;
    line-height:32px;
}

.message-single.video-metadata {
   width:100%;
   margin:60px auto 20px auto;
}

.metadata-inner{
    width: calc(100% - 340px);
}

.cta-bar{
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 15px;
}

.message-single .past-messages{
    flex-direction:column;
    margin-top:5px;
    padding-bottom: 10px;
}

.message-single .past-messages .past-message-wrapper{
    width:100%;
    box-shadow: 0px 3px 10px #00000014;
}

.message-single .message-info{
    padding:8px 12px;
}

.message-single .message-info h5{
    font-size:18px;
    margin: 5px auto;
}

.message-single.video-metadata h5{
    margin-bottom:5px;
}

.message-single .series-link{
    display:none;
}

.message-single .message-info .message-meta {
    color: #78736E;
    font-size: 13px;
    line-height: 18px;
}

.message-single .metadata-inner h2{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metadata-inner .social-buttons{
    margin: 0;
    justify-content: flex-end;
}

.metadata-inner h4{
    margin-top:40px;
}

.metadata-inner-split{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    row-gap:15px;
    column-gap:15px;
}

.message-single .btn{
    font-size:16px;
    padding:12px 20px;
    line-height:18px;
    margin-bottom: 15px;
}

@media only screen and (Max-width:1199px){
    .metadata-inner {
        width: 100%;
    }
}

@media only screen and (max-width:991px){
    .message-detail{
        flex-wrap:wrap;
        row-gap:40px;
    }

    .metadata-inner-split{
        flex-direction:column;
    }

    .metadata-inner-split .social-buttons{
        justify-content:flex-start;
    }

    .video-embed-col{
        width:100%;
    }

    .message-single.from-this-series{
        width:100%;
        position:relative;
        overflow-y:hidden;
        display:none;
    }

    .message-single .past-messages {
        flex-direction:row;
        flex-wrap:nowrap;
        overflow-x:scroll;
    }

    .message-single.video-metadata {
        margin: 10px auto 20px auto;
    }

    .video-metadata p{
            font-size:16px;
            line-height:22px;
    }
}

.message-notes{
    margin:80px auto;
}

.message-notes h1{
    font-size:40px;
    line-height:48px;
}

.message-notes .metadata-inner-split{
    align-items: center;
    margin-bottom:30px;
}

.notes-pod{
    box-shadow: 0px 3px 30px #00000033;
    border-radius: 20px;
    background: #fff;
    padding: 45px;
}

.notes-pod p{
    font-size:20px;
    line-height:28px;
    margin-bottom:15px;
}

.message-summary .description{
    font-size:17px;
    line-height:24px;
    margin-bottom:50px;
}

@media only screen and (max-width:767px){
    .notes-pod{
        padding: 15px 25px;
    }

    .notes-pod p{
        font-size:18px;
        line-height:26px;
        margin-bottom:15px;
    }

    .message-notes {
        margin: 40px auto;
    }
}

/* Event UX */
.event-item{
    position:relative;
    width: calc(33.3% - 20px);
    box-shadow: 0px 0px 20px #00000011;
    border-radius: 20px;
    transition: ease all 0.3s;
}

.event-video{
    margin:20px 0;
}

.location-info-wrapper a span{
    color: #112D44 !important;
    font-weight: 600;
}

.location-info-wrapper a{
   text-decoration:none !important;
}

.event-item .date{
    width: 100px;
    min-width: 100px;
    height: 100px;
    left: 10px;
    top: 10px;
    position: absolute;
    border-radius: 20px;
    background: #151515;
    color: #fff;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 3px;
}

.event-item .day{
    font-size:38px;
    font-family:'Montserrat';
    font-weight:700;
    line-height:38px;
}

.event-item .month{
    font-size:18px;
    line-height:20px;
}

.event-item .year{
    font-size:14px;
    line-height:15px;
}

.event-item .info h3{
    margin-bottom:10px;
}

.event-item .meta{
    margin-bottom:5px;
}

.event-item:hover{
    text-decoration:none;
    transform:scale(1.05);
}

.event-item .meta{
    padding:15px;
}

.event-item img{
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius:20px;
    aspect-ratio: 1.43;
}

.event-item .links, .event-item .meta{
    flex-direction:column;
}

.event-item .meta h3{
    margin-top:0;
    font-size:30px;
    line-height:36px;
}

.event-item .meta .location{
    font-size:16px;
    line-height:20px;
    color:#999;
}

.event-ux-wrapper{
    margin:120px auto;
}

.event-ux-wrapper .row{
    margin: 0 !important;
}

    .event-ux-wrapper .row > div {
        width: 100% !important;
        padding: 0;
    }

.event-filters{
    max-width:1280px;
    width:100%;
    margin: 20px auto;
}

.event-grid{
    display: flex;
    column-gap: 30px;
    row-gap: 30px;
    flex-wrap:wrap;
}

.event-ux-wrapper .col-md-3.hidden-print {
    display: flex;
    width: 100%;
    align-self: center;
    float: none;
    margin: auto !important;
    justify-content: space-between;
}

    .event-ux-wrapper .col-md-3.hidden-print .form-group{
        width:30%;
        position:relative;
        margin-bottom:0;
    }

    .event-ux-wrapper .col-md-3.hidden-print .form-group .control-wrapper{
        width:100%;
        display:none;
    }

    .event-ux-wrapper .col-md-3.hidden-print a.btn-sm {
        display:none;
    }

    .event-ux-wrapper .col-md-3.hidden-print .form-group .control-label.active + .control-wrapper{
        display:block;        
    }

.event-ux-wrapper .col-md-3.hidden-print .control-label {
    text-align: center;
    display: block;
    padding: 15px;
    background: #112D44;
    color:#fff;
    border: 2px solid #fff;
    border-radius: 20px;
    font-size: 22px;
    font-family:'Montserrat';
    font-weight: 600;
    cursor:pointer;
    width: 100%;
}

    .event-ux-wrapper .col-md-3.hidden-print .control-label::after {
        content: "";
        width: 34px;
        position: absolute;
        right: 35px;
        top:30px;
        height: 18px;
        display: inline-block;
        background-image: url(/Themes/SCBC_Custom/Assets/Images/dropdown-arrow.png);
        background-repeat: no-repeat;
        background-size: cover;
        transition: all 0.3s ease-in-out;
    }

    .event-ux-wrapper .col-md-3.hidden-print .controls, .event-ux-wrapper .col-md-3.hidden-print .form-control-group {
        font-size: 18px;
        padding: 20px;
        background: #fff;
        border-radius: 15px;
        border: 2px solid #112D44;
    }

.event-ux-wrapper .form-group .checkbox:last-child {
    margin-bottom: 0px;
}

.event-ux-wrapper .form-group .checkbox input[type="checkbox"]{
    transform:scale(1.15);
    margin-left:-25px;
}

.event-ux-wrapper .form-group .checkbox label  {
    padding-left:25px;
    line-height:22px;
}

    .event-ux-wrapper .col-md-3.hidden-print .control-label.active::after {
        transform: rotate(180deg);
    }

.event-ux-wrapper .form-control-group .js-date-picker {
    float: none;
    margin: 0 auto;
    width:200px;
}

.event-ux-wrapper .form-control-group .js-date-picker input[type="text"]{
    height: 45px;
    font-size: 18px;
    text-align: center;
}

.event-ux-wrapper .form-control-group .form-control-static {
    float: none;
    text-align: center;
    width: 100%;
    line-height: 18px;
    min-height: auto;
    padding: 0;
    margin: 15px 0;
}

        @media only screen and (max-width:1100px) {
            .event-ux-wrapper .col-md-3.hidden-print .control-label {
                font-size:20px;
                padding:10px;
            }

            .event-ux-wrapper .col-md-3.hidden-print .form-group {
                width: 32%;
            }

            .event-ux-wrapper .col-md-3.hidden-print .control-label::after {
                width: 17px;
                right: 30px;
                top: 22px;
                height: 9px;
            }

            .event-ux-wrapper .form-control-group .js-date-picker {
                width: 150px;
            }

                .event-ux-wrapper .form-control-group .js-date-picker input[type="text"] {
                    height: 40px;
                    font-size: 16px;
                    text-align: center;
                }

            .event-ux-wrapper .form-control-group .form-control-static {
                line-height: 18px;
                min-height: auto;
                padding: 0;
                margin: 10px 0;
            }
        }

@media only screen and (max-width:767px) {

    .event-item{
        width:calc(50% - 15px);
    }

    .event-ux-wrapper .col-md-3.hidden-print .control-label::after {
        right: 20px;
        top: 22px;
        height: 9px;
    }

    .event-ux-wrapper .col-md-3.hidden-print .form-group {
        width:100%;
        max-width:350px;
    }

    .event-ux-wrapper .col-md-3.hidden-print {
        flex-direction: column;
        align-items:center;
    }

        .event-ux-wrapper .col-md-3.hidden-print .control-label {
          margin-bottom:10px;
        }

        .event-ux-wrapper .col-md-3.hidden-print .controls, .event-ux-wrapper .col-md-3.hidden-print .form-control-group {
            margin-bottom: 10px;
        }
}

    @media only screen and (max-width:600px) {
            .event-item .meta {
                flex-wrap: wrap;
                justify-content: center;
            }

            .event-item .meta .location {
                font-size: 14px;
                line-height: 16px;
            }

            .event-item .date{
                width:80px;
                height:80px;
                min-width:80px;
            }

            .event-item .day {
                font-size: 26px;
                line-height: 26px;
            }

            .event-item .month {
                font-size: 14px;
                line-height: 15px;
            }

            .event-item .meta h3 {
                margin-top: 0;
                font-size: 24px;
                line-height: 30px;
            }

            .event-item .year {
                font-size: 11px;
                line-height: 12px;
            }

            .event-item{
                width:100%;
            }
         
            .event-item .info {
                width: auto;
                margin: 20px 15px;
            }

            .event-item .meta .time {
                margin-left: 15px;
            }
        }

    .event-occurrence-wrapper .event-card{
        box-shadow: 0px 3px 30px #00000014;
        border-radius: 8px;
        background: #fff;
        padding: 25px;
        max-width: 440px;
    }

    .event-occurrence-wrapper{
        margin: 60px auto;
        display: flex;
        column-gap: 80px;
        align-items: flex-start;
    }

    .event-occurrence-wrapper .event-info{
        flex:1;
    }

    .event-card .split-column {
        display: flex;
        column-gap: 15px;
    }

    .event-card .event-details {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
        margin-top:25px;
    }

    .event-occurrence-wrapper h2{
        margin-top:0;
        font-size:48px;
        line-height:60px;
    }

    .event-details h5{
        font-size:20px;
        font-weight:700;
        margin-top:2px;
        width: 115px;
    }

    .event-card .registration{
        margin-top:20px;
    }

    .event-card .registration .cta-btn{
        width:100%;
    }

    .event-card .registration-ends{
        margin-top: 5px;
        font-size: 14px;
        text-align: center;
        line-height: 18px;
    }

    .event-occurrence-wrapper .event-details{
        font-size:18px;
        line-height:24px;
    }

    .event-occurrence-wrapper .event-details span{
        font-size:18px;
        line-height:24px;
    }


    .split-column > div {
        max-width: calc(100% - 130px);
    }

    .event-occurrence-wrapper .description{
        font-size:24px;
        line-height:32px;
    }

    .event-occurrence-wrapper .split-column span{
        display: block;
        margin-left:0;
    }

    @media only screen and (max-width:991px){
        .event-occurrence-wrapper{
            flex-direction:column;
            row-gap:30px;
        }
    }

    @media only screen and (max-width:767px){
        .event-occurrence-wrapper h2{
            font-size:30px;
            line-height:40px;
        }
    
        .event-details h5{
            font-size:16px;
            font-weight:700;
            margin-top:0;
            width: 85px;
        }

        .event-occurrence-wrapper .description {
            font-size: 18px;
            line-height: 24px;
        }

        .split-column > div{
            max-width: calc(100% - 100px);
        }

        .event-occurrence-wrapper .event-details span{
            font-size:15px;
            line-height:18px;
        }
    
        .event-occurrence-wrapper .event-details{
            font-size:15px;
            line-height:18px;
            word-break: break-word;
        }
    }

/* Full Width Text + Image CSS */
.fwti{
    position:relative;
}

.anchor-point{
    visibility:hidden;
    position:absolute;
    top:-120px;
    left:0;
}

.fwti.scheme-1{
    background:#112D44;
    color:#fff;
}

    .fwti.scheme-1 h2, .fwti.scheme-1 p{
        color:#fff;
    }

    .fwti.scheme-1 .accent-rect{
        background:#f08833;
    }

    .fwti.scheme-1 h2::after{
        border-bottom:2px solid #f08833;
    }

.fwti.scheme-2{
    background:#fff;
}

.fwti.scheme-2 .accent-rect{
        background:#f08833;
    }

    .fwti.scheme-2 h2::after{
        border-bottom:2px solid #f08833;
    }

.fwti.scheme-3{
    background:#f08833;
    color:#fff;
}
.fwti.scheme-3 h2, .fwti.scheme-3 p{
        color:#fff;
    }

    .fwti.scheme-3 .accent-rect{
        background:#112D44;
    }

    .fwti.scheme-3 h2::after{
        border-bottom:2px solid #112D44;
    }


.fwti.scheme-4{
    background:#fff;
}

.fwti.scheme-4 .accent-rect{
        background:#112D44;
    }

    .fwti.scheme-4 h2::after{
        border-bottom:2px solid #112D44;
    }

.fwti h2::after{
    width:200px;
    content:'';
    display:block;
    margin-top:35px;
    margin-bottom:40px;
}

.fwti-top{
    height:120px;
    display:flex;
}

.fwti h2{
    font-size:45px;
    line-height:54px;
    margin:0;
}

.fwti-top .accent-rect{
    width:25%;
}

.fwti.alignment-left .fwti-top{
        justify-content:flex-start;
}

.fwti.alignment-right .fwti-top{
        justify-content:flex-end;
}

.fwti-main{
    display:flex;
}

.alignment-right .fwti-main{
    flex-direction:row-reverse;
}

.fwti-img{
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
}

.fwti-img, .fwti-content{
    width:50%;
}

.fwti-content{
    max-width:840px;
    padding:80px 120px;
    min-height:700px;
}

.fwti-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@media only screen and (max-width:1399px){
    .fwti-content {
        padding: 80px;
    }
}

@media only screen and (max-width:1199px){
    .fwti-content {
        padding: 50px;
        min-height: 600px;
    }
}

@media only screen and (max-width:991px){
    .fwti-content {
        padding: 40px;
        min-height: 500px;
    }

    .fwti-top {
        height: 60px;
    }
}

@media only screen and (max-width:767px){
    .fwti h2{
        font-size: 34px;
        line-height: 42px;
    }

    .fwti-top {
        height: 40px;
    }

    .fwti p{
        font-size: 20px;
        line-height: 28px;
    }

    .fwti-main{
        flex-direction: column;
    }

    .alignment-right .fwti-main {
        flex-direction: column;
    }

    .fwti-img{
        height: 300px;
        width: 100%;
    }

    .fwti-content{
        padding:30px 20px 60px 20px;
        min-height:unset;
        width:100%;
    }
}

/* Link Cards CSS */
.link-cards-wrapper{
    margin:80px 0;
}

.link-cards-wrapper > div.custom-container{
    display:flex;
    flex-wrap:wrap;
    column-gap:40px;
    row-gap:40px;
}

.link-cards-wrapper .link-card{
    width:calc(50% - 20px);
    border-radius:20px;
    box-shadow: 0px 3px 30px #00000033;
    display:flex;
    flex-direction:column;
}

.link-cards-wrapper .link-card-inner{
    padding:45px;
}

.link-card-inner h6{
    font-size: 30px;
    font-weight: 800;
    margin: 5px 0;
}

.link-card-inner p{
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 0;
}

.link-card-inner img{
    aspect-ratio:16/9;
    object-fit:cover;
    width:100%;
    margin-bottom: 40px;
}

.link-card-inner.image-Logo img{
    object-fit:contain;
}

.link-card-inner.image-Picture img{
    border-radius:8px;
}


.link-card .cta-btn{
    margin-top: auto;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.interstitial-overlay{
    position: fixed; /* Sit on top of the page content */
    display: none;
    width: 100%; 
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.75); /* Black background with opacity */
    z-index: 50;
}

.interstitial-inner{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.interstitial-inner > div{
    max-width: 800px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    position:relative;
}

.interstitial-close{
    color: #333223;
    font-weight: 800;
    position: absolute;
    right: 20px;
    top: 10px;
}

.interstitial-cta .cta-btn{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 15px;
    min-width: 250px;
    padding: 20px;
}

.interstitial-close:hover{
   text-decoration:none;
   color:#333223;
}

.interstitial-content p{
    font-size:24px;
    line-height:30px;
}

@media only screen and (max-width:991px){
    .link-cards-wrapper .link-card-inner {
        padding: 25px;
    }

    .link-cards-wrapper > div.custom-container {
        column-gap: 25px;
        row-gap: 25px;
    }

    .link-card-inner h6 {
        font-size: 22px;
    }

    .link-card-inner p {
        font-size: 20px;
        line-height: 28px;
    }

    .link-card .cta-btn {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width:767px){
    .link-cards-wrapper .link-card {
        width: 100%;
    }

    .interstitial-inner{
        padding: 15px;
    }
    
    .interstitial-inner > div{
        padding: 15px;
    }
    
    .interstitial-content p{
        font-size:20px;
        line-height:25px;
    }
}

.actions .btn-primary, .actions .btn-default{
    background: #f08833;
    color: #fff;
    border:none;
    font-weight: 600;
    display: inline-block;
    font-family: 'Montserrat';
    font-size: 22px;
    line-height: 24px;
    padding: 12px 28px;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all ease 0.5s;
    text-align: center;
}

.actions .btn-default{
    background: #112D44;  
}

.actions .btn-primary:hover, .actions .btn-primary:active, .actions .btn-primary:focus, .actions .btn-default:hover, .actions .btn-default:active, .actions .btn-default:focus{
    background: #ae501f;
}

.progress-bar{
    background-color:#f08833;
}

/* Single Story Template CSS */
.single-story-wrapper{
    margin-top:60px;
}

.story-header{
    display: flex;
    column-gap: 50px;
    align-items: flex-end;
}

.story-header img{
    border-radius: 20px;
    aspect-ratio: 16/9;
    object-fit: cover;
    max-width:100%;
    width:400px;
}

.story-header h1{
    margin-bottom:0;
    margin-top:10px;
}

.story-header h2{
    color: #112D44;
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 0;
}

.story-inner .responsive-video-wrapper iframe{
    height: auto;
}

.story-inner{
    font-size: 18px;
    line-height: 25px;
}

.story-inner .video-pod{
    margin-bottom:30px;
}

@media only screen and (max-width:767px){
    .story-header{
        flex-direction: column;
        row-gap: 10px;
        align-items: center;
    }

    .story-header h1{
        text-align:center;
    }
    
    .story-header h2{
        text-align:center;
        font-size: 28px;
        line-height: 34px;
    }
    
}

.nav-tabs{
    margin-bottom:100px;
    margin-top:30px;
    display: flex;    
    justify-content: center;
    border-bottom:0;
}

.nav-tabs > a{
    color:#fff;
    display:flex;
    padding: 15px 60px;
    background:#f08833;
    font-family: 'Montserrat';
    font-size: 22px;
    line-height: 25px;
    font-weight:600;
    text-transform:uppercase;
    border-left:2px solid #fff;
    text-align:center;
    border-right:2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tabs > a:first-child{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-left:none;
}

.nav-tabs > a:last-child{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-right:none;
}

.nav-tabs > a.active{
    pointer-events:none;
    background:#112D44;
}

.nav-tabs > a:hover{
    text-decoration:none;
}

@media only screen and (max-width:767px){
    .nav-tabs{
        flex-direction: column;
        row-gap: 10px;
        align-items: center;
        margin-bottom:50px;
        margin-top:25px;
    }

    .nav-tabs > a{
        max-width: 100%;
        width: 350px;
        border-radius:20px;
        align-items: center;
        font-size: 18px;
        padding: 12px 20px;
    }
}

/* Sub-Nav CSS */
.sub-nav-pod{
    width: 400px;
    box-shadow: 0px 3px 30px #00000033;
    border-radius: 20px;
    background: #fff;
    padding: 15px 25px;
    max-width:100%;
}

.sub-nav-pod .nav-pills>li>a{
    font-size:18px;
    color:#5B5C5F;
    line-height:28px;
    padding:3px 0 3px 25px;
    border-radius:8px;
}

.sub-nav-pod .nav-pills>li{
    margin:5px 0;
}

.sub-nav-pod .nav-pills>li.parent-page>a{
    font-size:24px;
    color:#151515;
    line-height:34px;
   font-weight:600;
   font-family:'Montserrat';
   padding-left:10px;
}

.sub-nav-pod .nav-pills>li.active>a {
    background-color:#112D44;
    color:#fff;
}

.two-column-subnav{
    display:flex;
    column-gap:50px;
    padding:50px 0 70px 0;
}

.two-column-subnav h2{
    margin-top:0;
}

.two-column-subnav > div:first-child{
    width: 745px;
    max-width: 65%;
}

@media only screen and (max-width:991px){
    .two-column-subnav{
        flex-direction:column-reverse;
        row-gap:30px;
    }
}

@media only screen and (max-width:767px){
    .two-column-subnav > div:first-child{
        max-width: 100%;
    }
}

@media only screen and (max-width:500px){
    .sub-nav-pod{
        padding: 10px 20px;
    }

    .sub-nav-pod .nav-pills>li>a{
        font-size:16px;
        line-height:24px;
    }
    
    .sub-nav-pod .nav-pills>li.parent-page>a{
        font-size:20px;
        line-height:28px;
       padding-left:10px;
    }
}

.cci-row{
    display:flex;
    column-gap:70px;
    margin-top:60px;
}

.cci-sidebar{
    width: 350px;
    margin-bottom: 60px;
}

.cci-main{
    width:calc(100% - 420px);
    margin-bottom: 60px;
}

.featured-story-sidebar h4{
    margin-top:0;
}

.featured-story-sidebar .grid-card{
    text-align: left;
    display: block;
    background: #fff;
    margin: 30px 0;
}

.featured-story-sidebar a:hover{
    text-decoration:none;
}

.featured-story-sidebar .grid-card img{
    max-width:100%;
    border-radius:20px;
    margin-bottom:15px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.featured-story-sidebar .grid-card h4{
    margin-bottom:0;
    font-size:22px;
    line-height:26px;
}

@media only screen and (max-width:991px)
{
    .cci-row{
        display:flex;
        column-gap:70px;
        margin-top:40px;
        flex-direction:column;
    }
    
    .cci-main{
        width: 100%;
        margin-bottom: 40px;
    }

    .cci-sidebar{
        margin-bottom:50px;
        max-width:100%;
    }
}

/* Carousel Content Component CSS */
.owl-carousel.aspect-16-9 .item-image-wrapper img{
    aspect-ratio:16/9;
}

.owl-carousel.aspect-5-4 .item-image-wrapper img{
    aspect-ratio:5/4;
}

.owl-carousel.aspect-1-1 .item-image-wrapper img{
    aspect-ratio:1/1;
}


 .item-image-wrapper img
 {
    object-fit:cover;
    border-radius: 8px;
 }

 .item-image-wrapper{
    position:relative;
 }

 .carousel-wrapper{
    margin: 30px auto;
}

 .carousel-wrapper img{
        border-radius:8px;
     }

     .item-image-wrapper h3{
        margin:0;
       position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width:90%;
        color:#fff;
        font-size:24px;
        line-height:28px;
        text-align:center;
     }

    .owl-prev, .owl-next{
        position: absolute;
        width: 30px;
        height:30px;
        top: calc(50% - 30px);
        font-size: 50px;
        color: #000 ;
    }

    .carousel-wrapper .owl-prev span, .carousel-wrapper .owl-next span {
        font-size:50px;
    }

    .owl-prev{
        left: -40px;
    }

    .owl-next{
        right:-40px;
    }

    .content-below h1, .content-below h2, .content-below h3, .content-below h4, .content-below h5, content-below h6{
        margin-top:0;
    }

    .content-below{
        margin-top:15px;
    }

    @media only screen and (max-width:767px){
        .owl-prev{
            left: -30px;
        }

        .carousel-wrapper{
            margin-left:15px;
            margin-right:15px;
        }

        .owl-next{
            right:-30px;
        }
    }

    .staff-profile-wrapper{
        padding-top:80px;
        padding-bottom:80px;
    }

    .staff-filters {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top:25px !important;
    }

    .staff-filters-outer .filter-inner{
        width:calc(50% - 20px);
    }
    
    .staff-filters-outer{
        margin-top: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .all-staff-grid{
        margin-top:60px;
        min-height:400px;
        transition: ease all 0.5s;
    }

    @media only screen and (max-width:767px){
        .staff-filters{
            flex-direction: column;
            row-gap: 20px;
        }

        .staff-filters-outer .filter-inner {
            width: 100%;
        }
    }

.key-leaders-top{
    background:#F5F5F5;
    padding-top:80px;
    margin-bottom: -250px;
}

.key-leaders-top h2{
    text-align:center;
    margin-bottom: 80px;
}

.key-leaders-bottom{
    background: #112D44;
    height:380px;
}

.staff-cards-inner.key-leaders{
    margin-top:0;
}

@media only screen and (max-width:767px){
    .key-leaders-top{
        padding-top:40px;
    }

    .key-leaders-top h2{
        text-align:center;
        margin-bottom: 40px;
    }
}

.search-wrapper{
    margin: 100px auto 50px auto;
}

.search-wrapper h1{
    margin-bottom:30px;
    text-align:center;
}

.search-wrapper input[type="text"]{
    font-size: 30px;
    color: #151515;
    padding: 15px 30px;
    line-height: 42px;
    height:75px;
    border-radius: 0px;
    width: calc(100% - 150px);
    max-width: 520px;
}

.search-wrapper .searchbox{
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-wrapper .input-group-addon{
    height: 75px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color:#fff;
    background:#112D44;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.searchbox .btn-primary{
    background: #f08833;
    color: #fff;
    font-weight: 600;
    font-family: 'Montserrat';
    font-size: 22px;
    line-height: 25px;
    width:100px;
    height:75px;
    transition: all ease 0.5s;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #ccc;
    margin: auto;
}

.searchbox .btn-primary:hover{
    background: #ae501f;
}

.searchbox .input-group-btn{
    width:100px;
}

@media only screen and (max-width:767px){
    .search-wrapper input[type="text"]{
        font-size: 18px;
        padding: 8px 12px;
        line-height: 24px;
        height: 50px;
        width: 100%;
        flex:1;
    }

    .searchbox .btn-primary{
        height:50px;
        font-size:18px;
        width:75px;
    }

    .search-wrapper .input-group-addon{
        height:50px;
        width:40px;
        font-size:16px;
    }

    .searchbox .input-group-btn {
        width:75px;
    }
}

.search-ux-wrapper{
    display:none;
    margin-bottom: 100px;
}

.search-ux-inner{
    display:flex;
    column-gap:110px;
}

.search-ux-inner .filter-column{
    width:220px;
}

.search-ux-inner .results-column{
    width:calc(100% - 330px);
}

.search-ux-wrapper .filter-column .filter{
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    padding-left: 15px;
    font-size:18px;
    line-height: 28px;
}

.search-ux-wrapper .filter-column .filter a{
    cursor:pointer;
    color:#151515;
}

.search-ux-wrapper .filter-count{
    font-size:18px; 
    font-weight: 700;
    font-family: 'Montserrat';
    color:#666;
}

.search-ux-wrapper .filter-column .filter:hover{
    border-left: 4px solid #112D44;
}

.search-ux-wrapper .filter-column .filter a:hover{
    text-decoration:none;
}


.search-ux-wrapper .filter-column .filter.active{
    border-left:4px solid #f08833 !important;
}

.search-ux-wrapper .filter-column h3, .search-ux-wrapper .results-column h3{
    font-size:30px;
    margin-top:0;
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.search-ux-wrapper .results-column > div{
    display:none;
}

.search-ux-wrapper .results-column > div.active{
    display:block;
}

.search-ux-wrapper .results-column a{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    margin-bottom:25px;
}

.search-ux-wrapper .results-column a:hover{
 text-decoration:none;
}

.search-ux-wrapper .results-column a span.result-type{
    font-family: Montserrat;
    font-size: 18px;
    color: #f08833;
    font-weight: 700;
    line-height: 20px;
}

.search-ux-wrapper .results-column a span.result-title{
    color:#151515;
    font-size:22px;
    line-height:24px;
    font-weight: 600;
}

@media only screen and (max-width:767px){
    .search-wrapper {
        margin: 40px auto 0px auto;
    }

    .search-ux-inner {
        flex-direction:column;
        row-gap: 25px;
        margin-top: -20px;
    }

    .search-ux-inner .filter-column {
        width:100%;
    }

    .search-ux-inner .results-column {
        width:100%;
    }

    .search-ux-wrapper .filter-column h3, .search-ux-wrapper .results-column h3 {
        font-size: 24px;
        padding-bottom: 5px;
        margin-bottom: 15px;
    }

    .search-ux-wrapper .filter-column .filter {
        margin: 5px 0;
        font-size: 16px;
        line-height: 24px;
    }

    .search-ux-wrapper .results-column a span.result-type {
        font-size: 15px;
        line-height: 18px;
    }

    .search-ux-wrapper .results-column a span.result-title {
        font-size: 18px;
        line-height: 20px;
    }
}

body.landing-page{
    padding-top: 0 !important;
}

.landing-page .hero-section{
    max-width:100% !important;
    margin:0;
}

.landing-page .hero-section img, .landing-page .hero-section video{
    border-radius:0;
}

.curved-hero{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    color: rgba(255, 255, 255, 1);
}

.curved-hero svg{
    width: 100%;
    transform: scaleX(-1);
}

@media only screen and (max-width:767px){
    .curved-hero{
        display:none;
    }
}

/* Linktree Styles */
body.link-tree-page{
    padding-top:0;
    background: #112D44;
    padding-bottom:80px;
}

.linktree-top{
    height:130px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:50px;
}

.linktree-top img{
    width: 286px;
    max-width: 100%;
}

.linktree-container{
    max-width:830px;
    padding:0 15px;
    width: 100%;
    margin:auto;
}

.linktree-tabs{
    margin-bottom:50px;
    display: flex;
    justify-content: center;
    border-bottom: 0;
}

.linktree-tabs > a {
    color: #fff;
    display: flex;
    padding: 15px 30px;
    background: #f08833;
    font-family: 'Montserrat';
    font-size: 20px;
    flex:1;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
    border-left: 2px solid #112D44;
    text-align: center;
    border-right: 2px solid #112D44;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linktree-tabs > a.active {
    pointer-events: none;
    background: #fff;
    color:#112D44;
}

.linktree-tabs > a:hover{
    text-decoration:none;
}

.linktree-tabs > a:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-left: none;
}

.linktree-tabs > a:last-child {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-right: none;
}

.linktree-content{
    color:#fff;
    text-align:center;
}

.linktree-content iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 20px;
}

.linktree-links{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    row-gap:30px;
}

.linktree-links a{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none !important;
    background: #f08833;
    color:#fff;
    padding:15px 30px;
    border-radius:20px;
    transition: all ease 0.5s;
}

.linktree-links a:hover{
    background: #ae501f;
}

.link-tree-page .social-links{
    display: flex;
    column-gap: 40px;
    justify-content: center;
    font-size: 32px;
    margin-top:80px;
}

.link-tree-page .social-links a{
    color: #f08833;
}

@media only screen and (max-width:767px){
    .linktree-tabs {
        flex-direction: column;
        row-gap: 10px;
        align-items: center;
    }

    .linktree-tabs a{
        max-width: 100%;
        width: 350px;
        border-radius: 20px;
        align-items: center;
        font-size: 16px;
        padding: 8px 20px;
    }

    .linktree-links a {
        font-size:18px;
        padding: 10px 20px;
    }

    .linktree-links {
        row-gap: 15px;
    }
}

.video-wrapper .spanish{
    display:none;
}

.video-wrapper .language-toggles a{
    font-size: 18px;
    font-weight: 600;
    color: #151515;
}

.video-wrapper .language-toggles a.active{
color:#fff;
}

.video-wrapper .language-toggles{
    width: 235px;
    margin-right: 0;
    margin-bottom: 10px;
}

@media only screen and (max-width:767px){
    .video-wrapper .language-toggles a{
        font-size: 16px;
    }

    .video-wrapper .language-toggles{
        width:222px;
    }
}

.interstitial-video-wrapper iframe{
    aspect-ratio: 16 /9;
    border-radius: 20px;
width:100%;
}

#pastorVideo .interstitial-close{
    top:5px;
    right:10px;
    color:#fff;
}

#pastorVideo .interstitial-close:hover{
    color:#ddd;
}

#pastorVideo .interstitial-inner > div{
    background:transparent;
    padding:40px;
}

@media only screen and (max-width:767px){
    #pastorVideo .interstitial-inner > div {
        padding: 10px;
    }
}

#pastorVideo .interstitial-close {
    top: -25px;
}

 .no-hero-narrow{
            margin:40px auto;
font-size:16px;
    line-height: 28px;
        }

.no-hero-narrow h1{
    font-size: 45px;
    line-height: 55px;
}

.js-personphoto .fluidbox-wrap{
z-index:1 !important;
}

.no-hero-narrow .btn-xs{
padding:8px;
}

.no-hero-narrow .btn-block {
    padding: 10px 0;
	margin-bottom: 15px !important;
    background: #f08833;
    border-color: #f08833;
    color: #fff;
}

.no-hero-narrow .nav-pills>li>a
{
color:#ae501f;
}

.no-hero-narrow .nav-pills>li.active>a
{
            background:#f08833;
            border-color:#f08833;
color:#fff;
}



.no-hero-narrow .btn-block:hover {
            background:#ae501f;
            border-color:#ae501f;
}

.no-hero-narrow h2{
font-size:45px;
line-height:55px;
}

        .btn-primary{
            background:#f08833;
            border-color:#f08833;
        }

        .btn-primary:hover{
            background:#ae501f;
            border-color:#ae501f;
        }

        .btn-action{
            background:#112D44;
            border-color:#112D44;
            color:#fff;
        }

        .btn-action:hover{
            background:#ae501f;
            border-color:#ae501f;
            color:#fff;
        }

        .btn-link{
            color:#f08833;
        }

        .btn-link:hover{
            color:#ae501f;
        }

.alert-bar{
	position: fixed;
    width: 100%;
    top: 0;
background:#fff;
z-index:5;
}

header.has-alert .navbar{
top:44px;
}

header.has-alert{
padding-top:44px;
}

header.has-alert .mobile-nav{
top:174px;
}

header.has-alert .mobile-nav.open{
height:calc(100vh - 174px);
}

.alert-bar-inner{
    padding: 10px 30px;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    color: #112D44;
    max-width: 1800px;
    margin: auto;
}

.alert-bar-inner p{
margin-bottom:0;
}

.alert-bar-inner a{
color:#f08833;
}

.alert-bar-inner a:hover{
color:#f08833;
text-decoration:none;
}

@media only screen and (max-width:767px){
.alert-bar-inner{
    padding: 6px 15px;
    font-size: 16px;
    line-height: 20px;
}

header.has-alert .navbar{
top:32px;
}

header.has-alert{
padding-top:32px;
}

header.has-alert .mobile-nav{
top:137px;
}

header.has-alert .mobile-nav.open{
height:calc(100vh - 137px);
}

}