.content {
   /*background-color: rgb(206, 225, 250);
   grid-column: full-start/full-end;

   display: grid;
   grid-template-columns: 1fr repeat(6, minmax(min-content, 14rem)) 1fr;
 }*/
  list-style: none;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
  grid-column: center-start/center-end;
  grid-gap: 2rem; }

.information {
  grid-column: 2/8;
  display: grid;
  grid-template-columns: minmax(autofit, 1fr);
  background-color: white;
  grid-row-gap: 4rem;
  padding: 4rem; }
  .information__image {
    width: 100%;
    height: auto;
    grid-column: 1/2; }
  .information__title {
    grid-column: 2/-1;
    padding-left: 4rem; }
  .information__copy {
    grid-column: 1/-1; }

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%;
   /*@media only screen and (max-width: $bp-largest) {
        font-size: 90%;
    }

    @media only screen and (max-width: $bp-medium) {
        font-size: 80%;
    }*/ }

body {
  font-family: "Nunito", sans-serif;
  color: #e6e6e6;
  font-weight: 700;
  line-height: 1.6rem;
  background-color: #c7c7c7; }

.container {
  background-image: url(../Images/GodRays.jpg);
  display: grid;
  grid-template-rows: auto auto auto minmax(4rem, 1fr) auto;
  grid-template-columns: [full-start] minmax(2rem, 1fr) [center-start] repeat(6, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(2rem, 1fr) [full-end]; }
  @media only screen and (max-width: 56.25em) {
    .container {
      grid-template-rows: auto auto auto minmax(4rem, 1fr) auto;
      grid-template-columns: [full-start] minmax(2rem, 1fr) [center-start] repeat(6, [col-start] minmax(min-content, auto) [col-end]) [center-end] minmax(2rem, 1fr) [full-end]; } }

.biblestudy {
  list-style: none;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-column: center-start/center-end;
  grid-gap: 2rem; }
  .biblestudy__link:link, .biblestudy__link:visited {
    font-size: 2rem;
    line-height: 3rem;
    color: #0f2f92;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
    text-align: left;
    margin-left: 10rem;
    padding: 1.5rem;
    display: block;
    transition: all .2s; }
  .biblestudy__link:hover, .biblestudy__link:active {
    background-color: rgba(61, 17, 219, 0.1);
    transform: translateY(-3px); }
  .biblestudy__text {
    color: #0f2f92;
    grid-column: center-start/center-end; }
  .biblestudy__list {
    margin-top: 2rem;
    font-size: 300; }
  .biblestudy__title {
    width: 100%;
    height: auto;
    padding: 3rem; }
  .biblestudy__intro {
    grid-column: 2/7;
    margin: 2rem; }

.carousel {
  max-width: 100%;
  height: auto;
  overflow: hidden; }
  .carousel__images {
    width: 500%;
    height: auto;
    display: flex; }
  .carousel__images input {
    display: none; }
  .carousel__item {
    width: 20%;
    transition: 1s; }
  .carousel__item img {
    width: 100%;
    height: auto; }

.navigation--manual {
  position: absolute;
  width: 100%;
  margin-top: -3rem;
  display: flex;
  justify-content: center; }

.manual--btn {
  border: 2px solid #fff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: .5s; }

.manual--btn:not(:last-child) {
  margin-right: 40px; }

.manual--btn:hover {
  background-color: #fff; }

#radio1:checked ~ .first {
  margin-left: 0; }

#radio2:checked ~ .first {
  margin-left: -20%; }

#radio3:checked ~ .first {
  margin-left: -40%; }

#radio4:checked ~ .first {
  margin-left: -60%; }

.navigation--auto {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  justify-items: center;
  margin-top: 20rem; }

.navigation--auto div {
  border: 2px solid #fff;
  padding: 5px;
  border-radius: 10px;
  transition: .5s; }

.navigation--auto div:not(:last-child) {
  margin-right: 40px; }

#radio1:checked ~ .navigation--auto .auto--btn1 {
  background-color: #fff; }

#radio2:checked ~ .navigation--auto .auto--btn2 {
  background-color: #fff; }

#radio3:checked ~ .navigation--auto .auto--btn3 {
  background-color: #fff; }

