body, #slider, .warp,.carousel-inner, .slide-content {
	margin:  0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	width: 100%;
	height: 100vh;
	overflow-x: hidden;
	top: 0;
	min-height : 100%;
  min-width : 100%;
  background-size:100% 100%;
  background-repeat:no-repeat;
  overflow-y: hidden;
  overflow-x: hidden;

}

.logo-img {
	width: 280px;
    padding: 11px;
    border-radius: 10px;
}

.warp{position: relative}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 0.6s;
  animation-name: fade;
  animation-duration: 0.6s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.slide{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	
}

.slide1{background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url('..//img/1.jpg'); background-position: center center !important;}
.slide2{background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url('..//img/2.jpg'); background-position: center center !important;}
.slide3{background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url('..//img/3.jpg'); background-position: center center !important;}
.slide4{background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url('..//img/4.jpg'); background-position: center center !important;}

.slide-content {
	display: flex;
	justify-content: space-around;
	
	
	flex-direction: column;
}
.slide-left {
		
	text-align: inherit;
	
	align-items: flex-start;
	
	margin-left: 10%;
}

.slide-right {
	position: relative;
	text-align: right;
	
	align-items: flex-start;
	
	margin-right: 10%;
}


.slide-content span { 
	font-size: 1rem;
	color: #fff;
	
}

.collage-name div {
	transform: translate(50px, 50px);
}

.arrow {
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top: -35px;
	width: 0;
	height: 0;
	border-style: solid;
}

#arrow-left {
	border-width: 50px 17px 50px 0;
	border-color: transparent #fff transparent transparent;
	left: 0;
	margin-left: 30px;
	
}

#arrow-right {
	border-width: 50px 0 50px 17px;
	border-color: transparent transparent transparent #fff;
	right: 0;
	margin-right: 30px;
}

.square{
	width: 100%;
	height: 0;
	/*padding-top: 100%;*/
	background-color: #fff;
	position: relative;
}

.content{
	position: absolute;
	top: 20%;
	margin-left: 50px
}

.collage-name{
	color: #fff;
}
.collage-content{
	color: #fff;
}

/* Button Css */

.button {
  border-radius: 4px;
  background-color: #00bcd4;
  border: none;
  color: #FFFFFF;
  text-align: center;
  
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}