* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "ROBOTO", "Noto Sans TC", sans-serif;
}

img {
  width: 100%;
}

.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: -100%;
  z-index: 1000;
  transition: top 1s ease;
}
.header.active {
  top: 0;
}
.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.header-logo img {
  height: 30px;
  width: auto;
}
@media screen and (max-width: 992px) {
  .header-logo img {
    height: 25px;
  }
}
.header-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}
.header-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  padding: 24px 15px;
  transition: all 0.3s ease;
}
.header-menu li a:hover {
  color: #5585fa;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 32px;
  height: 2px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .header-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
    transition: right 0.3s ease;
  }
  .header-menu.active {
    right: 0;
  }
  .header-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .header-menu li:last-child {
    border-bottom: none;
  }
  .header-menu li a {
    display: block;
    padding: 20px 15px;
    color: #333;
    font-size: 16px;
    border-radius: 0;
  }
  .header-menu li a:hover {
    color: #5585fa;
  }
}
footer {
  background-color: #2c3e8c;
  padding: 60px 20px;
  text-align: center;
  width: 100%;
}
footer .footer-container p {
  color: #e4e6e6;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

.pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc {
    display: block;
  }
}

.pc-flex {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-flex {
    display: flex;
  }
}

.mb {
  display: none;
}
@media screen and (max-width: 992px) {
  .mb {
    display: block;
  }
}

[data-aos=fade-in] {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

[data-aos=fade-in].aos-animate {
  opacity: 1;
}

h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  color: #5585fa;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 28px;
  }
}

section.hero {
  height: 50svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: 700px;
}
@media screen and (max-width: 992px) {
  section.hero {
    min-height: 700px;
  }
}
section.hero h1 {
  position: absolute;
  z-index: -1;
  left: -100%;
  top: -100%;
}
section.hero .hero-container {
  padding: 0 20px;
}
section.hero .hero-logo img{
  width: auto;
  height: 100%;
  max-height: 50px;
}

section.platform .lxp-logo img, section.media .cheers-logo img , section.books .book-logo img{
  width: auto;
  height: 100%;
  max-height: 80px;
}
@media screen and (max-width: 992px) {
  section.hero .hero-logo img {
    max-height: 50px;
  }
}

@media screen and (max-width: 992px) {
  section.platform .lxp-logo img {
    max-height: 50px;
  }
}

@media screen and (max-width: 992px) {
  section.media .cheers-logo img {
    max-height: 50px;
  }
}

@media screen and (max-width: 992px) {
  section.books .book-logo img {
    max-height: 50px;
  }
}
section.hero .hero-bg img {
  position: fixed;
  height: 100svh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  left: 0;
  top: 0;
}
@media screen and (max-width: 992px) {
  section.hero .hero-bg img {
    -o-object-position: 10%;
       object-position: 10%;
  }
}
section.hero .hero-description {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 40px;
}
section.hero .hero-description .pc-show {
  display: inline-block;
}
@media screen and (max-width: 415px) {
  section.hero .hero-description .pc-show {
    display: none;
  }
}
section.hero .hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 1px;
  height: 160px;
  background-color: #5585fa;
  cursor: pointer;
  text-align: center;
  margin-top: 40px;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  section.hero .hero-scroll {
    width: 0.5px;
    height: 200px;
  }
}
section.hero .hero-scroll::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #5585fa;
  border-radius: 50%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}
section.special {
  background-color: #fff;
  padding: 60px 25px 70px;
  background-color: #fff;
  text-align: center;
}
section.special p {
  max-width: 510px;
  text-align: left;
  margin: 40px auto 0;
  font-size: 17px;
  line-height: 30px;
}
section.special .special-container {
  max-width: 1200px;
  margin: auto;
}
section.special .special-container img {
  width: 100%;
  margin-top: 40px;
}

p.book-description{
  max-width: 510px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 30px;
}

