
.section1{
	width: 100%;
	height: 100%;
}
.section1-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.section1-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s, transform 0.5s;
  opacity: 0;
  transform: scale(1.2);
}

.section1-slide.activated {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.section1-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.slide-text {
  position: absolute;
  bottom: 39%;
  left: 46%;
  transform: translate(-50%, 0);
  z-index: 2;
  text-align: left;
  color: #fff;
  padding: 20px;
}
.slide-text span{
  display: flex;
    margin: 0 0 5px;
}

.slide-text span hr{
  width: 60px;
  height: 0px;
  border: 2.6px solid #132c4f;
  margin-top: 1.7%;

}

.slide-text span h1 {
  font-size: 14px;
  font-weight: 900;
  margin-left: 1%;

}
.slide-text h2 {
  font-size: 31px;
  font-weight: 300;
  margin: 0 0 0px;
}

.slide-text p {
  font-size: 31px;
  margin: 0;
  font-weight: 700;
}

.slide-text a {
  text-decoration: none;
}

.slide-text .section1-btn{
  width: 115px;
  height: 35px;
  background-color: #132c4f;
  margin-top: 2%;
  display:flex;
    justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.slide-text .section1-btn h1{
  position: relative;
  font-size: 14px;
  font-weight: 600;
  margin-top: 1%;
  color: white;
  text-decoration: none;
}

.slide-text .section1-btn:hover{
  background-color: white;
}

.slide-text .section1-btn:hover h1{
  color: #132c4f;
}