/* CSS cho Swiper */ @keyframes slideInFromLeft { 0% { opacity: 0; transform: translate3d(-100%, 0px, 0px); } 100% { opacity: 1; transform: translate3d(0px, 0px, 0px); } } @keyframes slideInFromRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } } .swiper-container { max-width: 100vw; height: 333px; position: relative; margin: 0 auto; overflow: hidden; .swiper-slide { display: flex; align-items: center; justify-content: center; position: relative; font-size: 18px; text-align: center; background: #fff; a { width: 100%; height: 100%; text-decoration: none; } img { width: 100%; height: 100%; object-fit: fill; } .overlay { position: absolute; top: 0; bottom: 0; left: 0; width: 50%; overflow: hidden; background-color: rgba(0, 0, 0, 0.5); animation: slideInFromLeft 1s ease; .content { position: absolute; top: 50%; left: 9%; width: 240px; text-align: left; transform: translateY(-50%); &__title { margin-bottom: 12px; font: 700 22px/30px 'FS Magistral'; color: white; opacity: 0; animation: slideInFromRight 0.5s ease forwards; animation-delay: 0.5s; } &__link-more { display: block; font-family: 'SFProDisplay'; text-decoration: underline; color: white; opacity: 0; animation: slideInFromRight 0.5s ease forwards; animation-delay: 1s; } @media only screen and (max-width: 768px) { width: 140px; top: 91px; left: 16%; transform: none; &__link-more { font: 500 14px/18px 'SFProDisplay'; } } } } } .slide-indicator { width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; bottom: 10px; z-index: 99; p { font-family: 'SFProDisplay'; font-weight: 400; color: white; } .progress { width: 100px; height: 2px; border-radius: 2px; display: flex; justify-content: center; cursor: pointer; overflow: hidden; &-bar { width: 33.33%; background-color: #A7A7A7; &.active { background-color: white; } } } } @media only screen and (max-width: 768px) { height: 375px; .swiper-slide:first-child .overlay { background: transparent; } .slide-indicator { align-items: start; gap: 2px; bottom: 8%; left: 9%; p { font-size: 14px; } .progress { width: 80px; justify-content: start; &-bar { transition: 1s ease; } } } } @media only screen and (max-width: 328px) { height: 320px; } } .notifi { margin: 8px 16px 0 16px; font-family: 'FS Magistral'; font-style: italic; font-weight: 400; font-size: 11px; line-height: 20px; color: #4E4E4E; text-align: left; }