.slide {
  position: relative;
  margin: 0;
  width: 100%;
  height: 400px;
  background: #082733;
  overflow: hidden;
}

.slide ul li {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  list-style: none;
  right: 0;
  margin: auto;
}

.slide .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 100%;
  z-index: 4;
  text-align: center;
}

.slide .dots li {
  display: inline-block;
  margin: 0 10px;
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	border-radius: 50%;
  opacity: 0.4;
	cursor: pointer;
	transition: background .5s, opacity .5s;
  list-style: none;
}

.slide .dots li.active {
  background: #fff;
	opacity: 1;
}

.slide .arrow {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background .5s, opacity .5s;
  pointer-events: none;
}

.slide .arrow .arrow-left,
.slide .arrow .arrow-right {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0.5;
	transition: background .5s, opacity .5s;
	pointer-events: all;
}

.slide .arrow  .arrow-left:hover,
.slide .arrow  .arrow-right:hover {
  opacity: 1;
}

.slide .arrow .arrow-left {
  left: 70px;
  background: url("arrow-left.png");
}

.slide .arrow .arrow-right {
  right: 70px;
  background: url("arrow-right.png");
}

@media screen and (max-width: 780px) {
	.slide .arrow .arrow-left,
	.slide .arrow .arrow-right {
		width: 25px;
		height: 25px;
		background-size: cover;
		bottom: 20px;
		top: auto;
	}
	.slide .arrow .arrow-left {
	  left: 20px;
	}

	.slide .arrow .arrow-right {
	  right: 20px;
	}	
	.slide .dots {
		bottom: 15px;
		margin: auto;
		width: calc(100% - 110px );
	}	
}


/* my slider */

.slide-content {
    position: absolute;
	width: 1200px;
    color: #fff;
    left: 0;
    right: 0;
    margin: auto;
    text-align: right;
    bottom: 0;
    top: 0;
    height: 170px;
    z-index: 3;
	opacity: 0;
	transition: .5s .75s;
}
.slide-title {
    font-size: 55px;
    font-weight: 700;
	line-height: 1;
	margin-bottom: 25px;
}
.slide-text {
    font-size: 29px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.slide-content button {
    background: #139590;
    border: none;
    color: #fff;
    padding: 5px 20px;
    font-size: 19px;
    border-radius: 50px;
    border: 2px solid;
	transition: .3s;
}
.slide-content button:hover {
    background: #4a9dd1;
}
/*.slide li.act {
	animation-name: slide;
	animation-duration: .5s;
	animation-delay: 0s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
}*/
li.act .slide-content {
	opacity: 1;
}

.slide-content > * {
	transform: translateY(-20px);
	opacity: 0;
	transition: .4s;
}
li.act .slide-content > * {
	transform: translateY(0px);
	opacity: 1;
}

@keyframes slide {
  from {height: 0;}
  to {height: 100%;}
}
@media screen and (min-width: 780px) {
	.slide-content {
		padding-right: 50px;
	}
}
@media screen and (max-width: 780px) {
	.slide-content {
		width: 90%;
		height: calc(100% - 50px);
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		align-content: center;
		top: 0;
		bottom: auto;
		text-align: center;
	}
	.slide-title {
		font-size: 10vw;
		line-height: 1.1;
		margin-bottom: 25px;
		width: 100%;
	}
	.slide-text {
		font-size: 7vw;
		line-height: 1.4;
	}
	.slide-content button {
		font-size: 5.5vw;
	}	
}