@import url("https://fonts.googleapis.com/css?family=Montserrat+Alternates:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
.mont-font {
  font-family: "Montserrat Alternates", sans-serif; }

.modal1-container {
  margin: 60px auto;
  padding-top: 0px;
  position: relative;
  width: 100px;
  max-width: 500px; }
  .modal1-container .modal1-btn {
    display: block;
    margin: 0 auto;
    color: #fff;
    width: 160px;
    height: 50px;
    line-height: 50px;
    background: #446CB3;
    font-size: 22px;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 5px 5px -5px #333;
    transition: background 0.3s ease-in; }
    .modal1-container .modal1-btn:hover {
      background: #365690; }
  .modal1-container .modal1-content,
  .modal1-container .modal1-backdrop {
    height: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s ease-in; }
  .modal1-container .modal1-close {
    color: #aaa;
    position: absolute;
    right: 5px;
    top: 5px;
    padding-top: 3px;
    background: #fff;
    font-size: 16px;
    width: 25px;
    height: 25px;
    font-weight: bold;
    text-align: center;
    cursor: pointer; }
    .modal1-container .modal1-close:hover {
      color: #333; }
  .modal1-container .modal1-content-btn {
    position: absolute;
    text-align: center;
    cursor: pointer;
    bottom: 20px;
    right: 30px;
    background: #446CB3;
    color: #fff;
    width: 50px;
    border-radius: 2px;
    font-size: 14px;
    height: 32px;
    padding-top: 9px;
    font-weight: normal; }
    .modal1-container .modal1-content-btn:hover {
      color: #fff;
      background: #365690; }
  .modal1-container #modal1-toggle {
    display: none; }
    .modal1-container #modal1-toggle.active ~ .modal1-backdrop, .modal1-container #modal1-toggle:checked ~ .modal1-backdrop {
      background-color: rgba(0, 0, 0, 0.6);
      width: 100vw;
      height: 100vh;
      position: fixed;
      left: 0;
      top: 0;
      z-index: 9;
      visibility: visible;
      opacity: 1;
      transition: opacity 0.2s ease-in; }
    .modal1-container #modal1-toggle.active ~ .modal1-content, .modal1-container #modal1-toggle:checked ~ .modal1-content {
      opacity: 1;
      background-color: #fff;
      max-width: 800px;
      width: 100%;
      height: 280px;
      padding: 10px 30px;
      position: fixed;
      left: calc(50% - 400px);
      top: 20%;
      border-radius: 4px;
      z-index: 999;
      pointer-events: auto;
      cursor: auto;
      visibility: visible;
      box-shadow: 0 3px 7px rgba(0, 0, 0, 0.6); }
      @media (max-width: 800px) {
        .modal1-container #modal1-toggle.active ~ .modal1-content, .modal1-container #modal1-toggle:checked ~ .modal1-content {
          left: 0; } }

h1 {
  font-size: 32px; }

h2 {
  font-size: 26px; }

h3 {
  font-size: 18px; }

p {
  margin: 0 0 15px;
  line-height: 24px;
  color: gainsboro; }

a {
  color: dodgerblue;
  text-decoration: none;
  border-bottom: 1px dotted; }

a:hover {
  color: tomato; }

.container1 {
  max-width: 100%;
  height: 100%;
  margin: 0 auto; }
  @media screen and (max-width: 500px) {
    .container1 {
      display: none; } }

/* ------------------- */
/* PEN STYLES      -- */
/* ----------------- */
/* MAKE IT CUTE ----- */
.tabs {
  position: relative;
  display: flex;
  min-height: 450px;
  overflow: hidden;
  font-family: 'Montserrat Alternates', sans-serif; }

.tabby-tab {
  flex: 1; }

.tabby-tab label {
  display: block;
  box-sizing: border-box;
  height: 100px;
  padding: 20px 20px;
  text-align: center;
  color: #ffffff;
  background: #9768D1;
  cursor: pointer;
  vertical-align: middle;
  line-height: 1.2em;
  transition: background 0.5s ease; }

.tab-list {
  color: #ffffff;
  width: 50%;
  float: left;
  padding-left: 50px; }

.tab-list div {
  width: 100%;
  float: left; }

.tab-list div img {
  width: 20px;
  margin-top: 5px; }

.tabby-tab label:hover {
  background: #7B52AB; }

.tabby-content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  /* clear the tab labels */
  top: 100px;
  padding: 50px 50px;
  background: #553285;
  text-align: left;
  transition: opacity 0.8s ease, transform 0.8s ease;
  /* show/hide */
  opacity: 0; }

.tabby-content img {
  float: left;
  margin-right: 20px;
  border-radius: 8px; }

