@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;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
  /*rtl:begin:ignore*/
  left: 0;
}

/*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
  /*rtl:begin:ignore*/
  right: 0;
}

/*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
header {
  height: 90px;
}

main {
  background-color: #f4faff;
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  main {
    padding-bottom: 30px;
  }
}

.formContainer {
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}
.formContainer span.required {
  color: red;
}
.formContainer span.note {
  color: #7b7b7b;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .formContainer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.formSection {
  margin-bottom: 15px;
}

.sectionTitle {
  font-size: 1.2rem;
  color: #4d9cca;
  margin-bottom: 15px !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sectionTitle svg {
  height: 15px;
  color: #4d9cca;
}

.formRow .row {
  margin: 0 -10px;
}
.formRow .row > * {
  padding: 0 10px;
}
.formRow > .row > div > .formGroup {
  min-height: 110px;
}
.formRow .textarea {
  min-height: 240px;
}

.sectionTitle i {
  margin-right: 10px;
  color: var(--primary-blue);
}

.formGroup {
  flex: 1 0 calc(50% - 30px);
}

.formGroup.fullWidth {
  flex: 1 0 calc(100% - 30px);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.formControl {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  font-size: 16px;
  transition: border-color 0.3s;
  font-family: "BeVietnamPro";
  font-weight: 400;
  color: #111111;
}

.formControl:focus {
  border-color: #4d9cca;
  outline: none;
}

textarea.formControl {
  min-height: 120px;
  resize: vertical;
}

/* Radio buttons */
.radioGroup {
  display: flex;
  margin-top: 8px;
}

.radioOption {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.radioOption input {
  margin-right: 8px;
}

/* Submit button */
.submitBtn {
  align-self: center;
}

/* Form validation */
.formControl.error {
  border-color: #ff3860;
}
.formControl.error .errorMessage {
  visibility: visible;
}

.errorMessage {
  color: #ff3860;
  font-size: 0.85rem;
  margin: 8px 0;
}

.formContainer {
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

.contactContentWrap > .row {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
}
.contactContentWrap > .row > * {
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .contactContentWrap > .row {
    row-gap: 20px;
    box-shadow: none;
    border-radius: 0;
    padding-bottom: 10px;
  }
  .contactContentWrap > .row > * > * {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}

.formSection {
  margin-bottom: 0;
}
.formSection .formRow > .row > div > .formGroup {
  min-height: 110px;
}
.formSection .formRow .textarea {
  min-height: 240px;
}

.contactContent {
  flex: 0 0 40%;
  background: linear-gradient(220deg, #0A5181 -5.19%, #0FB3FB 98.6%);
  padding: 40px;
  color: #111111;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .contactContent {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contactContent .contactHeading {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 38px;
  font-weight: 600;
}
.contactContent .contactDescription {
  margin-top: 15px;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #fff;
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .contactContent .contactDescription {
    font-size: 15px;
  }
}
.contactContent .contactFeatures {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contactContent .contactFeatures .contactFeature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contactContent .contactFeatures .contactFeature .featureIcon {
  flex: 0 0 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.contactContent .contactFeatures .contactFeature .featureText {
  flex: 1;
  color: #fff;
}
.contactContent .contactFeatures .contactFeature .featureText .featureTitle {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.contactContent .contactFeatures .contactFeature .featureText p {
  font-size: 16px;
}
@media only screen and (max-width: 1024px) {
  .contactContent .contactFeatures .contactFeature .featureText p {
    font-size: 15px;
  }
}