body {
  color: #261636;
  background-color: #fff;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

body.off {
  opacity: 0!important;
}

#page {
  /* opacity: 0; -- safari glitch */
  /* transition: opacity 0.5s ease-out; */
}

#page.on {
  opacity: 1;
}

.row {
  max-width: 960px;
}

/* /////////////////////////////////////////////////////////////////////
header and main nav
///////////////////////////////////////////////////////////////////// */

.header {
  text-align: center;
}

.header {
  position: fixed;
  z-index: 10;
  background: rgba(255,255,255,1);
  font-size: 16px;
  font-weight: bold;
  color: #261636;
  -moz-box-sizing: border-box;
  box-sizing: border-box; 
  width: 100%;
  height: 130px;
  margin: 0;
  padding: 0;
  transition: all 0.5s ease-in-out;
}

  .top-button-appear .header {
      height: 75px;
  }

.header .logo a {
  display: block;
  margin: 10px auto;
  max-width: 150px;
  transition: all 0.5s ease-in-out;
}

  .top-button-appear .header .logo a {
    transform: scale(0.6) translateY(-35px);
  }

.header .logo a img {
  width: 100%;
}

.header a.menu {
  position: absolute;
  display: block;
  font-size: 0;
  width: 22px;
  height: 24px;
  top: 27px;
  right: 23px;
  margin: 0;
  transition: transform 0.5s ease-in-out;
}

  .top-button-appear .header a.menu {
    transform: translateY(-3px);
  }

.header a.menu span.toggle-line {
  border-top: 2px solid #ec5e52;
  width: 100%;
  position: absolute;
  right: 0;
  transition: all 0.25s ease-in-out;
}

.header a.menu span.toggle-line.toggle-line-1 {
  top: 4px;
}

.header a.menu span.toggle-line.toggle-line-2 {
  top: 10px;
}

.header a.menu span.toggle-line.toggle-line-3 {
  top: 16px;
}

.mobile-menu-on .header a.menu span.toggle-line.toggle-line-1 {
  transform: rotate(45deg);
  top: 11px;
}

.mobile-menu-on .header a.menu span.toggle-line.toggle-line-2 {
  opacity: 0;
}

.mobile-menu-on .header a.menu span.toggle-line.toggle-line-3 {
  transform: rotate(-45deg);
  top: 11px;
}

body.mobile-menu-on {
  overflow: hidden;
}

.mobile-menu {
  display: table;
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 8;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
}

  .mobile-menu-on .mobile-menu {
    transform: translateY(0);
  }

.mobile-menu ul {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  list-style: none;
  margin: 0;
  opacity: 0;
  transition: opacity 0.25s ease-in-out 0.4s;
}

  .mobile-menu-on .mobile-menu ul {
    opacity: 1;
  }

.mobile-menu a {
  display: block;
  color: #261636;
  font-size: 20px;
  line-height: 1.2;
  padding: 7px;
}

.mobile-menu a:hover,
.mobile-menu a.selected {
  color: #ec5e52;
}

.desktop-menu {
  display: none;
}

@media screen and (min-width: 1025px) {
  
  .menu-button,
  .mobile-menu {
    display: none;
  }

  .header {
    height: 136px;
  }

  /*.top-button-appear .header {
      height: 136px;
      transform: translateY(-182px);
  }*/

  /*.scrolling-up .header,
  .top-button-appear.scrolling-up .header,
  .header:hover {
      height: 136px;
      transform: none;
  }*/

  .header .logo {
    float: left;
    left: calc(50% - 480px);
    position: relative;
  }

  .header .logo a,
  .top-button-appear .header .logo a {
    margin: 19px 0 0 65px;
    max-width: 173px;
    transform: none;
  }

  .desktop-menu {
    display: block;
    padding: 104px 45px 10px 0;
    background-color: #fff;
    border-bottom: 1px solid #ececec;
  }

  .desktop-menu ul {
    list-style: none;
    font-size: 0;
    margin: 0;
  }

  .desktop-menu li {
    display: inline-block;
  }

  .desktop-menu li:before {
    content: "|";
    font-weight: 300;
    font-size: 14px;
    opacity: 0.75;
  }

  .desktop-menu li:first-of-type:before {
    content: "";
  }

  .desktop-menu a {
    font-size: 14px;
    color: #261636;
    transition: color 0.25s ease-in-out;
    padding: 11px 5px 14px;
  }

  .desktop-menu a:hover,
  .desktop-menu a.selected {
    color: #ec5e52;
  }

  .sub-menu {
    position: absolute;
    background: #fff;
    left: 0;
    right: 0;
    z-index: -10;
    height: 44px;
    padding: 9px 0;
    transition: transform 0.6s ease 0.2s, top 0.1s ease 0.7s;
    top: -50px;
  }

  .sub-menu.on {
    z-index: -11;
    opacity: 0.9;
  }

  .menu-item-has-children:hover .sub-menu,
  .menu-item-has-children .sub-menu.on {
    transform: translateY(46px);
    transition: transform 0.6s ease 0s, top 0.1s ease 0s;
    top: 91px;
  }

  .sub-menu a {
    padding: 11px 5px;
  }

}


