/* Banner */
.rts-btn {
  display: block;
  max-width: max-content;
  padding: 17px 31px;
  transition: 0.3s;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-secondary);
  line-height: 1;
}
.rts-btn.btn-primary {
  background: var(--color-primary) !important;
  color: var(--color-heading-1);
  border-width: 2px 4px 4px 2px;
  border-style: solid;
  border-color: var(--color-heading-1);
}
.rts-btn.btn-primary:hover {
  background: var(--color-white) !important;
}
.rts-btn.btn-primary2 {
  background: var(--color-primary-2) !important;
  color: var(--color-white);
  border-radius: 6px;
  border: 1px solid var(--color-primary-2);
}
.rts-btn.btn-primary2:hover {
  background: var(--color-primary) !important;
  border: 1px solid var(--color-primary);
  color: var(--color-heading-1);
}
.rts-btn.btn-primary2 i {
  margin-left: 5px;
}
.rts-btn.border-radius {
  border-radius: 46px;
  border-width: 2px 2px 5px 2px;
}
.rts-btn.with-arrow {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.rts-btn.btn-border {
  border: 1px solid #BBB1F2;
  color: var(--color-primary);
}
.rts-btn.btn-border:hover {
  background: var(--color-primary);
  color: #fff;
}
.rts-btn.btn-primary-white {
  background: #fff !important;
  color: #110C2D;
  border: 1px solid transparent;
}
.rts-btn.btn-primary-white:hover {
  background: transparent !important;
  border-color: #fff;
  color: #fff;
}
.rts-btn.btn-gym {
  background: var(--color-primary-gym) !important;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 34px;
}
.rts-btn.btn-gym:hover {
  border: 1px solid var(--color-white);
  background: var(--color-white) !important;
  color: var(--color-primary-gym) !important;
}
.rts-btn.btn-kitchen {
  background: var(--color-primary-kitchen) !important;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 14px 34px;
}
.rts-btn.btn-kitchen:hover {
  border: 1px solid var(--color-primary-kitchen);
  background: none !important;
  color: var(--color-primary-kitchen) !important;
}

.btn-narrow-arrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
}
.btn-narrow-arrow i {
  color: var(--color-primary);
}

