.mySlides {display: none;}
.slideimg-right {
  /* vertical-align: middle; */
  /* max-width: 500px; */
  /* min-width: 600px; */
  /* margin-left:40%; */
  /* margin-top: 5%; */
  /* float:right; */
  /* margin-right: 6%; */
  vertical-align: middle;
  max-width: 600px;
  /* min-width: 600px; */
  /* margin-left: 40%; */
  margin-top: 5%;
  float: right;
  margin-right: 6%;
}

.slideimg-left {
     /* vertical-align: middle; */
     /* max-width: 400px; */
     /* min-width: 400px; */
     /* margin-left: 6%; */
     /* margin-top: 0%; */
     vertical-align: middle;
     max-width: 600px;
     /* min-width: 600px; */
     /* margin-left: 40%; */
     margin-top: 7%;
     /* float: right; */
     margin-right: %;
     margin-left: 10%;
}

.slidetext {
  vertical-align: middle;
  margin-top: 0;
}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  height: 700px;
  position: relative;
  margin: 0 auto;
}

.text-center-slide {
    color: #f2f2f2;
    padding: 8px 12px;
    position: absolute;
    top: 23%;
    width: 60%;
    margin-left: 20%;
    margin-right: 25%;
    text-align: center;
}

.text-center-slide img{
    max-width:500px
}

/* Caption text */
.text-left {
  color: #f2f2f2;
  padding: 8px 12px;
  position: absolute;
  top:25%;
  bottom: 30%;
  right: 48%;
  width: 40%;
  text-align: left;
  background-color: rgba(34, 34, 34, 0.5);
  padding: 20px;
  height: 250px;
}



/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text-right {
  color: #f2f2f2;
  padding: 8px 12px;
  position: absolute;
  top: 40%;
  bottom: 30%;
  left: 52%;
  width: 40%;
  /* text-align: right !important; */
  background-color: rgba(34, 34, 34, 0.5);
  padding: 20px;
  /* height: 250px; */
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 20px;
  width: 20px;
  margin: 0 2px;
  background-color: #222;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active2{
  background-color: #ffd504;
  cursor: pointer;
}

.dot:hover{
  background-color: #9ea0a2;
  cursor: pointer;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-name: slideInLeft;
    animation-duration: 1s;   
    animation-timing-function: ease-in-out;        
    visibility: visible !important;
    /* New code here: */
    /*animation-delay: 3s !important;*/
	
  /*-webkit-animation-name: slideInLeft;
  -webkit-animation-duration: 1s;
  animation-name: slideInLeft;
  animation-duration: 1s;
  animation-delay: 3s;*/
}

.slideInRight{
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.2s;
  animation-name: slideInRight;
  animation-duration: 1.2s;
}


@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/*********** ANIMATION CONTROL - IGNORE BELOW ************************************************/
@-webkit-keyframes bgPos {
	25% {
		-webkit-transform: translate3d(-150px, -150px, 0) rotate(0.001deg);
		transform: translate3d(-150px, -150px, 0) rotate(0.001deg)
	}
	75% {
		-webkit-transform: translate3d(0, 0, 0) rotate(0.001deg);
		transform: translate3d(0, 0, 0) rotate(0.001deg)
	}
}
@keyframes bgPos {
	25% {
		-webkit-transform: translate3d(-150px, -150px, 0) rotate(0.001deg);
		transform: translate3d(-150px, -150px, 0) rotate(0.001deg)
	}
	75% {
		-webkit-transform: translate3d(0, 0, 0) rotate(0.001deg);
		transform: translate3d(0, 0, 0) rotate(0.001deg)
	}
}
.order-negative-2 {
	-ms-flex-order: -2; 
	order: -2
}
.animated {
	-webkit-animation-duration: .7s;
	animation-duration: .7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	opacity: 1
}
.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}
.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}
html:not(.lt-ie10) .not-animated {
	opacity: 0
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 40px, 0);
		transform: translate3d(0, 40px, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 40px, 0);
		transform: translate3d(0, 40px, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -40px, 0);
		transform: translate3d(0, -40px, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -40px, 0);
		transform: translate3d(0, -40px, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-40px, 0, 0);
		transform: translate3d(-40px, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-40px, 0, 0);
		transform: translate3d(-40px, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(40px, 0, 0);
		transform: translate3d(40px, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(40px, 0, 0);
		transform: translate3d(40px, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}
@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}
@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
  -webkit-animation-duration: 1.2s;
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
	-webkit-animation-duration: 1.2s;
}
@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: hidden !important;
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		visibility: visible !important;
	}
}
@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
/*.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}*/
@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
/*.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}*/
@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}
@keyframes slideOutDown {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}
.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}
@-webkit-keyframes pagInX {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}
@keyframes pagInX {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}
@-webkit-keyframes pagOutX {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}
@keyframes pagOutX {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}
/*End Animation Control*/

/**** IMG CIRCLE ANIMATION ***/

.circle {
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-left: -40px;
    position: absolute;
    border: 3px dashed #c3c3c3;
    animation: spin 20s linear infinite;
}

.circle2 {
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-left: -15px;
    position: absolute;
    margin-top: 25px;
    border: 3px dashed #c3c3c3;
    animation: spin2 25s linear infinite;
}

@keyframes spin { 
  100% { 
    transform: rotateZ(360deg);
  }
}

@keyframes spin2 { 
  100% { 
    transform: rotateZ(-360deg);
  }
}


@media only screen and (max-width: 740px) {
	.circle {
    width: 200px;
    height: 200px;
	margin-left: -20px;
}

.circle2 {
    width: 150px;
    height: 150px;
	margin-left: 5px;
}

.slideshow-container {
  height:600px;
}

.slideimg-left {
    vertical-align: middle;
    max-width: 450px;
    min-width: 100px;
    margin-left: 6%;
    margin-top: 60%;
}

.slideimg-right {
  /* vertical-align: middle; */
  max-width: 360px;
  min-width:100px;

  margin-left: -30%;
  margin-top: 50%;
}

.text-right {
    color: #f2f2f2;
    padding: 8px 12px;
    position: absolute;
    top: 20%;
    /* bottom: 30%; */
    left: 15%;
    width: 80%;
    text-align: left;
    margin-block-start: 0em;
    vertical-align: middle;
    max-width: 250px;
    min-width: 100px;
    margin-right: 0%;
    width: 100%;
    left: 0%;
    margin-top: -3%;
    height: 40%;
}

.text-left {
    vertical-align: middle;
    max-width: 250px;
    min-width: 100px;
    margin-right: 0%;
    width: 100%;
    left: 0%;
    margin-top: -33%;
}

.text-left h1 {
	font-size:25px;
}
.text-center-slide {
    color: #f2f2f2;
    /* padding: 8px 12px; */
    position: absolute;
    top: 10%;
    /* bottom: 15%; */
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
}

.text-center-slide img{
    max-width:300px
}

}