/* /////////////////////////////////////////////////////////////////////
/ header and main nav
///////////////////////////////////////////////////////////////////// */

/* /////////////////////////////////////////////////////////////////////
Buttons
///////////////////////////////////////////////////////////////////// */

.button {
  background-color: #ec5e52;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 4px 15px;
  width: 100%;
  max-width: 215px;
}

.button.wider-01 {
  max-width: 300px;
}

.button:hover {
  background-color: #261636;
}

.button.white {
  background-color: #fff;
  color: #ec5e52;
}

  .button.white:hover {
    background-color: #261636;
    color: #fff;
  }

.button.purple {
  background-color: #261636;
  color: #fff;
}
  
  .button.purple:hover {
    background-color: #fff;
    color: #261636;
  }

p + .button {
  margin-top: 25px;
}

/* /////////////////////////////////////////////////////////////////////
/ buttons
///////////////////////////////////////////////////////////////////// */

/* /////////////////////////////////////////////////////////////////////
Main
///////////////////////////////////////////////////////////////////// */

hr {
  max-width: 40px;
  border-bottom: 2px solid #ec5e52
}

main {
  float: left;
  width: 100%;
  padding: 130px 0 0;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  overflow: hidden;
}

main.home {
  background: url(../img/texture-03.jpg) 0 0 repeat;
}

main .left-aligned {
  text-align: left;
}

main p {
  font-size: 14px;
  line-height: 21px;
  margin: 0 0 24px;
}

main .wrapper.brown p a {
  color: #c14a3c;
}

  main .wrapper.brown p a:hover {
    color: #261636;
  }

  p.white,
  ul.white,
  ol.white,
  li.white {
    color: #fff;
  }

  p.no-margin {
    margin-bottom: 0;
  }

  p.more-margin {
    margin-bottom: 45px!important;
  }


h2 {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 18px;
}

h2.white {
  color: #fff;
}

h2.circle {
  background: url(../img/circle-dark.png) center top no-repeat;
  background-size: 40px;
  padding: 50px 0 0;
}

h2.circle.dark {
  background-image: url(../img/circle-dark.png);
}

h2.circle.coral {
  background-image: url(../img/circle-coral.png);
}

h2.circle.light {
  background-image: url(../img/circle-light.png);
}

.intro h2 {
  font-size: 20px;
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 10px;
}

h3, .h3 {
  font-size: 19px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 20px;
}

main p.large br {
  display: none;
}

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

    main {
      padding: 136px 0 0;
    }

      /*main.sub-page {
        padding-top: 180px;
      }*/

    main p {
      font-size: 16px;
      line-height: 23px;
    }

    main p.large {
      font-size: 20px;
      line-height: 1.4;
      margin: 0 0 2rem;
    }

      main p.large br {
        display: block;
      }

    main p.large.no-margin {
      margin: 0;
    }

    main h2 {
      font-size: 30px;
      line-height: 34px;
    }

    main .large-11 {
      width: 90.6667%;
    }

}

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

.image-container img {
  width: 100%;
}

  .sub-page-panel {
    float: left;
    width: 100%;
    background: #42285e url(../img/large-circle-02.png) center no-repeat;
    background-size: 90%;
  }

.text-container {
  background-color: #261636;
  float: left;
  width: 100%;
  padding: 20px 35px;
}

  .sub-page-panel .text-container {
    background-color: transparent;
  }

.text-container br {
  display: none;
}

.text-container h1 {
  color: #fff;
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  position: relative;
}

.text-container h1 span.pre-title {
  display: block;
  font-size: 50%;
}

.text-container h1.h2 {
  font-size: 20px;
  line-height: 28px;
}

.text-container h1.h3 {
  font-size: 19px;
  line-height: 28px;
}

.sub-page-panel .text-container h1 {
  font-size: 19px;
  line-height: 28px;
}

