@charset "UTF-8";

/**
 * Theme Name: Pop Slide
 * Version: 1.0.0
 * Theme URL: http://sequencejs.com/themes/pop-slide/
 *
 * A colorful sliding theme for feature images, with highlighted pagination
 * and drop-in titles.
 *
 * This theme is powered by Sequence.js - The
 * responsive CSS animation framework for creating unique sliders,
 * presentations, banners, and other step-based applications.
 *
 * Author: Ian Lunn
 * Author URL: http://ianlunn.co.uk/
 *
 * Theme License: http://sequencejs.com/licenses/#free-theme
 * Sequence.js Licenses: http://sequencejs.com/licenses/
 *
 * Copyright © 2015 Ian Lunn Design Limited unless otherwise stated.
 */


body,
html,
.seq {
  /* Uncomment to make the theme full-screen */
  /* height: 100% !important; */
  /* max-height: 100% !important; */
}

.seq {
  position: relative;
  /* Dimensions */
  height: 500px;
  width: 100%;
  max-width: 100%;
  /* Hide anything that goes beyond the boundaries of the Sequence container */
  overflow: hidden;
  /* Center the Sequence container on the page */
  margin: 0;
  padding: 0;
}

.seq.seq-active .seq-preloader {
  background: black;
}

.seq .seq-preload-circle {
  fill: #008c34;
}

.seq .seq-pagination {
  visibility: hidden;
  position: absolute;
  z-index: 10;
  bottom: 10px;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  font-size: 0;
  font-weight: 600;
  text-align: center;
}

