/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
#slider {
	position: relative;
	width: 100%;
	overflow: hidden;

}

#slider #line {
	display:none;
}

#slider #dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 16px;
	display: flex;
	justify-content: center;
}

#slider #dots li {
	transition: 0.3s;
	list-style-type: none;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	background: rgba(0,0,0,0.5);
	margin: 0 0.25em;
	cursor: pointer;
}

#slider #dots li:hover,
#slider #dots li.active {
	background: #1175bc;
}

@keyframes line {

	0% {width: 0%;}
	100% {width: 100%;}

}

#slider #back,
#slider #forword {
	width: 6%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: 0.3s;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	color: white;
	font-weight: 700;
    font-size: 2rem;
	background: -moz-linear-gradient(left,  rgba(255,255,255,0.75) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0.75) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,0.75) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfffffff', endColorstr='#00ffffff',GradientType=1 );
}

#slider #forword {
	left: auto;
	right: 0;
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.75) 100%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.75) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.75) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#bfffffff',GradientType=1 );
}

#slider:hover #back,
#slider:hover #forword {
	opacity: 0.7;
}

ul#move {
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	background: #efede9;
	margin-right: 100%;
	height: calc(100vh - 100px);
}


ul#move li {
	transition: 0.6s;
	min-width: 100%;
	color: white;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position:relative;
	padding: 20px 0 60px 0;
	background-size: cover !important;
}

ul#move li img {
	width: 90%;
}

 ul#move li:nth-child(1) {
    background-image: url(../2022/05/back-image-1-1.webp) !important;
}

ul#move li:nth-child(2) {
 background-image: url(../2022/05/back-image-2.webp) !important;
}

ul#move li:nth-child(3) {
 background-image: url(../2022/05/back-image.webp) !important;
} 
.left-text-section h1 {
    text-align: left;
    font: normal normal bold 60px/55px Montserrat;
    color: #00065D;
}
.left-text-section p {
    text-align: left;
    font: normal normal normal 18px/25px Open Sans;
    letter-spacing: 0.58px;
    color: #000000;
	padding: 10px 0 30px;
	max-width:470px;
}
.left-text-section a {
    background: #1175BC;
    color: #fff;
    padding: 16px 58px;
    border-radius: 4px;
    font: normal normal 600 14px/19px Open Sans;
    letter-spacing: 0.36px;
	transition: all .3s ease-out;
    border: 1px solid transparent;
}
.left-text-section a:hover {
    border: 1px solid #1175bc;
    color: #1175bc;
    background: transparent;
}
.inner-images{
	position:relative;
}
.first-batch img {
    position: absolute;
    top: 0;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}
.first-batch img:nth-child(1), .first-batch img:nth-child(3), .first-batch img:nth-child(5), .first-batch img:nth-child(7){
	    animation: zoom-in-zoom-out 4s ease-out infinite;
}
.first-batch img:nth-child(2), .first-batch img:nth-child(4), .first-batch img:nth-child(6){
	    animation: zoom-in-zoom-out 6s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.03, 1.03);
  }
  100% {
    transform: scale(1, 1);
  }
}
div#back i, div#forword i {
    color: #1175BC;
    background: #fff;
    padding: 10px;
	transition:all .3s ease;
	opacity: 0.5;
}
div#back i:hover, div#forword i:hover {

    transform: scale(1.1);
	opacity: 1;
}
.left-text-section {
    padding-right: 70px;
}

/* responsiveness of slider */

@media only screen and (max-width:1366px){
    .left-text-section {
     padding-right: 0px !important; 
}
}
@media only screen and (max-width:1112px){
	.left-text-section, left-images-section {
    width: 50%;
    float: left;
}
	ul#move li{
		padding:20px 15px 60px 15px;
	}
}
@media only screen and (max-width:900px){
	.left-text-section h1 {
    font: normal normal bold 36px/36px Montserrat;
}
	.left-text-section p {
    font: normal normal normal 16px/24px Open Sans;
    padding: 5px 0 20px;
}
	.left-text-section a {
		padding: 11px 45px;
	}
}
@media only screen and (max-width:767px){
	.left-text-section, left-images-section {
    width: 100%;
}
	ul#move li {
    display: flex;
    flex-direction: column-reverse;
}
}