.image-container:before {
  content: "";
  background: url(../img/large-circle.png) center center no-repeat;
  background-size: contain;
  display: block;
  width: 100%;
  height: calc(100% - 40px);
  top: 20px;
  position: absolute;
  transition: transform 0.5s ease 0.25s;
}

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

  .text-container h1 {
    font-size: 28px;
    line-height: 34px;
    margin: 0 auto;
  }

}

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

  .image-container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 425px;
  }

  .image-container:before {
    display: none;
  }

  .image-container img {
    display: none;
  }

  .text-container {
    display: table;
    height: 425px;
    background: transparent;
  }

    .sub-page-panel {
      text-align: left;
      height: 484px; 
      background-size: 700px;     
    }

  .text-container br {
    display: block;
  }

  .text-container h1 {
    font-size: 42px;
    line-height: 1.2;
    display: table-cell;
    vertical-align: middle;
    max-width: 100%;
  }

    .text-container h1.h2 {
      font-size: 36px;
      line-height: 1.2;
    }

    .text-container h1.h3 {
      font-size: 27px;
      line-height: 1.4;
    }

  .text-container h1 span {
    display: block;
    margin: 0 auto;
    max-width: 700px;
  }

    .text-container h1.h2 span {
      max-width: 680px;
    }

    .text-container h1 span.pre-title {
      margin-bottom: 20px;
    }

  .text-container h1:before {
    content: "";
    background: url(../img/large-circle.png) center center no-repeat;
    background-size: contain;
    display: block;
    width: 100%;
    height: 900px;
    top: -225px;
    position: absolute;
    /*transform: translateY(50px);*/
    opacity: 0;
    transition: opacity 1s ease-in-out 0s;
  }

    /* ie10 and 11 */
      @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) { 

        /* .text-container h1:before {
            height: 600px;
         }*/

      }
    /* /ie10 and 11 */

  .text-container h1.aos-animate:before {
    /*transform: translateY(0);*/
    opacity: 1;
  }

    .sub-page-panel .text-container {
      height: 484px;
      min-height: inherit;
    }

    .sub-page-panel .text-container h1 {
      font-size: 31px;
      line-height: 1.35;
    }

    .sub-page-panel .text-container h1:before {
      display: none;
    }

    .sub-page-panel .text-container h1 span {
      max-width: 820px;
    }


}

  /* large monitor styles */

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

        .image-container,
        .text-container {
          height: calc(100vh - 400px);
          min-height: 500px;
        }

    }

    @media screen and (min-width: 1025px) and (min-height: 900px) {
        .text-container h1:before {
          height: 100vh;
        }
    }



  /* /large monitor styles */

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

      .image-container.home {
        background-image: url(../img/home-image-r.jpg);
      }

      .image-container.about-us {
        background-image: url(../img/about-us-image-r.jpg);
      }

      .image-container.coronavirus {
        background-image: url(../img/coronavirus-image-r.jpg);
      }

      .image-container.what-we-do {
        background-image: url(../img/what-we-do-image-r.jpg);
        background-position: center top;
      }

      .image-container.planning-a-funeral {
        background-image: url(../img/planning-a-funeral-image-r.jpg);
      }

      .image-container.the-sanctuary {
        background-image: url(../img/the-sanctuary-image-r.jpg);
      }

      .image-container.supporting-celebrants {
        background-image: url(../img/supporting-celebrants-image-r.jpg);
      }

      .image-container.divine-online {
        background-image: url(../img/divine-online-image-r.jpg);
      }

  }


.content-container {
  float: left;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 25px;
}

.wrapper {
  float: left;
  width: 100%;
  position: relative;
}

.wrapper.before-indent {
  padding-bottom: 35px;
}

.wrapper.after-indent {
  padding-top: 35px;
}

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

  .wrapper {
    padding: 20px;
  }

  .wrapper.after-indent {
    padding-top: 70px;
  }

}

.wrapper.white {
  background: #fff url(../img/texture-03.jpg) center repeat;
  background-size: 600px;
}

.wrapper.brown {
  background: #d2cbbe url(../img/texture-01.jpg) center repeat;
  background-size: 600px;
}

.wrapper.purple {
  background: #565a99 url(../img/texture-02.jpg) center repeat;
  background-size: 600px;
}

.wrapper.dark-purple {
  background: #565a99 url(../img/texture-04.jpg) center repeat;
  background-size: 600px;
}

.wrapper.purple p {
  color: #fff;
}

.wrapper.what-we-do {
  background: #d2cbbe url(../img/home-what-we-do-image.jpg) center top no-repeat;
  background-size: cover;
}

.wrapper.dark-purple p,
.wrapper.dark-purple h3,
.wrapper.dark-purple address,
.wrapper.what-we-do p {
  color: #fff;
}

.wrapper.dark-purple a:hover,
.wrapper.dark-purple p a:hover {
  color: #fff;
}

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

    .wrapper.circle-01:after {
      content: "";
      background: url(../img/large-circle.png) center top no-repeat;
      background-size: auto;
      background-size: 50%;
      display: block;
      width: 50%;
      height: 160px;
      bottom: 0;
      position: absolute;
    }

    .wrapper.circle-02:after {
      content: "";
      background: url(../img/large-circle.png) center top no-repeat;
      background-size: auto;
      background-size: 50%;
      display: block;
      width: 70%;
      height: 160px;
      bottom: 0;
      right: -10%;
      position: absolute;
    }

    .wrapper.what-we-do {
      padding: 50px 0 75px;
      background-image: url(../img/home-what-we-do-image-r.jpg);
        max-width: 1280px;
        float: none;
        display: inline-block;
        margin: 0 auto -10px;
    }

    .wrapper.what-we-do h2 {
      margin-bottom: 50px;
    }

    .butterflies {
      background: url(../img/butterflies.png) center no-repeat;
      background-size: contain;
      position: absolute;
      width: 580px;
      height: 580px;
      z-index: 1;
      top: 30px;
      right: -215px;
      opacity: 0!important;
      transition: opacity 0.25s ease-in-out;
    }

    .butterflies.aos-animate {
      opacity: 0.3!important;
    }

    .butterflies.alt {
      top: -300px;
    }

  }

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

      .butterflies.aos-animate {
        opacity: 0.8!important;
      }

  }


