@charset "utf-8";
/* CSS Document */


.timeline li:after, .tl-nav:after {
  content: "";
  display: table;
  clear: both;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

img {
  width: auto;
  height: auto;
  max-height: 100%;
}


/*** The timeline styles and structure ***/
.tl-wrapper {
  /* background: #e4f0f4; */
  min-height: 1px;
  position: relative;
  height:55vh !important;
  margin-top:20px;
  margin-left:12%;
  margin-right:12%;
  /* background-color: rgba(20,46,58,1.00); */
}

.timeline {
  position: relative;
  max-height:55vh !important;
  /* min-height:480px !important; */
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

/*** The items ***/
.tl-item {
  visibility: hidden;
  overflow: hidden;
  z-index: 0;
}
.tl-item .tl-copy {
  font-size: 1.5rem;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transform: translate3d(60%, 0, 0);
          transform: translate3d(60%, 0, 0);
  max-height:60vh !important;
  /*min-height:480px !important; */
}
.tl-item .tl-image {
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    width: 55% !important;
    height: 55vh !important;

    background-color: rgba(0,2,2,1.00);
    overflow-y: hidden;
}
	
.tl-item .tl-image img {
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    width: 55vmax;
    height: 55vmax;
    max-height: 100vh !important;
    /* min-height: 600px !important; */
    min-width: 480px !important;
    top: -30px;
    padding-top: 0px;
}	
	
.tl-item.tl-active {
  visibility: visible;
  z-index: 10;
  height:55vh !important;
  max-height:55vh !important;
 /* min-height:480px !important; */
}
.tl-item.tl-active .tl-copy {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.tl-item.tl-active .tl-image {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.tl-image {
  float: left;
}
	
.tl-image img {
    display: block;
}

.tl-copy {
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px;
  padding: 1rem;
  background: #289ecb;
  color: #fff;
}
.tl-copy-inner {
  height: 100%;
  overflow-y: auto;
  scrollbar-color: rgba(0,163,221,1.00);
  scrollbar-width: thin;
	
}

.tl-copy:after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: -19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 21px 20px 21px 0;
  border-color: transparent #289ecb transparent transparent;
}
	
.tl-copy, .tl-copy p {
  font-size:1.3vmax !important;
}
	
.tl-copy h3 {
  font-family: "Oswald", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size:1.7vmax !important;
}

.tl-description {

}
	
/*** The arrows for the items ***/
.tl-items-arrow-left,
.tl-items-arrow-right {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 40px;
  top: 50%;
  margin-top: -40px;
  z-index: 100;
}
.tl-items-arrow-left:before, .tl-items-arrow-left:after
 {
  content: "";
  display: block;
  position: absolute;
  /* left: -45px; */
  width: 28px;
  height: 2px;
  background: #fff;
}

.tl-items-arrow-right:before,
.tl-items-arrow-right:after {
  content: "";
  display: block;
  position: absolute;
  /* right: -45px; */
  width: 28px;
  height: 2px;
  background: #fff;
}



.tl-items-arrow-left {
  left: -45px !important;
}
.tl-items-arrow-left:before {
  top: 0;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.tl-items-arrow-left:after {
  bottom: 0;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.tl-items-arrow-right {
  right: -45px !important;
}
.tl-items-arrow-right:before {
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.tl-items-arrow-right:after {
  bottom: 0;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*** The nav's styles ***/
.tl-nav-wrapper {
    position: absolute;
    bottom: -110px;
    left: 0;
    margin: 0;
    padding: 4px 0 4px 0;
    /* border-top: 1px solid #b2e9ff; */
    overflow-x: hidden;
    width: 60%;
    z-index: 200 !important;
    background-color: rgba(20,46,58,0.60);
}
.tl-nav-wrapper:before, .tl-nav-wrapper:after {
    content: "";
    width: 28px;
    height: 75%;
    position: absolute;
    top: 8px;
    background: rgba(40,158,203,1.00);
    z-index: 50;
}
.tl-nav-wrapper:before {
  left: 0;
}
.tl-nav-wrapper:after {
  right: 0;
}

.no-csstransforms .tl-nav-wrapper {
  overflow-x: auto;
}

.tl-nav {
  width:80%;
  padding-left:50px;
  padding-right:50px;
  list-style: none;
  margin: 0;
  padding-top: 16px;
  border-top: 1px dashed #289ecb;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.tl-nav li {
  width: 70px;
  height: 70px;
  position: relative;
  float: left;
  cursor: pointer;
  margin-right: 1rem;
  font-size: 12px;
  text-align: center;
}
.tl-nav li div {
  width: 34px;
  height: 34px;
  margin: auto;
  background: #289ecb;
  color: #fff;
  padding-top: 9px;
  border-radius: 1000px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.tl-nav li:hover div, .tl-nav li.tl-active div {
    width: 55px;
    height: 55px;
    background: transparent;
    color: #b7ebff;
    border: 1px solid #FFF;
    font-size: 2vh;
    padding-top: 20%;
}

.tl-nav li:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -2px;
  background: #289ecb;
  border-radius: 1000px;
}
	
/*** The nav's nav styles ***/
.tl-nav-arrow-left,
.tl-nav-arrow-right {
  position: absolute;
  width: 12px;
  height: 20px;
  top: 40%;
  z-index: 100;
}
.tl-nav-arrow-left:before, .tl-nav-arrow-left:after,
.tl-nav-arrow-right:before,
.tl-nav-arrow-right:after {
/*  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  background: #289ecb; */
}

.tl-nav-arrow-left {
  left: 9px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  border: solid black;
  border-color:#FFF;
  border-width: 0 6px 6px 0;
  display: inline-block;
  padding: 6px;
}
/*.tl-nav-arrow-left:before {
  top: 0;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.tl-nav-arrow-left:after {
  bottom: 0;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
*/

.tl-nav-arrow-right {
  right: 9px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  border: solid black;
  border-color:#FFF;
  border-width: 0 6px 6px 0;
  display: inline-block;
  padding: 6px;

}
/*.tl-nav-arrow-right:before {
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.tl-nav-arrow-right:after {
  bottom: 0;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
*/
.no-csstransforms .tl-nav-arrow-left,
.no-csstransforms .tl-nav-arrow-right {
  display: none;
}

@media only screen and (max-width:1187px) {
	
.tl-wrapper {
  /* background: #e4f0f4; */
  min-height: 1px;
  position: relative;
  height:35vh !important;
  margin-top:20px;
  margin-left:12%;
  margin-right:12%;
  /* background-color: rgba(20,46,58,1.00); */
}


.tl-item .tl-copy {
  font-size: 1.5rem;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transform: translate3d(60%, 0, 0);
          transform: translate3d(60%, 0, 0);
  max-height:40vh !important;
  /*min-height:480px !important; */
}

.tl-item .tl-image {
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    width: 70% !important;
    height: 35vh !important;

    background-color: rgba(0,2,2,1.00);
    overflow-y: hidden;
}
	
.tl-item .tl-image img {
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    width: 55vmax;
    height: 35vmax;
    max-height: 100vh !important;
    /* min-height: 600px !important; */
    min-width: 480px !important;
    top: -30px;
    padding-top: 0px;
}	

.tl-item.tl-active {
  visibility: visible;
  z-index: 10;
  height:35vh !important;
  max-height:55vh !important;
 /* min-height:480px !important; */
}

.tl-nav-wrapper {
	width:80%;
}
	
}
	
@media only screen and (max-width: 1024px) {
	
.tl-wrapper {
  /* background: #e4f0f4; */
  min-height: 1px;
  position: relative;
  height:25vh !important;
  margin-top:20px;
  margin-left:12%;
  margin-right:12%;
  /* background-color: rgba(20,46,58,1.00); */
}


.tl-copy {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px;
  padding: 1rem;
  background: #289ecb;
  color: #fff;
}	
	
.tl-item .tl-copy {
  font-size: 1.5rem;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transform: translate3d(60%, 0, 0);
          transform: translate3d(60%, 0, 0);
  max-height:30vh !important;
  /*min-height:480px !important; */
}

.tl-item .tl-image {
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    width: 50% !important;
    height: 25vh !important;

    background-color: rgba(0,2,2,1.00);
    overflow-y: hidden;
}
	
.tl-item .tl-image img {
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    width: 55vmax;
    height: 25vmax;
    max-height: 100vh !important;
    /* min-height: 600px !important; */
    min-width: 480px !important;
    top: -30px;
    padding-top: 0px;
}	

.tl-item.tl-active {
  visibility: visible;
  z-index: 10;
  height:25vh !important;
  max-height:55vh !important;
 /* min-height:480px !important; */
}

	.tl-nav-wrapper {
		width: 100%;
	}
		
}