/* Scrolling */
html{
    scroll-behavior:smooth;
}

/* Custom New Font */
@font-face {
    font-family: 'ArizonaFlare';
    src: url('/Themes/CP-Custom/Assets/Fonts/ABCArizonaFlare-Bold.woff2') format('woff2'),
         url('/Themes/CP-Custom/Assets/Fonts/ABCArizonaFlare-Bold.wofff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* Generic Typography */
a:hover, a:focus {
    text-decoration: none;
    color:inherit;
}

header{
    position:relative;
    z-index:3;
}

a {
    color: #E52329;
}

.brand-color {
    color: #E52329;
}

h1, h2, h3, h4, h5, h6{
    font-family:"Poppins";
    color:#222;
}

.feature-content h1 .az {
	font-family:"ArizonaFlare";
}

h1, h2{
    font-weight:600;
    /* text-transform:uppercase; */
}

h3{
    font-weight:500;
}

h4, h5, h6{
    font-weight:500;
}

h1.white, h2.white, h3.white, h4.white, h5.white, h6.white{
    color:#fff;
}

body {
    font-family: "Poppins";
    color: #222;
}

p{
    font-family:"Poppins";
    font-weight:300;
}

/* Header & Nav CSS */
.nav-wrapper {
    padding: 35px 80px 35px 50px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    position: relative;
    background: #222;
    
}

    .nav-wrapper.transparent {
        background: transparent;
    }

.hero-area + .nav-wrapper{
    position:absolute;
    top:0;
    width:100%;
    background:transparent;
}


.hero-area {
    height: 100vh;
    width: 100%;
    background-size: cover;
    display: flex;
    background-position: center;
}

.hero-img {
    max-width:100%;
    width:100%;
    height: 100vh;
    object-fit: cover;
}

    header .logo, footer .logo {
        width: 256px;
        max-width: 100%;
    }

.feature-content {
    position: relative;
    padding: 0 50px;
    align-self: center;
    justify-self: center;
    width: 100%;
}


    .feature-content h1 {
        color: #fff;
        text-align: center;
        font-weight: 500;
        font-size:56px;
        margin-bottom:25px;
    }
    
    .az h1 {
	    font-family: "ArizonaFlare";

    }


	.az h2 {
	    font-family: "ArizonaFlare";

    }

    .feature-content h4{
        color:#fff;
        font-size:28px;
        font-weight:400;
        text-align:center;
        line-height:32px;
        opacity:0.7;
    }

.header-left {
    display: flex;
    justify-content:flex-start;
}

.desktop-nav{
    margin-left:50px;
}

    .desktop-nav a {
        color: #fff;
        font-size: 18px;
        display: inline-block;
        font-weight: 500;
        padding-top: 10px;
        text-transform: uppercase;
        margin-right: 30px;
    }

.desktop-nav a:last-child{
    margin-right:0;
}

.desktop-nav a:hover{
    color:#ccc;
}

.header-right{
    display:flex;
    justify-content:flex-end;
}

    .header-right .dropdown-toggle, .mobile-login .dropdown-toggle{
        background: #E52329 !important;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        padding: 12px 30px;
        border-radius: 30px;
        text-align:center;
        min-width:194.5px;
        text-transform:uppercase;
    }

.login-status ul.loginstatus li a.dropdown-toggle, .login-status li a {
    background: #E52329 !important;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-align: center;
    text-transform: uppercase;
}

.mobile-login .login-status ul.loginstatus li a.dropdown-toggle, .mobile-login .login-status li a {
    background: #222 !important;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    min-width: 194.5px;
    text-transform: uppercase;
}

    .loginstatus .open > a {
        border-radius:0px !important;
    }

    .header-right .navbar-nav{
        margin:0;
    }

    .header-right ul.dropdown-menu, .mobile-login ul.dropdown-menu {
        width: 100%;
        border: none;
        padding: 0;
    }

.dropdown-menu li a, .mobile-login .dropdown-menu li a {
    text-align: center;
    font-weight: 500;
    background: #fff !important;
    font-weight: 400;
    color: #333;
    font-size: 18px;
    text-transform: none;
    padding: 10px 20px !important;
}

    .header-right .dropdown-menu .divider, .mobile-login .dropdown-menu .divider {
        margin: 0;
        background-color: #E52329;
    }

.nav-toggle {
    margin-left: 30px;
    cursor: pointer;
}

.mobile-login{
    display:none;
}

.loginstatus>li li{
    background:#fff;
}

/* Scroll down arrow animation */
.arrow-container {
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    bottom:0;
    left: 50%;
    transform: translate(-50%, -50%) rotateZ(0deg);
}

@media only screen and (max-width:767px)
{
    .arrow-container{
        bottom:25px;
    }
}

    .arrow-container:hover {
        cursor: pointer;
    }

        .arrow-container:hover .scroll-arrow {
            top: 50%;
        }

            .arrow-container:hover .scroll-arrow:before {
                transform: translate(-50%, -50%) rotateZ(-30deg);
            }

            .arrow-container:hover .scroll-arrow:after {
                transform: translate(-50%, -50%) rotateZ(30deg);
            }

.scroll-arrow {
    position: absolute;
    left: 50%;
    transition: all 0.4s ease;
}

    .scroll-arrow:before, .scroll-arrow:after {
        transition: all 0.4s ease;
        content: '';
        display: block;
        position: absolute;
        transform-origin: bottom right;
        background: #fff;
        width: 4px;
        height: 35px;
        border-radius: 8px;
        transform: translate(-50%, -50%) rotateZ(-45deg);
    }

    .scroll-arrow:after {
        transform-origin: bottom left;
        transform: translate(-50%, -50%) rotateZ(45deg);
    }

    .scroll-arrow:nth-child(1) {
        opacity: 0.3;
        top: 35%;
    }

    .scroll-arrow:nth-child(2) {
        opacity: 0.6;
        top: 55%;
    }

    .scroll-arrow:nth-child(3) {
        opacity: 0.9;
        top: 75%;
    }
 


/* The side navigation menu */
.side-nav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    min-width: 0;
    position: fixed; /* Stay in place */
    z-index: 100; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #E52329;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px !important; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* Position and style the close button (top right corner) */
    .side-nav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 50px;
        color: #fff;
    }

.side-nav .page-menu{
    float:none;
}

.desktop-nav a.activePage {
    color: #E52329;
}

.side-nav .navbar-right{
    margin-right:0;
}

.side-nav .navbar-nav>li{
    float:none;
    width:100%;
    display:block;
}

.side-nav .navbar-right{
    float: none !important;
}

    .side-nav .navbar-nav > li a{
        color:#fff;
        font-size:18px;
        text-align:center;
        font-weight:500;
        line-height:30px;
    }

        .side-nav .navbar-nav > li a:hover, .side-nav .navbar-nav > li a:focus, .side-nav .navbar-nav > li ul.dropdown-menu > li a:focus, .side-nav .navbar-nav > li ul.dropdown-menu > li a:hover {
            background-color: #222 !important;
            color: #fff !important;
        }

    .side-nav .open > a {
        background-color: #222;
        font-size:16px;
    }

    .side-nav .open ul.dropdown-menu {
        position: relative;
        width: 100%;
        border: 0;
        border-radius: 0;
        margin-bottom: 20px;
        padding:0;
        background:#fff;
    }

    .side-nav .open ul.dropdown-menu li a{
        color:#222;
    }

        .side-nav .open ul.dropdown-menu li a:hover, .side-nav .open ul.dropdown-menu li a:focus {
            text-decoration: none;
            background-color: #ddd;
        }

    @media only screen and (max-width:1525px) {
        .header-right .dropdown-toggle, .mobile-login .dropdown-toggle {
        font-size: 15px;
        letter-spacing: -0.5px;
        text-align: center;
        min-width: 166px;
    }

    .desktop-nav {
        margin-left: 30px;
    }

        .desktop-nav a:not(.properties) {
            font-size: 15px;
            letter-spacing: -0.5px;
            margin-right: 15px;
            padding-top: 11px;
        }
}

@media only screen and (max-width:1200px) 
{
    header .logo {
        width: 200px;
    }

    .login-status ul.loginstatus li a {
        padding: 12px 20px !important;
    }
}

@media only screen and (max-width:1024px) {
    .desktop-nav {
        display: none;
    }

    .nav-wrapper {
        padding: 25px 30px;
    }

    .mobile-login {
        display: flex;
        justify-content: center;
    }

    .feature-content {
        top: 0;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    .header-right .loginstatus {
        display: none;
    }
}

@media only screen and (max-width:767px) {

    .feature-content h1{
        font-size:45px;
    }

    .feature-content{
        padding:0 20px;
    }

    .homepage .dropdown{
        margin-top:50px;
    }

    .feature-content h4{
        font-size:20px;
        line-height:24px;
    }
}

@media only screen and (max-width:767px) and (orientation:landscape){
    .feature-content {
        min-height:500px;
    }

    .arrow-container{
        display:none;
    }

    .hero-area {
        min-height: 500px;
    }
}

@media only screen and (max-width:450px) {
    .header-left .logo {
        max-width: 90%;
    }
}

@media screen and (max-height: 450px) {
    .side-nav {
        padding-top: 15px;
    }
}


/* Footer Styling */
footer {
    padding-bottom:0;
    opacity:1;
}

.footer-bottom {
    display: flex;
    background: #000;
    height: 80px;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 300;
    padding: 0 30px;
}

    .footer-bottom a {
        color: #E52329 !important;
    }

.footer-top {
    background: #222;
    padding: 70px 80px 70px 50px;
    display:flex;
    justify-content:space-between;
}

.footer-app{
    width:30%;
    text-align:left;
}

    footer h5 {
        font-size: 22px;
        color: #E52329;
        font-weight:500;
        text-transform:uppercase;
        margin:0 0 15px 0;
    }

    .footer-app h5{
        margin:25px 0 10px 0;
    }

.footer-app img.logo  {
    max-width:100%;
}

.footer-app .app-icons img {
    margin: 10px 15px 0 0;
    transition: all ease 0.5s;
}

.app-icons img:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0px 5px 5px #000000aa);
}

.footer-app .roku{
    width:80px;
    margin-top:15px;
}

.footer-app img.apple, .footer-app img.google{
    width:171px;
}

a.footer-phone {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    line-height: 20px;
    width:150px;
}

    a.footer-phone i {
        font-size: 20px;
        margin-right: 10px;
    }

    a.footer-phone:hover{
        color:#fff;
    }

.footer-nav{
    width:60%;
    padding-left:35px;
}

.footer-nav a{
    color:#fff;
    font-size:18px;
    font-weight:300;
    display:block;
}

.footer-nav a:hover{
    color:#ccc;
}

.footer-nav-wrapper {
    display: flex;
    justify-content: space-between;
    text-align: left !important;
}

    .campus-links ul {
        padding: 0;
        margin: 0;
        -moz-column-count: 2;
        -moz-column-gap: 40px;
        -webkit-column-count: 2;
        -webkit-column-gap: 40px;
        column-count: 2;
        column-gap: 40px;
    }

@media only screen and (max-width:1450px)
{
    .footer-app{
        min-width:500px;
    }

    .footer-nav{
        width:100%;
    }

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

@media only screen and (max-width:1200px) {
  .footer-top{
      flex-flow:wrap;
  }

    a.footer-phone {
        margin-left: auto;
        text-align: center;
        margin-right: auto;
    }

    .footer-app {
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
        padding-left:0;
    }

        .footer-app .app-icons img {
            margin: 10px 15px 10px 15px;
        }

    .footer-nav{
        padding-left:0;
    }
}

@media only screen and (max-width:800px) {
    .footer-nav-wrapper div {
        padding-right:20px;
        margin-bottom:50px;
    }

    .footer-app{
        min-width:unset;
    }

    .footer-nav h5{
        font-size:23px;
    }

    .footer-nav-wrapper div:last-child{
        padding-right:0;
    }

    .footer-nav a{
        font-size:16px;
    }

    .footer-nav-wrapper{
        flex-flow:wrap;
    }
}

@media only screen and (max-width:500px)
{
    .campus-links {
        max-width:100%;
    }

    .footer-nav-wrapper div:first-child {
        padding-right: 0;
    }
}


/* Homepage Hero Content */
.homepage .dropdown {
    text-align: center;
    width: 100%;
    max-width:600px;
    margin: 140px auto auto auto;
    border-radius: 10px;
    background: transparent;
    padding: 0px;
}

    .homepage .dropdown .dropdown-toggle {
        width: 100%;
        background: #F0F0F0;
        border: none;
        color: #a9a9a9;
        text-align: left;
        font-size: 23px;
        margin:0;
        font-weight: 500;
        border-radius: 10px;
        padding: 20px 50px;
    }

        .homepage .dropdown .dropdown-toggle:hover, .homepage .dropdown .dropdown-toggle:focus {
            background: #E52329;
            border:none;
            color:#fff;
        }

            .homepage .dropdown .dropdown-toggle:hover i, .homepage .dropdown .dropdown-toggle:focus i{
                color:#fff;
            }

            .homepage .dropdown ul {
                width: 100%;
                text-align: center;
            }

    .homepage .dropdown i {
        float: right;
        font-size: 30px;
        color: #E52329;
    }

@media only screen and (max-width:767px) {

    .homepage .dropdown {
        margin-top: 50px;
        padding:0px;
    }

    .homepage .dropdown .dropdown-toggle{
        padding:10px 15px;
        font-size: 17px;
    }

    .homepage .dropdown i{
        font-size:24px;
    }
}

/* Reusable "CTA Button" CSS definition + animation */
.cta-btn {
    background-color: #E52329;
    color:#fff !important;
    text-transform:uppercase;
    padding: 15px 25px;
    display:inline-block;
    text-align:center;
    line-height:15px;
    font-size:15px;
    font-weight:500;
    border-radius:20px;
    transition: all ease 0.5s;
}

    .cta-btn:hover {
        transform: translateY(-3px);
        filter: drop-shadow(0px 5px 5px #000000aa);
        color:#fff !important;
    }

/* Resuable "Accent Row" CSS */

.accent-wrapper{
    padding-top:60px;
    position:relative;
    max-width: 1920px;
    margin: auto;
}

.accent-wrapper .row{
    display:flex;
    align-items:center;
    padding-bottom:50px;
}

.accent-wrapper.right .accent-left, .accent-wrapper.left .accent-right {
    flex: 1 42.5%;
    padding: 0 75px 0 25px;
}



.accent-wrapper.left .accent-right{
    padding: 0 0px 0 100px;
}

    .accent-wrapper.right .accent-right, .accent-wrapper.left .accent-left {
        flex: 1 58.5%;
        text-align: right;
    }

.accent-wrapper.left .accent-left {
    text-align: left;
}

.accent-wrapper h2, .two-column-callout h2, .faq-wrapper h2, .campus-events h2, .global-staff h2, .pretty-centered-text h2 {
    margin-top: 0;
    margin-left: -25px;
    padding-left:25px;
    margin-bottom:40px;
    font-size:44px;
    line-height:40px;
    position:relative;
}

    .accent-wrapper img {
        max-width: 100%;
        transition: all ease 0.5s;
    }

    .accent-wrapper a img:hover {
        transform: translateY(-5px);
        filter: drop-shadow(0px 10px 10px #666666aa);
    }

    .accent-wrapper h2:before, .two-column-callout h2:before, .faq-wrapper h2:before, .campus-events h2:before, .global-staff h2:before, .three-column-text p:before{
        content: "";
        border-left: 5px solid #E52329;
        position: absolute;
        bottom: 5px;
        top: 4px;
        left: 0;
    }

.accent-wrapper p {
    color: #777777;
    font-weight:400;
    font-size:16px;
    margin-bottom:25px;
    line-height:26px;
}

.accent-wrapper blockquote{
    border-left-color:#ccc;
}

   /* .accent-wrapper.right:after {
        content: "";
        background: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fade"><stop offset="0%" stop-color="white" /><stop offset="100%" stop-color="%23e52329" /> </linearGradient></defs><rect x="29%" y="0" width="71%" height="30%" fill="%23e52329" /><rect x="0" y="0" width="30%" height="30%" fill="url(%23fade)" fill-opacity="1" /></svg>');
        width: 50%;
        max-width: 941px;
        height: 100%;
        max-height: 560px;
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    } */

    /*.accent-wrapper.left:after {
        content: "";
        width: 50%;
        max-width: 941px;
        height: 100%;
        max-height: 560px;
        background: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fade"><stop offset="0%" stop-color="white" /><stop offset="100%" stop-color="%23e52329" /> </linearGradient></defs><rect x="29%" y="0" width="71%" height="30%" fill="%23e52329" /><rect x="0" y="0" width="30%" height="30%" fill="url(%23fade)" fill-opacity="1" /></svg>');
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        filter: FlipH;
        -ms-filter: "FlipH";
        z-index: -1;
    } */

    /* Accent Block Color Options */
    .accent-wrapper.red {
        background: #F20F25;
        color:#fff;
    }

    .accent-wrapper.red h2, .accent-wrapper.red p{
        color:#fff;
    }

    .accent-wrapper.red h2:before{
        border-left-color:#fff;
    }

        .accent-wrapper.red .cta-btn {
            background-color: #fff;
            color: #E52329 !important;
        }

        .accent-wrapper.red blockquote {
            border-left-color: #fff;
            color:#fff;
        }

    .accent-wrapper.black {
        background: #000000;
    }

    .accent-wrapper.black h2 {
        color: #fff;
    }

        .accent-wrapper.black p{
            color:#ccc;
        }

        .accent-wrapper.black blockquote {
            color: #eee;
            border-left-color: #eee;
        }

        .accent-wrapper.navy {
            background: #12304F;
        }

    .accent-wrapper.navy h2, .accent-wrapper.navy p, .accent-wrapper.navy blockquote {
        color: #fff;
    }

            .accent-wrapper.navy blockquote {
                border-left-color: #fff;
            }

    .accent-wrapper.charcoal {
        background:#363433;
    }

    .accent-wrapper.charcoal h2, .accent-wrapper.charcoal p, .accent-wrapper.charcoal blockquote {
        color: #fff;
    }

        .accent-wrapper.charcoal blockquote {
            border-left-color: #fff;
        }

    .accent-wrapper.slate {
        background: #999595;
    }

    .accent-wrapper.slate h2, .accent-wrapper.slate p {
        color: #000;
    }

        .accent-wrapper.slate blockquote {
            border-left-color: #333;
        }

    .accent-wrapper.heather {
        background: #E0DEDE;
        color:#222;
    }

        .accent-wrapper.heather blockquote {
            border-left-color: #333;
        }

    .accent-wrapper.header p{
        color:#222;
    }



@media only screen and (max-width:1024px){
    /*.accent-wrapper.right:after, .accent-wrapper.left:after {
        width: 50%;
        height: 50%;
    }*/
} 

@media only screen and (max-width:768px) {

    .accent-wrapper {
        padding-top: 25px;
    }

        .accent-wrapper.right .row {
            flex-direction: column-reverse;
        }

        .accent-wrapper.left .row {
            flex-direction: column;
        }

        .accent-wrapper.right .accent-right, .accent-wrapper.left .accent-left {
            margin: 0 20px 50px 20px;
            width: calc(100% - 40px);
        }

        .accent-wrapper.right .accent-left, .accent-wrapper.left .accent-right {
            padding: 0 20px 0 45px;
        }

        .accent-wrapper.right:after, .accent-wrapper.left:after {
            width: 65%;
            height: 50%;
            max-height: 280px;
        }

        .accent-wrapper h2, .two-column-callout h2, .faq-wrapper h2, .campus-events h2, .global-staff h2, .pretty-centered-text h2 {
            margin-bottom: 20px;
            font-size: 30px;
            line-height: 28px;
        }

        .campus-events h2, .global-staff h2{
            margin-left:0;
        }

        .accent-wrapper p {
            font-size: 15px;
            line-height: 22px;
        }
}

/* Campus Pastor Lava Template Styling */
.pastorCarousel {
    background-image: url(/Themes/CP-Custom/Assets/Images/pastor-bg.jpg);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85)), url(/Themes/CP-Custom/Assets/Images/pastor-bg.jpg);
    background-position: bottom;
    background-size: cover;
    background-attachment:fixed;
    background-repeat: no-repeat;
    padding-bottom:95px;
}

.pastorCarousel{
    text-align:center;
}

.pastor-carousel {
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px) !important;
    position:relative;
}

.pastorCarousel .pastor-photo{
    width:100%;
    max-width:100%;
}

.pastorCarousel h2{
    font-size:52px;
    font-weight:500;
    padding:100px 20px;
    text-align:center;
    margin:0;
}

.pastorCarousel h4{
    font-size:28px;
    color:#fff;
    opacity:0.6;
    text-transform:none;
    margin:0;
    padding:75px 20px 45px 20px;
    text-align:center;
    font-weight:400;
}

.pastorCard{
    margin:0 10px;
    cursor:grab;
}

.pastor-carousel .owl-pagination{
    display:none;
}

.pastor-carousel .owl-buttons {
    font-size:0;
}

.pastor-carousel .owl-prev{
    color:#fff;
}

    .pastor-carousel .owl-prev::after, .pastor-carousel .owl-next::after {
        content: '';
        width: 63px;
        height: 118px;
        position: absolute;
        top: calc(50% - 59px);
    }

    .pastor-carousel .owl-prev::after {
        background-image: url(/Themes/CP-Custom/Assets/Images/left-arrow.png);
        background-size: contain;
        background-repeat: no-repeat; 
        left: -138px;
    }

.pastor-carousel .owl-next::after {
    background-image: url(/Themes/CP-Custom/Assets/Images/right-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    right:-138px;
}

.pastorInfo {
    background:#E52329;
    padding:10px 15px;
    text-align:center;
}

.pastorInfo .pastorName{
    color:#fff;
    font-size:24px;
    font-weight:500;
    display:block;
}

    .pastorInfo .campusName {
        color: #fff;
        font-size: 24px;
        font-weight: 300;
        display: block;
    }

@media only screen and (max-width:1500px) {
    .pastor-carousel .owl-prev::after {
        left: -78px;
    }

    .pastor-carousel .owl-next::after {
        right: -78px;
    }
}

@media only screen and (max-width:1380px) {
    .pastor-carousel .owl-prev::after {
        display:none;
    }

    .pastor-carousel .owl-next::after {
        display:none;
    }
}

@media only screen and (max-width:1000px) {
 .pastorInfo .pastorName, .pastorInfo .campusName{
     font-size:20px;
    }
}


@media only screen and (max-width:800px) {
    .pastor-carousel {
        margin-left: 0px;
        margin-right: 0px;
        width: 100% !important;
    }
}

@media only screen and (max-width:400px) {
    .pastorCarousel h2 {
        font-size: 30px;
        padding:60px 20px;
    }

    .pastorCarousel h4{
        font-size:24px;
    }
}

/* Current Series Content Channel View */
.current-series .series-cover {
    width: 100%;
    max-width:670px;
    max-height: 378px;
    object-fit: cover;
    filter:brightness(0.55);
}

.current-series .seriesTitle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.current-series .sermonTitle {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    background: #E52329;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

.current-series .accent-left, .current-series .accent-right{
    position:relative;
}

.current-series .play-btn {
    width: 71px;
    height: 71px;
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    border: 4px solid #fff;
    border-radius: 50%;
    opacity:1;
    transition: all 0.5s ease;
}

    .current-series .play-btn img {
        position: absolute;
        left: calc(50% - 8px);
        top: calc(50% - 11px);
    }

.current-series.right .accent-left a:hover .play-btn{
    opacity:0;
}

.current-series.left .accent-right a:hover .play-btn {
    opacity: 0;
}

.current-series.right .accent-left a img:hover{
    transform:none;
    filter:unset;
}

.current-series.left .accent-right a img:hover {
    transform: none;
    filter: unset;
}

.current-series.right .accent-left a{
    display:block;
    transition:0.5s ease all;
}

.current-series.left .accent-right a {
    display: block;
    transition: 0.5s ease all;
}

    .current-series.right .accent-left a:hover {
        transform: translateY(-5px);
        filter: drop-shadow(0px 10px 10px #666666aa);
    }

.current-series.left .accent-right a:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0px 10px 10px #666666aa);
}

@media only screen and (max-width:1200px) {
    .current-series .series-cover {
        max-height: 316px;
    }
}

@media only screen and (max-width:991px) {
    .current-series .series-cover {
        max-height: 244px;
    }
}

@media only screen and (max-width:768px)
{
    .current-series .series-cover {
        max-height: unset;
    }
}

/* Two Column Callout Reusable Section CSS */
.two-column-callout {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    position: relative;
}

    .two-column-callout h2 {
        margin-left: 25px;
        padding-left: 25px;
        margin-bottom:55px;
    }

.two-column-callout-bottom {
    height: 0px;
    width: 100%;
    background: #191919;
}

.two-column-callout .inner-content {
    margin-top: 105px;
    margin-bottom: 105px;
}

.callout-card-wrapper {
    display: flex;
    justify-content: space-around;
}

.callout-card {
    width: calc(50%);
    max-width: 525px;
    transition:all ease 0.5s;
}

.callout-card:first-child{
    margin-right:35px;
}

.callout-card img{
    max-width:100%;
}

.two-column-callout .accent-bar, .faq-wrapper .accent-bar {
    position: absolute;
    right: 0;
    top: 0;
    display:none;
    /*background-image: url(/Themes/CP-Custom/Assets/Images/horizontal-accent.png);*/
    background-size:cover;
    height: 100%;
    max-width:417px;
    width:calc((100vw - 1200px) / 2);
    min-width:100px;
}

.callout-card span {
    display: block;
    color: #FFFFFF;
    padding: 15px 0;
    text-align: center;
    background: #E52329;
    font-size: 40px;
    font-weight: 400;
}

.callout-card:hover {
    transform: translateY(-15px);
    filter: drop-shadow(0px 15px 15px #000000aa);
}

@media only screen and (max-width:768px) {
    .callout-card-wrapper {
        margin-left:20px;
        margin-right:20px;
    }

    .callout-card span {
        font-size: 24px;
        padding: 10px 0;
    }

    .two-column-callout .accent-bar, .faq-wrapper .accent-bar{
        min-width:50px;
    }
}

@media only screen and (max-width:550px){
    .callout-card-wrapper{
        flex-wrap:wrap;
    }

    .callout-card {
        width: 100%;
        margin-bottom: 30px;
    }

    .callout-card:first-child{
        margin-right:0;
    }

    .two-column-callout, .faq-wrapper {
        background-position: bottom center !important;
    }
}


/* CSS to Massage Existing Page Content */

.page-header {
    min-height: 65vh;
    margin: -134px 0 0 0;
    border: none;
    display: flex;
    align-items: center;
    background-position: center center;
    background-size: cover;
    padding: 0;
    border: 0;
    position:relative;
    z-index:0;
}

.page-header .container{
    position:relative;
    z-index:2;
}

    .page-header h1 {
        color: #fff;
        text-align: center;
        font-weight: 500;
        font-size: 56px;
        text-transform:uppercase;
    }

    .page-header h4 {
        color: #fff;
        font-size: 28px;
        font-weight: 500;
        text-align: center;
        line-height: 32px;
        opacity: 0.7;
    }

@media only screen and (max-width:550px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-header h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        line-height: 24px;
        opacity: 0.7;
    }
}

.header-filter {
    position: relative;
}

.header-filter::before {
    background-color: rgba(0, 0, 0, 0.5);
}

.header-filter:before, .header-filter:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
}

.card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#cards{
    margin-top:30px;
}

.page-header .card-signup{
    margin-top:150px;
}

.card {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 6px;
    color: rgba(0,0,0, 0.87);
    background: #fff;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 20%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}

.card-blog {
    margin-top: 30px;
}

.card-background, .back-background {
    background-position: center center;
    background-size: cover;
    text-align: center;
}

.card-raised {
    box-shadow: 0 16px 38px -12px rgb(0 0 0 / 56%), 0 4px 25px 0px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%);
}

.card-profile, .card-testimonial {
    margin-top: 30px;
    text-align: center;
}

.card-plain {
    background: transparent;
    box-shadow: none;
}

    .card-plain .card-image {
        margin: 0;
        border-radius: 6px;
    }

.card .card-content {
    padding: 15px 30px;
}

.card .card-image {
    height: 60%;
    position: relative;
    z-index: 0;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -30px;
    border-radius: 6px;
}

.card-plain .card-image {
    margin: 0;
    border-radius: 6px;
}

.card-plain .card-content {
    padding-left: 5px;
    padding-right: 5px;
}

.card-plain .card-image img {
    border-radius: 6px;
}

.card .card-image img {
    width: 100%;
    border-radius: 6px;
    pointer-events: none;
    box-shadow: 0 5px 15px -8px rgb(0 0 0 / 24%), 0 8px 10px -5px rgb(0 0 0 / 20%);
}

.card img {
    width: 100%;
    height: auto;
}

.card-background .card-content, .back-background .card-content {
    position: relative;
    z-index: 2;
    min-height: 390px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 440px;
    margin: 0 auto;
}

.card-background:after, .back-background:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}