.wrapper.trustmarks {
  background: #fff;
  border-bottom: 1px solid rgba(173,173,173,0.5);
}

.wrapper.trustmarks img {
  width: 100%;
  max-width: 140px;
  margin: 25px 0;
}

.indent {
  position: relative;
  z-index: 1;
  margin: -35px 25px;
  float: left;
  width: calc(100% - 50px);
}

.signpost-grid h2 {
  margin: 0 0 25px;
}

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

    .indent {
      margin: -68px 25px;
    }

    .wrapper.trustmarks img {
      margin: 37px;
    }

  }



.signpost-grid.more-space {
  display: inline-block;
  padding: 25px;
  margin: 0;
}

.signpost {
  float: left;
  width: 100%;
}

.signpost-content {
  float: left;
  width: 100%;
  background-color: #261636;
  padding: 25px;
}

.signpost-content h2,
.signpost-content p {
  color: #fff;
  float: left;
  width: 100%;
}

.signpost-content .content-container {
  margin: 0;
  padding: 0;
  float: none;
}

.signpost-content.blue {
  color: #fff;
  background-color: #5e87a7;
}

.signpost-content.green {
  color: #fff;
  background-color: #a9ae6b;
}

.signpost-content.coral {
  color: #fff;
  background-color: #ec5e52;
}

.signpost-content.purple {
  color: #fff;
  background-color: #575b9b;
}

.more-space {
  float: left;
  width: 100%;
  margin: 25px 0;
}


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

  .signpost-grid {
    max-width: 820px;
    margin: 0 auto;
    float: none;
  }

  .signpost img {
    display: none;
  }

  .signpost .signpost-content {
    float: right;
    width: 50%;
    padding: 25px 25px 35px;
  }

  .signpost:nth-of-type(even) .signpost-content {
    float: left;
    width: 50%;
  }

    .signpost.half-size .signpost-content {
      float: left;
    }

  .signpost .pic-container {
    background-size: contain;
    background-repeat:  no-repeat;
    background-position: top 30px left;
    float: left;
    width: 100%;
    transition: background-position 0.4s ease-out 0.2s;
  }

    .signpost.aos-animate .pic-container {
      background-position: top 0px left;
    }

  .signpost:nth-of-type(even) .pic-container {
    background-position: top 30px right;
  }

    .signpost:nth-of-type(even).aos-animate .pic-container {
      background-position: top 0px right;
    }

  .signpost-content .content-container {
    min-height: 270px;
  }

  .signpost-content .content-container.no-button {
    min-height: 287px;
  }

  .signpost.planning .pic-container {
    background-image: url(../img/pic-grid-01.jpg);
  }

  .signpost.sanctuary .pic-container {
    background-image: url(../img/pic-grid-02.jpg);
  }

  .signpost.care .pic-container {
    background-image: url(../img/care.jpg);
  }

  .signpost.facilitation .pic-container {
    background-image: url(../img/facilitation.jpg);
  }

  .signpost.practicalities .pic-container {
    background-image: url(../img/practicalities.jpg);
  }

  .signpost.celebrants .pic-container {
    background-image: url(../img/celebrants.jpg);
  }

  .signpost.celebrations .pic-container {
    background-image: url(../img/celebrations.jpg);
  }

  .signpost.support .pic-container {
    background-image: url(../img/support.jpg);
  }

  .signpost.events .pic-container {
    background-image: url(../img/events.jpg);
  }

  .signpost.care02 .pic-container {
    background-image: url(../img/care02.jpg);
  }

  .signpost.divine-online .pic-container {
    background-image: url(../img/pic-grid-divine-online.jpg);
  }

}

img.bio-pic {
  width: 100%;
  max-width: 157px;
  margin: 0 0 17px;
}

h2.bio {
  margin: 0 0 4px;
}

main address {
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
}

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

  .signpost-grid.more-space {
    margin: 0 auto 40px;
    padding: 0;
  }

  .more-space {
    margin: 10px 0 25px;
  }

  .signpost-grid h2 {
    margin: 20px 0;
  }

}

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

  main address {
    font-size: 16px;
    line-height: 23px;
  }

  .signpost-grid h2 {
    margin: 20px 0 35px;
  }

}

.contact-block {
  display: table;
  color: #fff;
  background: #42285e url(../img/large-circle-02.png) center no-repeat;
  background-size: 90%;
  width: 100%;
}

.contact-container {
  display: table-cell;
  vertical-align: middle;
  padding: 25px;
}

.contact-block,
.contact-container {
  height: calc(100vh - 136px);
}

main .contact-container p,
main .contact-container address {
  font-size: 20px;
  line-height: 1.3;
}

main .contact-container a {
  font-weight: bold;
}

main .contact-container a:hover,
main .contact-container a:focus,
main .purple a:hover,
main .purple a:focus {
  color: #fff;
}

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

  .contact-container-2 {
    width: 608px;
    margin: 0 auto;
  }

  main .contact-container p {
    font-size: 30px;
    line-height: 1.3;
    margin: 0 0 30px;
  }

  main .contact-container address {
    font-size: 17px;
    line-height: 1.3;
  }

  main .contact-container p a {
    font-weight: normal;
  }

}

