@charset "UTF-8";
.wrapImgResize {
  overflow: hidden;
  position: relative;
  display: block;
}
.wrapImgResize video,
.wrapImgResize iframe,
.wrapImgResize img {
  object-fit: cover;
  -webkit-object-fit: cover;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  width: 101%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  min-height: 101%;
  max-height: 101%;
}
.wrapImgResize.img16And9 {
  padding-top: 56.25%;
}
.wrapImgResize.imgSquare {
  padding-top: 100%;
}
.wrapImgResize.img9And16 {
  padding-top: 177%;
}
.wrapImgResize.img3And4 {
  padding-top: 133.33333333%;
}
.wrapImgResize.img3And2 {
  padding-top: 66.67%;
}
.wrapImgResize.imgSpecial1 {
  padding-top: 75.25%;
}
.wrapImgResize.imgSpecial2 {
  padding-top: 52.25%;
}
.wrapImgResize.imgSpecial3 {
  padding-top: 30.25%;
}
.wrapImgResize.imgSpecial4 {
  padding-top: 80%;
}

header {
  display: flex;
  height: 144px;
  justify-content: space-between;
  background-color: #f4faff;
  z-index: 3;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  header {
    top: 0;
    height: 80px !important;
  }
}
header .logoWrap {
  margin: 0;
  font-size: 0;
}
header .logoWrap img {
  height: 100%;
  width: auto;
}
header .logoWrap a {
  width: 192px;
  display: block;
  height: 100%;
}
header .menuWrap {
  display: flex;
  height: 100%;
}
header .menuWrap .wrapMenuHeader {
  height: 100%;
  position: relative;
}
@media only screen and (min-width: 1025px) {
  header .menuWrap .wrapMenuHeader .mobileCloseIcon {
    display: none;
  }
}
header .menuWrap .wrapMenuHeader .mobileCloseIcon svg {
  height: 20px;
}
header .menuWrap .wrapMenuHeader .listMenuHeader {
  height: 100%;
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
  margin: 0;
  gap: 96.8px;
}
@media only screen and (max-width: 1024px) {
  header .menuWrap .wrapMenuHeader .listMenuHeader {
    overflow-y: scroll;
  }
}
header .menuWrap .wrapMenuHeader .listMenuHeader .logoWrap {
  height: 90px;
  padding: 0 12px;
  padding-right: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 1025px) {
  header .menuWrap .wrapMenuHeader .listMenuHeader .logoWrap {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  header .menuWrap .wrapMenuHeader .listMenuHeader {
    padding-top: 50px;
    background-color: #F5F7FA;
  }
  header .menuWrap .wrapMenuHeader .listMenuHeader::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
  }
}
header .menuWrap .wrapMenuHeader .listMenuHeader .itemMenuHeader {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  header .menuWrap .wrapMenuHeader .listMenuHeader .itemMenuHeader {
    width: 100%;
    padding: 12px 24px;
  }
}
header .menuWrap .wrapMenuHeader .listMenuHeader .itemMenuHeader:hover .linkMenuHeader::after {
  transform: scaleX(1);
}
header .menuWrap .wrapMenuHeader .listMenuHeader .itemMenuHeader .linkMenuHeader {
  text-decoration: none;
  color: #111111;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  header .menuWrap .wrapMenuHeader .listMenuHeader .itemMenuHeader .linkMenuHeader {
    font-size: 18px;
    width: 100%;
  }
}
header .menuWrap .wrapMenuHeader .listMenuHeader .itemMenuHeader .linkMenuHeader svg {
  height: 42px;
}
header .menuWrap .wrapMenuHeader .listMenuHeader .itemMenuHeader .linkMenuHeader.active::after {
  transform: scaleX(1);
}
header .menuWrap .wrapMenuHeader .listMenuHeader .itemMenuHeader .linkMenuHeader::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #4d9cca;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  header .menuWrap .wrapMenuHeader {
    position: fixed;
    left: -100%;
    background-color: #fff;
    width: 70%;
    height: calc(100vh + 14px);
    transition: all 0.3s;
    top: -14px;
  }
  header .menuWrap .wrapMenuHeader.show {
    left: 0;
  }
  header .menuWrap .wrapMenuHeader .listMenuHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
