/* Home */
/* Models Section */
.models-category {
  display: flex;
  justify-content: center;
}
.models-btn {
  border: none;
  color: #767676;
  background: none;
  padding: 0rem 2rem;
  border-right: 1px solid #767676;
  font-size: 22px;
}
.models-category .models-btn:last-of-type {
  border-right: none;
}
.models-btn-active span {
  font-weight: bold;
  color: var(--red);
  border-bottom: 2px solid var(--red) ;
  padding-bottom: 8px;
}
.models-btn:hover span {
  font-weight: bold;
  color: var(--red);
  /* border-bottom: 2px solid var(--red) ; */
  padding-bottom: 8px;
}
.models-swiper .swiper-slide img {
  width: 86%;
}
#models-section .models-swiper {
  padding: 0rem 5rem !important;
}
.models-swiper .swiper-wrapper {
  margin: 4rem 0rem;
}
.models-swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.models-swiper .swiper-horizontal>.swiper-pagination-bullets, 
.models-swiper .swiper-pagination-bullets.swiper-pagination-horizontal, 
.models-swiper .swiper-pagination-custom, 
.models-swiper .swiper-pagination-fraction {
  bottom: 5% !important;
}
.models-swiper .swiper-pagination-bullet {
  width: 17px !important;
  height: 17px !important;
  background: #DBDBDB !important;
  opacity: 1 !important;
}
.models-swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.models-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px !important;
}
.models-swiper .swiper-pagination-bullet-active {
  background: var(--red) !important;
  width: 22px !important;
  height: 22px !important;
  outline: 1px solid var(--red);
  outline-offset: 3px;
}
.models-swiper .swiper-slide:hover {
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
  transition: transform .2s;
}
.models-swiper .models-text p,
.models-swiper .models-text a{
  width: 45%;
  margin: auto;
}
.models-swiper .models-text p{
  color: #767676;
}
.models-swiper .models-text a{
  text-decoration: none;
  color: var(--red);
  font-weight: bold;
}
.models-swiper .model-link:hover {
  color: var(--dark-red);
}
.models-swiper .swiper-button-prev,
.models-swiper .swiper-button-next {
  color: #363636 !important;
}
.models-text h3 {
  height: 5vh;
  font-size: 1.5vw;
}
.btn-white {
  border-radius: 0;
  border: 1px solid var(--black);
  width: 9.7vw;
}
.btn-red {
  border-radius: 0;
  background: var(--red);
  border: 1px solid var(--red);
  width: 9.7vw;
  color: var(--white);
  vertical-align: middle;
}
.btn-white:hover {
  background: var(--gray);
  color: var(--white);
}
.btn-red:hover {
  background: var(--dark-red);
  color: var(--white);
}
.model-link {
  text-decoration: none;
  color: var(--red);
  font-weight: bold;
}
.model-link:hover {
  color: var(--dark-red);
  font-weight: bold;
}
#button-1 {
  padding-left: 0 !important;
}
@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(100%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.animation {
  opacity: 0;
  animation: zoomFade 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  transform: scale(0.8);
}
@media(max-width: 1820px) {
  .btn-white,
  .btn-red {
    font-size: 14px;
  }
}
@media(max-width: 1440px) {
  .btn-white,
  .btn-red {
    font-size: 1vw;
    padding: 1.5vh 0vw !important;
  }
  .models-swiper .models-text {
    width: 70%;
    margin: auto;
  }
}
@media(max-width: 1060px) {
  #models-section .models-swiper {
    padding: 0rem 3rem !important;
  }
  .models-text h3 {
    font-size: 2vw;
  }
}
@media(max-width: 1023px) {
  #models-section .models-swiper {
    padding: 0rem 2.5rem !important;
  }
}
/* @media(max-width: 1024px) {
  #models-section .models-swiper {
    padding: 0rem 3rem !important;
  }
  .btn-white,
  .btn-red {
    font-size: 10px;
  }
} */
@media(max-width: 991px) {
  .model-name {
    height: 65px;
  }
  .models-btn {
    padding: 0rem 1.5rem;
  }
  .models-text h3 {
    font-size: 2vw;
  }
  .models-swiper .models-text a {
    font-size: 1.5vw;
  }
}
@media(max-width: 769px) {
  .models-swiper .swiper-wrapper {
    margin: 1rem 0rem !important;
  }
  .models-swiper .swiper-slide:hover {
    box-shadow: none;
    transform: none;
    transition: none;
  }
  .models-swiper .swiper-slide img {
    width: 80% !important;
  }
  #models-section .models-swiper {
    padding: 0rem 0rem !important;
  }
  .models-swiper .swiper-button-next:after, 
  .models-swiper .swiper-button-prev:after {
    font-size: 16px !important;
  }
  .models-swiper .swiper-button-next,
  .models-swiper .swiper-button-prev {
    position: absolute !important;
    top: 20%;
  }
  .models-swiper .models-text {
    width: 90%;
    margin: auto;
  }
  #models-section .models-text h3 {
    font-size: 26px;
  }
  #models-section .models-text p {
    font-size: 16px;
  }
  #models-section .models-text a {
    font-size: 14px;
  }
  .btn-white,
  .btn-red {
    width: 187px;
    font-size: 14px;
    padding: 1rem 0rem !important;
  }
  .modal-dark .model-interacted{
    top: 0;
  }
  .modal-dark {
    height: 200px;
  }
  .modal-light .btn-white,
  .modal-light .btn-red {
    width: 80%;
  }
}
@media(max-width: 768px) {
  .model-name {
    height: auto;
  }
} 
@media(max-width: 767px) {
  .models-btn {
    font-size: 16px;
  }
}
@media(max-width: 614px) {
  .models-btn {
    padding: 0 1rem !important;
  }
}
@media(max-width: 576px) {
  .btn-white,
  .btn-red {
    width: 160px;
    font-size: 14px;
  }
 .models-swiper .swiper-button-next,
 .models-swiper .swiper-button-prev {
    top: 30%;
  }
  .models-swiper .swiper-scrollbar-drag {
    background: var(--red) !important;
  }
}
@media(max-width: 575px) {
  .models-swiper .swiper-pagination-bullet {
    width: 9px !important;
    height: 9px !important;
  }
  .models-swiper .swiper-pagination-bullet-active {
    width: 13px !important;
    height: 13px !important;
    outline: 1px solid var(--red);
    outline-offset: 1px;
  }
  .models-swiper .swiper-horizontal>.swiper-pagination-bullets, 
  .models-swiper .swiper-pagination-bullets.swiper-pagination-horizontal, 
  .models-swiper .swiper-pagination-custom, 
  .models-swiper .swiper-pagination-fraction {
    bottom: 20px !important;
  }
  #models-section .models-text h3 {
    font-size: 5vw;
    height: auto;
  }
}
@media(max-width: 499px) {
  .models-swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
  .models-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px !important;
  }
}
@media(max-width: 485px) {
  .models-btn {
    padding: 0rem 0.8rem !important;
  }
}
@media(max-width: 447px) {
  .models-btn {
    font-size: 15px;
    padding: 0rem 0.6rem !important;
  }
}
@media(max-width: 399px) {
  .model-name {
    height: 65px;
  }
}
@media(max-width: 392px) {
  .models-btn {
    font-size: 14px;
    padding: 0 0.5rem !important;
  }
}
@media(max-width: 357px) {
  .models-btn {
    font-size: 13px;
  }   
}
@media(max-width: 341px) {
  .models-btn {
    padding: 0 0.4rem !important;
  } 
}
@media(max-width: 339px) {
  .models-swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
  .models-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px!important;
  }
}
@media(max-width: 322px) {
  .models-btn {
    font-size: 12px;
  }    
}

