@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;
}

header {
  height: 90px;
}

header {
  background-color: #f4faff;
}

main {
  background-color: #f4faff;
}

.categoryNav {
  margin-bottom: 30px;
}
.categoryNav .categoryWrap {
  position: relative;
}
.categoryNav .categoryWrap .categoryList {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  justify-content: center;
  scroll-behavior: smooth;
  padding-bottom: 5px;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: scroll;
}
.categoryNav .categoryWrap .categoryList::-webkit-scrollbar {
  height: 6px;
}
.categoryNav .categoryWrap .categoryList::-webkit-scrollbar-track {
  background: transparent;
}
.categoryNav .categoryWrap .categoryList::-webkit-scrollbar-thumb {
  background: linear-gradient(220deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  border-radius: 4px;
}
@media only screen and (max-width: 1024px) {
  .categoryNav .categoryWrap .categoryList {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .categoryNav .categoryWrap .categoryList::-webkit-scrollbar {
    display: none;
  }
}
.categoryNav .categoryWrap .categoryList .categoryItem {
  flex: none;
  margin-right: 10px;
  white-space: nowrap;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 8px 15px;
  border-radius: 20px;
  background-color: #f2f2f2;
  color: #111111;
  transition: all 0.3s;
  text-decoration: none;
}
.categoryNav .categoryWrap .categoryList .categoryItem.active {
  background-color: #055579;
  color: #fff;
}
.categoryNav .categoryWrap .categoryList .categoryItem:hover {
  background-color: #055579;
  color: #fff;
}

.btnScroll {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 5px));
  z-index: 2;
  background: #F4FAFF;
  color: white;
  border: none;
  cursor: pointer;
  height: 100%;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.btnScroll svg {
  height: 20px;
  color: #111111;
}
.btnScroll.prev {
  left: -2px;
}
.btnScroll.prev::before {
  content: "";
  top: 0px;
  width: 15px;
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #F4FAFF 20%, rgba(255, 255, 255, 0) 80%);
  right: -14px;
}
.btnScroll.next {
  right: -2px;
}
.btnScroll.next::before {
  content: "";
  top: 0px;
  width: 15px;
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(270deg, #F4FAFF 20%, rgba(255, 255, 255, 0) 80%);
  left: -14px;
}

.featuredArticleWrap {
  padding-bottom: 60px;
  background-color: #F4FAFF;
}
@media only screen and (max-width: 768px) {
  .featuredArticleWrap {
    padding-bottom: 30px;
  }
}
.featuredArticleWrap .articleList {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .featuredArticleWrap .articleList {
    margin-bottom: 30px;
  }
}
.featuredArticleWrap .articleList > .row {
  row-gap: 30px;
}
.featuredArticleWrap .articleWrap .articleItem {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.featuredArticleWrap .articleWrap .articleItem .imgWrap {
  height: 250px;
}
.featuredArticleWrap .articleWrap .articleItem .imgWrap .zoomWrap {
  height: 100%;
}
.featuredArticleWrap .articleWrap .articleItem a {
  text-decoration: none;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .articleDesc p {
  font-size: 14px;
}
.featuredArticleWrap .articleWrap .articleItem:hover .zoomWrap {
  transform: scale(1.1);
}
.featuredArticleWrap .articleWrap .articleItem .zoomWrap {
  height: 100%;
  transition: all 0.3s;
}
.featuredArticleWrap .articleWrap .articleItem .imgWrap {
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .featuredArticleWrap .articleWrap .articleItem .imgWrap {
    height: 250px;
  }
}
.featuredArticleWrap .articleWrap .articleItem .imgWrap .wrapImgResize {
  height: 100%;
  width: auto;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap {
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .featuredArticleWrap .articleWrap .articleItem .contentWrap {
    padding: 20px;
  }
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .titleWrap {
  margin-bottom: 15px;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .titleWrap h3 a {
  font-weight: 700;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #111111;
  text-decoration: none;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .categoryBadge {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  color: #4d9cca;
  border: 1px solid #4d9cca;
  font-size: 14px;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .articleInfo {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .articleInfo .dateUpload,
.featuredArticleWrap .articleWrap .articleItem .contentWrap .articleInfo .author {
  color: #7b7b7b;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .articleInfo .dateUpload .icon,
.featuredArticleWrap .articleWrap .articleItem .contentWrap .articleInfo .author .icon {
  display: flex;
  align-items: center;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap svg {
  height: 13px;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .articleDesc {
  margin-bottom: 15px;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .articleDesc p {
  color: #7b7b7b;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 992px) {
  .featuredArticleWrap .articleWrap .articleItem .contentWrap .articleDesc p {
    font-size: 14px;
  }
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .readMore span {
  text-decoration: none;
  color: #4d9cca;
  font-weight: 500;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .readMore svg {
  color: #4d9cca;
  transition: all 0.3s;
}
.featuredArticleWrap .articleWrap .articleItem .contentWrap .readMore:hover svg {
  transform: translateX(5px);
}

.featuredMainTitle {
  margin-bottom: 15px;
}

.pagination .paginationList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.pagination .paginationList li {
  display: flex;
  align-items: center;
}
.pagination .paginationList li:not(.disable):hover a, .pagination .paginationList li:not(.disable):hover span, .pagination .paginationList li.active a, .pagination .paginationList li.active span {
  background-color: #4d9cca;
  color: #fff;
}
.pagination .paginationList li.disable {
  background-color: #fff !important;
}
.pagination .paginationList li.disable:hover {
  background-color: #fff !important;
}
.pagination .paginationList li.disable svg {
  color: #CCCC;
}
.pagination .paginationList li a, .pagination .paginationList li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-decoration: none;
  color: #111111;
}
.pagination .paginationList li a svg, .pagination .paginationList li span svg {
  height: 15px;
}