.slider .item {
  /* height: 100vh; */
  position: relative;
}
.slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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;
}
.slider .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}
.slider .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 65%;
  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%); */
  -webkit-clip-path: polygon(0 0, 60% 0, 60% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 60% 100%, 0 100%);
}
.slider .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}
.slider .item .cover .header-content h1 {
  font-size: 41px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
}
.slider .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
.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;
}
.slider .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.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;
}
.slider .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(255, 255, 255) !important;
  width: 50px;
  cursor: pointer;
  height: 50px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.slider .owl-nav .owl-prev span {
  font-size: 2rem;
  color: #000;
}
.slider .owl-nav .owl-prev:focus {
  outline: 0;
}
.slider .owl-nav .owl-prev:hover {
    background: #df6512 !important;
    color:#fff;
}
.slider .owl-nav .owl-prev:hover span{
    color: #fff;
}
.slider .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(255, 255, 255) !important;
  width: 50px;
  cursor: pointer;
  height: 50px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.slider .owl-nav .owl-next span {
  font-size: 2rem;
  color: #000;
}
.slider .owl-nav .owl-next:focus {
  outline: 0;
}
.slider .owl-nav .owl-next:hover {
  background: #df6512 !important;
  color:#fff;
}
.slider .owl-nav .owl-next:hover span{
    color: #fff;
}
.slider:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.slider:hover .owl-next {
  right: 0px;
  opacity: 1;
}
.owl-theme .owl-nav [class*='owl-']{
  margin: 0px;
}

/* button-icon */
.button-icon {
  left: 40%;
  /* top:90%; */
  position: absolute;
  /* z-index: 9999; */
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider .owl-item.active .read-more {
  float: left;
  margin-right: 30px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider .owl-item.active .button-icon .read-more a{
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  padding: 12px 25px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  border-radius: 2px;
  letter-spacing: 1px;
  background-color: #df6512;
  text-transform: uppercase;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider .owl-item.active .button-icon .read-more a:hover{
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  background-color:#011e58;
  border-color: #011e58;
  color: #fff;
  padding: 12px 25px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.button-icon ul {
  display: block;
  float: left;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider .owl-item.active .button-icon ul{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider .owl-item.active .button-icon ul li{
  display: inline-block;
  margin-right: 30px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider .owl-item.active .button-icon ul li img {
  width: auto !important;
  display: inline-block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}