@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
main {
  overflow-x: hidden;
}

.home-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .home-banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner {
    height: 60vh;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner {
    height: 50vh;
  }
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 47.79%, rgba(0, 0, 0, 0.75) 88.57%), linear-gradient(180deg, rgba(0, 0, 0, 0) 46.07%, rgba(0, 0, 0, 0.7) 89.64%);
  z-index: 1;
}
.home-banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner .bg-wrapper {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 93%;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .home-banner .bg-wrapper {
    bottom: 8%;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper {
    top: inherit;
    bottom: 10%;
    max-width: 90%;
  }
}
.home-banner .bg-wrapper .heading {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.home-banner .bg-wrapper .heading p {
  font-family: "Circular";
  font-weight: 300;
  color: var(--white);
  font-size: 30px;
  margin-top: 15px;
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .home-banner .bg-wrapper .heading p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner .bg-wrapper .heading p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper .heading p {
    font-size: 18px;
    margin-top: 10px;
  }
}
.home-banner .bg-wrapper .heading h1 {
  font-size: 80px;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .home-banner .bg-wrapper .heading h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner .bg-wrapper .heading h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper .heading h1 {
    font-size: 36px;
  }
}

.home-secA {
  padding: 90px 0 30px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .home-secA {
    padding: 60px 0 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA {
    padding: 40px 0 20px;
  }
}
.home-secA::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  background-image: url("../../icon/art-left.svg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .home-secA::after {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA::after {
    width: 150px;
    height: 150px;
    display: none;
  }
}
.home-secA .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .home-secA .grid {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.home-secA .item-img {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .home-secA .item-img {
    order: 2;
  }
}
.home-secA .item-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.home-secA .item-img img:hover {
  transform: scale(1.05);
}
.home-secA .item-content {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .home-secA .item-content {
    order: 1;
    text-align: center;
  }
}
.home-secA .item-content h4 {
  margin-bottom: 15px;
  max-width: 400px;
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .home-secA .item-content h4 {
    font-size: 28px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content h4 {
    font-size: 24px;
  }
}
.home-secA .item-content p {
  line-height: 1.6;
  color: var(--text);
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content p {
    font-size: 14px;
  }
}
.home-secA .item-content .numbers {
  margin: 30px 0 40px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .home-secA .item-content .numbers {
    gap: 40px;
    justify-content: center;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers {
    gap: 30px;
    margin: 20px 0 30px;
  }
}
.home-secA .item-content .numbers .border {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.49);
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers .border {
    height: 50px;
  }
}
.home-secA .item-content .numbers .num h6 {
  margin: 0;
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers .num h6 {
    font-size: 20px;
  }
}
.home-secA .item-content .numbers .num span {
  font-size: 24px;
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers .num span {
    font-size: 20px;
  }
}
.home-secA .item-content .numbers .num p {
  margin-top: 5px;
  font-size: 14px;
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers .num p {
    font-size: 12px;
  }
}

.home-secB {
  padding-bottom: 50px;
}
@media only screen and (max-width: 540px) {
  .home-secB {
    padding-bottom: 30px;
  }
}
.home-secB .heading {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  height: 138px;
  padding: 30px 0 0;
  padding-right: 2rem;
}
@media only screen and (max-width: 991px) {
  .home-secB .heading {
    height: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .home-secB .heading {
    flex-direction: column;
    height: auto;
    gap: 20px;
    padding: 20px 0;
  }
}
.home-secB .heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-10%);
  width: 340px;
  height: 340px;
  background-image: url("../../icon/art-bottom.svg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .home-secB .heading::after {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .heading::after {
    width: 150px;
    height: 150px;
    display: none;
  }
}
.home-secB .heading p {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 5px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .home-secB .heading p {
    font-size: 16px;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .heading p {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
.home-secB .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .home-secB .swiper-buttons {
    display: none;
  }
}
.home-secB .swiper-buttons button {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.home-secB .swiper-buttons button:hover {
  opacity: 0.7;
}
.home-secB .swiper-buttons button svg {
  width: 30px;
  display: block;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .home-secB .swiper-buttons button svg {
    width: 24px;
  }
}
.home-secB .swiper-buttons button svg path {
  fill: var(--primary);
}
.home-secB .swiper-buttons button:first-child {
  transform: rotate(180deg);
}
.home-secB .swiper-buttons button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.home-secB .commanSwiper {
  margin-bottom: 40px;
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSwiper {
    margin-bottom: 20px;
  }
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card {
  position: relative;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card:hover {
  transform: translateY(-5px);
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-img:hover img {
  transform: scale(1.1);
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 20px 60px;
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content {
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content {
    padding: 10px 20px;
  }
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content h5 {
  font-family: "Cinzel";
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--white);
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content h5 {
    margin-bottom: 8px;
  }
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content p {
  color: var(--white);
  line-height: 1.4;
  opacity: 0.7;
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content p {
    font-size: 13px;
  }
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card::before {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  border-radius: 10px;
}
.home-secB .btn-fill {
  display: block;
  margin: 0 auto;
}

.home-secC {
  position: relative;
  margin-top: 70px;
  height: 100vh;
}
@media only screen and (max-width: 991px) {
  .home-secC {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC {
    margin-top: 30px;
    height: 35vh;
  }
}
.home-secC::before {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 68.75%);
}
.home-secC img, .home-secC video {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secC .content {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  z-index: 1;
}
@media only screen and (max-width: 1366px) {
  .home-secC .content {
    bottom: 10%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .content {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .content {
    bottom: 10%;
    top: auto;
    transform: translateX(-50%);
    width: 95%;
  }
}
.home-secC .content h1 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 64px;
  margin: 10px 0 50px;
}
@media only screen and (max-width: 1366px) {
  .home-secC .content h1 {
    margin: 10px 0 35px;
    font-size: 56px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .content h1 {
    font-size: 42px;
    margin: 8px 0 25px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .content h1 {
    font-size: 32px;
    margin: 8px 0 12px;
  }
}
.home-secC .content p {
  color: var(--white);
  font-size: 20px;
  margin-top: 40px;
  line-height: 1.4;
}
@media only screen and (max-width: 991px) {
  .home-secC .content p {
    font-size: 18px;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .content p {
    font-size: 16px;
    margin-top: 15px;
  }
}
.home-secC .content .img-deg {
  width: 80px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .home-secC .content .img-deg {
    width: 70px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .content .img-deg {
    width: 60px;
  }
}
.home-secC .content .img-deg img {
  width: 100%;
  display: block;
}

.home-secD {
  padding: 90px 0 0;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .home-secD {
    padding: 60px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD {
    padding: 3rem 0 3rem;
  }
}
.home-secD .circle-effect {
  top: 10%;
  left: 16%;
  width: 200px;
  height: 200px;
}
@media only screen and (max-width: 991px) {
  .home-secD .circle-effect {
    width: 150px;
    height: 150px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .circle-effect {
    display: none;
  }
}
.home-secD .heading {
  text-align: center;
  padding-bottom: 60px;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .home-secD .heading {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading {
    padding-bottom: 30px;
  }
}
.home-secD .heading h3 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .home-secD .heading h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading h3 {
    font-size: 24px;
  }
}
.home-secD .heading h4 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .home-secD .heading h4 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading p {
    font-size: 14px;
  }
}
.home-secD .swiper-wrap {
  position: relative;
}
.home-secD .swiper-wrap .swiper-group {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 53%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .home-secD .swiper-wrap .swiper-group {
    width: 70%;
  }
}
@media only screen and (max-width: 675px) {
  .home-secD .swiper-wrap .swiper-group {
    display: none;
  }
}
.home-secD .swiper-wrap .swiper-group button {
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  background: var(--white);
}
@media only screen and (max-width: 991px) {
  .home-secD .swiper-wrap .swiper-group button {
    width: 35px;
    height: 35px;
  }
}
.home-secD .swiper-wrap .swiper-group button svg {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 991px) {
  .home-secD .swiper-wrap .swiper-group button svg {
    width: 16px;
    height: 16px;
  }
}
.home-secD .swiper-wrap .swiper-group button svg path {
  fill: var(--black);
}
.home-secD .swiper-wrap .swiper-group button:hover {
  opacity: 0.8;
}
.home-secD .swiper-wrap .swiper-group .media-next {
  transform: rotate(270deg);
}
.home-secD .swiper-wrap .swiper-group .media-prev {
  transform: rotate(90deg);
}
.home-secD .media-slider .swiper-slide .item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}
.home-secD .media-slider .swiper-slide .item::before {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
}
.home-secD .media-slider .swiper-slide .item .item-img {
  overflow: hidden;
  border-radius: 10px;
}
.home-secD .media-slider .swiper-slide .item .item-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.home-secD .media-slider .swiper-slide .item .item-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem 1.5rem;
  width: 85%;
  border-radius: 10px 10px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1366px) {
  .home-secD .media-slider .swiper-slide .item .item-content {
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secD .media-slider .swiper-slide .item .item-content {
    padding: 1.5rem 1.2rem;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .media-slider .swiper-slide .item .item-content {
    padding: 1.5rem 1rem;
    width: 95%;
  }
}
.home-secD .media-slider .swiper-slide .item .item-content h5 {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 400;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .home-secD .media-slider .swiper-slide .item .item-content h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .media-slider .swiper-slide .item .item-content h5 {
    font-size: 16px;
  }
}
.home-secD .media-slider .swiper-slide.swiper-slide-active {
  z-index: 2;
}
.home-secD .media-slider .swiper-slide.swiper-slide-active .item .item-content {
  opacity: 1;
  visibility: visible;
}

.home-secE {
  padding: 70px 0;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .home-secE {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE {
    padding: 2rem 0 3rem;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .container {
    margin-left: 10px;
    width: 100%;
    max-width: 100%;
  }
}
.home-secE .circle-effect {
  top: 10%;
  right: 0;
  width: 200px;
  height: 200px;
}
@media only screen and (max-width: 991px) {
  .home-secE .circle-effect {
    width: 150px;
    height: 150px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .circle-effect {
    display: none;
  }
}
.home-secE .heading {
  text-align: center;
  padding-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .home-secE .heading {
    padding-bottom: 35px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .heading {
    padding-bottom: 2rem;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  .home-secE .heading p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .heading p {
    font-size: 13px;
  }
}
.home-secE .heading h3 {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
@media only screen and (max-width: 991px) {
  .home-secE .heading h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .heading h3 {
    font-size: 24px;
    gap: 10px;
  }
}
.home-secE .heading h3 svg {
  width: 45px;
  height: 45px;
}
@media only screen and (max-width: 991px) {
  .home-secE .heading h3 svg {
    width: 28px;
    height: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .heading h3 svg {
    width: 24px;
    height: 24px;
  }
}
.home-secE .swiper-wrap {
  position: relative;
}
.home-secE .swiper-wrap .flw-btn {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .home-secE .swiper-wrap .flw-btn {
    margin-top: 40px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .swiper-wrap .flw-btn {
    margin-top: 30px;
  }
}
.home-secE .swiper-wrap .flw-btn:hover {
  opacity: 0.7;
}
.home-secE .swiper-wrap .flw-btn svg path {
  fill: var(--primary);
}
.home-secE .swiper-wrap .swiper-group {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 675px) {
  .home-secE .swiper-wrap .swiper-group {
    display: none;
  }
}
.home-secE .swiper-wrap .swiper-group button {
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  background: var(--white);
}
@media only screen and (max-width: 991px) {
  .home-secE .swiper-wrap .swiper-group button {
    width: 35px;
    height: 35px;
  }
}
.home-secE .swiper-wrap .swiper-group button svg {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 991px) {
  .home-secE .swiper-wrap .swiper-group button svg {
    width: 16px;
    height: 16px;
  }
}
.home-secE .swiper-wrap .swiper-group button svg path {
  fill: var(--black);
}
.home-secE .swiper-wrap .swiper-group button:hover {
  opacity: 0.8;
}
.home-secE .swiper-wrap .swiper-group .commanSwiper-next {
  transform: rotate(270deg);
}
.home-secE .swiper-wrap .swiper-group .commanSwiper-prev {
  transform: rotate(90deg);
}
.home-secE .swiper-wrap .commanSwiper {
  margin: 0 20px;
}
.home-secE .swiper-wrap .commanSwiper .swiper-wrapper .swiper-slide .card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.home-secE .swiper-wrap .commanSwiper .swiper-wrapper .swiper-slide .card:hover {
  transform: scale(1.05);
}
.home-secE .swiper-wrap .commanSwiper .swiper-wrapper .swiper-slide .card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}/*# sourceMappingURL=home.css.map */