body {
  font-family: "Montserrat", sans-serif;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  outline: none;
}

.slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background: none;
  font-size: 0;
  padding: 0;
  border: none;
}

.section1 {
  height: 100vh;
  background: url(../images/s1-bg.jpg) no-repeat center;
  background-size: cover;
  padding-top: 35px;
  position: relative;
  margin-bottom: 100px;
  min-height: 600px;
}

.s1-title {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  text-transform: uppercase;
  font-style: italic;
  padding: 0 15px;
  margin-top: 20px;
}
.s1-title span {
  display: block;
  font-style: normal;
  font-size: 20px;
  margin-top: 60px;
}

.logo1 {
  text-align: center;
}
.logo1 img {
  max-width: 140px;
}

.logo2 {
  position: absolute;
  bottom: 100px;
  width: 100%;
  text-align: center;
}
.logo2 img {
  max-width: 155px;
}

.container {
  max-width: 1180px;
  padding: 0 15px;
  margin: 0 auto;
}

.text {
  max-width: 700px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}
.text p {
  margin: 0;
}
.text a {
  color: #ff0000;
  text-decoration: none;
}
.text h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  font-style: italic;
}

.text-item {
  display: flex;
  margin-bottom: 100px;
}
.text-item:nth-child(odd) {
  justify-content: flex-end;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@media (max-width: 768px) {
  .s1-title {
    font-size: 40px;
    line-height: 1.3;
  }
  .s1-title span {
    font-size: 18px;
    margin-top: 30px;
  }

  .logo2 {
    bottom: 80px;
  }
}
@media (max-width: 500px) {
  .s1-title {
    font-size: 30px;
  }
  .s1-title span {
    font-size: 18px;
    margin-top: 30px;
  }
}