.vedio-icone {
  position: relative;
  max-width: max-content;
}
.vedio-icone .video-play-button {
  position: unset;
  z-index: 2;
  box-sizing: content-box;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 57px;
  border-radius: 50%;
  background: var(--color-primary);
  display: block;
  border-width: 2px;
  border-style: solid;
  border-color: var(--color-heading-1);
  transition: all 0.3s;
}
.vedio-icone .video-play-button:hover {
  background: var(--color-white);
}
.vedio-icone .video-play-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: -2px;
  display: block;
  width: 64px;
  height: 64px;
  background: var(--color-heading-1);
  transition: all 200ms;
  border-radius: 50%;
}
.vedio-icone .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  height: 100%;
}
.vedio-icone .video-play-button span.outer-text {
  border: none;
  min-width: max-content;
  margin-left: 75px;
  position: relative;
  margin-top: -12px;
  color: var(--color-primary);
  font-weight: 500;
}
.vedio-icone .video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
  display: none;
}
.vedio-icone .video-overlay iframe {
  width: 70%;
  height: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
.vedio-icone .video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
  display: block;
}
.vedio-icone .video-overlay .video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.banner-area-one {
  background: linear-gradient(180deg, #A157FF 0%, #6B34C4 100%);
  height: auto;
  display: flex;
  overflow: hidden;
  position: relative;
  margin: auto;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .banner-area-one {
    height: auto;
  }
}
@media (max-width: 991px) {
  .banner-area-one {
    padding-top: 150px;
  }
}
.banner-area-one .title-banner {
  color: var(--color-white);
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
  margin-top: 0;
  letter-spacing: -2px;
  position: relative;
}
@media (max-width: 1300px) and (min-width: 1200px) {
  .banner-area-one .title-banner {
    font-size: 58px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .banner-area-one .title-banner {
    font-size: 48px;
    line-height: 60px;
  }
}
@media (max-width: 768px) {
  .banner-area-one .title-banner {
    font-size: 54px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-area-one .title-banner {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media (max-width: 450px) {
  .banner-area-one .title-banner {
    font-size: 32px;
  }
}
.banner-area-one .title-banner img {
  position: absolute;
  left: -40px;
  top: -30px;
}
@media only screen and (max-width: 575px) {
  .banner-area-one .title-banner img {
    display: none;
  }
}
.banner-area-one .title-banner span {
  color: var(--color-primary);
}
@media (max-width: 1300px) and (min-width: 1200px) {
  .banner-area-one .title-banner span {
    font-size: 58px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .banner-area-one .title-banner span {
    font-size: 48px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  .banner-area-one .title-banner span {
    font-size: 54px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-area-one .title-banner span {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media (max-width: 450px) {
  .banner-area-one .title-banner span {
    font-size: 32px;
  }
}
.banner-area-one .shape-image .shape {
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .banner-area-one .shape-image .shape {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .banner-area-one .shape-image .shape {
    display: none;
  }
}
.banner-area-one .shape-image .shape.one {
  left: 4%;
  top: 15%;
}
.banner-area-one .shape-image .shape.two {
  left: 6%;
  bottom: 28%;
}
.banner-area-one .shape-image .shape.three {
  left: 40%;
  bottom: 30%;
}
.banner-area-one .shape-image .shape.four {
  left: 50%;
  bottom: 45%;
}
.banner-area-one .shape-image .shape.five {
  left: 48%;
  bottom: 15%;
}
.banner-area-one .shape-image .shape.six {
  right: 5%;
  top: 30%;
}
.banner-area-one .shape-image .shape.seven {
  right: 5%;
  bottom: 35%;
}
@media (max-width: 1200px) {
  .banner-area-one .shape-image {
    display: none;
  }
}
.banner-area-one .banner-bg-grid-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/banner/bg-grid.png);
  background-size: cover;
  background-repeat: repeat;
  z-index: -2;
}

.banner-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.banner-bg-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.banner-bg-shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.banner-content-one {
  display: flex;
  align-items: center;
  padding: 300px 0 360px;
}
@media (max-width: 1200px) {
  .banner-content-one {
    padding: 250px 0 200px 20px;
  }
}
@media (max-width: 991px) {
  .banner-content-one {
    padding: 80px 0 200px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-content-one {
    padding: 80px 0 120px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-content-one {
    padding: 56px 0 120px 20px;
  }
}
@media (max-width: 450px) {
  .banner-content-one {
    padding: 56px 0 120px;
  }
}
.banner-content-one p.disc {
  max-width: 575px;
  color: var(--color-white);
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 1199px) {
  .banner-content-one p.disc {
    min-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .banner-content-one p.disc {
    max-width: 100%;
  }
}
.banner-content-one .banner-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 450px) {
  .banner-content-one .banner-btn {
    flex-direction: column;
    align-items: self-start;
  }
}
.banner-content-one .banner-btn .video-btn-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
.banner-content-one .banner-btn .video-btn-area .intro {
  margin: 0;
  color: var(--color-white);
}

.banner-content-two {
  align-items: center;
  padding: 200px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 450px) {
  .banner-content-two {
    padding: 80px 0;
  }
}
.banner-content-two .pre-title {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}
.banner-content-two .title-banner {
  color: var(--color-white);
  font-size: 80px;
  font-weight: 900;
  line-height: 90px;
}
@media (max-width: 991px) {
  .banner-content-two .title-banner {
    font-size: 64px;
    line-height: 74px;
  }
}
@media (max-width: 768px) {
  .banner-content-two .title-banner {
    font-size: 58px;
    line-height: 68px;
  }
}
@media (max-width: 576px) {
  .banner-content-two .title-banner {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 450px) {
  .banner-content-two .title-banner {
    font-size: 32px;
    line-height: 42px;
  }
  .banner-content-two .title-banner br {
    display: none;
  }
}
.banner-content-two .title-banner .one {
  color: var(--color-primary-2);
}
.banner-content-two .title-banner .two {
  color: var(--color-primary-3);
}
.banner-content-two p.disc {
  max-width: 670px;
  color: var(--color-white);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 45px;
}
.banner-content-two .banner-btn {
  align-items: center;
  gap: 30px;
}

.banner-content-three {
  align-items: center;
  padding: 236px 0;
  position: relative;
  z-index: 2;
}
.banner-content-three .pre-title {
  color: var(--color-primary-5);
  gap: 8px;
  margin-bottom: 25px;
  font-size: 24px;
  font-family: var(--font-secondary);
}
@media (max-width: 450px) {
  .banner-content-three .pre-title {
    font-size: 20px;
  }
}
.banner-content-three .pre-title span {
  color: var(--color-primary-3);
}
.banner-content-three .title-banner {
  color: #553CDF;
  font-size: 76px;
  font-weight: 800;
  line-height: 80px;
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .banner-content-three .title-banner {
    font-size: 64px;
    line-height: 70px;
  }
}
@media (max-width: 1200px) {
  .banner-content-three .title-banner {
    font-size: 50px;
    line-height: 56px;
  }
}
@media (max-width: 767px) {
  .banner-content-three .title-banner {
    font-size: 44px;
    line-height: 50px;
  }
}
@media (max-width: 577px) {
  .banner-content-three .title-banner {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (max-width: 450px) {
  .banner-content-three .title-banner {
    font-size: 30px;
    line-height: 36px;
  }
}
.banner-content-three .title-banner span {
  font-weight: 900;
}
.banner-content-three .banner-btn {
  margin-top: 60px;
}

.banner-right-img {
  position: absolute;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 991px) {
  .banner-right-img {
    position: unset;
  }
}
.banner-right-img.v-8 {
  position: absolute;
  bottom: 0;
  right: 0%;
  display: block;
  width: max-content;
  height: auto;
  z-index: 1;
}
@media (max-width: 1200px) {
  .banner-right-img.v-8 {
    max-width: 550px;
  }
}
@media (max-width: 991px) {
  .banner-right-img.v-8 {
    position: relative;
    z-index: 1;
    order: -1;
    margin-bottom: 60px;
    max-width: 100%;
    width: auto;
  }
}
.banner-right-img.v-8 .round-shape {
  position: absolute;
  top: 60%;
  left: 10px;
  transform: translateY(-60%);
  z-index: -1;
}

.banner-area-two {
  position: relative;
  z-index: 1;
}
.banner-area-two .banner-wrapper-two {
  position: relative;
  z-index: 2;
}
.banner-area-two .banner-wrapper-two::after {
  content: "";
  position: absolute;
  z-index: -2;
  background: linear-gradient(90deg, #953a11 0%, rgba(50, 20, 6, 0) 64.29%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.banner-area-two .banner-wrapper-two.banner-bg-image {
  background: url(assets/img/hero/aiart_illustrator_coloring_art_capybara.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-area-two .banner-wrapper-two.banner-bg-image2 {
  background: url(assets/img/hero/hero-bg-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-area-two .banner-wrapper-two.banner-bg-image3 {
  background: url(assets/img/hero/aiart_illustrator_coloring_art_001.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-area-two .banner-wrapper-two.banner-bg-image4 {
  background: url(assets/img/hero/aiart_illustrator_coloring_art_capybara.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-area-two .banner-wrapper-two.banner-bg-image5 {
  background: url(assets/img/hero/aiart_illustrator_coloring_art_capybara.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-area-two .banner-wrapper-two.banner-bg-image6 {
  background: url(assets/img/hero/aiart_illustrator_coloring_art_capybara.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-area-two .shape-image .shape {
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .banner-area-two .shape-image .shape {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .banner-area-two .shape-image .shape {
    display: none;
  }
}
.banner-area-two .shape-image .shape.one {
  left: 5%;
  top: 15%;
}
.banner-area-two .shape-image .shape.two {
  left: 7%;
  bottom: 7%;
}
.banner-area-two .shape-image .shape.three {
  left: 45%;
  top: 20%;
}

.banner-area-three {
  position: relative;
  z-index: 2;
  background: url(../images/banner/banner-bg-6.jpg);
}
@media (max-width: 1024px) {
  .banner-area-three .banner-content-three {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 120px 0;
  }
}
.banner-area-three .banner-wrapper-three .banner-hero-image {
  position: absolute;
  bottom: 0;
  right: -7%;
  z-index: 1;
}
@media (max-width: 1024px) {
  .banner-area-three .banner-wrapper-three .banner-hero-image {
    position: unset;
    margin-bottom: 50px;
  }
}
.banner-area-three .banner-wrapper-three .shape-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.banner-area-three .banner-wrapper-three .shape-image .svg-shape1 {
  position: absolute;
  top: 11%;
  right: 7%;
}
.banner-area-three .banner-wrapper-three .shape-image .svg-shape2 {
  position: absolute;
  bottom: 0;
  right: 20%;
}
.banner-area-three .banner-slider-inner {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: auto;
}
.banner-area-three .banner-slider-inner .shape-image .shape {
  top: 8%;
  right: 38%;
}
.banner-area-three .banner-slider-inner .swiper-btn {
  width: 100px;
  height: 100px;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px dashed var(--color-primary-2);
  background: transparent;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  color: var(--color-white);
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .banner-area-three .banner-slider-inner .swiper-btn {
    width: 60px;
    height: 60px;
    line-height: 55px;
  }
}
@media (max-width: 1366px) {
  .banner-area-three .banner-slider-inner .swiper-btn {
    display: none;
  }
}
@media (max-width: 1600px) {
  .banner-area-three .banner-slider-inner .swiper-btn svg {
    width: 30px;
  }
}
.banner-area-three .banner-slider-inner .swiper-btn svg path {
  transition: all 0.3s;
  fill: var(--color-primary-2);
}
.banner-area-three .banner-slider-inner .swiper-btn:hover {
  color: var(--color-heading-1);
  background: var(--color-primary-2);
  border: 1px solid var(--color-primary-2);
}
.banner-area-three .banner-slider-inner .swiper-btn:hover svg path {
  fill: var(--color-white);
}
.banner-area-three .banner-slider-inner .swiper-btn::after {
  display: none;
}
.banner-area-three .banner-slider-inner .swiper-btn.swiper-button-prev3 {
  left: 100px;
}
@media (max-width: 1600px) {
  .banner-area-three .banner-slider-inner .swiper-btn.swiper-button-prev3 {
    left: 20px;
  }
}
.banner-area-three .banner-slider-inner .swiper-btn.swiper-button-next3 {
  right: 100px;
}
@media (max-width: 1600px) {
  .banner-area-three .banner-slider-inner .swiper-btn.swiper-button-next3 {
    right: 20px;
  }
}

.banner-slider-inner {
  position: relative;
  z-index: 1;
}
.banner-slider-inner .banner-content-two {
  opacity: 0;
}
.banner-slider-inner .banner-content-two .pre-title {
  opacity: 0;
  animation: none;
  transition-delay: 0.8s;
}
.banner-slider-inner .banner-content-two .title-banner {
  opacity: 0;
  animation: none;
  transition-delay: 1.2s;
}
.banner-slider-inner .banner-content-two .disc {
  opacity: 0;
  animation: none;
  transition-delay: 1.7s;
}
.banner-slider-inner .banner-content-two .banner-btn {
  opacity: 0;
  animation: none;
  transition-delay: 2.2s;
}
.banner-slider-inner .swiper-slide-active .banner-content-two {
  opacity: 1;
}
.banner-slider-inner .swiper-slide-active .banner-content-two .pre-title {
  animation: slideInUp3 0.8s;
  animation-delay: 0.8s;
  opacity: 1;
}
.banner-slider-inner .swiper-slide-active .banner-content-two .title-banner {
  animation: fadeInUp 0.8s;
  animation-delay: 1.2s;
  opacity: 1;
}
.banner-slider-inner .swiper-slide-active .banner-content-two .disc {
  animation: fadeInUp 0.5s;
  animation-delay: 1.7s;
  opacity: 1;
}
.banner-slider-inner .swiper-slide-active .banner-content-two .banner-btn {
  animation: fadeInUp 0.5s;
  animation-delay: 2.2s;
  opacity: 1;
}
.banner-slider-inner .swiper-paginations {
  width: max-content;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.banner-slider-inner .swiper-paginations .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #B3B3B3;
  opacity: 1;
}
.banner-slider-inner .swiper-paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.banner-slider-inner .swiper-btn {
  width: 40px;
  height: 40px;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--color-white);
  background: transparent;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--color-white);
  transition: all 0.3s;
}
.banner-slider-inner .swiper-btn:hover {
  color: var(--color-heading-1);
  background: var(--color-primary);
  border: 1px solid var(--color-heading-1);
}
.banner-slider-inner .swiper-btn::after {
  display: none;
}
.banner-slider-inner .swiper-btn.swiper-button-prev {
  left: 100px;
}
@media (max-width: 1600px) {
  .banner-slider-inner .swiper-btn.swiper-button-prev {
    left: 20px;
  }
}
@media (max-width: 1440px) {
  .banner-slider-inner .swiper-btn.swiper-button-prev {
    bottom: 50px;
    /*top: unset;*/
    transform: none;
  }
}
@media (max-width: 450px) {
  .banner-slider-inner .swiper-btn.swiper-button-prev {
    display: none;
  }
}
.banner-slider-inner .swiper-btn.swiper-button-next {
  right: 100px;
}
@media (max-width: 1600px) {
  .banner-slider-inner .swiper-btn.swiper-button-next {
    right: 20px;
  }
}
@media (max-width: 1440px) {
  .banner-slider-inner .swiper-btn.swiper-button-next {
    bottom: 50px;
    /*top: unset;*/
    transform: none;
  }
}
@media (max-width: 450px) {
  .banner-slider-inner .swiper-btn.swiper-button-next {
    display: none;
  }
}
.banner-slider-inner .banner-content-three {
  opacity: 0;
}
.banner-slider-inner .banner-content-three .pre-title {
  opacity: 0;
  animation: none;
  transition-delay: 0.8s;
}
.banner-slider-inner .banner-content-three .title-banner {
  opacity: 0;
  animation: none;
  transition-delay: 1.2s;
}
.banner-slider-inner .banner-content-three .banner-btn {
  opacity: 0;
  animation: none;
  transition-delay: 1.8s;
}
.banner-slider-inner .banner-content-three .banner-hero-image {
  opacity: 0;
  animation: none;
  transition-delay: 1.2s;
}
.banner-slider-inner .swiper-slide-active .banner-content-three {
  opacity: 1;
}
.banner-slider-inner .swiper-slide-active .banner-content-three .pre-title {
  animation: slideInUp3 0.8s;
  animation-delay: 0.8s;
  opacity: 1;
}
.banner-slider-inner .swiper-slide-active .banner-content-three .title-banner {
  animation: fadeInUp 0.8s;
  animation-delay: 1.2s;
  opacity: 1;
}
.banner-slider-inner .swiper-slide-active .banner-content-three .banner-btn {
  animation: fadeInUp 0.5s;
  animation-delay: 1.8s;
  opacity: 1;
}
.banner-slider-inner .swiper-slide-active .banner-content-three .banner-hero-image {
  opacity: 1;
  animation: slideInRight 1s;
  animation-delay: 1.2s;
}
@media (max-width: 1024px) {
  .banner-slider-inner .swiper-slide-active .banner-content-three .banner-hero-image {
    animation: none;
  }
}

@media (max-width: 991px) {
  .order-change {
    order: -1;
  }
}

@media (max-width: 1024px) {
  .order-change2 {
    order: -1;
  }
}

@media (max-width: 1200px) {
  .order-change3 {
    order: -1;
  }
}

.banner-area-four {
  position: relative;
  z-index: 1;
  height: 860px;
}
@media (max-width: 991px) {
  .banner-area-four {
    height: unset;
  }
}
.banner-area-four .banner-slider-inner {
  height: 100%;
}
.banner-area-four .swiper {
  height: 100%;
}
.banner-area-four .swiper-slide {
  width: 100% !important;
  height: 100%;
}
.banner-area-four .banner-wrapper-four {
  position: relative;
  z-index: 2;
  height: 100%;
}
.banner-area-four .banner-wrapper-four.banner-bg-image4 {
  background: url(assets/img/hero/aiart_illustrator_coloring_art_capybara.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-area-four .banner-wrapper-four.banner-bg-image5 {
  background: url(assets/img/hero/aiart_illustrator_coloring_art_capybara.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-area-four .banner-wrapper-four.banner-bg-image6 {
  background: url(assets/img/hero/aiart_illustrator_coloring_art_capybara.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-area-four .banner-wrapper-four .banner-bg-image {
  width: 100%;
  height: 100%;
}
.banner-area-four .banner-content-four {
  align-items: center;
  padding: 160px 90px 209px;
  position: absolute;
  z-index: 2;
  bottom: -115px;
  left: 5%;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  opacity: 0;
}
@media (max-width: 1366px) {
  .banner-area-four .banner-content-four {
    padding: 160px 70px 180px;
  }
}
@media (max-width: 1200px) {
  .banner-area-four .banner-content-four {
    padding: 150px 50px 150px;
  }
}
@media (max-width: 991px) {
  .banner-area-four .banner-content-four {
    position: relative;
    left: unset;
    bottom: unset;
    transform: none;
    border-radius: 0;
    padding: 120px 80px 120px;
  }
}
@media (max-width: 576px) {
  .banner-area-four .banner-content-four {
    padding: 120px 20px 120px;
  }
}
.banner-area-four .banner-content-four .inner {
  position: relative;
  z-index: 1;
}
.banner-area-four .banner-content-four .inner .content-shape {
  position: absolute;
  top: -120px;
  left: 55px;
}
@media (max-width: 768px) {
  .banner-area-four .banner-content-four .inner .content-shape {
    top: -90px;
    left: 10px;
    width: 130px;
  }
}
.banner-area-four .banner-content-four .content-shape {
  opacity: 0;
  animation: none;
  transition-delay: 2.5s;
}
.banner-area-four .banner-content-four .pre-title {
  color: var(--color-primary-3);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
  opacity: 0;
  animation: none;
  transition-delay: 0.8s;
}
.banner-area-four .banner-content-four .title-banner {
  color: var(--color-heading-1);
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
  letter-spacing: -2px;
  opacity: 0;
  animation: none;
  transition-delay: 1.2s;
}
@media (max-width: 1366px) {
  .banner-area-four .banner-content-four .title-banner {
    font-size: 50px;
    line-height: 56px;
  }
}
@media (max-width: 576px) {
  .banner-area-four .banner-content-four .title-banner {
    font-size: 34px;
    line-height: 40px;
  }
}
.banner-area-four .banner-content-four p.disc {
  max-width: 670px;
  color: var(--color-heading-1);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 45px;
  opacity: 0;
  animation: none;
  transition-delay: 1.8s;
}
@media only screen and (max-width: 1199px) {
  .banner-area-four .banner-content-four p.disc {
    min-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .banner-area-four .banner-content-four p.disc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .banner-area-four .banner-content-four p.disc br {
    display: none;
  }
}
.banner-area-four .banner-content-four .banner-btn {
  align-items: center;
  gap: 30px;
  opacity: 0;
  animation: none;
  transition-delay: 2.2s;
}
.banner-area-four .banner-content-four .banner-btn .rts-btn {
  margin: auto;
}
.banner-area-four .shape-image .shape {
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .banner-area-four .shape-image .shape {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .banner-area-four .shape-image .shape {
    display: none;
  }
}
.banner-area-four .shape-image .shape.one {
  left: 5%;
  top: 15%;
}
.banner-area-four .shape-image .shape.two {
  left: 7%;
  bottom: 7%;
}
.banner-area-four .shape-image .shape.three {
  left: 45%;
  top: 20%;
}
.banner-area-four .banner-slider-inner .swiper-btn {
  width: 100px;
  height: 100px;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px dashed var(--color-primary-2);
  background: transparent;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s;
}
@media (max-width: 1600px) {
  .banner-area-four .banner-slider-inner .swiper-btn {
    width: 60px;
    height: 60px;
    line-height: 58px;
  }
}
@media (max-width: 991px) {
  .banner-area-four .banner-slider-inner .swiper-btn {
    display: none;
  }
}
.banner-area-four .banner-slider-inner .swiper-btn:hover {
  color: var(--color-heading-1);
  background: var(--color-primary-2);
  border: 1px solid var(--color-primary-2);
}
.banner-area-four .banner-slider-inner .swiper-btn:hover svg path {
  fill: var(--color-white);
}
@media (max-width: 1600px) {
  .banner-area-four .banner-slider-inner .swiper-btn svg {
    width: 30px;
  }
}
.banner-area-four .banner-slider-inner .swiper-btn svg path {
  fill: var(--color-primary-2);
}
.banner-area-four .banner-slider-inner .swiper-btn::after {
  display: none;
}
.banner-area-four .banner-slider-inner .swiper-btn.swiper-button-prev {
  left: 100px;
}
@media (max-width: 1366px) {
  .banner-area-four .banner-slider-inner .swiper-btn.swiper-button-prev {
    left: 30px;
  }
}
.banner-area-four .banner-slider-inner .swiper-btn.swiper-button-next {
  right: 100px;
}
@media (max-width: 1366px) {
  .banner-area-four .banner-slider-inner .swiper-btn.swiper-button-next {
    right: 30px;
  }
}
.banner-area-four .swiper-slide-active .banner-content-four {
  opacity: 1;
}
.banner-area-four .swiper-slide-active .banner-content-four .content-shape {
  opacity: 1;
  animation: zoomIn 1s;
  animation-delay: 2.5s;
}
.banner-area-four .swiper-slide-active .banner-content-four .pre-title {
  animation: slideInUp3 0.8s;
  animation-delay: 0.8s;
  opacity: 1;
}
.banner-area-four .swiper-slide-active .banner-content-four .title-banner {
  animation: fadeInUp 0.8s;
  animation-delay: 1.2s;
  opacity: 1;
}
.banner-area-four .swiper-slide-active .banner-content-four .banner-btn {
  animation: fadeInUp 0.5s;
  animation-delay: 2.2s;
  opacity: 1;
}
.banner-area-four .swiper-slide-active .banner-content-four p.disc {
  opacity: 1;
  animation: fadeInUp 1s;
  animation-delay: 1.8s;
}

.rts-breadcrumb-area {
  background: url(../images/banner/breadcrumb-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  position: relative;
}
.rts-breadcrumb-area::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.rts-breadcrumb-area .breadcrumb-main-wrapper a {
  color: var(--color-white);
}
.rts-breadcrumb-area .breadcrumb-main-wrapper a.active {
  color: var(--color-primary);
}
.rts-breadcrumb-area .breadcrumb-main-wrapper i {
  color: var(--color-white);
}
.rts-breadcrumb-area .breadcrumb-main-wrapper .title {
  color: var(--color-white);
  margin-top: 15px;
  margin-bottom: 0;
}