section.team {
  padding: 60px 25px 70px;
  background-color: #f4f6f6;
}
@media screen and (max-width: 820px) {
  section.team {
    padding: 60px 25px 90px;
  }
}
section.team .slick-slide {
  aspect-ratio: 215/395;
}
section.team .slick-dots {
  bottom: -25px;
}
section.team .team-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
section.team .team-description {
  max-width: 510px;
  margin: 40px auto 0;
  text-align: left;
  font-size: 17px;
  line-height: 30px;
}
section.team .team-grid {
  margin: 40px 20px 0;
}
@media screen and (max-width: 1250px) {
  section.team .team-grid {
    margin: 40px 50px 0;
  }
}
@media screen and (max-width: 350px) {
  section.team .team-grid {
    margin: 40px 20px 0;
  }
}
section.team .team-member {
  padding: 0 10px;
  aspect-ratio: 215/395;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 499px) {
  section.team .team-member {
    padding: 0px;
  }
}
section.team .team-content {
  position: absolute;
  bottom: 28px;
  width: calc(100% - 20px);
  padding: 0 15px 30px;
  z-index: 1;
}
@media screen and (max-width: 499px) {
  section.team .team-content {
    padding: 0 15px 20px;
    width: calc(100% - 0px);
  }
}
section.team .team-avatar {
  width: 100%;
  height: 100%;
  max-height: 95%;
  padding-top: 5%;
  position: relative;
  background-color: #444;
  border-radius: 16px;
  overflow: hidden;
}
section.team .team-avatar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 16px;
}
section.team .team-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
section.team .team-name {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
section.team .team-position {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin-top: 13px;
  height: 72px;
}
section.vision {
  padding: 60px 25px 70px;
  background-color: #fff;
  border-top: 1px solid #eceeee;
}
section.vision .vision-container {
  max-width: 1200px;
  margin: auto;
}
section.vision .vision-description {
  max-width: 510px;
  margin: 30px auto 0;
  text-align: left;
  font-size: 17px;
  line-height: 30px;
}
section.vision .vision-grid {
  margin: 40px 0px 0;
  display: flex;
  gap: 6px;
  overflow-y: auto;
}
@media screen and (max-width: 820px) {
  section.vision .vision-grid {
    flex-wrap: wrap;
    gap: 40px 0px;
  }
}
section.vision .vision-card {
  display: flex;
  scroll-snap-align: start;
  transition: flex 0.5s;
  height: 380px;
  flex-direction: column;
  flex: 1 1 0%;
  min-width: 310px;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  section.vision .vision-card {
    min-width: 100%;
    height: auto;
  }
  section.vision .vision-card .vision-content::before {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@media screen and (min-width: 821px) {
  section.vision .vision-card:hover {
    flex: 2 1 0%;
  }
  section.vision .vision-card:hover p {
    visibility: visible;
    transition: all 1s;
    transition-delay: 0.3s;
    opacity: 1;
  }
  section.vision .vision-card:hover .vision-content::before {
    background-color: rgba(0, 0, 0, 0.6);
  }
  section.vision .vision-card:hover .vision-arrow {
    background-color: #e54228;
  }
  section.vision .vision-card:hover .vision-arrow img {
    transform: rotate(0);
  }
}
section.vision .vision-card p {
  visibility: hidden;
  min-width: 306px;
  transition: all 0.5s;
  opacity: 0;
}
@media screen and (max-width: 820px) {
  section.vision .vision-card p {
    visibility: visible;
    transition: all 1s;
    transition-delay: 0.3s;
    opacity: 1;
    min-width: unset;
  }
}
@media screen and (max-width: 350px) {
  section.vision .vision-card p {
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
section.vision .vision-arrow {
  position: absolute;
  right: 0;
  padding: 2px 3px;
  background-color: #5585fa;
  transition: 0.7s;
}
@media screen and (max-width: 820px) {
  section.vision .vision-arrow {
    background-color: #e54228;
  }
  section.vision .vision-arrow img {
    transform: rotate(0deg);
  }
}
section.vision .vision-arrow img {
  transition: 0.7s;
  transform: rotate(-180deg);
}
section.vision .vision-content {
  display: flex;
  background-color: #eee;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 380px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 820px) {
  section.vision .vision-content {
    aspect-ratio: 390/237;
    height: auto;
  }
}
section.vision .vision-content a {
  align-items: flex-end;
  display: inline-flex;
  width: 100%;
  height: 100%;
  padding: 16px 12px;
  text-decoration: none;
}
@media screen and (max-width: 820px) {
  section.vision .vision-content a {
    padding: 13px 8px;
  }
}
section.vision .vision-content p {
  color: #fff;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0.84px;
  z-index: 1;
  position: relative;
  max-width: 78%;
}
@media screen and (max-width: 820px) {
  section.vision .vision-content p {
    line-height: 21px;
    max-width: 100%;
  }
}
section.vision .vision-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
section.vision .vision-content-1 {
  background-image: url("./../image/banner-1.jpg");
}
section.vision .vision-content-2 {
  background-image: url("./../image/banner-2.jpg");
}
section.vision .vision-content-3 {
  background-image: url("./../image/banner-3.jpg");
}
section.vision .vision-card-title {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
  color: #233270;
  padding-left: 7px;
  border-left: 2px solid #5585fa;
}
@media screen and (max-width: 820px) {
  section.vision .vision-card-title {
    padding-left: 5px;
  }
}
section.media {
  padding: 60px 25px 70px;
  background-color: #fff;
  border-top: 1px solid #eceeee;
}
section.media .media-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
section.media .media-grid {
  display: flex;
  text-align: left;
  margin-top: 40px;
  gap: 60px 48px;
}
@media screen and (max-width: 820px) {
  section.media .media-grid {
    flex-direction: column;
  }
}
section.media .media-grid h3 {
  font-size: 20px;
  font-weight: 500;
  color: #233270;
  padding-left: 7px;
  border-left: 2px solid #5585fa;
}
@media screen and (max-width: 820px) {
  section.media .media-grid h3 {
    padding-left: 5px;
  }
}
@media screen and (max-width: 820px) {
  section.media .media-card {
    width: 100%;
  }
}
section.media .media-description {
  font-size: 17px;
  line-height: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 820px) {
  section.media .media-description {
    margin-top: 22px;
  }
}
section.media .media-btn ,section.team .media-btn ,section.books .media-btn{
  margin-top: 60px;
  color: #5585fa;
  display: inline-block;
  padding: 14px 37px;
  border: 1px solid #5585fa;
  text-decoration: none;
  transition: 0.3s;
}

section.platform .media-btn{
  margin-top: 30px;
  color: #ffffff;
  display: inline-block;
  padding: 14px 37px;
  border: 1px solid #ffffff;
  text-decoration: none;
  transition: 0.3s;
  background-color: #233270;
}


section.team .media-btn {
  margin-top: 30px;
  color: #ffffff;
  display: inline-block;
  padding: 14px 37px;
  border: 1px solid #5585fa;
  text-decoration: none;
  transition: 0.3s;
  background-color: #5585fa;
}

section.media .media-btn:hover {
  background-color: #5585fa;
  color: #fff;
}


section.team .media-btn:hover {
  background-color: #f4f6f6;
  color: #5585fa;
}


section.books .media-btn:hover {
  background-color: #5585fa;
  color: #ffffff;
}

section.platform .media-btn:hover {
  background-color: #5585fa;
  color: #ffffff;
  border: 1px solid #5585fa;
}
section.partners {
  padding: 60px 25px 70px;
  background-color: #fff;
  border-top: 1px solid #eceeee;
}
@media screen and (max-width: 820px) {
  section.partners {
    padding: 60px 25px 90px;
  }
}
section.partners .slick-dots {
  bottom: -35px;
}
section.partners .partners-container {
  max-width: 1200px;
  margin: auto;
}
section.partners .partners-grid {
  display: flex;
  text-align: left;
  gap: 0 35px;
  margin: 40px 20px 0;
}
@media screen and (max-width: 1250px) {
  section.partners .partners-grid {
    margin: 40px 50px 0;
  }
}
@media screen and (max-width: 350px) {
  section.partners .partners-grid {
    margin: 40px 20px 0;
  }
}
section.partners .partners-grid::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
section.partners .partners-grid::-webkit-scrollbar-thumb {
  background: transparent;
}
section.partners .partners-card {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  width: 1px;
  padding: 0 17.5px;
}
@media screen and (max-width: 499px) {
  section.partners .partners-card {
    width: 100%;
    padding: 0;
  }
}
section.partners .partners-card-title {
  font-size: 20px;
  margin-top: 15px;
  font-weight: 500;
  color: #233270;
}
section.partners .partners-description {
  font-size: 16px;
  line-height: 26px;
  margin-top: 15px;
}
section.partners .partners-logo {
  height: 212px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #eceeee 1px solid;
}

section.partners .book-cover {
  height: 212px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #eceeee 1px solid;
}



section.books {
  padding: 60px 25px 70px;
  background-color: #fff;
  border-top: 1px solid #eceeee;
}
@media screen and (max-width: 820px) {
  section.books {
    padding: 60px 25px 90px;
  }
}
section.books .slick-dots {
  bottom: -40px;
}
section.books .books-subtitle {
  color: #233270;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 499px) {
  section.books .books-subtitle {
    font-size: 26px;
    line-height: 1.35;
  }
}
section.books .books-description {
  max-width: 490px;
  margin: 40px auto 0;
  text-align: left;
  font-size: 17px;
  line-height: 30px;
}
section.books .books-container {
  max-width: 1000px;
  margin: 0px auto 0;
  text-align: center;
}
section.books .books-grid {
  text-align: left;
  margin-top: 55px;
  margin: 40px 20px 0;
}
@media screen and (max-width: 1250px) {
  section.books .books-grid {
    margin: 40px 50px 0;
  }
}
@media screen and (max-width: 350px) {
  section.books .books-grid {
    margin: 40px 20px 0;
  }
}
section.books .books-card {
  padding: 0 8px;
  text-align: center;
  display: inline-flex !important;
  justify-content: center;
}
section.books .books-card img {
  width: auto;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 499px) {
  section.books .books-card img {
    height: 250px;
  }
}

@media screen and (max-width: 400px) {
  section.partners .partners-logo {
    padding: 10px;
  }
}
section.partners .partners-logo-1 img {
  height: 65px;
}
section.partners .partners-logo-2 img {
  height: 43px;
}
@media screen and (max-width: 400px) {
  section.partners .partners-logo-2 img {
    height: 37px;
  }
}
section.partners .partners-logo-3 img {
  height: 46px;
}
section.partners .partners-logo-4 img {
  height: 31px;
}
@media screen and (max-width: 400px) {
  section.partners .partners-logo-4 img {
    height: 26px;
  }
}
section.partners .partners-logo-5 img {
  height: 31px;
}
section.partners .partners-logo-6 img {
  height: 31px;
}




section.partners .book-cover {
  height: 324px;
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #eceeee 1px solid;
}

@media screen and (max-width: 400px) {
  section.partners .book-cover {
    padding: 10px;
  }
}
section.partners .book-cover-1 img {
  height: 324px;
}
section.partners .pbook-cover-2 img {
  height: 329px;
}
@media screen and (max-width: 400px) {
  section.partners .book-cover-2 img {
    height: 329px;
  }
}
section.partners .book-cover-3 img {
  height: 328px;
}
section.partners .book-cover-4 img {
  height: 329px;
}
@media screen and (max-width: 400px) {
  section.partners .book-cover-4 img {
    height: 327px;
  }
}
section.partners .book-cover-5 img {
  height: 327px;
}
section.partners .book-cover-6 img {
  height: 326px;
}


section.platform {
  padding: 60px 0 70px;
  background-color: #233270;
  text-align: center;
}


section.partners {
  padding: 60px 0 70px;
  background-color: #ffffff;
  text-align: center;
}
section.platform h2 {
  color: #fff;
}
section.platform .platform-container {
  max-width: 1250px;
  margin: auto;
}
section.platform .platform-subtitle {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 20px;
  padding: 0 25px;
}
@media screen and (max-width: 499px) {
  section.platform .platform-subtitle {
    font-size: 26px;
    line-height: 1.35;
  }
}
section.platform .platform-description {
  color: #fff;
  font-size: 17px;
  line-height: 30px;
  margin-top: 20px;
  max-width: 510px;
  margin: 40px auto 0;
  text-align: left;
}
@media screen and (max-width: 820px) {
  section.platform .platform-description {
    max-width: 540px;
    padding: 0 25px;
  }
}
section.platform .platform-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 1234px) {
  section.platform .platform-grid {
    padding: 0 25px;
    overflow-y: auto;
  }
  section.platform .platform-grid::-webkit-scrollbar {
    width: 8px;
    background: transparent;
  }
  section.platform .platform-grid::-webkit-scrollbar-thumb {
    background: transparent;
  }
}
section.platform .platform-grid .platform-item:nth-child(1) {
  z-index: 6;
  width: 270px;
  min-width: 270px;
  padding: 20px;
}
@media screen and (min-width: 1234px) {
  section.platform .platform-grid .platform-item:nth-child(1) {
    width: 330px;
    min-width: 330px;
  }
  section.platform .platform-grid .platform-item:nth-child(1)::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
  }
}
section.platform .platform-grid .platform-item:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  border-style: solid;
  border-width: 25px 25px 0 0;
  border-color: #e54228 transparent transparent transparent;
  transition: 0.3s;
}
section.platform .platform-grid .platform-item:nth-child(1)::after {
  content: "";
}
section.platform .platform-grid .platform-item:nth-child(1) .platform-number {
  text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white;
  color: #5585fa;
}
section.platform .platform-grid .platform-item:nth-child(1):hover .platform-number {
  text-shadow: none;
  color: #fff;
}
section.platform .platform-grid .platform-item:nth-child(1):hover::before {
  opacity: 1;
}
section.platform .platform-grid .platform-item:nth-child(1).active .platform-number {
  text-shadow: none;
  color: #fff;
}
section.platform .platform-grid .platform-item:nth-child(1).active::before {
  opacity: 1;
}
section.platform .platform-grid .platform-item:nth-child(2) {
  z-index: 5;
}
section.platform .platform-grid .platform-item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 1;
  border-style: solid;
  border-width: 25px 25px 0 0;
  border-color: #e54228 transparent transparent transparent;
  transition: 0.3s;
}
@media screen and (min-width: 1234px) {
  section.platform .platform-grid .platform-item:nth-child(2) {
    transform: translateX(-45%);
  }
  section.platform .platform-grid .platform-item:nth-child(2)::after {
    opacity: 0;
    left: 90px;
  }
  section.platform .platform-grid .platform-item:nth-child(2) .platform-number {
    text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white;
    color: #5585fa;
  }
  section.platform .platform-grid .platform-item:nth-child(2):hover {
    transform: translateX(-30%) scale(1);
  }
  section.platform .platform-grid .platform-item:nth-child(2):hover::before {
    width: 70%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  }
  section.platform .platform-grid .platform-item:nth-child(2):hover::after {
    opacity: 1;
  }
  section.platform .platform-grid .platform-item:nth-child(2):hover .platform-number {
    text-shadow: none;
    color: #fff;
  }
}
section.platform .platform-grid .platform-item:nth-child(3) {
  z-index: 4;
}
section.platform .platform-grid .platform-item:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 1;
  border-style: solid;
  border-width: 25px 25px 0 0;
  border-color: #e54228 transparent transparent transparent;
  transition: 0.3s;
}
section.platform .platform-grid .platform-item:nth-child(3) .platform-number {
  text-shadow: none;
  color: #fff;
}
@media screen and (min-width: 1234px) {
  section.platform .platform-grid .platform-item:nth-child(3) {
    transform: translateX(-90%);
  }
  section.platform .platform-grid .platform-item:nth-child(3)::after {
    opacity: 0;
    left: 90px;
  }
  section.platform .platform-grid .platform-item:nth-child(3) .platform-number {
    text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white;
    color: #5585fa;
  }
  section.platform .platform-grid .platform-item:nth-child(3):hover {
    transform: translateX(-75%) scale(1);
  }
  section.platform .platform-grid .platform-item:nth-child(3):hover::before {
    width: 70%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  }
  section.platform .platform-grid .platform-item:nth-child(3):hover::after {
    opacity: 1;
  }
  section.platform .platform-grid .platform-item:nth-child(3):hover .platform-number {
    text-shadow: none;
    color: #fff;
  }
}
section.platform .platform-grid .platform-item:nth-child(4) {
  z-index: 3;
}
section.platform .platform-grid .platform-item:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 1;
  border-style: solid;
  border-width: 25px 25px 0 0;
  border-color: #e54228 transparent transparent transparent;
  transition: 0.3s;
}
section.platform .platform-grid .platform-item:nth-child(4) .platform-number {
  text-shadow: none;
  color: #fff;
}
@media screen and (min-width: 1234px) {
  section.platform .platform-grid .platform-item:nth-child(4) {
    transform: translateX(-135%);
  }
  section.platform .platform-grid .platform-item:nth-child(4)::after {
    opacity: 0;
    left: 90px;
  }
  section.platform .platform-grid .platform-item:nth-child(4) .platform-number {
    text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white;
    color: #5585fa;
  }
  section.platform .platform-grid .platform-item:nth-child(4):hover {
    transform: translateX(-120%) scale(1);
  }
  section.platform .platform-grid .platform-item:nth-child(4):hover::before {
    width: 70%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  }
  section.platform .platform-grid .platform-item:nth-child(4):hover::after {
    opacity: 1;
  }
  section.platform .platform-grid .platform-item:nth-child(4):hover .platform-number {
    text-shadow: none;
    color: #fff;
  }
}
section.platform .platform-grid .platform-item:nth-child(5) {
  z-index: 2;
}
section.platform .platform-grid .platform-item:nth-child(5) .platform-number {
  text-shadow: none;
  color: #fff;
}
section.platform .platform-grid .platform-item:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 1;
  border-style: solid;
  border-width: 25px 25px 0 0;
  border-color: #e54228 transparent transparent transparent;
  transition: 0.3s;
}
section.platform .platform-grid .platform-item:nth-child(5) .platform-number {
  text-shadow: none;
  color: #fff;
}
@media screen and (min-width: 1234px) {
  section.platform .platform-grid .platform-item:nth-child(5) {
    transform: translateX(-180%);
  }
  section.platform .platform-grid .platform-item:nth-child(5)::after {
    opacity: 0;
    left: 90px;
  }
  section.platform .platform-grid .platform-item:nth-child(5) .platform-number {
    text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white;
    color: #5585fa;
  }
  section.platform .platform-grid .platform-item:nth-child(5):hover {
    transform: translateX(-165%) scale(1);
  }
  section.platform .platform-grid .platform-item:nth-child(5):hover::before {
    width: 70%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  }
  section.platform .platform-grid .platform-item:nth-child(5):hover::after {
    opacity: 1;
  }
  section.platform .platform-grid .platform-item:nth-child(5):hover .platform-number {
    text-shadow: none;
    color: #fff;
  }
}
section.platform .platform-item {
  padding: 20px 20px 20px 20px;
  width: 270px;
  min-width: 270px;
  background-color: #5585fa;
  text-align: left;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (min-width: 1234px) {
  section.platform .platform-item {
    padding: 20px 0 20px 70px;
    width: 250px;
    min-width: 250px;
  }
  section.platform .platform-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 90%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  }
}
@media screen and (min-width: 1234px) {
  section.platform .platform-item {
    width: 370px;
    min-width: 370px;
    padding: 20px 0 20px 140px;
  }
}
section.platform .platform-number {
  color: #fff;
  font-size: 120px;
  font-weight: 900;
  line-height: 140px;
  transition: 0.3s;
}
@media screen and (max-width: 1234px) {
  section.platform .platform-number {
    letter-spacing: 12px;
  }
}
section.platform .platform-item-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-top: 15px;
}
section.platform .platform-item-description {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-top: 14px;
  text-align: left;
}
section.platform .platform-partners-title {
  font-weight: 500;
  font-size: 18px;
  margin-top: 70px;
}
section.platform .platform-partners-title {
  font-weight: 500;
  font-size: 18px;
  margin-top: 70px;
  color: #fff;
}
section.platform .platform-partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
section.platform .platform-partners-item-img-1 {
  width: auto;
  height: 80px;
}/*# sourceMappingURL=style.css.map */