section#main-slider{
  padding: 0px;
}
section#main-slider .slider-item {
  height: 70vh;
  position: relative;
}
section#main-slider .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#main-slider .slider-item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  //background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}
section#main-slider .slider-item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}
section#main-slider .slider-item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  z-index: 1;
}
section#main-slider .slider-item .cover .header-content p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  margin-bottom: 15px;
  width: 60%;
}
section#main-slider .slider-item .cover .header-content h1 {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  width: 40%;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #000;
}
section#main-slider .slider-item .cover .header-content a{
  z-index: 9;
  position: relative;
  color: #aa2621;
  background-color: #fff;
  border: solid 1px #aa2621;
  padding: 3px 20px;
  font-size: 16px;
  font-weight: 800;
}
section#main-slider .slider-item .cover .header-content a:hover{
  color: #000;
  border: solid 1px #000;
}
section#main-slider .slider-item .cover .header-content h1 span{
  color: #aa2621;
}
section#main-slider .slider-item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
section#main-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
section#main-slider .owl-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
section#main-slider .owl-item.active h4, section#main-slider .owl-item.active a {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
section#main-slider .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
section#main-slider .owl-nav .owl-prev {
  left: 15px;
  top: 43%;
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgb(169 24 19 / 29%) !important;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 40px;
  -webkit-box-shadow: 5px 5px 32px 14px rgb(170 38 33 / 45%);
  box-shadow: 5px 5px 32px 14px rgb(170 38 33 / 45%);
}
section#main-slider .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
section#main-slider .owl-nav .owl-prev:focus {
  outline: 0;
}
section#main-slider .owl-nav .owl-prev:hover {
  background: rgb(255 255 255 / 48%) !important;
  color: #aa2621 !important;
}
section#main-slider .owl-nav .owl-next {
  right: 15px;
  top: 43%;
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgb(169 24 19 / 29%) !important;
  width: 40px;
  cursor: pointer;
  color: #fff;
  font-size: 30px;
  text-align: center;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 40px;
  -webkit-box-shadow: 5px 5px 32px 14px rgb(170 38 33 / 45%);
  box-shadow: 5px 5px 32px 14px rgb(170 38 33 / 45%);
}
section#main-slider .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
section#main-slider .owl-nav .owl-next:focus {
  outline: 0;
}
section#main-slider .owl-nav .owl-next:hover {
  background: rgb(255 255 255 / 48%) !important;
  color: #aa2621 !important;
}
section#main-slider:hover .owl-prev {
  left: 30px;
  opacity: 1;
}
section#main-slider:hover .owl-next {
  right: 30px;
  opacity: 1;
}

@media screen and (max-width: 480px){
  section#main-slider .slider-item .cover .header-content h1{
    width: 100%;
    font-size: 24px;
  }
  section#main-slider .slider-item .cover .header-content p{
    width: 100%;
    font-size: 16px;
    font-weight: 600;
  }
  section#main-slider .slider-item{
    height: 40vh;
  }
}