.card-background .category, .card-background .card-description, .card-background small, .back-background .category, .back-background .card-description, .back-background small {
    color: rgba(255, 255, 255, 0.7);
}

.card-background .card-title, .back-background .card-title {
    color: #FFFFFF;
    margin-top: 10px;
}

.card .header-primary, .card .content-primary {
    background: #E52329;
}

.card .header-primary {
    box-shadow: 0 5px 20px 0px rgb(0 0 0 / 20%), 0 13px 24px -11px rgb(204 52 52 / 60%);
}

.card [class*="header-"], .card [class*="content-"] {
    color: #FFFFFF;
}

.card .header {
    margin: 15px;
    border-radius: 3px;
    padding: 15px 0;
}

.card-contact .header {
    margin-top: -20px;
}

.card .header h4{
    color:#fff;
}

h3.description {
    color: #999999;
}

.card .header-danger, .card .content-danger {
    background: linear-gradient( 60deg, #ef5350, #d32f2f);
}

.card [class*="content-"] .card-title {
    color: #FFFFFF;
}

card [class*="content-"] .card-description {
    color: rgba(255, 255, 255, 0.8);
}

.btn.btn-white, .btn-btn-white:hover {
    background-color: #FFFFFF !important;
    color: #999999 !important;
}

.btn.btn-just-icon, .navbar .navbar-nav > li > a.btn.btn-just-icon {
    font-size: 20px;
    padding: 12px 12px;
    line-height: 1em;
}

.btn.btn-round, .navbar .navbar-nav > li > a.btn.btn-round {
    border-radius: 30px;
    background:#E52329;
    color:#fff;
}

.btn.btn-just-icon i, .navbar .navbar-nav > li > a.btn.btn-just-icon i {
    width: 20px;
}

.btn:not(.note-btn), .navbar .navbar-nav > li > a.btn {
    border: none;
    border-radius: 3px;
    position: relative;
    padding: 12px 30px;
    margin: 10px 1px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    will-change: box-shadow, transform;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
} .btn i.fa {
    width: 1.25em;
    text-align: center;
} .page-header ~ .main-raised{
    padding:50px 0;
} .main-raised.old-template {
    padding: 50px 0;
    position:relative;
}
/*.main-raised.old-template:before {
        content: "";
        width: 25%;
        max-width: 941px;
        height: 100%;
        max-height: 30vh;
        /*background: url(../Assets/Images/accent-right.png);*/ /*
        background: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fade"><stop offset="0%" stop-color="white" /><stop offset="100%" stop-color="%23e52329" /> </linearGradient></defs><rect x="29%" y="0" width="71%" height="30%" fill="%23e52329" /><rect x="0" y="0" width="30%" height="30%" fill="url(%23fade)" fill-opacity="1" /></svg>');
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    } 

    .main-raised.old-template:after {
        content: "";
        width: 25%;
        max-width: 941px;
        height: 100%;
        max-height: 30vh;
        /*background: url(../Assets/Images/accent-right.png);*/ /*
        background: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fade"><stop offset="0%" stop-color="white" /><stop offset="100%" stop-color="%23e52329" /> </linearGradient></defs><rect x="29%" y="0" width="71%" height="30%" fill="%23e52329" /><rect x="0" y="0" width="30%" height="30%" fill="url(%23fade)" fill-opacity="1" /></svg>');
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 0;
        left: 0;
        -moz-transform: scaleX(-1) scaleY(-1);
        -o-transform: scaleX(-1) scaleY(-1);
        -webkit-transform: scaleX(-1) scaleY(-1);
        transform: scaleX(-1) scaleY(-1);
        filter: FlipH FlipV;
        -ms-filter: "FlipH FlipV";
        z-index: -1;
    } */
.main-raised.old-template h2 {
        padding-left: 25px;
        font-size: 44px;
        margin-bottom: 25px;
        text-transform:uppercase;
    } .btn-primary {
    background-color: #E52329;
    border-color: #E52329;
    font-size: 16px;
    font-weight: 400;
    white-space: normal;
} .btn-primary:hover{
    background-color:#222;
} .btn-link {
    color: #E52329;
    font-size: 16px;
    font-weight: 400;
} .btn-link:hover {
        color: #191919;
    } .contactus-1 {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 30px;
} .subscribe-line-image *{
    color:#fff;
} @media only screen and (max-width:800px){
        .main-raised.old-template:before, .main-raised.old-template:after {
            width: 50%;
        }
} @media only screen and (max-width:500px) {
    .main-raised.old-template h2 {
            margin-bottom: 15px;
            font-size: 30px;
        }
    } .subscribe-line.subscribe-line-image {
    position: relative;
    background-position: top center;
    background-size: cover;
} .subscribe-line {
    padding: 30px 0;
} .subscribe-line.subscribe-line-image:after {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: block;
        left: 0;
        top: 0;
        content: "";
        background-color: rgba(0, 0, 0, 0.66);
    } .subscribe-line.subscribe-line-image .container {
        position: relative;
        z-index: 2;
    } h5.description {
    color: #777777;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 26px;
} .btn-info {
    background-color: #E52329;
    border-color: #E52329;
} .btn-info:hover{
    background-color:#222;
    border-color:#222;
} .calendar-month .calendar-selected {
    background-color: #E52329 !important;
} .workflow-entry-panel {
    box-shadow: 0px 0px 15px #ddd;
    padding: 25px;
} .main iframe {
    box-shadow: 0px 0px 15px #ddd;
}
/* Material Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
} .btn .material-icons {
    vertical-align: middle;
    font-size: 17px;
    top: -1px;
    position: relative;
} .ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}
/* Campus Page Template Styles*/
.campus .accent-wrapper.right .accent-left {
    flex: 1 65%;
} .campus .accent-wrapper.right .accent-right {
    flex: 1 35%;
} .campus .pastorCard {
    margin-left: auto;
    cursor: default;
}
/*.campus .accent-wrapper.right:after {
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(/Themes/CP-Custom/Assets/Images/horizontal-accent.png);
    display:none;
    background-size: cover;
    height: 100%;
    max-width: 517px;
    width: calc(((100vw - 1200px) / 2) + 300px);
    min-width: 100px;
}*/
.campus .feature-content {
    padding: 25vh 50px 40px 50px;
    color: #fff;
    font-size: 22px;
    text-align: center;
    line-height: 40px;
    font-weight: 400;
    display: block;
    height: 75vh;
} .campus .feature-content a {
        color: #fff;
    } .hero-area.campus {
    background-size: cover;
    background-position: center;
    height: 80vh;
    margin-top: -134px;
} .campus-events {
    margin: 50px auto;
    position: relative;
    max-width: 1920px;
} .campus-events h2{
    max-width:50%;
    margin-top:40px;
}
/*.campus-events:before {
    content: "";
    background: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fade"><stop offset="0%" stop-color="white" /><stop offset="100%" stop-color="%23e52329" /> </linearGradient></defs><rect x="29%" y="0" width="71%" height="30%" fill="%23e52329" /><rect x="0" y="0" width="30%" height="30%" fill="url(%23fade)" fill-opacity="1" /></svg>');
    width: 50%;
    max-width: 941px;
    height: 100%;
    max-height:560px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}*/
.directions-wrapper iframe {
    width: 100%;
    box-shadow: 0px 5px 20px #666;
    transition: all ease 0.5s;
} .directions-wrapper iframe:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 30px #333;
} .directions-wrapper .row {
    align-items: flex-start !important;
} .campus-staff{
    background:#191919;
    padding:80px 0;
} .campus-staff h2 {
        text-align: center;
        font-size: 50px;
        color: #fff;
        margin-top: 0;
        margin-bottom: 40px;
    } .global-staff{
    padding:40px 0;
} .global-staff:nth-child(2n){
    background:#191919;
} .global-staff:nth-child(2n) h2{
    color:#fff;
}
.staff-listing, .global-staff-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
} @media only screen and (max-width: 768px) {datalist 
    .campus-staff h2, .global-staff h2 {
        font-size: 36px;
    }

    .staff-listing, .global-staff-listing{
        justify-content:center;
    }
} .staff-card {
    width:250px;
    background: #E52329;
} .staff-card .staff-photo {
        width: 100%;
        object-fit: cover;
    } .staff-card .staff-name {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        display: block;
        padding: 15px 15px 5px 15px;
        text-align: center;
    } .staff-card .staff-title {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        padding: 0 15px 15px 15px;
        display: block;
        text-align: center;
    }