/* MAKE IT WORK ----- */
.tabby-tab [type=radio] {
  display: none; }

.tabby-tab [type=radio]:checked ~ label {
  background: #553285;
  z-index: 2; }

[type=radio]:checked ~ label ~ .tabby-content {
  z-index: 1;
  /* show/hide */
  opacity: 1; }

/* BREAKPOINTS ----- */
@media screen and (max-width: 767px) {
  .tabs {
    min-height: 400px; } }
@media screen and (max-width: 480px) {
  .tabs {
    min-height: 580px; }

  .tabby-tab label {
    height: 60px; }

  .tabby-content {
    top: 60px; }

  .tabby-content img {
    float: none;
    margin-right: 0;
    margin-bottom: 20px; } }
/*Acco*/
.ac-container {
  max-width: 100%;
  display: none; }
  @media screen and (max-width: 500px) {
    .ac-container {
      display: block; } }

.ac-container label {
  width: 100%;
  padding: 20px 20px;
  line-height: 21px !important;
  font-size: 1em !important;
  font-family: "Montserrat Alternates", sans-serif;
  position: relative;
  z-index: 20;
  display: block;
  cursor: pointer;
  color: #ffffff;
  background: #3a1053; }

.ac-container {
  width: 100%;
  margin: 10px auto 30px auto;
  text-align: left; }

.ac-container label:hover {
  background: #9768D1; }

.ac-container input:checked + label, .ac-container input:checked + label:hover {
  background: #9768D1;
  color: #ffffff;
  line-height: 21px;
  font-size: 13px; }

.ac-container label:hover:after, .ac-container input:checked + label:hover:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: 13px;
  top: 7px; }

.ac-container input {
  display: none; }

.ac-container article {
  background: #553285;
  margin-top: -1px;
  overflow: hidden;
  height: 0;
  position: relative;
  z-index: 10;
  -webkit-transition: height 0.3s ease-in-out;
  -moz-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  -ms-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out; }

.ac-container article p {
  font-style: normal;
  color: #ffffff;
  line-height: 23px;
  font-size: 10px;
  padding: 20px;
  font-family: "Montserrat Alternates", sans-serif; }

.ac-container input:checked ~ article {
  -webkit-transition: height 0.5s ease-in-out,box-shadow 0.1s linear;
  -moz-transition: height 0.5s ease-in-out,box-shadow 0.1s linear;
  -o-transition: height 0.5s ease-in-out,box-shadow 0.1s linear;
  -ms-transition: height 0.5s ease-in-out,box-shadow 0.1s linear;
  transition: height 0.5s ease-in-out,box-shadow 0.1s linear;
  box-shadow: 0 0 0 1px rgba(155, 155, 155, 0.3); }

.ac-container input:checked ~ article.ac-small {
  height: 100%; }

.ac-container input:checked ~ article.ac-medium {
  height: 100%; }

.ac-container input:checked ~ article.ac-large {
  height: 1000%; }

.vid-title {
  font-size: 1.5em;
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  line-height: 1.3em;
  text-align: left; }

.vid-title hr {
  width: 85%;
  float: left;
  margin-top: 25px; }

.vid-title p {
  margin-top: 20px;
  font-size: 1em;
  color: #94cb45; }

.slider {
  width: 100%;
  height: 650px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media screen and (max-width: 500px) {
    .slider {
      height: 870px; } }

.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
  animation: check 0.4s linear forwards; }

.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%; }

.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%; }

.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%; }

.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap; }

.slider__contents {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.slider__image {
  font-size: 2.7rem;
  color: #2196F3; }

.slider__caption {
  font-weight: 500;
  margin: 2rem 0 1rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase; }

.slider__txt {
  color: #ffffff;
  margin-bottom: 10rem;
  width: 100%;
  font-family: "Montserrat Alternates", sans-serif;
  line-height: 2em;
  letter-spacing: 1px;
  text-align: left;
  font-size: 1em; }
  @media screen and (max-width: 500px) {
    .slider__txt {
      font-size: .8em; } }

.slider__nav {
  display: none !important; }

.label_item {
  opacity: 0.5; }

.slider__nav:checked + label {
  opacity: 1; }

.label_item {
  cursor: pointer;
  outline: none;
  margin: 0px 20px 0px 20px;
  z-index: 100000; }

.label_item img {
  width: 80px; }
  @media screen and (max-width: 500px) {
    .label_item img {
      width: 50px; } }

.label_item:focus {
  outline: none; }

.name {
  float: right;
  margin-right: 10%;
  font-size: 1.5em;
  font-style: italic; }
  @media screen and (max-width: 500px) {
    .name {
      font-size: 1em; } }
