/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
    margin: 0;
}
/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: "Open Sans", sans-serif;
    margin: 0;
}
/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
    font: inherit;
}
/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
/*
  8. Create a root stacking context
*/
#root, #__next {
    isolation: isolate;
}
.landing-page-container{
    max-width: 1280px;
    margin: 0 auto;
}
.church-header img{
    width: 100%;
}
.church-info{
    background: #B4B4B433;
    padding: 30px 50px;
    display: flex;
    align-items: center;
}
.church-info .church-logo img{
    max-width: 160px;
}
.church-info .church-meta{
    margin-left: 30px;
}
.church-meta .church-name {
    font-size: 38px;
}
.church-info .church-meta p {
    font-size: 18px;
    margin-bottom: 5px;
}

.headline-blue{
    color: #135585;
    /*font-size: 24px;*/
    margin-bottom: 10px;
}
#sermon_slider,
#sermon_clips,
#quote_images
{
    margin-top: 30px;
}
.sermon_video_wrapper{
    text-decoration: none;
    color: #000;
}
.sermon_video_wrapper .sermon_video_image{
    position: relative;
}
.sermon_video_wrapper .sermon_video_image img{
    width: 100%;
}
.sermon_video_wrapper .sermon-title {
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0;
}
.sermon_video_wrapper .sermon_duration {
    position: absolute;
    bottom: -1px;
    font-size: 12px;
    background: #2F81BC;
    color: #fff;
    padding: 3px 8px;
    right: 0;
    border-top-left-radius: 5px;
    border: 2px solid #fff;
    line-height: 15px;
    font-weight: bold;
}
.sermon_video_wrapper .sermon-date {
    font-size: 14px;
    opacity: 0.75;
}
.splide__arrows.splide__arrows--ltr {
    position: absolute;
    right: -18px;
    display: flex;
    top: -38px;
}
.splide__arrow--prev {
    left: -5.5em;
}
.splide__arrow {
    background: #2F81BC;
    opacity: 1;
}
.splide__arrow svg{
    fill: #fff;
}
.sermon-videos {
    padding: 30px 50px;
}
.church_chatbox{
    padding: 30px 50px;
}

@media screen and (min-width:320px) and (max-width:767px){
    .church-info,.sermon-videos,.church_chatbox {
        padding: 15px 20px;
    }

    .church-logo{
        width: 20%;
    }
    .church-info .church-meta{
        width: 70%;
    }
    .church-meta .church-name{
        font-size: 24px;
    }
    .church-info .church-meta p {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .sermon-videos p {
        font-size: 14px;
    }
.splide__arrows.splide__arrows--ltr {
    position: unset;
    right: auto;
    display: block;
    top: auto;
 
}
.splide__arrow--prev{
    left: 1em;
}
}