/* Scss Document */
/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Scss Document */
#hero {
  min-height: 600px;
  background-image: url("../img/pass.jpg");
  width: 100%;
  background-size: cover;
  background-color: rgba(27, 43, 86, 0.65);
  background-blend-mode: multiply;
  border-bottom: 7px solid #fbc531;
  background-position: 50% 20%;
  background-attachment: fixed; }
  #hero.location-hero {
    background-image: url("../img/steeple.jpg");
    background-color: transparent;
    min-height: 500px; }
  #hero.about-hero {
    background-image: url("../img/bible1.jpg");
    background-color: transparent;
    min-height: 400px; }
  #hero.services-hero {
    background-image: url("../img/cross.jpg");
    background-color: transparent;
    min-height: 400px; }

header {
  width: 100%;
  position: fixed;
  -webkit-transition: .1s all ease-in-out;
  -o-transition: .1s all ease-in-out;
  transition: .1s all ease-in-out;
  z-index: 6000000; }
  header.active {
    background: #1a1a1a; }
    header.active > #inner-header {
      padding: 10px; }
      header.active > #inner-header #inner-header-contents #logo img {
        max-width: 180px;
        -webkit-transition: .1s all ease-in-out;
        -o-transition: .1s all ease-in-out;
        transition: .1s all ease-in-out; }
  header #inner-header {
    padding: 15px 0; }
    header #inner-header #inner-header-contents {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      header #inner-header #inner-header-contents #menuBtn {
        display: none; }
      header #inner-header #inner-header-contents nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        header #inner-header #inner-header-contents nav a {
          text-decoration: none;
          color: #fff;
          font-family: "Fjalla One", sans-serif;
          font-size: 17px;
          margin: 0 10px;
          letter-spacing: .5px;
          text-transform: uppercase;
          padding-bottom: 3px;
          border-bottom: 1px solid transparent;
          -webkit-transition: .2s all ease-in-out;
          -o-transition: .2s all ease-in-out;
          transition: .2s all ease-in-out; }
          header #inner-header #inner-header-contents nav a:hover {
            border-bottom: 1px solid #fbc531;
            color: #fbc531; }

#top-call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem 0; }
  #top-call h1, #top-call h2 {
    color: #fff; }
  #top-call h1 {
    font-size: 54px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 5px 0;
    letter-spacing: 1px; }
  #top-call h2 {
    font-size: 34px;
    margin: 5px 0;
    font-family: "Merriweather", serif;
    font-style: italic; }
  #top-call #top-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px -10px 5px; }
    #top-call #top-btns a {
      text-decoration: none; }
      #top-call #top-btns a .btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px 60px;
        border: 3px solid transparent;
        font-size: 21px;
        -webkit-transition: .2s all ease-in-out;
        -o-transition: .2s all ease-in-out;
        transition: .2s all ease-in-out;
        background: #d8a20e;
        color: #1a1a1a;
        margin: 0 10px; }
        #top-call #top-btns a .btn:hover {
          color: #fff;
          border: 3px solid #fff; }

@media all and (max-width: 800px) {
  #hero {
    min-height: 350px; }

  header {
    position: relative; }
    header #inner-header #inner-header-contents #header-left #logo img {
      max-width: 180px; }
    header #inner-header #inner-header-contents #menuBtn {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
      padding: 15px;
      border-radius: 50%;
      z-index: 100;
      font-size: 24px;
      margin-top: 5px;
      -webkit-transition: .15s all ease-in-out;
      -o-transition: .15s all ease-in-out;
      transition: .15s all ease-in-out;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
      header #inner-header #inner-header-contents #menuBtn i {
        color: #fbc531;
        -webkit-transition: .15s all ease-in-out;
        -o-transition: .15s all ease-in-out;
        transition: .15s all ease-in-out; }
      header #inner-header #inner-header-contents #menuBtn.active > i {
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg); }
      header #inner-header #inner-header-contents #menuBtn:hover {
        cursor: pointer; }
    header #inner-header #inner-header-contents nav {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      border-top: 2px solid #fbc531;
      padding-bottom: 0;
      width: 100%;
      min-height: 100vh;
      position: fixed;
      background: #1b2b56;
      left: -100vw;
      top: 0;
      -webkit-transition: .15s all ease-in-out;
      -o-transition: .15s all ease-in-out;
      transition: .15s all ease-in-out; }
      header #inner-header #inner-header-contents nav #dropNav {
        display: none; }
      header #inner-header #inner-header-contents nav a {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 40px 10px;
        color: #fff;
        width: auto;
        text-align: center;
        width: 100%;
        font-size: 17px; }
        header #inner-header #inner-header-contents nav a:hover {
          background: #fff;
          color: #1b2b56; }
    header #inner-header #inner-header-contents nav.mobile {
      left: 0; }

  .spacer {
    display: none; }

  #top-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    #top-call h1 {
      font-size: 34px;
      font-weight: 700;
      text-transform: uppercase;
      margin: 5px 0;
      letter-spacing: 1px; }
    #top-call h2 {
      font-size: 24px;
      margin: 5px 0;
      font-family: "Merriweather", serif;
      font-style: italic; }
    #top-call #top-btns {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 40px -10px 5px; }
      #top-call #top-btns a .btn {
        padding: 15px 40px;
        border: 2px solid transparent;
        font-size: 19px; }
        #top-call #top-btns a .btn:hover {
          border: 2px solid #fff; } }