.campus-staff h2 {
    color: #fff;
}

.staff-card .staff-email {
    display: block;
    text-align: center;
    color: #fff;
    margin-top: -10px;
    font-size: 22px;
    margin-bottom: 7px;
    transition:color ease-in-out 0.5s;
}

.staff-card .staff-email:hover{
    color:#222;
}

 @media only screen and (max-width: 1200px) {
    .campus-events h2 {
        margin-top: 15px;
    }
} @media only screen and (max-width: 768px) {

    .directions-wrapper .accent-left {
        width: calc(100% - 40px);
    }

    .campus-events h2 {
        max-width: 75%;
    }

    .campus-events:before {
        width: 25%;
        max-height: 250px;
    }
} @media only screen and (max-width: 768px) {

    .campus-events h2 {
        max-width: 100%;
        margin-top:100px;
    }

    /*.campus-events:before {
        width: 70%;
        max-height: 250px;
    }*/
} .pastorSig {
    display: block;
    position: relative;
    margin-left: -25px;
    padding-left: 25px;
    font-size:20px !important;
    color:#222 !important;
    font-weight:500;
} .pastorSig::before {
    content: "";
    border-left: 10px solid #E52329;
    border-radius:50%;
    height:10px;
    position: absolute;
    top: 8px;
    left: 0;
} .pastorCard .contactInfo{
    display:block;
    padding-top:10px;
} .pastorCard .contactInfo a i {
        color: #fff;
        font-size: 24px;
        padding:0 10px;
    } .pastorCard img{
        min-width:100%;
    } @media only screen and (max-width:768px) {
    .campus .pastorCard{
        margin:auto;
    }

    .campus .accent-wrapper.right .accent-left {
        margin-right: 100px;
    }
} @media only screen and (max-width:500px) {
    .campus .feature-content {
        font-size: 16px;
        line-height: 30px;
        height: 100vh;
        padding: 150px 20px 0 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
    }

    .hero-area.campus {
        background-size: cover;
        background-position: center;
        height: 100vh;
        margin-top: -134px;
    }

    .campus .accent-wrapper.right .accent-left {
        margin-right: 50px;
    }

    /*.campus .accent-wrapper.right:after {
        min-width: 50px;
    }*/
}
/* Red Background Accent Slider Resuable CSS */
/* This is actually a dark-grey slider now! */
.red-slider {
    background: #222;
    padding:120px 0;
} .red-slider .container{
    display:flex;
} .red-slider .red-slider-left{
    flex: 1 33%;
    width:33%;
} .red-slider .red-slider-right {
        flex: 1 67%;
        width: 67%;
        padding-left: 30px;
    } .red-slider h2 {
    margin-top: 0;
    margin-left: -25px;
    padding-left: 25px;
    margin-bottom: 40px;
    font-size: 44px;
    color:#fff;
    line-height: 40px;
    position: relative;
}
/*   .red-slider h2:before {
    content: "";
    border-left: 5px solid #fff;
    position: absolute;
    bottom: 5px;
    top: 4px;
    left: 0;
} */
.red-slider p {
        color: #FFF;
        font-weight: 300;
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 26px;
    } .red-slider .tourCarousel{
    text-align:center;
} .red-slider .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
} .red-slider .owl-pagination{
    text-align:center;
} .red-slider .owl-page span {
        display: block;
        width: 10px;
        height: 10px;
        margin: 16px 7px 8px;
        opacity: 0.3;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        background: #fff;
    } .red-slider .owl-page.active span {
        /*width: 20px;*/
        opacity: 1;
    } @media only screen and (max-width:992px){
    .red-slider .container{
        flex-wrap:wrap;
    }

    .red-slider .red-slider-left {
        flex: 1 100%;
        width: 100%;
    }

    .red-slider .red-slider-right {
        flex: 1 100%;
        width: 100%;
        padding-left: 0;
    }
} @media only screen and (max-width:768px) {
    .red-slider .red-slider-left {
        padding: 0 20px 0 45px;
    }

    .red-slider h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 28px;
    }

    .red-slider p {
        font-size: 15px;
        line-height: 22px;
    }
}
/* Image/Text Split Columns Resuable CSS */
.image-text-split {
    display: flex;
    flex-wrap: wrap;
    background: #222222;
} .image-text-split .image-col {
        flex: 1 50%;
        width: 50%;
        display: flex;
    } .image-text-split .image-col img {
            object-fit: cover;
            flex: 1;
            overflow:hidden;
        } .image-text-split .text-col {
        flex: 1 50%;
        width: 50%;
        padding: 80px 10%;
        justify-content: center;
        display: flex;
        flex-direction: column;
    } .image-text-split h2 {
        margin-top: 0;
        margin-left: -25px;
        padding-left: 25px;
        margin-bottom: 40px;
        font-size: 44px;
        color: #fff;
        line-height: 40px;
        position: relative;
    } .image-text-split h2:before {
    content: "";
    border-left: 5px solid #E52329;
    position: absolute;
    bottom: 5px;
    top: 4px;
    left: 0;
} .image-text-split p {
    color: #777777;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 26px;
} .image-text-split blockquote{
    color:#999;
} @media only screen and (max-width:992px){
    .image-text-split .image-col, .image-text-split .text-col {
        flex: 1 100%;
        width: 100%;
    }

    .image-text-split .text-col{
        padding: 40px 10%;
    }
} @media only screen and (max-width:768px) {
    .image-text-split .text-col {
        padding: 40px 20px 40px 45px;
    }

    .image-text-split h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 28px;
    }

    .image-text-split p {
        font-size: 15px;
        line-height: 22px;
    }
}
/* Quad CTA Resuable CSS */
.quad-cta {
    padding-top: 105px;
    padding-bottom: 105px;
    background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
    .quad-cta {
        background-attachment: scroll;
    }
}