.lower-image {
  position: relative;
  float: left;
  width: 100%;
}

.lower-image:after {
  content: "";
  display: block;
  position: absolute;
  background: transparent url(../img/large-circle-02.png) center no-repeat;
  background-size: 85%;
  width: 100%;
  top: 0;
  bottom: 0;
}

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

  .lower-image {
    margin: 25px 0;
  }

}

/* /////////////////////////////////////////////////////////////////////
/ main
///////////////////////////////////////////////////////////////////// */

/* /////////////////////////////////////////////////////////////////////
Spotlight styles
///////////////////////////////////////////////////////////////////// */

.spotlight-wrapper {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.spotlight {
  color: #fff;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 20px;
}

.spotlight br {
  display: none;
}

.spotlight img {
  margin: 0;
}

.spotlight.caring {
  background-image: url(../img/spotlight-caring.jpg);
}

.spotlight.divine {
  background-image: url(../img/spotlight-divine.jpg);
}

.spotlight.train {
  background-image: url(../img/spotlight-train.jpg);
}

.spotlight.share {
  background-image: url(../img/spotlight-share.jpg);
}

.spotlight.candle {
  background-image: url(../img/spotlight-candle.jpg);
}

.spotlight p.testimonial {
  font-family: "noto-serif", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

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

  .spotlight br {
    display: block;
  }

  .spotlight .button {
    margin: 25px 0 15px;
  }

}

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

  .spotlight-wrapper .large-10 .spotlight {
    transition: all 0.5s ease-in-out;
  }

  .spotlight-wrapper .large-10:nth-of-type(1) .spotlight {
    padding-bottom: 40px;
    transform: translateX(0);
  }

  .spotlight-wrapper .large-10:nth-of-type(2) .spotlight {
    margin-top: -20px;
    transform: translateX(0);
  }

    .spotlight-wrapper .large-10.aos-animate:nth-of-type(1) .spotlight {
      transform: translateX(-46px);
    }

    .spotlight-wrapper .large-10.aos-animate:nth-of-type(2) .spotlight {
      transform: translateX(46px);
    }

  .spotlight-wrapper .large-10.aos-animate .spotlight {
    transform: translateX(0);
  }

  .spotlight-wrapper .large-10 .spotlight br {
    display: none;
  }

}

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

  .spotlight {
    padding: 20px 35px;
  }

    .spotlight.no-button {
      padding-bottom: 40px;
    }

  main .spotlight p {
    font-size: 15px;
    line-height: 22px;
  }

  .spotlight p.testimonial {
    font-family: "noto-serif", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 23px;
  }

}

.spotlight-special {
  float: left;
  width: 100%;
  padding: 25px;
}

.spotlight-special.coral {
  background: #ec5e52;
}

.spotlight-special h2 {
  margin: 0 0 25px;
}

.spotlight-special.coral h2 {
  color: #fff;
}

/* divine online spotlight */

.spotlight-special .coming-soon {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background: #ec5e52;
  padding: 2px 9px;
  margin: 0 0 15px;
}

.spotlight-special.divine-online {
  background: url(../img/divine-online-spotlight.jpg) center no-repeat;
  background-size: cover;
}

.spotlight-special.divine-online h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 6px;
}

.spotlight-special.divine-online p:not(.coming-soon) {
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
}

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

  .wrapper.above {
    position: relative;
    z-index: 1;
  }

  .wrapper.above + .wrapper.intro {
    padding-top: 50px;
  }

  .spotlight-special {
    display: table;
    height: 360px;
    transition: all 0.3s ease-in-out;
    transform: translateY(0px);
    opacity: 0;
    margin: 25px 0;
  }

  .aos-animate .spotlight-special {
    opacity: 1;
  }

  .spotlight-special.divine-online {
    transition-delay: 0.1s;
  }

  .spotlight-special .container {
    display: table-cell;
    vertical-align: middle;
    padding: 0 0 20px;
  }

  .spotlight-special h2.circle {
    padding-top: 60px;
  }

  .spotlight-special.divine-online h2 {
    font-size: 42px;
  }

  .spotlight-special.divine-online p:not(.coming-soon) {
    margin: 0 auto;
    max-width: 300px;
    font-size: 18px;
    line-height: 23px;
  }

}

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

  .spotlight-special {
    margin: 0 0 -100px;
  }

  .aos-animate .spotlight-special {
    transform: translateY(-50px);
  }

}

/* /////////////////////////////////////////////////////////////////////
/ Spotlight styles
///////////////////////////////////////////////////////////////////// */

.order-of-service {
  margin: 25px 0 0;
  text-align: left;
  padding: 25px;
  background: #fff url(../img/texture-03.jpg) center repeat;
  background-size: 600px;
}

.order-of-service h3 {
  color: #261636;
  margin: 0 0 8px;
  text-align: left;
}

.order-of-service p {
  color: #261636!important;
}