footer #inner-footer {
  background: #2e2e2e;
  padding: 40px 0; }
  footer #inner-footer #inner-footer-contents #top-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    footer #inner-footer #inner-footer-contents #top-footer .footer-section {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin: 10px; }
      footer #inner-footer #inner-footer-contents #top-footer .footer-section p {
        text-transform: uppercase;
        font-family: "Open Sans", sans-serif;
        color: #fff;
        letter-spacing: 1px;
        margin: 5px 0;
        line-height: 1.3;
        font-size: 14px; }
        footer #inner-footer #inner-footer-contents #top-footer .footer-section p a {
          text-decoration: none;
          color: inherit; }
          footer #inner-footer #inner-footer-contents #top-footer .footer-section p a:hover {
            color: #ffde4a; }

@media all and (max-width: 800px) {
  footer #inner-footer #inner-footer-contents #top-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    footer #inner-footer #inner-footer-contents #top-footer img {
      max-width: 240px; }
    footer #inner-footer #inner-footer-contents #top-footer .footer-section {
      margin: 10px; } }
#map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  #map iframe#location-map {
    min-width: 90%;
    height: 300px;
    padding: 20px;
    background: #fff;
    margin-top: -50px; }

#location-info {
  margin: 40px 0;
  text-align: center; }
  #location-info h1 {
    font-family: "Fjalla One", sans-serif;
    color: #1a1a1a;
    font-size: 21px;
    margin: 5px 0;
    line-height: 1.3; }
  #location-info p {
    font-size: 28px;
    margin: 10px 0;
    line-height: 1.3;
    font-style: italic;
    font-family: "Merriweather", serif; }
    #location-info p:nth-of-type(2) {
      font-family: "Fjalla One", sans-serif;
      font-size: 22px;
      margin: 5px 0;
      font-style: normal; }

#directions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 20px 0; }
  #directions .direction-list {
    margin: 0 40px; }
    #directions .direction-list h1 {
      font-family: "Fjalla One", sans-serif;
      font-size: 17px;
      color: #dda713;
      padding-bottom: 5px;
      border-bottom: 1px solid #1a1a1a;
      width: auto;
      margin-bottom: 5px; }
    #directions .direction-list p {
      margin: 5px 0;
      font-family: "Open Sans", sans-serif;
      font-size: 15px;
      max-width: 35ch; }

@media all and (max-width: 800px) {
  #location-info h1 {
    font-size: 18px; }
  #location-info p {
    font-size: 24px; }
    #location-info p:nth-of-type(2) {
      font-size: 19px; }

  #directions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    #directions .direction-list {
      margin: 15px 0; } }
/* Scss Document */
#events-info {
  margin: 20px 0; }
  #events-info h1 {
    margin: 20px 0 10px;
    font-size: 46px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 3px; }
  #events-info h2 {
    font-family: "Merriweather", serif;
    margin: 10px 0;
    font-size: 32px;
    font-style: italic;
    color: #d8a20e;
    letter-spacing: 1px; }
  #events-info p {
    font-family: "Merriweather", serif;
    font-size: 17px;
    color: #1a1a1a;
    margin: 5px 0;
    letter-spacing: 1px;
    line-height: 1.2; }

#events-bg {
  height: 350px;
  width: 100%;
  background-image: url("../img/cross.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  color: #fff;
  text-align: center; }
  #events-bg h1 {
    font-size: 36px;
    padding: 10px;
    color: #fbc531; }
  #events-bg p {
    font-size: 18px;
    line-height: 1.4;
    max-width: 80%;
    margin: 10px 0; }

#events {
  text-align: center; }
  #events h1 {
    margin: 20px 0 10px;
    font-size: 46px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 3px; }
  #events h2 {
    font-family: "Merriweather", serif;
    margin: 10px 0;
    font-size: 32px;
    font-style: italic;
    color: #d8a20e;
    letter-spacing: 1px; }
  #events p {
    font-family: "Merriweather", serif;
    font-size: 17px;
    color: #1a1a1a;
    margin: 5px 0;
    letter-spacing: 1px;
    line-height: 1.2; }

