.slideshow .btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #05489b !important;
  color: #05489b;
  text-indent: 2px;
    position: relative;
    font-size: 16px;
    margin-top: 0 !important;
}
.slideshow .btn:before{
    content: '';
    position: absolute;
    top: 21px;
    right:-15px;   
    width: 30px;
    height: 1px;
    background:#05489b !important;
    transition: all .3s;
    z-index: 2;
}
.slideshow .btn:after{
    content: '';
    position: absolute;
    top: 19px;
    right:-15px;
    width: 7px;
    height:1px;
    background:#05489b;
    transform: rotate(35deg);
    transition: all .3s;
}

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
    margin-left: 7%;
    width: 86%;
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 44, 48, 0.15);
}
.slideshow .slide .image {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.slideshow .slide .title h1{
    margin: 0 0 30px 0;
    padding: 0;
    color: #fff;
    font-size: 60px;
    line-height: 120%;
}
.slideshow .slide .text a{
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    width: 290px;
    height: 70px;
    padding: 0 0 0 20px;
    box-sizing: border-box;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.slideshow .slide .text a span{
    position: relative;
    padding-left: 25px;
}
.slideshow .slide .text a span:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../images/common/ar-wh-ic.svg) no-repeat;
    width: 20px;
    height: 20px;
    background-size: cover;
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background: #fff;
}
.slideshow .pagination {
  position: absolute;
  bottom: 30%;
  left: 7%;
  width: 290px;
  height: 12px;
  cursor: default;
  z-index: 2;
}
.slideshow .pagination .item {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 3px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 0;
}
.slideshow .arrows .prev:hover .svg {
  left: -5px;
}
.slideshow .arrows .next {
  right: 0;
}
.slideshow .arrows .next:hover .svg {
  left: 5px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}
@media screen and (max-width: 900px) {
.slideshow .slide .title h1{
    font-size: 7vw;
}
}
@media screen and (max-width: 810px) {
}
@media screen and (max-width: 766px) {
}
@media screen and (max-width: 640px) {
.slideshow .arrows .arrow {
  display: none;
}
.slideshow .arrows .prev {
  display: none;
}
.slideshow .arrows .next {
  display: none;
}
}
@media screen and (max-width: 490px) {
}
@media screen and (max-width: 400px) {
.slideshow .slide .text a{
    font-size: 15px;
    width: 100%;
    padding: 0 0 0 15px;
}
.slideshow .slide .text a span{
    padding-left: 25px;
}
}
@media screen and (max-width: 350px) {
}