.order-of-service hr {
  border-color: #ec5e52;
  margin-left: 0;
}

.order-of-service-pic {
    margin: -52px 0 45px;
}

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

  .order-of-service-pic {
      margin: -15px auto 45px;
      max-width: 320px;
  }

}

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

  .order-of-service {
    margin: 35px 0 50px;
    padding: 25px;
    height: 360px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .order-of-service-pic {
    margin: 0;
    max-width: inherit;
  }

}

/* /////////////////////////////////////////////////////////////////////
Tabs
///////////////////////////////////////////////////////////////////// */

.tabs-container {
  margin: 25px; 
}

.tabs {
  border: none;
  background: #fff;
  font-size: 0;
  padding: 20px 25px 0;
}

.tabs a:focus {
  border: none;
  outline: none;
}

.tabs-title {
  float: none;
  display: inline-block;
  background: #fff;
  width: 100%;
}

.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 14px;
  line-height: 1;
  color: #ec5e52;
  font-weight: bold;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #ececec;
}

.tabs-title > a:hover {
    color: #ec5e52;
}

.tabs-title:first-of-type a {
  border-top: 1px solid #ececec;
}

.tabs-title > a:focus,
.tabs-title > a[aria-selected="true"] {
  color: #000;
  background: #fff url(../img/texture-03.jpg) center repeat;
  font-weight: normal;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.tabs-panel {
  display: block;
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.6s ease-in-out 0s;
}

.tabs-panel.is-active {
    opacity: 1;
    height: auto;
}

.tabs-content {
  color: #261636;
  padding: 25px;
  border: none;
}

.tabs-content p.large {
  font-weight: bold;
}

.tabs-content img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 25px;
}

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

  .tabs {
    background: transparent;
    padding: 0;
  }

  .tabs-title {
    width: auto;
    background: transparent;
  }

  .tabs-title > a,
  .tabs-title:first-of-type a,
  .tabs-title > a:focus,
  .tabs-title > a[aria-selected="true"] {
    border: none;
    font-weight: bold;
  }

  .tabs-title > a {
    transition: all 0.3s ease-in-out;
  }

  .tabs-title > a:hover,
  .tabs-title > a:focus,
  .tabs-title > a[aria-selected="true"] {
    background: #fff;
  }

}

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

  .tabs-container {
      margin: 25px auto;
      text-align: left;
      max-width: 820px;
  }

  .tabs-title > a {
    color: #42285e;
  }

  .tabs-title > a,
  .tabs-title:first-of-type a,
  .tabs-title > a:focus,
  .tabs-title > a[aria-selected="true"] {
    font-weight: normal;
    font-size: 18px;
    line-height: 1;
  }

  .tabs-title > a:focus,
  .tabs-title > a[aria-selected="true"] {
    font-weight: bold;
    color: #ec5e52;
  }

  .tabs-content {
    padding: 60px 70px 45px;
  }

  .tabs-content p {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 2.3rem;
  }

  .tabs-content p.large {
    color: #42285e;
    font-family: "noto-serif", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 26px;
    line-height: 1.4;
    margin: 0 0 2.5rem;
  }

  .tabs-content p.large-02 {
    color: #42285e;
    font-family: "noto-serif", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 2.3rem;
  }

  .tabs-content p:last-of-type:after {
    content: "";
    display: table;
    background: url(../img/circle-coral.png) center top no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    margin: 16px 0 0;
  }

  .tabs-content img {
    width: calc(50% - 25px);
    max-width: inherit;
    margin: 3px 25px 25px 0;
    float: left;
  }

  .tabs-content img.float-right {
    margin: 3px 0 25px 35px;
    float: right;
  }

}

/* /////////////////////////////////////////////////////////////////////
/ tabs
///////////////////////////////////////////////////////////////////// */

/* /////////////////////////////////////////////////////////////////////
Footer
///////////////////////////////////////////////////////////////////// */

.columns.footer-logo,
.columns.footer-nav {
  display: none;
}

footer {
  float: left;
  width: 100%;
  padding: 25px 25px 50px;
  text-align: center;
}

footer a {
  transition: color 0.25s ease-in-out;
}

footer p,
footer ul,
footer address {
  font-size: 11px;
  line-height: 15px;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 10px;
}

footer p.no-margin {
  margin-bottom: 10px;
}

footer span {
  color: #ec5e52;
}

footer.alt .logo {
  display: none;
}

footer .soc-med {
  text-align: center;
}

footer .soc-med a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid #f2f2f2;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  margin: 20px 5px 0px;
  text-indent: -10000em;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}

footer .soc-med a:hover {
  background-color: #fff;
}

footer .soc-med a.facebook {
  background-image: url(../img/soc-med-facebook.png);
}