body {
  font-family: "Fjalla One", sans-serif;
  overflow-x: hidden;
  background: #f1f1ee; }

a:hover {
  cursor: pointer; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; }

#main #inner-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  #main #inner-main .dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 5px auto; }
    #main #inner-main .dots .dot {
      height: 7px;
      width: 7px;
      background: #1a1a1a;
      margin: 0 5px;
      border-radius: 50%; }
  #main #inner-main #main-left, #main #inner-main #main-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    #main #inner-main #main-left .section, #main #inner-main #main-right .section {
      padding: 15px;
      background: #fff;
      width: 100%; }
      #main #inner-main #main-left .section img, #main #inner-main #main-right .section img {
        width: 100%; }
        #main #inner-main #main-left .section img#frontimg, #main #inner-main #main-right .section img#frontimg {
          margin-top: 10px; }
  #main #inner-main #main-left {
    margin: 0 30px 0 0; }
    #main #inner-main #main-left h1#welcome {
      font-family: "Merriweather", serif;
      font-weight: 700;
      font-size: 54px;
      font-style: italic;
      margin: 25px 0;
      color: #1a1a1a; }
      #main #inner-main #main-left h1#welcome span {
        letter-spacing: 2px;
        font-family: "Fjalla One", sans-serif;
        font-size: 58px;
        font-style: normal;
        text-transform: uppercase;
        color: #d8a20e; }
    #main #inner-main #main-left #services {
      text-align: center; }
      #main #inner-main #main-left #services h1 {
        margin: 20px 0 10px;
        font-size: 46px;
        text-transform: uppercase;
        color: #1a1a1a;
        font-weight: 700;
        letter-spacing: 3px; }
      #main #inner-main #main-left #services h2 {
        font-family: "Merriweather", serif;
        margin: 10px 0;
        font-size: 32px;
        font-style: italic;
        color: #d8a20e;
        letter-spacing: 1px; }
      #main #inner-main #main-left #services p {
        font-family: "Merriweather", serif;
        font-size: 17px;
        color: #1a1a1a;
        margin: 5px 0;
        letter-spacing: 1px;
        line-height: 1.2; }
    #main #inner-main #main-left #join-us {
      text-align: center;
      margin: 20px 0; }
      #main #inner-main #main-left #join-us h2 {
        font-size: 26px;
        font-family: "Merriweather", serif;
        line-height: 1.7;
        color: #1a1a1a; }
      #main #inner-main #main-left #join-us #map-zoom {
        height: 300px;
        width: calc(100% - 5px);
        background-image: url("../img/Capture.JPG");
        background-size: 170%;
        -webkit-transition: .3s all ease-in-out;
        -o-transition: .3s all ease-in-out;
        transition: .3s all ease-in-out;
        background-position: center;
        position: relative;
        margin: 20px 0;
        border: 3px solid transparent; }
        #main #inner-main #main-left #join-us #map-zoom p {
          display: none; }
        #main #inner-main #main-left #join-us #map-zoom:hover {
          background-size: 120%;
          background-color: rgba(26, 26, 26, 0.6);
          background-blend-mode: multiply;
          border: 3px solid #fbc531; }
          #main #inner-main #main-left #join-us #map-zoom:hover > p {
            display: block;
            position: absolute;
            top: 50%;
            left: 36%;
            text-align: center;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            color: #ffd945;
            text-decoration: none;
            font-size: 42px; }
  #main #inner-main #main-right {
    margin: -50px 30px 0; }
    #main #inner-main #main-right iframe {
      width: 100%;
      height: 280px; }
    #main #inner-main #main-right #info {
      margin: 20px 0; }
      #main #inner-main #main-right #info h1 {
        text-align: center;
        color: #1a1a1a;
        font-size: 36px;
        margin: 10px 0;
        letter-spacing: 1px; }
        #main #inner-main #main-right #info h1:nth-of-type(2) {
          color: #d8a20e;
          font-weight: 700; }
      #main #inner-main #main-right #info p {
        font-family: "Merriweather", serif;
        line-height: 1.5;
        margin: 10px 0;
        color: #1a1a1a; }
  #main #inner-main .main-full {
    padding: 3rem 0; }
    #main #inner-main .main-full h1 {
      font-family: "Merriweather", serif;
      font-weight: 700;
      font-size: 54px;
      font-style: italic;
      margin: 25px 20px;
      color: #1a1a1a; }
    #main #inner-main .main-full .main-full-info {
      padding: 1rem 0;
      display: flex; }
      #main #inner-main .main-full .main-full-info .about {
        flex: 2;
        margin: 0 20px; }
        #main #inner-main .main-full .main-full-info .about p {
          font-family: "Merriweather", serif;
          line-height: 2;
          color: #1a1a1a;
          text-align: justify;
          margin: 10px 0; }
      #main #inner-main .main-full .main-full-info aside {
        margin: 10px 20px;
        flex: 1; }
        #main #inner-main .main-full .main-full-info aside p {
          font-family: "Open Sans", sans-serif;
          border-left: 1px solid #1a1a1a;
          padding-left: 10px;
          line-height: 1.8;
          font-style: italic;
          font-size: 15px; }