#radio4:checked ~ .navigation--auto .auto--btn4 {
  background-color: #fff; }

@keyframes fadeVisibility {
  0% {
    opacity: 0; }
  100% {
    opacity: 1;
    transform: opacity linear; } }
.features {
  background-color: #e6e6e6;
  color: grey;
  grid-column: center-start/center-end;
  margin: 2rem 0;
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 2rem; }
  .features .feature {
    text-decoration: none; }
    .features .feature__text {
      font-family: "Nunito", sans-serif;
      font-weight: 300;
      font-size: 1.7rem;
      color: #504f4f; }
    .features .feature__link:link, .features .feature__link:visited {
      display: inline-block;
      font-size: 1.4rem;
      line-height: 1.6rem;
      padding: 1rem 2rem;
      font-weight: 300;
      color: #fff;
      text-decoration: none;
      background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
      background-size: 250%;
      transition: all .4s; }
    .features .feature__link:hover, .features .feature__link:active {
      background-position: 100%;
      color: #2a7d99;
      transform: translateX(1rem); }

.footer {
  background-color: #252525;
  grid-column: full-start/full-end;
  bottom: 0;
  padding: 8rem; }

.nav {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 2rem;
  align-items: center; }
  .nav__link:link, .nav__link:visited {
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
    text-align: center;
    padding: 1.5rem;
    display: block;
    transition: all .2s; }
  .nav__link:hover, .nav__link:active {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px); }

.copyright {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  padding: 6rem; }

.header {
  background-color: #504f4f;
  grid-column: full-start/full-end;
  background-image: url(../Images/cloudbackground.png);
  background-size: cover;
  display: grid;
  grid-template-columns: min-content auto; }
  .header__title {
    Font-size: 6rem;
    align-self: center;
    justify-self: center;
    line-height: 6rem; }
  .header__img {
    width: auto;
    height: 100%; }

@media only screen and (max-width: 56.25em) {
  .header__title {
    font-size: 4rem;
    line-height: 4rem; } }
@media only screen and (max-width: 25em) {
  .header__title {
    height: 1px;
    width: 1px;
    overflow: hidden; } }
.hero {
  max-width: 100%;
  height: 100%;
  background-color: #252525;
  grid-column: center-start/center-end;
  display: grid;
  grid-template-columns: 1fr; }