.quad-cta h2 {
        font-size: 52px;
        font-weight: 500;
        padding: 0px 20px;
        text-align: center;
        margin: 0;
    } .quad-cta h4 {
        color: #fff;
        font-size: 28px;
        font-weight: 400;
        margin-top:15px;
        text-align: center;
        line-height: 32px;
        opacity: 0.7;
        margin-bottom:15px;
    } .quad-cta .callout-card-wrapper{
        justify-content:center;
        flex-wrap:wrap;
    } .quad-cta .callout-card {
        width: calc(50% - 35px);
        max-width: 532px;
        margin-top: 45px;
        height:460px;
    } .quad-cta .callout-card span{
        background:transparent;
        padding:15px 0 0 0;
    } .quad-cta .callout-card img {
            max-width: 100%;
            height: calc(100% - 72px);
            object-fit: cover;
            clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
        } .quad-cta .callout-card:nth-child(2n){
            margin-right:0;
        } .quad-cta .callout-card:nth-child(2n) img {
                clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
            } @media only screen and (max-width: 768px) {
    .quad-cta .callout-card-wrapper {
        margin-left:20px;
        margin-right:20px;
    }

    .quad-cta .callout-card {
        width: 100%;
        margin-right: 0;
        margin-top: 20px;
        margin-bottom: 0;
    }
} @media only screen and (max-width: 450px) {
    .quad-cta .callout-card {
        height: 350px;
    }

    .quad-cta h2 {
        font-size:30px;
    }

    .quad-cta h4{
        font-size:22px;
    }
}
/* Resuable Accordion Section CSS */
.faq-wrapper {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    position: relative;
    padding-top: 65px;
    padding-bottom: 75px;
} .faq-wrapper h2 {
    margin-left: 25px;
    padding-left: 25px;
    margin-bottom: 55px;
    color:#fff;
} .faq-wrapper .accordion {
        padding: 0px 50px;
    }