#scroll-bg-img {
  min-height: 350px;
  width: 100%;
  background-image: url("../img/smile.jpg");
  background-size: cover;
  background-color: rgba(27, 43, 86, 0.4);
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 80px 0 20px;
  border-top: 6px solid #fbc531;
  border-bottom: 6px solid #fbc531; }
  #scroll-bg-img.events-bg-img {
    background-image: url("../img/happy.jpg");
    height: 300px;
    background-color: rgba(27, 43, 86, 0.6); }
  #scroll-bg-img h1 {
    font-family: "Fjalla One", sans-serif;
    font-size: 38px;
    letter-spacing: 2px;
    color: #ffd945;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    padding: 20px 0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff; }

@media all and (max-width: 800px) {
  #main #inner-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    #main #inner-main #main-left {
      margin: 10px 30px 10px 10px; }
      #main #inner-main #main-left h1#welcome {
        font-family: font3;
        font-weight: 700;
        font-size: 38px;
        font-style: italic;
        margin: 25px 0;
        color: #1a1a1a; }
        #main #inner-main #main-left h1#welcome span {
          letter-spacing: 2px;
          font-family: "Fjalla One", sans-serif;
          font-size: 42px;
          font-style: normal;
          text-transform: uppercase;
          color: #d8a20e; }
      #main #inner-main #main-left #services {
        text-align: center; }
        #main #inner-main #main-left #services h1 {
          margin: 20px 0 10px;
          font-size: 38px;
          text-transform: uppercase;
          color: #1a1a1a;
          font-weight: 700;
          letter-spacing: 3px; }
        #main #inner-main #main-left #services h2 {
          font-family: "Merriweather", serif;
          margin: 10px 0;
          font-size: 28px;
          font-style: italic;
          color: #d8a20e;
          letter-spacing: 1px; }
        #main #inner-main #main-left #services p {
          font-family: "Merriweather", serif;
          font-size: 16px;
          color: #1a1a1a;
          margin: 5px 0;
          letter-spacing: 1px;
          line-height: 1.2; }
      #main #inner-main #main-left #join-us {
        text-align: center;
        margin: 20px 0; }
        #main #inner-main #main-left #join-us h2 {
          font-size: 22px;
          font-family: "Merriweather", serif;
          line-height: 1.7;
          color: #1a1a1a; }
        #main #inner-main #main-left #join-us #map-zoom {
          min-height: 280px;
          width: calc(100% - 5px);
          background-image: url("../img/Capture.JPG");
          background-size: 170%;
          -webkit-transition: .3s all ease-in-out;
          -o-transition: .3s all ease-in-out;
          transition: .3s all ease-in-out;
          background-position: center;
          position: relative;
          margin: 20px 0;
          border: 3px solid transparent; }
          #main #inner-main #main-left #join-us #map-zoom p {
            display: none; }
          #main #inner-main #main-left #join-us #map-zoom:hover {
            background-size: 120%;
            background-color: rgba(26, 26, 26, 0.6);
            background-blend-mode: multiply;
            border: 3px solid #fbc531; }
            #main #inner-main #main-left #join-us #map-zoom:hover > p {
              display: block;
              position: absolute;
              top: 50%;
              left: 36%;
              text-align: center;
              -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
              transform: translateY(-50%);
              color: #ffd945;
              text-decoration: none;
              font-size: 42px; }
    #main #inner-main #main-right {
      margin: 0 30px 10px 10px; }
      #main #inner-main #main-right iframe {
        width: 100%;
        height: 280px; }
      #main #inner-main #main-right #info {
        margin: 20px 0; }
        #main #inner-main #main-right #info h1 {
          text-align: center;
          color: #1a1a1a;
          font-size: 36px;
          margin: 10px 0;
          letter-spacing: 1px; }
          #main #inner-main #main-right #info h1:nth-of-type(2) {
            color: #d8a20e;
            font-weight: 700; }
        #main #inner-main #main-right #info p {
          font-family: "Merriweather", serif;
          line-height: 1.5;
          margin: 10px 0;
          color: #1a1a1a; }
    #main #inner-main .main-full .main-full-info {
      flex-direction: column;
      justify-content: center; }

  #scroll-bg-img {
    height: 200px; }
    #scroll-bg-img h1 {
      font-size: 22px; } }

/*# sourceMappingURL=main.css.map */
