html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}
body {
  background: #000;
}
#main {
  margin-top: var(--header);
}
#opening {
  min-height: 100vh;
}
#women {
  min-height: 100vh;
}

.header {
  width: 100%;
  height: 83px;
  text-align: center;
  background-color: #FAD9E2;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  align-content: center;
}

h2 {
  font-family:'hypatia-sans-pro';
  font-weight: 700;
  font-size: 30px;
  font-style: italic;
  justify-content: center;
  align-items: center;
  display: flex;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

.col-12.col-lg-4.col-md-6:hover .img-bg {
  opacity: .6;
  transform: scale(1.2);
  transition: all .5s ease;
}
.col-12.col-lg-4.col-md-6:hover .item-box {
  opacity: 1;
  transition: all .5s ease;
}


.col-12, .col-lg-4, .col-md-6 {
  position: relative;  
  min-height: auto;
  background-color: #000;
  overflow: hidden;
}

.item-box {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
}

.img-bg {
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
  transition: all .5s ease;
}

.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  -webkit-box-align: end;
  justify-content: end;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
}

.btn-more {
  background-color: #fff;
  color: #000;
  max-width: 123px;
  max-height: 40px;
  border: 4px solid #F43B74;
  border-radius: 58px;
  font-family: 'gill-sans-nova', sans-serif;
  font-size: 12px;
  width: 22vw;
  font-weight: 700;
  height: 5vh;
  justify-content: center;
  align-items: center;
  display: flex;
}

.title-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;  
  font-family: 'hypatia-sans-pro', sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.swiper-button-next {
  display: none;
  position: relative;
  transform: rotate(90deg);
  inset: auto 0 auto;
  height: var(--down);
  background-color: rgb(0 0 0 / 90%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FAD9E2;
}

.arrow-wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  -webkit-box-align: end;
  justify-content: center;
}

@media only screen and (max-width: 762px) {
  .item-box {
    padding: unset;
    opacity: 1;
  }

  .btn-container {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
  }

  .title-container {
    padding: 10px 40px 10px 10px;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
  }

}