html {
  background-color: #97AABD;
  scroll-behavior: smooth;
  height:100%;
        
}

.body {
  background-color:#97AABD;
}
 
/* Navigation 
------------------------------------------*/

.title{
  display: inline;
  margin-right: 10px;
  font-size: 1.8vw;
  font-family: 'Amaranth', sans-serif;
  color:black;
}

.atitle{
  display: inline;
  margin-right: 10px;
  font-size: 1.8vw;
  font-family: 'Amaranth', sans-serif;
  color: white;
}

a {
  color:  #8c9497;
}

/* header */
/* nav color*/
.header {
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: 1.5vw;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;

}

.header li a {
  display: block;
  padding: 20px 20px;

  text-decoration: none;
  color: white;

}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #ccd3d9;
}

.header .active {
  display: block;
  float: left;
  padding: 13px 20px;
  text-decoration: none;
  color: white;
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: 2.4vw;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;

  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background:  white;
  display: block;
  height: 2px;
  position: relative;
  transition: .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background:  white;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 50em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }

  .header .menu {
      clear: none;
      float: right;
      max-height: none;
  }

  .header .menu-icon {
      display: none;
  }

  header {
      background-color: rgba(255, 255, 255, 0.4);
      background: transparent;
  }
}

@media (max-width:50em) {
  .header .active {
    font-size: 28px;
  }
}

@media (max-width:70em) {
  .header .active {
    font-size: 28px;
  }

  .header .menu {
    font-size: 18px;
  }

}

/* Layout of slideshow
------------------------------------------*/
.container {
  margin: 0 auto;
  width: 88%;
  max-width: 960px;
  margin-top:7%;
  position:relative;
  left:13%;
  background: #97AABD;
}

.wrapper {
  padding: 1em 0;
  background: #97AABD;
}


/*! Flickity v1.2.1
http://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}


/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}


/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: white;
}

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}


/* right to left */

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}


/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}


/* Flickity responsive
------------------------------------------*/

img {
  max-width: 90%;
  height: auto;
}

.flickity img {
  margin:0 auto;
  display:block;
}

.flickity div {
  width: 100%;
}

.flickity {
  margin-bottom: 2em;
  height: auto;
  margin-top:-5%;
}

.column1 h1 {
    font-family: 'Alegreya Sans SC', sans-serif;
    font-size: 5vw;
    position: absolute;
    top:20%;
    width:30%;
    left:3%;
    text-align: center;
    color: white;
    margin-top:10%;
}


.column1 {
  background-color:#97AABD;
}

.timeline {
  background-color:#97AABD;
  position:relative;
  padding-left:27%;
  padding-top:10%;
}

@media (max-width:87em) {
  .column1 h1 {
    left:3%;
  }

  .flickity {
    top:70%;
    left:5%;
    width:80%;
    height:70%;
  }

  .container {
    margin-left:-15%;
    padding-left:-15%;
    left:15%;
  }
}

@media (max-width:80em) {
  .column1 h1 {
    left:5%;
  }

  .flickity {
    top:70%;
    left:5%;
    width:70%;
    height:60%;
  }

  .container {
    margin-left:-15%;
    padding-left:-15%;
    left:20%;
  }
}


@media (max-width:72em) {
  .column1 h1 {
    left:5%;
  }

  .flickity {
    top:70%;
    left:5%;
    width:60%;
    height:50%;
  }

  .container {
    left:28%;
  }

  .timeline {
    padding-left:20%;
  }
}

@media (max-width:65em) {
  .column1 h1 {
    left:5%;
    font-size:55px;
    top:15%;
  }

  .flickity {
    top:75%;
    left:5%;
    width:65%;
    height:55%;
  }

  .container {
    left:28%;
  }

  .timeline {
    padding-left:15%;
  }
}

@media (max-width:52em) {
  .column1 h1 {
    font-size: 55px;
    left:12%;
    top:10%;
    width:80%;
  }

  br {
    display: none;
  }

  .flickity {
    top:60%;
    left:5%;
    width:70%;
    height:60%;
  }

  .container {
    margin-top: 40%;
    left:10%;
  }

  .timeline {
    padding-left:10%;
  }
}

@media (max-width:45em) {  
  .timeline {
    padding-left:5%;
    padding-right:5%;
  }
}

@media (max-width:38em) {
  .container {
    margin-top: 45%;
    left:10%;
  }

  .timeline {
    padding-left:5%;
    padding-right: 5%;
  }
}

@media (max-width:30em) {
  .container {
    margin-top: 65%;
    left:10%;
  }

  .timeline {
    padding-left:5%;
    padding-right: 5%;
  }
}