/* Accordion styles */
.accordion {
    overflow: hidden;
} .accordion input {
        position: absolute;
        opacity: 0;
        z-index: -1;
    } .accordion-entry {
    width: 100%;
    color: white;
    max-width: 800px;
    margin-left: 5px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.4);
} .accordion-entry label {
        justify-content: space-between;
        padding: 30px 0px;
        margin-left: 35px;
        font-weight: 400;
        position: relative;
        cursor: pointer;
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 0;
    } .accordion-label::before {
    content: "";
    width: 20px;
    position: absolute;
    left: 0;
    height: 35px;
    display: inline-block;
    margin-left: -35px;
    font-weight: 700;
    text-align: center;
    transition: all .35s;
    background-image: url(/Themes/CP-Custom/Assets/Images/faq-arrow.png);
    background-repeat:no-repeat;
    background-size:cover;
} .accordion-content {
    max-height: 0;
    padding: 0;
    background: transparent;
    transition: all .35s;
    font-weight: 400;
    margin-left:5px;
    color: #ddd;
    font-size: 16px;
} input:checked + .accordion-label::before {
    transform: rotate(90deg);
    margin-left:-25px;
} input:checked + .accordion-label{
    padding-left:20px;
} input:checked ~ .accordion-content {
    max-height: 100vh;
    padding: 0 0 30px 0;
} @media only screen and (max-width:925px) {
    .accordion-entry {
        max-width: 550px;
    }
} @media only screen and (max-width:768px) {
    .accordion-entry label {
        font-size: 20px;
        padding:20px 0;
    }

    .accordion-label::before{
        height:25px;
        width:14px;
    }

    .faq-wrapper .accordion {
        padding-right: 75px;
    }

    .accordion-content{
        font-size:15px;
    }

    .faq-wrapper h2{
        margin-bottom:30px;
    }
} @media only screen and (max-width:500px) {
    .faq-wrapper .accordion{
        padding: 0 20px;
    }

    .faq-wrapper .accent-bar{
        display:none;
    }

    .accordion-entry{
        margin-left:0;
    }

    .accordion-entry label{
        margin-left:25px;
    }

    .accordion-label::before {
       margin-left:-25px;
    }

    input:checked + .accordion-label::before{
        margin-left:-20px;
    }

    input:checked + .accordion-label {
        padding-left: 10px;
    }
}
/* Campus Map Lava Template CSS */
.campusLocationWrapper {
    position: relative;
    background: url(/Themes/CP-Custom/Assets/Images/horizontal-accent.png);
    background: #fff;
} .location-viewport-wrapper {
    position: relative;
    max-width: 1920px;
    width: 100%;
    margin: auto;
    padding: 0;
} .location-map {
    max-width: 100%;
    position: relative;
} .location-map img.map {
        max-width: 100%;
        image-rendering: optimizeSpeed;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    } .location-map .campus-pin {
        position: absolute;
        opacity: 0.8;
        image-rendering: optimizeSpeed;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        width: 36px;
        cursor: pointer;
        transition: 0.5s ease all;
        filter: blur(0);
        -webkit-filter: blur(0);
        transform: translateX(-18px); /* We need to do this so that it is the center of the bottom the pin being positioned. Otherwise it will appear to slightly shift as the viewport changes */
    } .location-map .campus-pin.hover, .location-map .campus-pin.active, .location-map .campus-pin:hover, .location-map .campus-pin:focus {
            opacity: 1;
            transform: scale(1.33) translateX(-13px);
            filter: drop-shadow(-2px 2px 4px #222);
        } .location-viewport-wrapper .campusList {
    max-height: 200px;
    background: #fff;
    box-shadow: 0px 0px 20px #555;
    padding: 15px 25px;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 315px;
} .location-viewport-wrapper .listInner {
    overflow-y: scroll;
    max-height: 170px;
} .location-viewport-wrapper .listInner::-webkit-scrollbar {
        width: 20px;
    } .location-viewport-wrapper .listInner::-webkit-scrollbar-thumb {
        background: #E52329;
        background: #E5232999;
        border-radius: 15px;
    } .location-viewport-wrapper .listInner::-webkit-scrollbar-thumb:hover {
            background: #E52329;
        } .location-viewport-wrapper .listInner::-webkit-scrollbar-track {
        background: #eee;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    } .location-viewport-wrapper .campusToggle {
    padding-bottom: 10px;
    border-bottom: 2px solid #bbb;
    margin-right: 20px;
    margin-bottom: 10px;
} .location-viewport-wrapper .campusToggle:last-child {
        margin-bottom: 0;
        border-bottom: none;
    } .location-viewport-wrapper .campusName, .campusMobile .campusName {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #222;
    cursor: pointer;
} .location-viewport-wrapper .campusInfo, .campusMobile .campusInfo {
    display: none;
    font-size: 15px;
    font-weight: 300;
    padding-top:10px;
    color: #E52329
} .location-viewport-wrapper .campusInfo .cta-btn, .campusMobile .cta-btn{
    margin-top:10px;
} .map-wrapper{
    position:relative;
} .campusToggle.active .campusInfo{
    display: block !important;
} .campusMobile{
    display:none;
} .campusMobile.active {
        display: block;
    } .campusMobile {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 20px #555;
    z-index: 10;
    padding: 25px 25px 15px 15px;
    max-width: 270px;
} .campusMobile .closeButton {
        font-size: 20px;
        font-weight: 800;
        color: #222;
        position: absolute;
        cursor: pointer;
        top: 5px;
        right: 10px;
    } .campusMobile .campusInfo {
        display: block;
    } @media only screen and (max-width:1300px) {
    .location-viewport-wrapper {
        width: 100%;
        padding: 0;
    }

        .location-viewport-wrapper .campusList{
            right:20px;
        }

    .campusLocationWrapper {
        background: unset;
    }
} @media only screen and (max-width:1000px) {
    .location-viewport-wrapper {
        overflow-x: scroll;
        padding-top: 30px;
        transform: translateY(-30px);
        margin-bottom: -30px;
    }

    .campusMobile {
        position: absolute;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0px 0px 20px #555;
        left: 20px;
        z-index: 10;
        top: 20px;
        padding: 25px 25px 15px 15px;
        max-width:270px;
    }

        .campusMobile .closeButton {
            font-size: 20px;
            font-weight: 800;
            color: #222;
            position: absolute;
            cursor: pointer;
            top: 5px;
            right: 10px;
        }

    .campusMobile .campusInfo{
        display:block;
    }

    .location-map{
        z-index:1;
    }

    .campusListMobile .listInner {
        padding-top: 10px;
    }

    .location-viewport-wrapper .campusList{
        display:none;
    }

        .location-viewport-wrapper::-webkit-scrollbar {
            height: 20px;
        }

        .location-viewport-wrapper .listInner {
            max-height: 135px;
        }

        .location-viewport-wrapper::-webkit-scrollbar-thumb {
            background: #E52329;
            background: #E5232999;
            border-radius: 15px;
        }

        .location-viewport-wrapper::-webkit-scrollbar-thumb:hover {
            background:#E52329;
        }


        .location-viewport-wrapper::-webkit-scrollbar-track {
            background: #eee;
            -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        }

        .location-map img.map, .location-map {
            min-width: 1000px;
        }
}
/* Giving Widget CSS */
.card .header-danger, .card .content-danger {
    background: #363433;
    color: #fff;
} .accent-wrapper .card{
    text-align:left;
} .accent-wrapper .card .content-danger p{
        color:#fff;
    } .accent-wrapper .card .btn.btn-white, .accent-wrapper .card .btn-btn-white:hover {
        color: #E52329 !important;
        font-weight:600;
    }

    .block-configuration a{
        display:unset !important;
    }

.registrationentry-intro h1, .registrationentry-intro h4, .card-signup h1, .card-signup h4 {
    color: #222 !important;
  
}

.registrationentry-intro h4 {
    opacity: 1;
    font-size:19px;
}

/* Pretty Centered Text */

.pretty-centered-text {
    color: #222;
    width:100%;
    background:#fff;
    text-align: center;
    max-width: 100%;
    margin: auto;
    padding: 50px 20px;
    background: #fff;
}

.pretty-centered-text .inner{
    max-width:900px;
    margin:auto;
}

    .pretty-centered-text p {
        color: #777;
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        text-align: left;
        margin-bottom: 25px;
        padding: 3px 0 3px 21px;
        border-left: 5px solid #E52329;
    }

    .pretty-centered-text p:last-child{
        margin-bottom:0;
    }

    .pretty-centered-text h2 {
        margin-left: 0;
        padding-left: 0;
        line-height: 1.1;
        font-weight: 700;
        font-size: 40px;
    }

    .pretty-centered-text.heather {
        background: #E0DEDE;
    }

        .pretty-centered-text.heather p {
            color: #222;
            border-left-color: #333;
        }

        .pretty-centered-text.heather h1, .pretty-centered-text.heather h2, .pretty-centered-text.heather h3, .pretty-centered-text.heather h4, .pretty-centered-text.heather h5, .pretty-centered-text.heather h6{
            color: #222;
        }

    .pretty-centered-text.red {
        background: #F20F25;
    }

        .pretty-centered-text.red p {
            color: #fff;
            border-left-color: #fff;
        }

    .pretty-centered-text.red h1, .pretty-centered-text.red h2, .pretty-centered-text.red h3, .pretty-centered-text.red h4, .pretty-centered-text.red h5, .pretty-centered-text.red h6 {
            color: #fff;
        }

    .pretty-centered-text.slate {
        background: #999595;
    }

    .pretty-centered-text.slate p {
        color: #000;
        border-left-color: #333;
    }

    .pretty-centered-text.slate h1, .pretty-centered-text.slate h2, .pretty-centered-text.slate h3, .pretty-centered-text.slate h4, .pretty-centered-text.slate h5, .pretty-centered-text.slate h6 {
        color: #000;
    }

    .pretty-centered-text.navy {
        background: #12304F;
    }

        .pretty-centered-text.navy p {
            color: #fff;
            border-left-color: #fff;
        }
        
    .pretty-centered-text.brown {
        background: #93340B;
    }

        .pretty-centered-text.brown p {
            color: #fff;
            border-left-color: #ffffff00;
        }

    .pretty-centered-text.brown h1, .pretty-centered-text.brown h2, .pretty-centered-text.brown h3, .pretty-centered-text.brown h4, .pretty-centered-text.brown h5, .pretty-centered-text.brown h6 {
        color: #fff;
    }

    .pretty-centered-text.navy h1, .pretty-centered-text.navy h2, .pretty-centered-text.navy h3, .pretty-centered-text.navy h4, .pretty-centered-text.navy h5, .pretty-centered-text.navy h6 {
        color: #fff;
    }

    .pretty-centered-text.black {
        background: #000000;
    }

        .pretty-centered-text.black p {
            color: #ccc;
            border-left-color: #eee;
        }

    .pretty-centered-text.black h1, .pretty-centered-text.black h2, .pretty-centered-text.black h3, .pretty-centered-text.black h4, .pretty-centered-text.black h5, .pretty-centered-text.black h6 {
        color: #eee;
    }


    .pretty-centered-text.charcoal {
        background: #363433;
    }

        .pretty-centered-text.charcoal p {
            color: #fff;
            border-left-color: #fff;
        }

    .pretty-centered-text.charcoal h1, .pretty-centered-text.charcoal h2, .pretty-centered-text.charcoal h3, .pretty-centered-text.charcoal h4, .pretty-centered-text.charcoal h5, .pretty-centered-text.charcoal h6 {
        color: #fff;
    }

    @media only screen and (max-width:767px){
        .pretty-centered-text h2{
            font-size:30px;
            margin-bottom:20px;
        }
    }

.panel .panel-body{
    clear:both;
}

@media only screen and (max-width:767px) {
    .contribution-personal .panel-labels {
        margin-top: 25px !important;
    }
}

/* Newsletter Grid Styling */
.newsletter-grid{
    margin:60px auto;
}

.newsletter-grid .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .newsletter-grid h3.card-title {
        font-size: 28px;
        margin-bottom: 0;
    }

    .newsletter-grid .card-date {
        color: #eee;
        font-size: 16px;
        margin-bottom: 50px;
    }

.newsletter-grid .cta-btn {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Details */
.newsletter-title-container {
    text-align: center;
}
.newsletter-details h1 {
    margin: 100px 0;
    font-size: 55px;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-left: -25px;
    padding-left: 25px;
    font-family: "Bely-display", sans-serif;
}

    .newsletter-details h1::before {
        content: "";
        border-left: 5px solid #E52329;
        position: absolute;
        bottom: 5px;
        top: 4px;
        left: 0;
    }

.newsletter-details .primary-article, .newsletter-details .spotlight-wrapper {
    overflow: hidden;
    padding: 50px 0;
    color: #fff;
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    font-weight: 300;
    transition: 1s ease-in-out all;
    font-size: 16px;
    line-height: 24px;
}

.newsletter-details .primary-article h2, .newsletter-details .spotlight-wrapper h2{
    font-size:40px;
    margin-top:0;
    color:#fff;
    margin-bottom:30px;
    text-align:center;
}

.newsletter-details .article-content {
    max-height: 350px;
    overflow: hidden;
    position: relative;
    transition: ease 0.8s max-height;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left bottom, right bottom;
}

.newsletter-details .article-content.expanded{
    -webkit-mask-image:none;
    max-height:15000px;
}

.newsletter-details .read-more-btn, .newsletter-details .spotlight-btn {
    display: block;
    font-weight: 500;
    width: 115px;
    margin: 20px auto 0 auto;
    font-size: 20px;
}

.newsletter-sub {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    line-height: 40px;
    font-family: 'Poppins';
    text-transform: none;
}

.newsletter-edition{
    color:#666;
}

.newsletter-date {
    color:#12304f;
}

@media only screen and (max-width:767px){
    .newsletter-details h1{
        font-size:35px;
        margin:30px 0;
    }

    .newsletter-details .primary-article h2, .newsletter-details .spotlight-wrapper h2 {
        font-size: 30px;
    }

    .newsletter-sub {
        font-size: 18px;
        line-height: 30px;
    }

}

.newsletter-details .metric-wrapper .container{
    display:flex;
    flex-wrap:wrap;
}

    .newsletter-details .metric-wrapper .container > div {
        width: calc(100% / 3);
        min-height: 380px;
    }

.newsletter-details .metric-wrapper img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

    .newsletter-details .metric-wrapper h2{
        text-align:center;
        margin-top:0;
    }

.newsletter-details .metric-wrapper h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 0;
}

@media only screen and (max-width:1199px){
    .newsletter-details .metric-wrapper .container > div {
        width: calc(100% / 3);
        min-height: 313.33px;
        background-size: cover !important;
    }
}

@media only screen and (max-width:991px) {
    .newsletter-details .metric-wrapper .container > div {
        width: 380px;
        min-height: 380px;
        background-size: cover !important;
        margin-bottom: 50px;
    }

    .newsletter-details .metric-wrapper .container > div:first-child{
        margin-top:50px;
    }

    .newsletter-details .metric-wrapper .container {
        justify-content: center;
    }
}

@media only screen and (max-width:500px){
    .newsletter-details .metric-wrapper .container > div {
        width: calc(100vw - 30px);
        min-height: calc(100vw - 30px);
        background-size: cover !important;
    }
}

.newletter-details .spotlight-wrapper{
    color:#fff;
}

.newsletter-details .spotlight-img {
    border-radius: 50%;
    max-width: 250px;
    -webkit-shape-outside: circle();
    margin-left: 60px;
    margin-top: 30px;
    margin-bottom: 30px;
    float: right;
    shape-outside: circle();
}

@media only screen and (max-width:550px){
    .newsletter-details .spotlight-img{
        max-width:125px;
        margin-left:30px;
    }
}

.calendar-wrapper {
    display: flex;
    background: transparent;
    max-width: 1170px;
    padding-left:15px;
    padding-right:15px;
    margin: auto;
}

    .calendar-wrapper h2 {
        transform: rotate( -60deg ) translate( -100px, 110px );
        margin: 0;
        position: absolute;
        left: -115px;
        top: 15px;
        padding-left: 25px;
    }

    .calendar-wrapper > div {
        width: 44%;
        padding: 40px 30px;
        height: 350px;
        padding-right: calc(8% + 30px);
        background-size: cover !important;
        background-position: center center !important;
    }

    .calendar-wrapper > div:first-child {
        width: 19.5%;
        display:block;
        position:relative;
    }

        .calendar-wrapper > div:not(:first-child) {
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-left: -16%;
            padding-left: 8%;
            clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
            text-align: center;
            box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 60%);
            transition:0.4s ease-in-out all;
        }

            .calendar-wrapper > div:not(:first-child):hover {
                box-shadow: inset 0 0 0 2000px rgb(229 35 41 / 75%);
            }

        .calendar-wrapper > div:not(:first-child) h3 {
            color:#fff;
            margin:0 0 10px 0;
        }

        .calendar-wrapper > div a {
            color: #fff;
            padding: 0 40px;
        }

        .calendar-wrapper > div a:hover{
            color:#fff;
        }