header .menuWrap .mobileMenuClose {
  position: fixed;
  right: -100%;
  background-color: rgba(0, 0, 0, 0.7);
  height: calc(100vh + 14px);
  width: 30%;
  top: -14px;
  transition: all 0.3s;
}
@media only screen and (min-width: 1025px) {
  header .menuWrap .mobileMenuClose {
    display: none;
  }
}
header .menuWrap .mobileMenuClose.show {
  right: 0;
}
header .menuWrap .mobileMenuToggle {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1025px) {
  header .menuWrap .mobileMenuToggle {
    display: none;
  }
}
header .menuWrap .mobileMenuToggle svg {
  height: 20px;
}

footer {
  overflow: hidden;
  padding-top: 30px;
  position: relative;
}
footer .grid-pattern {
  background-image: url(../images/grid-pattern.svg);
  background-size: 45px;
  background-position: 0 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.03;
}
footer::after {
  background-image: url(../images/footerElement/left-element.png);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 300px;
  height: 300px;
  z-index: 1;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  footer::after {
    display: none;
  }
}
footer::before {
  background-image: url(../images/footerElement/right-element.png);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 300px;
  height: 300px;
  z-index: 1;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  footer::before {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  footer {
    padding-top: 20px;
  }
}
footer .footerLogo {
  height: 188px;
}
footer .footerLogo img {
  width: auto;
  height: 100%;
}
footer .containerCustom1:first-child {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .containerCustom1:first-child .footerLogo {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
footer .containerCustom1:last-child {
  gap: 0;
  flex-direction: row;
  justify-content: space-between;
}
footer .footerMenu .footerMenuList {
  display: flex;
  list-style: none;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  footer .footerMenu .footerMenuList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: center;
  }
}
footer .footerMenu .footerMenuList .menuItem {
  position: relative;
}
footer .footerMenu .footerMenuList .menuItem:hover::after {
  transform: scaleX(1);
}
footer .footerMenu .footerMenuList .menuItem a {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #111111;
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (max-width: 768px) {
  footer .footerMenu .footerMenuList .menuItem a {
    font-size: 15px;
  }
}
footer .footerMenu .footerMenuList .menuItem::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #4d9cca;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
footer .copyright {
  display: flex;
  background-color: #055579;
  padding: 8px 0;
  margin-top: 20px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 768px) {
  footer .copyright .containerCustom1 {
    flex-direction: column;
    row-gap: 8px;
  }
}
footer .copyright p {
  color: white;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  footer .copyright p {
    font-size: 15px;
  }
}
footer .copyright a {
  text-decoration: none;
  color: #fff;
}

html {
  box-sizing: border-box;
  background-color: #fcfcfd;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  overflow-x: hidden;
}
@media only screen and (max-width: 992px) {
  main {
    gap: 30px;
  }
}

body {
  background-color: #FCFCFD !important;
}

.fixed {
  position: fixed;
  top: -100%;
  transition: all 0.5s;
  height: 80px;
  padding-bottom: 5px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2,
h3 {
  margin: 0 !important;
}

.defaultTitle {
  display: flex;
  flex-direction: column;
}
.defaultTitle .subTitle h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 27.6px;
  letter-spacing: 0;
  color: #4d9cca;
}
@media only screen and (max-width: 768px) {
  .defaultTitle .subTitle h3 {
    font-size: 20px;
  }
}
.defaultTitle .mainTitle h3,
.defaultTitle .mainTitle h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 64.4px;
  letter-spacing: 0;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .defaultTitle .mainTitle h3,
.defaultTitle .mainTitle h2 {
    font-size: 32px;
    line-height: 45.4px;
  }
}
.defaultTitle .mainTitle h3 span,
.defaultTitle .mainTitle h2 span {
  background: linear-gradient(253.06deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.defaultTitle .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.defaultTitle .content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .defaultTitle .content p {
    font-size: 14px;
  }
}

.containerCustom3,
.containerCustomRight,
.containerCustom1,
.containerCustom2,
.container-xxl {
  padding: 0 8px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.containerCustomRight {
  padding: 0;
}

@media only screen and (max-width: 992px) {
  .backgroundSplice {
    background-image: none;
  }
}

@media only screen and (min-width: 1220px) {
  .row-cols-lg-8 > * {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .container-xxl {
    padding: 0 60px;
  }

  .containerCustom1 {
    padding: 0 120px;
  }

  .containerCustom2 {
    max-width: 912px;
    padding: 0;
  }

  .containerCustomRight {
    padding-right: 120px;
    padding-left: 0;
  }

  .containerCustom3 {
    padding: 0;
    max-width: 1024px;
  }
}
@media only screen and (min-width: 1800px) {
  .container-xxl {
    max-width: 1550px;
    padding: 0 15px;
  }

  .containerCustom1 {
    padding: 0 320px;
  }

  .containerCustomRight {
    padding-right: 240px;
  }

  .containerCustom3 {
    max-width: 1440px;
  }
}
.loadingPage {
  opacity: 0;
  overflow: hidden;
}

.loadingPage::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}

.loadingPage.loading::after {
  content: "Đang tải...";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-weight: bold;
  z-index: 10000;
  color: #f6f4f0;
  font-weight: 700;
  text-shadow: -1px 0 1px #fff, 0 -1px 1px #fff, 0 1px 1px #fff, 1px 0 1px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 2px 2px 3px #000;
}

body.fixFooter footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.button {
  gap: 10px;
  border-radius: 16px;
  display: inline-block;
  border: 1px solid transparent;
}
.button a,
.button button {
  text-decoration: none;
  height: 56px;
  min-width: 160px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  display: flex;
  gap: 10px;
  color: #fff !important;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  outline: none;
  background-color: transparent;
  border: none;
}
@media only screen and (max-width: 1450px) {
  .button a,
.button button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .button a,
.button button {
    height: 46px;
    font-size: 14px;
    padding: 8px 24px;
  }
}
.button a svg,
.button button svg {
  transition: transform 0.3s;
}
.button a.loading,
.button button.loading {
  color: transparent !important;
  position: relative;
}
.button a.loading::before,
.button button.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 5px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.button a.loading svg,
.button button.loading svg {
  visibility: hidden;
}
.button:hover a,
.button:hover button {
  outline: none;
  background-color: transparent;
  border: none;
}
.button:hover a svg,
.button:hover button svg {
  transform: rotate(45deg);
}
.button.primary--Btn {
  background-color: #055579;
}
.button.outline--Btn {
  background-color: transparent;
  border-color: #055579;
}
.button.outline--Btn a,
.button.outline--Btn button {
  color: #055579 !important;
  outline: none;
  background-color: transparent;
  border: none;
}

.pageBannerSection {
  background-color: #ffff;
  padding: 40px;
  text-align: center;
  color: #111111;
  margin-top: 60px;
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .pageBannerSection {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .pageBannerSection {
    padding: 20px;
  }
  .pageBannerSection h1 {
    font-size: 30px;
    z-index: 2;
  }
}
.pageBannerSection p {
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .pageBannerSection p {
    font-size: 15px;
  }
}
.pageBannerSection > h1,
.pageBannerSection div,
.pageBannerSection p {
  position: relative;
  z-index: 1;
}
.pageBannerSection h1 {
  background: linear-gradient(253.06deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.pageBannerSection::before {
  content: "";
  background-image: url(../images/sponsorBubbleLeft.png);
  position: absolute;
  width: 152px;
  height: 153px;
  top: -25%;
  left: 0;
  display: block;
  z-index: 0;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .pageBannerSection::before {
    display: none;
  }
}
.pageBannerSection::after {
  content: "";
  background-image: url(../images/sponsorBubbleRight.png);
  position: absolute;
  width: 152px;
  height: 153px;
  bottom: -25%;
  right: 0;
  display: block;
  z-index: 0;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .pageBannerSection::after {
    display: none;
  }
}
.pageBannerSection .weTalentLogo {
  position: absolute;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 312.1586303711px;
  top: 50%;
  z-index: 0;
}
.pageBannerSection .weTalentLogo img {
  width: 100%;
  opacity: 10%;
}

.scrollTopBtn {
  position: fixed;
  bottom: 50px;
  right: 5%;
  background: linear-gradient(253.06deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  border: none;
  z-index: 2;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  transition: all 0.3s;
  display: none;
}
.scrollTopBtn svg {
  height: 20px;
  color: #ffff;
}

.breadcrumbsWrap {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.breadcrumbsWrap a {
  text-decoration: none;
  color: #4d9cca !important;
  min-width: 80px;
  max-width: 350px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
}
.breadcrumbsWrap a:last-child {
  color: #111111 !important;
  pointer-events: none;
}
.breadcrumbsWrap .seperator svg {
  height: 12px;
  color: #7b7b7b;
}

.heroBanner {
  padding-bottom: 60px;
  padding-top: 60px;
  align-items: center !important;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  background-color: #f4faff;
}
@media only screen and (min-width: 1025px) {
  .heroBanner {
    align-items: flex-end;
  }
}
@media only screen and (max-width: 1024px) {
  .heroBanner {
    flex-direction: column;
    height: auto !important;
    gap: 26px;
  }
}
@media only screen and (max-width: 768px) {
  .heroBanner {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.heroBanner .infoWrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .heroBanner .infoWrap {
    margin-top: 0;
    gap: 12px;
    width: 100%;
  }
}
.heroBanner .imgWrap {
  height: 488px;
  display: flex;
  justify-content: right;
}
@media only screen and (max-width: 1450px) {
  .heroBanner .imgWrap {
    height: 400px;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1455px) {
  .heroBanner .imgWrap {
    height: 400px;
  }
}
.heroBanner .imgWrap img {
  height: 100%;
  border-radius: 24px;
  width: auto;
}
@media only screen and (max-width: 1024px) {
  .heroBanner .imgWrap {
    height: auto !important;
    width: 100%;
  }
  .heroBanner .imgWrap img {
    height: 100%;
    width: 100%;
  }
}
.heroBanner .mainInfoWrap h2 {
  font-weight: 800;
  font-size: 52px;
  line-height: 75.8px;
  letter-spacing: 0%;
  color: #111111;
}
@media only screen and (max-width: 1650px) {
  .heroBanner .mainInfoWrap h2 {
    font-size: 42px;
    line-height: 62.8px;
  }
}
@media only screen and (max-width: 1024px) {
  .heroBanner .mainInfoWrap h2 {
    font-size: 28px;
    line-height: 48.8px;
  }
}
.heroBanner .mainInfoWrap h2 span {
  background: linear-gradient(253.06deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.heroBanner .subInfoWrap p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #111111;
}
@media only screen and (max-width: 1024px) {
  .heroBanner .subInfoWrap p {
    font-size: 14px;
  }
}
.heroBanner .infoWrap .buttonWrap {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
  .heroBanner .infoWrap .buttonWrap {
    display: flex;
    gap: 12px;
  }
}
.heroBanner .infoWrap .buttonWrap .button:last-child a {
  gap: 0px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.heroBanner .infoWrap .buttonWrap .button:last-child a svg {
  position: absolute;
  right: -100%;
  transition: all 0.4s;
}
.heroBanner .infoWrap .buttonWrap .button:last-child a:hover {
  transform: translateX(-5px);
}
.heroBanner .infoWrap .buttonWrap .button:last-child a:hover svg {
  transform: rotate(0);
  right: 5%;
}

.introSection {
  display: flex;
  gap: 24px;
  background-color: #FCFCFD;
  flex-direction: column;
}
.introSection .introContentWrap {
  display: flex;
  flex-direction: column;
}
.introSection .introContentWrap .introSubTitle {
  margin-bottom: 8px;
}
.introSection .introContentWrap .introSubTitle h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 27.6px;
  letter-spacing: 0;
  color: #4d9cca;
}
@media only screen and (max-width: 768px) {
  .introSection .introContentWrap .introSubTitle h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .introSection .introContentWrap .introSubTitle {
    margin-bottom: 0;
  }
}
.introSection .introContentWrap .introMainTitle {
  margin-bottom: 24px;
}
.introSection .introContentWrap .introMainTitle h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 64.4px;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .introSection .introContentWrap .introMainTitle h3 {
    font-size: 32px;
  }
}
.introSection .introContentWrap .introMainTitle h3 span {
  background: linear-gradient(253.06deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 768px) {
  .introSection .introContentWrap .introMainTitle {
    margin-bottom: 0;
  }
}
.introSection .introContentWrap .introContent {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.introSection .introContentWrap .introContent p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
}
@media only screen and (max-width: 768px) {
  .introSection .introContentWrap .introContent p {
    font-size: 14px;
  }
}
.introSection .contentWrap .imgSide {
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 1024px) {
  .introSection .contentWrap .imgSide {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 1024px) {
  .introSection .contentWrap .imgSide {
    min-height: 420px;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }
}
.introSection .contentWrap .imgWrap {
  position: absolute;
  border: 10px solid #FFFFFF;
  border-radius: 24px;
}
.introSection .contentWrap .imgWrap:first-child {
  width: 60%;
  left: 0;
  top: 0;
}
.introSection .contentWrap .imgWrap:last-child {
  width: 70%;
  right: 0;
  bottom: 0;
}
.introSection .contentWrap .imgWrap img {
  border-radius: 24px;
}
@media only screen and (max-width: 1024px) {
  .introSection .contentWrap .imgWrap {
    position: static;
    width: 100% !important;
    margin: 0;
    height: 300px;
    border: none;
  }
  .introSection .contentWrap .imgWrap > * {
    padding: 0;
  }
  .introSection .contentWrap .imgWrap .wrapImgResize {
    height: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .introSection .contentWrap .cardSide {
    margin-top: 24px;
  }
}

.introduceCard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.introduceCard .introCardItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0px 16px 42px 0px transparent;
  transition: all 0.3s;
  padding: 24px 32px;
  border: 1px solid transparent;
  border-radius: 24px;
  cursor: pointer;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .introduceCard .introCardItem {
    padding: 16px 24px;
  }
}
@media only screen and (max-width: 768px) {
  .introduceCard .introCardItem {
    border-color: #055579 !important;
    gap: 8px;
  }
}
.introduceCard .introCardItem .titleWrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.introduceCard .introCardItem .icon {
  width: 76px;
  height: 72px;
  background-color: #e9e9f6;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.introduceCard .introCardItem .icon svg {
  height: 32px;
}
@media only screen and (max-width: 768px) {
  .introduceCard .introCardItem .icon {
    width: 56px;
    height: 52px;
    border-radius: 12px;
  }
  .introduceCard .introCardItem .icon svg {
    height: 20px;
  }
}
.introduceCard .introCardItem .cardTitle h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 27.6px;
  letter-spacing: 0%;
  transition: all 0.3s;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .introduceCard .introCardItem .cardTitle h3 {
    font-size: 20px;
  }
}
.introduceCard .introCardItem .cardContent p {
  color: #7b7b7b;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .introduceCard .introCardItem .cardContent p {
    font-size: 14px;
  }
}
.introduceCard .introCardItem:hover {
  box-shadow: 0px 16px 42px 0px #1F1F330F;
  border: 1px solid rgba(113, 202, 242, 0.4);
}
.introduceCard .introCardItem:hover .cardTitle h3 {
  color: #055579;
}
.introduceCard .introCardItem:hover .cardContent p {
  color: #111111;
}
.introduceCard .introCardItem h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .introduceCard .introCardItem h4 {
    font-size: 20px;
  }
}
.introduceCard .introCardItem .contentWrap p {
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .introduceCard .introCardItem .contentWrap p {
    font-size: 14px;
  }
}

.registerSection {
  display: flex;
  background-color: #F5F7FA;
  justify-content: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.registerSection .registerContent {
  position: relative;
  z-index: 1;
}
.registerSection::before {
  content: "";
  background-image: url(../images/registerSection/bubbleLeft.png);
  position: absolute;
  width: 304px;
  height: 200px;
  bottom: 0;
  left: 0;
  display: block;
  background-repeat: no-repeat;
}
.registerSection::after {
  content: "";
  background-image: url(../images/registerSection/bubbleRight.png);
  position: absolute;
  width: 277px;
  height: 208px;
  top: 0;
  right: 0;
  display: block;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .registerSection::before {
    left: -230px;
  }
  .registerSection::after {
    right: -230px;
  }
}
.registerSection .defaultTitle {
  align-items: center;
  row-gap: 10px;
}
.registerSection .buttonWrap {
  margin-top: 8px;
}
.registerSection .bookIcon {
  position: absolute !important;
  background-color: #5C91BC;
  height: 62px;
  width: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transform: rotate(-16deg);
  left: 20%;
  box-shadow: 10px 10px 90px 0px #5c94bc;
  z-index: 1;
}
.registerSection .bookIcon svg {
  transform: rotate(16deg);
  height: 30px;
}
@media only screen and (max-width: 1024px) {
  .registerSection .bookIcon {
    top: 35px;
    left: 30px;
  }
}
.registerSection .awardIcon {
  position: absolute !important;
  background-color: #EB9E47;
  box-shadow: 10px 10px 90px 0px #eb9e47;
  height: 62px;
  width: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transform: rotate(16deg);
  right: 20%;
  bottom: -100%;
  transition: all 0.5s;
  z-index: 1;
}
.registerSection .awardIcon.animated {
  bottom: 20%;
}
@media only screen and (max-width: 1024px) {
  .registerSection .awardIcon.animated {
    bottom: 50px;
  }
}
.registerSection .awardIcon.animated svg {
  transform: rotate(-16deg);
  height: 30px;
}
@media only screen and (max-width: 1024px) {
  .registerSection .awardIcon {
    right: 20px;
  }
}

.meaningSection {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .meaningSection {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.meaningSection .content {
  height: auto;
}
.meaningSection .meaningContentWrap {
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .meaningSection .meaningContentWrap {
    gap: 12px;
  }
}
@media only screen and (max-width: 992px) {
  .meaningSection .row {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
}
.meaningSection .imgWrap {
  display: grid;
  grid-template-columns: repeat(26, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 14px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .meaningSection .imgWrap {
    height: 450px;
  }
}
.meaningSection .imgWrap .wrapImgResize {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.meaningSection .img1 {
  grid-column: 10/span 7;
  grid-row: 1/span 5;
}
@media only screen and (max-width: 1024px) {
  .meaningSection .img1 {
    grid-column: 1/span 14;
    grid-row: 1/span 5;
  }
}
.meaningSection .img2 {
  grid-column: 4/span 13;
  grid-row: 6/span 4;
}
@media only screen and (max-width: 1024px) {
  .meaningSection .img2 {
    grid-column: 1/span 15;
  }
}
.meaningSection .img3 {
  grid-column: 17/-1;
  grid-row: 2/span 4;
  transform: translateY(-20px);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .meaningSection .img3 {
    grid-column: 15/-1;
  }
}
.meaningSection .img4 {
  grid-column: 17/-1;
  grid-row: 5/span 4;
  transform: translateY(47px);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media only screen and (max-width: 1024px) {
  .meaningSection .img4 {
    grid-column: 16/-1;
    transform: translateY(32px);
  }
}
.meaningSection .counterWrap {
  display: flex;
  justify-content: space-between;
}
.meaningSection .counterWrap > div .count {
  font-weight: 800;
  font-size: 32px;
  line-height: 36.8px;
  letter-spacing: 0%;
  background: linear-gradient(253.06deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 768px) {
  .meaningSection .counterWrap > div .count {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }
}
.meaningSection .counterWrap > div .title {
  max-width: 80%;
  margin-top: 13px;
}
@media only screen and (max-width: 768px) {
  .meaningSection .counterWrap > div .title {
    max-width: 90%;
    margin-top: 8px;
    text-align: center;
  }
}
.meaningSection .counterWrap > div .title p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #7b7b7b;
}
@media only screen and (max-width: 768px) {
  .meaningSection .counterWrap > div .title p {
    font-size: 14px;
    line-height: 20px;
  }
}

.projectSection .titleWrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .projectSection .titleWrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.projectSection .titleWrap .button {
  display: inline;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.projectSection .titleWrap .button:last-child a {
  gap: 0px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.projectSection .titleWrap .button:last-child a svg {
  position: absolute;
  right: -100%;
  transition: all 0.4s;
}
.projectSection .titleWrap .button:last-child a:hover {
  transform: translateX(-5px);
}
.projectSection .titleWrap .button:last-child a:hover svg {
  transform: rotate(0);
  right: 5%;
}
.projectSection .dreamSliderWrap .slick-slide {
  padding: 0 10px;
  height: auto;
  float: none;
}
.projectSection .dreamSliderWrap .slick-slide > div {
  height: 100%;
}
.projectSection .dreamSliderWrap .slick-track {
  display: flex;
}
.projectSection .dreamSliderWrap .slick-list {
  padding-bottom: 30px !important;
  height: auto !important;
  margin: 0 -10px;
}
.projectSection .dreamSliderWrap .slideItem {
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: 0.4s all;
  height: 100%;
}
.projectSection .dreamSliderWrap .slideItem a {
  text-decoration: none;
}
.projectSection .dreamSliderWrap .slideItem .imgWrap {
  overflow: hidden;
}
.projectSection .dreamSliderWrap .slideItem:hover {
  border-color: #71CAF266;
  box-shadow: 0px 16px 42px 0px #1F1F330F;
}
.projectSection .dreamSliderWrap .slideItem:hover .zoomWrap {
  transform: scale(1.1);
}
.projectSection .dreamSliderWrap .slideItem:hover .contentWrap .content p {
  color: #111111;
}
.projectSection .dreamSliderWrap .slideItem .zoomWrap {
  transition: 0.3s all;
}
.projectSection .dreamSliderWrap .slideItem .contentWrap {
  background-color: #FFFFFF;
  padding: 24px 32px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  height: 100%;
}
@media only screen and (max-width: 576px) {
  .projectSection .dreamSliderWrap .slideItem .contentWrap {
    padding: 12px 24px;
  }
}
.projectSection .dreamSliderWrap .slideItem .contentWrap .name h4 {
  color: #055579;
  font-weight: 600;
  font-size: 24px;
  line-height: 27.6px;
  letter-spacing: 0%;
}
.projectSection .dreamSliderWrap .slideItem .contentWrap .address p {
  font-weight: 500;
  font-size: 14px;
  line-height: 16.1px;
  letter-spacing: 0%;
  color: #7b7b7b;
}
.projectSection .dreamSliderWrap .slideItem .contentWrap .content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #7b7b7b;
  transition: 0.3s all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 768px) {
  .projectSection .dreamSliderWrap .slideItem .contentWrap .content p {
    font-size: 14px;
  }
}
.projectSection .custom-dots-container {
  height: 3px;
  background-color: #DBDBF0;
  display: flex;
}
.projectSection .custom-dots-container .dots-progress {
  position: absolute;
  height: 3px;
  background-color: #5C91BC;
  transition: all 0.3s;
}
.projectSection .nextPrevWrap {
  display: flex;
  gap: 15px;
}
.projectSection .nextPrevWrap > div {
  width: 44px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  background-color: #055579;
  transition: all 0.3s;
}
.projectSection .nextPrevWrap > div svg {
  color: #FFFFFF;
  transition: all 0.3s;
}
.projectSection .nextPrevWrap > div.alternative {
  background-color: #E9E9F6;
}
.projectSection .nextPrevWrap > div.alternative svg {
  color: #5C91BC;
}
.projectSection .pagingWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projectSection .slick-arrow {
  display: none !important;
}

.sponsoSection {
  background-color: #F5F7FA;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.sponsoSection .row {
  row-gap: 24px;
}
.sponsoSection::before {
  content: "";
  background-image: url(../images/sponsorBubbleLeft.png);
  position: absolute;
  width: 152px;
  height: 153px;
  top: 0;
  left: 0;
  display: block;
  z-index: 0;
  background-repeat: no-repeat;
}
.sponsoSection::after {
  content: "";
  background-image: url(../images/sponsorBubbleRight.png);
  position: absolute;
  width: 152px;
  height: 153px;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 0;
  background-repeat: no-repeat;
}
.sponsoSection .sponsoTitle {
  gap: 24px;
  position: relative;
  z-index: 1;
}
.sponsoSection .sponsoLogo {
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .sponsoSection .sponsoLogo .imgWrap {
    display: flex;
    justify-content: center;
  }
  .sponsoSection .sponsoLogo .imgWrap img {
    width: 60%;
  }
}
.sponsoSection .sponsoName {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #4d9cca;
}
.sponsoSection .weTalentLogo {
  position: absolute;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 312.1586303711px;
  top: 50%;
}
.sponsoSection .weTalentLogo img {
  width: 100%;
  opacity: 10%;
}

.procedureSection {
  background-color: #F5F7FA;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
.procedureSection::before {
  position: absolute;
  content: "";
  background-image: url(../images/register_bubble.png);
  display: block;
  width: 211px;
  height: 224px;
  bottom: 0;
  left: 0;
}
.procedureSection .row {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .procedureSection .row {
    gap: 15px;
  }
}
@media only screen and (max-width: 992px) {
  .procedureSection {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.procedureSection .stepWrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 400px;
  overflow-Y: scroll;
  padding-right: 10px;
  box-sizing: content-box;
}
@media only screen and (max-width: 992px) {
  .procedureSection .stepWrap {
    height: auto;
    padding: 0;
  }
}
.procedureSection .stepWrap::-webkit-scrollbar {
  width: 4px;
}
.procedureSection .stepWrap::-webkit-scrollbar-thumb {
  background: linear-gradient(253.06deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  border-radius: 8px;
}
.procedureSection .stepWrap .stepItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0px 16px 42px 0px transparent;
  transition: all 0.3s;
  padding: 24px 32px;
  border: 1px solid transparent;
  border-radius: 24px;
  cursor: pointer;
  height: 100%;
  border: 1px solid rgba(113, 202, 242, 0.4);
  background-color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .procedureSection .stepWrap .stepItem {
    padding: 16px 24px;
  }
}
@media only screen and (max-width: 768px) {
  .procedureSection .stepWrap .stepItem {
    border-color: #055579 !important;
    gap: 8px;
  }
}
.procedureSection .stepWrap .stepItem .titleWrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.procedureSection .stepWrap .stepItem .icon {
  width: 76px;
  height: 72px;
  background-color: #e9e9f6;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.procedureSection .stepWrap .stepItem .icon svg {
  height: 32px;
}
@media only screen and (max-width: 768px) {
  .procedureSection .stepWrap .stepItem .icon {
    width: 56px;
    height: 52px;
    border-radius: 12px;
  }
  .procedureSection .stepWrap .stepItem .icon svg {
    height: 20px;
  }
}
.procedureSection .stepWrap .stepItem .cardTitle h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 27.6px;
  letter-spacing: 0%;
  transition: all 0.3s;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .procedureSection .stepWrap .stepItem .cardTitle h3 {
    font-size: 20px;
  }
}
.procedureSection .stepWrap .stepItem .cardContent p {
  color: #7b7b7b;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .procedureSection .stepWrap .stepItem .cardContent p {
    font-size: 14px;
  }
}
.procedureSection .stepWrap .stepItem:hover {
  box-shadow: 0px 16px 42px 0px #1F1F330F;
  border: 1px solid rgba(113, 202, 242, 0.4);
}
.procedureSection .stepWrap .stepItem:hover .cardTitle h3 {
  color: #055579;
}
.procedureSection .stepWrap .stepItem:hover .cardContent p {
  color: #111111;
}
.procedureSection .stepWrap .stepItem .titleWrap h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 27.6px;
  letter-spacing: 0%;
  background: #111111;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .procedureSection .stepWrap .stepItem .titleWrap h4 {
    font-size: 20px;
  }
}
.procedureSection .stepWrap .stepItem .contentWrap p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
}
@media only screen and (max-width: 768px) {
  .procedureSection .stepWrap .stepItem .contentWrap p {
    font-size: 14px;
  }
}
.procedureSection .stepWrap .stepItem .stepNumber span {
  font-weight: 600;
  font-size: 40px;
  line-height: 64.4px;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(253.06deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 768px) {
  .procedureSection .stepWrap .stepItem .stepNumber span {
    font-size: 30px;
  }
}