footer .soc-med a.twitter {
  background-image: url(../img/soc-med-twitter.png);
}

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

  .columns.footer-logo,
  .columns.footer-nav {
    display: block;
  }

  footer {
    padding: 40px 25px;
    text-align: left;
  }

  .columns.footer-logo {
    width: 30%;
  }

  .columns.footer-logo .logo {
    float: left;
  }

  .columns.footer-logo .logo a {
    display: block;
    margin: -2px 0 0 65px;
    max-width: 173px;
  }

  .columns.footer-nav {
    width: 20%;
  }

  .columns.footer-address {
    width: 50%;
  }

  footer p,
  footer address {
    margin: 0 0 10px;
  }

  footer p.no-margin {
    margin-bottom: 0;
  }

  footer ul {
    list-style: none;
    margin: 0;
  }

  footer ul li {
    margin: 0 0 3.7px;
  }

  footer ul a {
    color: #261636;
  }

  footer ul a:hover {
    color: #ec5e52;
  }

    footer.alt {
      text-align: center;
    }

    footer.alt .logo {
      display: block;
      width: 100%;
      max-width: 190px;
      margin: -2px auto 30px;
      padding: 0 0 0 17px;
    }

    footer.alt .logo a {
      display: block;
    }

    footer .soc-med a {
      margin: 45px 7px 20px;
    }

}

/* /////////////////////////////////////////////////////////////////////
/ footer
///////////////////////////////////////////////////////////////////// */

/* /////////////////////////////////////////////////////////////////////
back to top button
///////////////////////////////////////////////////////////////////// */

.back-to-top-zone {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 147px;
}

a.back-to-top {
  position: fixed;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 100%;
  z-index: 3000;
  right: 14px;
  bottom: 20px;
  display: block;
  text-indent: -1000em;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

a.back-to-top:hover {
  background: #261636;
}

a.back-to-top {
  opacity: 0;
}

a.back-to-top:after {
  border-color: #ec5e52;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: '';
  display: block;
  height: 10px;
  left: 10px;
  position: relative;
  top: -10px;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 10px;
}

a.back-to-top:hover:after {
  border-color: #fff;
}

.top-button-appear a.back-to-top {
  opacity: 1;
}

.top-button-appear.mobile-menu-on a.back-to-top {
  opacity: 0;
}


/* /////////////////////////////////////////////////////////////////////
/ back to top button
///////////////////////////////////////////////////////////////////// */



/* /////////////////////////////////////////////////////////////////////
reveal overlay glitch
///////////////////////////////////////////////////////////////////// */

body.is-reveal-open,
.reveal-overlay {
  width: 100%!important;
}

@media screen and (max-width: 39.9375em) {
  .is-reveal-open .reveal,
  .reveal {
    top: 0!important;
  }
}

/* /////////////////////////////////////////////////////////////////////
/ reveal overlay glitch
///////////////////////////////////////////////////////////////////// */



/* /////////////////////////////////////////////////////////////////////
Slick slider styles
///////////////////////////////////////////////////////////////////// */

.slider {

}

.slider.slick-initialized {
  visibility: visible!important;
}

.slider {
  width: auto;
  margin: 0 25px 35px;
}

/* slider */

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* from slick-theme.css */

.slick-loading .slick-list {
    background: #fff url(../img/ajax-loader.gif) center center no-repeat;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    
}

.slick-prev:before {
   
}

.slick-next {
   
}

.slick-next:before {
   
}

.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:before {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    content: "";
    border: 1px solid #ec5e52;
    background: #fff;
    border-radius: 20px;
    transition: all 0.2s ease-out;
}

.slick-dots li.slick-active button:before {
    background: #ec5e52;
    border-color: #ec5e52;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    border: 5px solid #ec5e52;
}

/* extra Slick styles */

.slider {
  background: #42285e url(../img/large-circle-02.png) center no-repeat;
  background-size: 90%;
}

.slick-slide {
  background: transparent;
  color: #fff;
  padding: 25px 30px;
  text-align: center;
}

.slick-prev:before, .slick-next:before {
  color: black;
}

.slick-slide p {
  font-family: "noto-serif", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

.slick-slide p:before,
.slick-slide p:after {
  display: block;
  font-size: 60px;
  line-height: 1;
}

.slick-slide p:before {
  content: "“";
}

.slick-slide p:after {
  content: "”";
  margin: 20px 0 0;
}

.slick-slide p.quotee {
  font-weight: normal;
  font-size: 15px;
  line-height: 1.1;
}

.slick-slide p.quotee:before,
.slick-slide p.quotee:after {
  display: none;
}

.slick-slide p br {
  display: none;
}

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

  .slider {
    margin: 0 0 50px;
    background-image: none;
  }

  .slick-dots {
    margin: 10px 0;
  }

  .slider,
  .slick-list,
  .slick-track {
    height: calc(100vh - 188px);
    min-height: 440px;
  }

  .slick-slide {
    padding: 0;
  }

  .slick-slide div {
    display: table;
    width: 100%;
    height: 100%;
  }

  .slick-slide div div {
    width: 100%;
    display: table-cell!important;
    vertical-align: middle;
    height: 100%;
  }

  .slick-slide div div span {
    display: block;
    margin: 0 auto;
    max-width: 840px;
  }  

  .slick-slide p {
    font-size: 31px;
    line-height: 1.34;
  }

  .slick-slide p br {
    display: block;
  }

  .slick-prev,
  .slick-next {
    z-index: 1;
    width: 50px;
    height: 50px;
  }

  .slick-prev:before,
  .slick-next:before {
    border-color: #fff;
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: block;
    height: 40px;
    left: 18px;
    position: relative;
    top: 0;
    transform: rotate(-135deg);
    vertical-align: top;
    width: 40px;
    opacity: 1;
  }

  .slick-next:before {
    transform: rotate(45deg);
    left: -10px;
  }

  .slick-prev {
    left: 25px;
  }

  .slick-next {
    right: 25px;
  }

      /* variations */

      .slick-slide .one {
        background: #42285e url(../img/large-circle-02.png) center no-repeat;
        background-size: 700px;
        color: #fff;
      }

      .slick-slide .two {
        background: #ec5e52 url(../img/large-circle-02.png) center no-repeat;
        background-size: 1100px;
        color: #fff;
      }

        .slick-slide .two p:before,
        .slick-slide .two p:after {
          color: #261636;
        }

      .slick-slide .three {
        background: #fff url(../img/texture-05.jpg) center no-repeat;
        background-size: cover;
        color: #42285e;
      }

        .slick-slide .three p:before,
        .slick-slide .three p:after {
          color: #bbb3bb;
        }

      .slick-slide .four {
        background: #6066ac url(../img/large-circle-02.png) center no-repeat;
      }

        .slick-slide .four p:before,
        .slick-slide .four p:after {
          color: #e4ddcf;
        }

      .slick-slide .five {
        background: #261636 url(../img/large-circle-02.png) center no-repeat;
        background-size: 1100px;
      }

        .slick-slide .five p:before,
        .slick-slide .five p:after {
          color: #ec5e52;
        }

      .slick-slide .six {
        background: #261636 url(../img/texture-06.jpg) center no-repeat;
        background-size: cover;
        color: #261636;
      }

        .slick-slide .six p {
          max-width: 700px;
          margin: 0 auto;
        }

        .slick-slide .six p:before,
        .slick-slide .six p:after {
          color: #bbb3bb;
        }

      .slick-slide .seven {
        background: #5e85a7 url(../img/large-circle-02.png) center no-repeat;
        background-size: 1100px;
        color: #fff;
      }

        .slick-slide .seven p:before,
        .slick-slide .seven p:after {
          color: #261636;
        }

      .slick-slide .eight {
        background: #5e85a7 url(../img/texture-07.jpg) center no-repeat;
        background-size: cover;
        color: #261636;
      }

        .slick-slide .eight p:before,
        .slick-slide .eight p:after {
          color: #6066ac;
        }

}


/* /////////////////////////////////////////////////////////////////////
/ Slick slider styles
///////////////////////////////////////////////////////////////////// */

/* /////////////////////////////////////////////////////////////////////
AOS - animate on scroll effect
///////////////////////////////////////////////////////////////////// */


/* ////////// aos-fix */

#page img {
  height: 0;
}