.calendar-wrapper h2::before {
    content: "";
    border-left: 5px solid #E52329;
    position: absolute;
    bottom: 5px;
    top: 4px;
    left: 0;
}

    .calendar-wrapper .event-date {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        color: #ededed;
    }

    .calendar-wrapper .event-description{
        font-size:14px;
    }

    @media only screen and (max-width:1200px){
        .calendar-wrapper > div{
            width:44%;
        }

        .calendar-wrapper {
            flex-wrap: wrap;
            padding-bottom: 1%;
            max-width: 970px;
            justify-content: space-evenly;
        }

            .calendar-wrapper h2 {
                display: inline-block;
                text-align: left;
                transform: none;
                left: 0;
                top: 0;
                position: relative;
            }

            .calendar-wrapper > div {
                width: 32%;
                height: 250px;
                padding: 40px 30px;
            }

                .calendar-wrapper > div:first-child {
                    width: 100%;
                    display: block;
                    text-align: center;
                    height: auto;
                }

                .calendar-wrapper > div:not(:first-child) {
                    margin: 0;
                    padding: 40px 30px !important;
                    clip-path: none;
                }

                .calendar-wrapper > div a {
                    padding: 0 0px;
                }
    }

@media only screen and (max-width:767px){
    .calendar-wrapper > div:not(:first-child) {
        margin-bottom:15px;
        padding: 40px 30px !important;
    }

    .calendar-wrapper > div {
        width:100%;
        min-height: auto;
    }
}