.lessonstudy {
  list-style: none;
  justify-content: center;
  display: grid;
  grid-column: center-start/center-end;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 2rem; }
  .lessonstudy__link:link, .lessonstudy__link:visited {
    font-size: 2rem;
    line-height: 3rem;
    color: #0f2f92;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
    text-align: left;
    margin-left: 10rem;
    padding: 1.5rem;
    display: block;
    transition: all .2s; }
  .lessonstudy__link:hover, .lessonstudy__link:active {
    background-color: rgba(61, 17, 219, 0.1);
    transform: translateY(-3px); }
  .lessonstudy__text {
    color: #0f2f92; }
  .lessonstudy__title {
    width: 100%;
    height: auto;
    grid-column: center-start/center-end; }

.heading__year {
  margin-top: 6rem;
  grid-column: center-start/center-end; }

.sidebar {
  /* background-color:  $color-background;
   grid-column: sidebar-start/sidebar-end;
  grid-row: 1/-1;

   //display: flex;
   justify-content: center;

  @media only screen and (max-width: $bp-large) {
    grid-column: full-start/full-end;
    height: 80px;
      //grid-column: 1/-1;
       //grid-row: 1/-1;
   }*/
        /*.nav-btn {
            border: none;
            border-radius: 0;

            background-color: #fff;
            height: 2px;
            width: 4.5rem;

            margin: 4rem 2rem;

            &::before,
            &::after {
                background-color: #fff;
            height: 2px;
            width: 4.5rem;
            content: "";
            display: block;
            }

            &::before{
                transform: translateY(-1.5rem);
            }

            &::after {
                transform: translateY(1.3rem);
            }

        }*/ }
  .sidebar__checkbox {
    display: none; }
  .sidebar__button {
    background-color: #2a7d99;
    height: 4rem;
    width: 4rem;
    position: fixed;
    top: 4rem;
    right: 4rem;
    border-radius: 50%;
    z-index: 200;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.8);
    text-align: center;
    cursor: pointer; }
  .sidebar__background {
    height: 3rem;
    width: 3rem;
    position: fixed;
    top: 4.5rem;
    right: 4.5rem;
    border-radius: 50%;
    background-image: radial-gradient(#55a4be, #2a7d99);
    z-index: 100;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
  .sidebar__nav {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    opacity: 0;
    width: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .sidebar__list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    width: 100%; }
  .sidebar__item {
    margin: 1rem; }
  .sidebar__link:link, .sidebar__link:visited {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 2rem;
    padding: 1rem 2rem;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
    background-size: 230%;
    transition: all .4s; }
  .sidebar__link:hover, .sidebar__link:active {
    background-position: 100%;
    color: #2a7d99;
    transform: translateX(1rem); }
  .sidebar__checkbox:checked ~ .sidebar__background {
    transform: scale(100); }
  .sidebar__checkbox:checked ~ .sidebar__nav {
    opacity: 1;
    width: 100%; }
  .sidebar__icon {
    position: relative;
    margin-top: 2rem; }
    .sidebar__icon, .sidebar__icon::before, .sidebar__icon::after {
      background-color: #fff;
      height: 2px;
      width: 2rem;
      display: inline-block; }
    .sidebar__icon::before, .sidebar__icon::after {
      content: "";
      position: absolute;
      left: 0;
      transition: all .2s; }
    .sidebar__icon::before {
      top: -.8rem; }
    .sidebar__icon::after {
      top: .8rem; }
  .sidebar__button:hover .sidebar__icon::before {
    top: -1.2rem; }
  .sidebar__button:hover .sidebar__icon::after {
    top: 1.2rem; }
  .sidebar__checkbox:checked + .sidebar__button .sidebar__icon {
    background-color: transparent; }
  .sidebar__checkbox:checked + .sidebar__button .sidebar__icon:before {
    top: 0;
    transform: rotate(135deg); }
  .sidebar__checkbox:checked + .sidebar__button .sidebar__icon:after {
    top: 0;
    transform: rotate(-135deg); }

.speakers {
  margin-top: 2rem;
  background-color: #504f4f;
  grid-column: center-start/center-end;
  display: grid;
  align-content: center;
  justify-content: center; }
  .speakers__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(min-content, 1fr));
    grid-gap: 4rem;
    justify-content: center;
    align-items: start;
    margin: 2rem; }
  .speakers__title {
    justify-content: center;
    padding-left: 3rem; }
  .speakers__1 {
    width: 100%;
    height: auto; }
  .speakers__2 {
    width: 100%;
    height: auto; }
  .speakers__3 {
    width: 100%;
    height: auto; }
  .speakers__image {
    width: 10rem;
    border-radius: 50%;
    display: block; }
    @media only screen and (max-width: 33.75em) {
      .speakers__image {
        width: 4rem; } }

.heading-1, .heading-2, .heading-3 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400; }

.heading-1 {
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 1rem 0;
  font-weight: 400; }
  .heading-1--light {
    color: #e6e6e6; }
  .heading-1--dark {
    color: #0f2f92; }

.heading-2 {
  font-size: 2rem;
  line-height: 2rem;
  margin: 1rem 0;
  font-weight: 400; }
  .heading-2--light {
    color: #e6e6e6; }
  .heading-2--dark {
    color: #0f2f92; }

.heading-3 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin: 1rem 0; }
  .heading-3--light {
    color: #e6e6e6; }
  .heading-3--dark {
    color: #0f2f92; }

.heading-4 {
  font-size: 6rem;
  font-weight: 700;
  margin: 2rem 3rem;
  line-height: 6rem;
  /* @media only screen and (max-width: $bp-largest) {
       font-size: 3rem;
   }*/ }
  .heading-4--light {
    color: #e6e6e6; }
  .heading-4--dark {
    color: #0f2f92; }

.p {
  font-weight: 300;
  font-size: 1rem; }

.video {
  grid-column: 3/6; }
  .video__heading-3 {
    color: #0f2f92; }