#page.on img {
  height: auto;
}

@media screen and (min-width: 1024px) {
  #page img {
    height: auto;
  }
}

/* ////////// /aos-fix */

/* AOS fade */

/*[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transform: translateY(50px);
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateY(0);
}*/

          /* aos boxes affected by scroll behaviour get this */

          [data-aos^=fade][data-aos^=fade] {
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
            opacity: 0;
            transform: translateX(0);
          }

          [data-aos^=fade][data-aos^=fade].aos-animate {
              opacity: 1;
              transform: translateX(0);
          }

          /* all then, if you're Chrome */

  /* AOS delay styles */

  [data-aos^=fade][data-aos^=fade].delay-1 {
    transition-delay: 0.1s;
  }

  [data-aos^=fade][data-aos^=fade].delay-2 {
    transition-delay: 0.2s;
  }

  [data-aos^=fade][data-aos^=fade].delay-3 {
    transition-delay: 0.3s;
  }

  [data-aos^=fade][data-aos^=fade].delay-4 {
    transition-delay: 0.4s;
  }

  [data-aos^=fade][data-aos^=fade].delay-5 {
    transition-delay: 0.55s;
  }

  [data-aos^=fade][data-aos^=fade].delay-6 {
    transition-delay: 0.6s;
  }

  [data-aos^=fade][data-aos^=fade].delay-7 {
    transition-delay: 0.7s;
  }

  [data-aos^=fade][data-aos^=fade].delay-8 {
    transition-delay: 0.8s;
  }

  [data-aos^=fade][data-aos^=fade].delay-9 {
    transition-delay: 0.9s;
  }

  [data-aos^=fade][data-aos^=fade].delay-10 {
    transition-delay: 1s;
  }

/* / AOS fade in from left to right */


/* /////////////////////////////////////////////////////////////////////
   / AOS - animate on scroll effect
///////////////////////////////////////////////////////////////////// */

.marker {
  display: none;
}

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

    .marker {
      display: block;
      position: relative;
      top: -210px;
      width: 0;
      height: 0;
    }

      .marker.in-wrapper {
        top: -200px;
      }

    .marker:focus {
      outline: none;
    }
}