.seq .seq-pagination > * {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 1%;
  cursor: pointer;
  background: #00a038;
  /* Image replacement */
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  /* Hardware accel */
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.seq .seq-pagination > *.seq-current {
  background: #666;
}

.seq .seq-pagination > * a {
  display: block;
	font-size: 0;
  width: 100%;
  height: 100%;
}

.seq .seq-screen,
.seq .seq-canvas,
.seq .seq-canvas > * {
  /* Reset the canvas and steps for more browser consistency */
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.seq .seq-canvas {
  /**
   * Make the canvas the same dimensions as the container and prevent lines
   * from wrapping so each step can sit side-by-side
   */
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 0;
}

.seq .seq-canvas > * {
  /* Make the steps the same size as the container and sit side-by-side */
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  font-size: 16px;
  background-size: auto 82%;
	background-repeat: no-repeat;
  background-position: top center;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.seq .seq-step1 {
  background-image: url("/images/slider/seq1_2023.jpg");
}
.seq .seq-step2 {
  background-image: url("/images/slider/seq2_2023.jpg");
}
.seq .seq-step3 {
  background-image: url("/images/slider/seq3_2023.jpg");

}
.seq .seq-step4 {
  background-image: url("/images/slider/seq4.jpg");

}
.seq .seq-step5 {
  background-image: url("/images/slider/seq5.jpg");

}


.seq small {
  /* Image credits */
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  color: white;
}

.seq small a {
  color: white;
}

.seq small a:hover {
  text-decoration: none;
}

.seq .seq-title {
  display: block;
  position: relative;
  z-index: 3;
  top: 250px;
  left: 50%;
  width: 90%;
  margin-left: -47%;
  padding: 2%;
  line-height: 1.2;
  background: rgba( 255, 255, 255, .5 );
  text-align: center;
}

.seq .seq-title h2 {
	font-family: 'Mr Dafoe', cursive;
	  font-weight: normal;
	  color: #000;
  margin: 0 0 .4em 0;
  font-size: 30px;
}

.seq .seq-title .seq-button {
  position: relative;
  bottom: -6px;
  padding: .5em .8em;
  background: #666;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.seq .seq-title .seq-button:focus,
.seq .seq-title .seq-button:hover {
  background: #da0013;
  color: white;
}

.seq.seq-active {
  /* When JS is enabled */
}

.seq.seq-active .seq-pagination {
  visibility: visible;
}

.seq.seq-active .seq-title {
  bottom: 70px;
}

@media only screen and (min-width: 400px) {
	.seq {
		margin: 0 0 -20px 0;
	}
	
}


@media only screen and (min-width: 750px) {
  .seq {
    /* Make the container 16:9 but no bigger than 90% of the screen height */
  }

  .seq:before {
    /* Make an element a certain aspect ratio */
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
  }

  .seq .seq-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .seq .seq-pagination > * {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    list-style: none;
    width: auto;
    height: auto;
    margin: 0 1%;
    padding: 10px 1%;
    cursor: pointer;
    line-height: 1.4;
    background: #00a038;
    color: white;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-property: width;
    transition-property: width;
  }

  .seq .seq-pagination > * a {
    /* Overflow text with an ellipsis (...) */
	  font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
    text-decoration: none;
  }

  .seq .seq-pagination > *.seq-current {
    background: #666;
  }
}

@media only screen and (min-width: 750px) {
	
.seq {
    position: relative;
    height: auto;
    max-height: 90vh;
    min-height: 360px;
  margin: 0;
	}
	
.seq .seq-canvas > * {
  background-size: cover;
}

	.seq.seq-active .seq-title {
    bottom: auto;
    -webkit-transform: translateY(-300%) translateZ(0);
    -ms-transform: translateY(-300%) translateZ(0);
    transform: translateY(-300%) translateZ(0);
  }

  .seq .seq-title {
    width: 50%;
    top: 12%;
    left: 5%;
	  background: none;
    margin-left: 0;
	  text-align: left;
    bottom: auto;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
    transition-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
  }

	  .seq .seq-left {
    left:-50% !important;
    
  }

  .seq .seq-title .seq-button {
    position: absolute;
    left: 10%;
    bottom: -40px;
    display: inline-block;
  }

  .seq .seq-title h2 {
	  font-weight: normal;
	  color: #fff;
    margin: 0 0 .6em 0;
    padding: .4em;
    font-size: 60px !important;
    line-height: 120%;
    text-align: left;
	  text-shadow: 0px 0px 8px black
		            }
	
	.seq-title .seq-variant-bl {
		color:#000 !important
	}


  .seq small {
    top: auto;
    bottom: 10px;
  }

  .seq.seq-active small {
    bottom: 70px;
  }

  .seq .seq-in {
    /* Animate in positions for content */
  }

  .seq .seq-in .seq-title {
    -webkit-transform: translateY(0) translateZ(0);
    -ms-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
  }

  .seq .seq-out {
    /* Animate out positions for content */
  }

  .seq .seq-out .seq-title {
    -webkit-transform: translateY(0) translateZ(0);
    -ms-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
  }
}


@media (max-width:1024px) {
	.seq .seq-title h2 { font-size: 42px !important }
	
}

@media (max-width:750px) {
	.seq { margin-bottom: -40px; height: 520px }
	.seq .seq-canvas > * {
  background-size: auto 79%;  }
	.seq .seq-title { top:410px; }
	.seq .seq-title h2 { font-size: 30px !important }
	.seq .seq-pagination {
		bottom: 120px; }

}

@media (max-width:680px) {
	.seq { margin-bottom: -100px; height: 500px }
	.seq .seq-canvas > * {
  background-size: auto 70%;  }
	.seq .seq-title { top:350px;
	}
	.seq .seq-pagination {
		bottom: 170px; }
}

@media (max-width:480px) {
	.seq { margin-bottom: -190px }
	.seq .seq-canvas > * {
  background-size: auto 50%;  }
	.seq .seq-title { top:250px;
	}
	.seq .seq-title h2 { font-size: 25px !important }
	.seq .seq-pagination {
		bottom: 260px; }
}

@media (max-width:400px) {
  .seq .seq-title h2 {
    font-size: 20px !important;
  }
}

/*# sourceMappingURL=sequence-theme.pop-slide.css.map */