/* Article Section */
#articles-section {
  background: #EEEEEE;
}
#articles-section h2 {
  font-size: 43.692px;
  color: #333;
}
#articles-section h4 {
  font-size: 24px;
  color: #333;
}
#articles-section .article-wrapperBig {
  position: relative;
  background: #DBDBDB;
}
#articles-section .article-wrapperSmall {
  position: relative;
  background: #DBDBDB;
  padding-left: 20px;
}
#articles-section .article-wrapperSmall:first-of-type {
  padding-bottom: 10px;
}
#articles-section .article-wrapperSmall:last-of-type {
  padding-top: 10px;
}
.article-wrapperBig .first-article-element {
  position: absolute;
  bottom: 0;
  padding: 5vh 5vw;
}
.article-wrapperSmall .second-article-element {
  position: absolute;
  bottom: 0;
  padding: 4vh 5vw;
}
.article-wrapperSmall .third-article-element {
  position: absolute;
  bottom: 0;
  padding: 3vh 5vw;
}
#articles-section h3 {
  font-size: 1.5vw;
}
#articles-section .article-text {
  font-size: 0.8vw;
  color: #767676;
}
.article-button {
  margin-top: 3vh;
}
.article-button a {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  border-radius: 0;
  padding: 1.5vh 2vw;
}
.article-button a:hover {
  border: 1px solid var(--gray);
  background: var(--gray);
  color: var(--white);
}
#articles-section img {
  object-fit: cover;
}
@media(max-width: 991px) {
  #articles-section h2 {
    font-size: 36px;
  }
  #articles-section h4 {
    font-size: 18px;
  }
  #articles-section img {
    object-fit: cover;
  }
  #articles-section .article-wrapperSmall {
    padding-left: 0;
  }
  #articles-section .article-wrapperSmall:first-of-type {
    padding: 10px 0;
  }
  #articles-section .article-wrapperSmall:last-of-type {
    padding-top: 0;
  }
  .article-wrapperBig .first-article-element,
  .article-wrapperSmall .second-article-element,
  .article-wrapperSmall .third-article-element {
    bottom: 40%;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    padding: 0;
  }
  #articles-section h3 {
    font-size: 2.5vw;
  }
  .article-button a {
    padding: 1rem 2rem;
  }
}
@media(max-width: 767px) {
  #articles-section h3 {
    font-size: 3vw;
  }
}
@media(max-width: 575px) {
  #articles-section h3 {
    font-size: 5vw;
  }
  .article-wrapperBig .first-article-element,
  .article-wrapperSmall .second-article-element,
  .article-wrapperSmall .third-article-element {
    left: 10%;
  }
}
@media(max-width: 420px) {
  .article-wrapperBig .first-article-element,
  .article-wrapperSmall .second-article-element,
  .article-wrapperSmall .third-article-element {
    bottom: 20%;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }
}

/* Latest Promotion Section */
.latest-promotions-section h2 {
  font-size: 43.692px;
  font-weight: 700;
}
.latest-promotions-section h4 {
  font-size: 24px;
}
@media(max-width: 991px) {
  .latest-promotions-section h2 {
    font-size: 36px;
  }
  .latest-promotions-section h4 {
    font-size: 18px;
  }   
}