.newsletter-details .resource-wrapper{
    padding:50px 0;
}

.newsletter-details .resource-wrapper .row {
    display: flex;
    flex-wrap:wrap;
    align-items: center;
}

.newsletter-details .resource-wrapper .row > div:first-child{
    text-align:center;
}

.newsletter-details .resource-wrapper .row > div:first-child img{
    max-width:70%;
}

    .newsletter-details .resource-wrapper h2 {
        margin: 0;
        margin-bottom:20px;
        position: relative;
        padding-left: 25px;
    }

        .newsletter-details .resource-wrapper h2::before {
            content: "";
            border-left: 5px solid #E52329;
            position: absolute;
            bottom: 5px;
            top: 4px;
            left: 0;
        }

        .newsletter-details .resource-wrapper .cta-btn{
            margin-top:20px;
        }

@media only screen and (max-width:991px){
    .newsletter-details .resource-wrapper .row > div:first-child {
        margin-bottom:50px;
    }
}

.registrationentry-intro h1, .card-signup h1 {
    font-size: 36px;
    font-weight: 600;
    text-transform: none;
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 35px;
    border-top: #E52329 5px solid;
}

.card-signup h2.card-title {
    font-size: 46px;
    margin-bottom: 20px;
    margin-top: 0;
}

.card-signup .registrationentry-intro h2 {
    text-align: center;
    margin: 5px 0;
    text-transform: none;
    font-size: 28px;
}

