.hero .mySwiper .swiper-slide {
  opacity: 0;
  transition: opacity 1s;
}
.hero .mySwiper .swiper-slide-active {
  opacity: 1;
}

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero .slide_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
}

.hero .slide_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .content{
    width: 100%;
    height: 100vh;
    color: white;
}

.w-60{
    width: 60%;
}

.hero span{
    margin: 0 auto;
    font-family: "Cormorant Upright",serif;
    font-size: 125px;
    line-height: .84em;
    font-weight: 700;
    letter-spacing: -.015em;
    text-transform: uppercase;
    color: #fff;
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    left: -53px;
    opacity: 0.07;
}

.hero h6{
    margin: 16px 0 7px 0;
    color: #fff;
    z-index: 2;
    position: relative;
    font-size: 13px;
    line-height: 25px;
    font-family: 'Inconsolata',monospace;
    letter-spacing: .25em;
    font-weight: 300;
    word-wrap: break-word;
}

.hero h1{
    color: #fff;
    font-size: 70px;
    line-height: 1.14em;
    letter-spacing: .05em;
    font-weight: 300;
    word-wrap: break-word;
    margin: 8px 0 13px;
    z-index: 2;
    position: relative;
    font-family: "Cormorant Upright",serif;
}

.hero p{
    color: #fff;
    max-width: 522px;
    line-height: 28px;
    letter-spacing: 0px;
    font-weight: 300;
    font-size: 17px;
}

.gap-10{
    gap: 10px;
}

.hero .swiper-button-next{
    width: 32px;
    display: flex;
    --swiper-navigation-size: 56px;
    --swiper-navigation-sides-offset: 30px;
    --swiper-navigation-color: #fff;
}

.hero .swiper-button-prev{
    width: 32px;
    display: flex;
    --swiper-navigation-size: 56px;
    --swiper-navigation-sides-offset: 30px;
    --swiper-navigation-color: #fff;
}


.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
    display: none !important;
}

.hero .swiper-button-next svg{
    height: 59px !important;
    width: auto !important;
    stroke: #fff;
    fill: none;
    transition: transform 0.3s ease-in-out;
    font-weight: 300;
    &:hover{
        transform: translateX(5px);
    }
}

.hero .swiper-button-prev svg{
    height: 59px !important;
    width: auto !important;
    stroke: #fff;
    fill: none;
    transition: transform 0.3s ease-in-out;
    font-weight: 300;
    &:hover{
        transform: translateX(-5px);
    }
}

@media (max-width: 992px){
    .hero .swiper-button-next, .hero .swiper-button-prev{
        display: none;
    }
}

@media (max-width:768px){
    .hero .w-60{
        width: 100%;
    }
}