/* Location Specific Event Registration CSS */
.campus-event-registration {
    display: inline-block;
    width: 100%;
    max-width: 420px;
}

.campus-event-registration .dropdown a.dropdown-toggle {
    width: 100%;
    background: #E52329;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 18px;
    margin: 0;
    font-weight: 300;
    font-size:20px;
    border-radius: 10px;
    padding: 15px 30px;
}

.campus-event-registration i.select-location {
    position: absolute;
    right: 20px;
    top: 19px;
}

.campus-event-registration .dropdown-menu {
    width: 100%;
}

.campus-event-registration .dropdown a.event-link {
    background: #E52329;
    width: calc(100% - 100px);
    border: none;
    display: inline-block;
    color: #fff;
    text-align: left;
    font-size: 18px;
    margin: 0;
    font-weight: 300;
    border-radius: 10px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 15px 25px;
}

    .campus-event-registration .dropdown a.event-link.no-registration {
        background:#999;
        cursor:unset;
        pointer-events:none;
    }

.campus-event-registration .dropdown a.change-location-toggle {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    margin-left: 3px;
    width: 93px;
    font-size:18px;
    padding: 15px 40px;
    display: inline-block;
}

    .campus-event-registration .dropdown-menu li a {
        color: #999;
        display:none;
    }

    .campus-event-registration .dropdown-menu li.available a {
        color: #262626;
        display:block;
    }

    .campus-event-registration .dropdown-menu li a:hover{
        background: #ddd !important;
    }

    .campus-event-registration .dropdown {
        display: flex;
    }

        .campus-event-registration .dropdown a.change-location-toggle {
            display: flex;
            align-items: center;
        }

.block-popup {
    display: none;
    position: fixed;
    z-index: 50;
    padding-top: 10vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #222222aa;
}

    .block-popup .block-content {
        max-width: 800px;
        width:80%;
        background: #fff;
        padding: 50px;
        margin: auto;
        position:relative;
    }

    .block-popup-close {
        top: 15px;
        right: 15px;
        cursor: pointer;
        position: absolute;
        width: 35px;
        height: 35px;
        
    }

        .block-popup-close::before {
            font-size: 50px;
            line-height: 35px;
            content: "\00d7";
            display: block;
        }

.block-popup.block-instance.outline{
    display:block !important;
    padding-top:20px;
    padding-bottom:20px;
}

.block-popup .popup-heading {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}


@media only screen and (max-width:500px) {
    .block-popup .block-content {
            width: 90%;
            padding: 50px 20px 20px 20px;
        }
    }

/* Three Column Text Block Styles*/

.three-column-text {
    padding: 50px 20px;
}

.three-column-text p {
    color: #777;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    margin: 0;
    padding: 10px 20px 10px 5px;
}

.three-column-text h3{
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

    .three-column-text .container {
        margin-top: 40px;
        margin-bottom: 40px;
    }

@media only screen and (max-width:767px){
    .three-column-text p {
        padding-right: 0px;
        margin: 20px 0;
    }

    .three-column-text .row > div:first-child p{
        margin-top:0;
    }

    .three-column-text .row > div:last-child p {
        margin-bottom: 0;
    }
}

/* Toggle Button CSS bootstrap override */
.toggle-container .btn-group.btn-toggle .btn{
    border-bottom: 1px dotted #E52329;
    padding: 2px 5px 1px 5px;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.toggle-container .btn-group.btn-toggle .btn-primary.active {
    background-color: #E52329;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}