@font-face {
  font-family: "Lato";
  font-weight: 300;
  src: url("../fonts/lato-light.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-weight: 400;
  src: url("../fonts/lato-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-weight: 500;
  src: url("../fonts/lato-medium.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-weight: 600;
  src: url("../fonts/lato-semibold.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-weight: 700;
  src: url("../fonts/lato-bold.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-weight: 800;
  src: url("../fonts/lato-heavy.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-weight: 900;
  src: url("../fonts/lato-black.ttf") format("truetype");
}
@font-face {
  font-family: "Barlow-Bold";
  src: url("../fonts/Barlow-Bold.ttf") format("truetype");
}
/* media */
/* default */
:root {
  --primary-color:#252C6D;
  --second-color:#4BA6DD;
  --menu-active-color:#44C8F5;
  --white:#FFFFFF;
  --black:#000000;
}

a {
  color: var(--black);
  text-decoration: none;
}
a:hover {
  color: var(--black);
  text-decoration: none;
}

img {
  max-width: 100%;
}

body {
  background: #F9FAFF;
  font-family: "Lato" !important;
  overflow-x: hidden;
  font-weight: 400;
}

@media (max-width: 991px) {
  .md-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.text-blue {
  color: var(--second-color);
}

.pagination .page-item {
  margin: 0px 5px;
}
.pagination .page-item .page-link {
  padding: 0px;
  width: 37px;
  height: 37px;
  text-align: center;
  display: grid;
  align-items: center;
  font-weight: bold;
  border-radius: 50% !important;
  color: var(--primary-color);
  background: rgba(244, 245, 249, 0.7803921569);
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  font-size: 16px;
}
.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

/* Shine */
.img-eff {
  overflow: hidden;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.img-eff::before {
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.img-eff:hover::before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.bg-white {
  background: var(--white) !important;
}

#back-to-top {
  position: fixed;
  background: #426AB3;
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  align-items: center;
  z-index: 50;
  right: 3.1%;
  bottom: 2%;
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
  display: none;
}
@media (max-width: 1366px) {
  #back-to-top {
    bottom: 8%;
  }
}
@media (max-width: 767px) {
  #back-to-top {
    right: 15px;
    bottom: 11px;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 13px;
  }
}

@keyframes to_top {
  from {
    bottom: -10%;
  }
}
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 110;
  display: none;
}
.video-container .video-viewer {
  background: var(--white);
  width: 65%;
  height: 70vh;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--black);
}
.video-container .video-viewer #close-video {
  background: var(--black);
  border: 0px;
  color: var(--white);
  position: absolute;
  top: -28px;
  right: -25px;
  transition: all 0.2s;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.video-container .video-viewer #close-video:hover {
  background: red;
}
.video-container .video-viewer #close-video .fa {
  display: block;
}

.socical-popup {
  position: fixed;
  bottom: 45%;
  right: 2%;
  z-index: 50;
}
@media (max-width: 991px) {
  .socical-popup {
    bottom: 110px;
  }
}
@media (max-width: 767px) {
  .socical-popup {
    right: 0;
    bottom: 90px;
  }
}
.socical-popup .icon {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 90px;
  height: 90px;
  cursor: pointer;
  z-index: 11;
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
.socical-popup .icon-circle-fill {
  width: 67px;
  height: 67px;
  top: 15px;
  left: 15px;
  position: absolute;
  box-shadow: rgba(197, 198, 212, 0.5490196078) 0px 0px 0px 0px;
  background-color: rgba(197, 198, 212, 0.25);
  transform-origin: 50% 50%;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  -o-border-image: initial;
  border-image: initial;
  transition: all 0.5s ease 0s;
  animation: 1.3s ease 0s infinite normal none running zoom;
}
.socical-popup .icon-img-circle {
  background-color: var(--primary-color);
  width: 48px;
  height: 48px;
  line-height: 40px;
  top: 25px;
  left: 25px;
  position: absolute;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  align-items: center;
  text-align: center;
}
@media (max-width: 1024px) {
  .socical-popup .icon-img-circle {
    font-size: 12px;
  }
}
.socical-popup .icon-img-circle a {
  color: white;
  line-height: initial;
}
.socical-popup .icon-img-circle img {
  max-height: 25px;
  max-width: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-eff {
  animation: 2s ease 0s infinite normal none running zoom;
}

.select2-container {
  width: 100% !important;
}

@keyframes zoom {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes icon-circle-fill {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
.spinner::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 4px solid lightgray;
  border-top-color: gray;
  border-radius: 50px;
  display: block;
  animation: Rotate 1.2s linear 0s infinite forwards;
}

@keyframes Rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.img-shadow {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin: auto;
}
@media (max-width: 991px) {
  .img-shadow {
    width: inherit;
    padding: 0;
  }
}
.img-shadow::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 30px;
  left: 30px;
  background: #CED1E2;
  border-radius: 10px;
  z-index: -1;
}
@media (max-width: 991px) {
  .img-shadow::after {
    width: calc(100% - 30px);
  }
}
@media (max-width: 767px) {
  .img-shadow::after {
    width: calc(100% - 20px);
    top: 20px;
    left: 20px;
    border-radius: 10px;
  }
}
@media (max-width: 991px) {
  .img-shadow .img-eff {
    width: inherit;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .img-shadow .img-eff {
    padding-right: 20px;
  }
}
.img-shadow img {
  border-radius: 15px;
}
@media (max-width: 991px) {
  .img-shadow img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .img-shadow img {
    border-radius: 10px;
  }
}

.content-html img {
  height: auto !important;
}

.form-filter .row > div:last-child .control .btn-filter {
  white-space: nowrap;
  min-width: 115px;
}

.page-banner {
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
}
.page-banner::after {
  content: "";
  background: url(../images/group-bg.png) var(--primary-color) no-repeat;
  background-position: bottom center;
  -webkit-clip-path: ellipse(85% 100% at 50% -12%);
          clip-path: ellipse(85% 100% at 50% -12%);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: -1;
  background-size: cover;
}
@media (max-width: 991px) {
  .page-banner::after {
    -webkit-clip-path: ellipse(110% 100% at 50% -12%);
            clip-path: ellipse(110% 100% at 50% -12%);
  }
}
@media (max-width: 767px) {
  .page-banner::after {
    -webkit-clip-path: ellipse(190% 106% at 50% -12%);
            clip-path: ellipse(190% 106% at 50% -12%);
  }
}
.page-banner .box-breakcumb {
  text-align: center;
  color: var(--white);
  height: 100%;
  overflow: hidden;
}
.page-banner .box-breakcumb ul li {
  display: inline-block;
}
.page-banner .box-breakcumb ul li:nth-child(2n+2) {
  font-size: 8px;
  padding: 0 5px;
}
.page-banner .box-breakcumb .title-page {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 48px;
}
.page-banner a {
  color: var(--white);
}

.form-register {
  position: relative;
  margin-bottom: -61px;
  margin-top: 40px;
  z-index: 10;
}
.form-register [class^=col-] {
  align-self: center;
}
.form-register [class^=col-] .main-title h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .form-register [class^=col-] .main-title h3 {
    font-size: 24px;
    text-align: left;
  }
}
.form-register .form {
  border-radius: 16px;
  position: relative;
  background: white;
  bottom: -10%;
  max-width: 1170px;
  margin: auto;
  padding: 32px 56px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.form-register .form .main-title {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .form-register .form .main-title {
    margin-bottom: 16px;
  }
}
.form-register .form .main-title .title-icon {
  display: block;
  margin-right: 40px;
  min-width: 112px;
}
@media (max-width: 991px) {
  .form-register .form .main-title .title-icon {
    width: 80px;
    min-width: 80px;
    margin-right: 20px;
  }
}
.form-register .form p {
  font-size: 15px;
  font-weight: 700;
  color: rgba(128, 128, 128, 0.74);
}
@media (max-width: 767px) {
  .form-register .form p {
    font-size: 14px;
  }
}
.form-register .form .form-group {
  width: 100%;
  position: relative;
  max-width: 425px;
}
@media (max-width: 991px) {
  .form-register .form .form-group {
    max-width: inherit;
  }
}
.form-register .form .form-group input {
  background: #EEF1FB;
  border-radius: 50px;
  padding: 8px 130px 8px 24px;
  height: 64px;
  font-size: 16px;
  border: 0;
}
@media (max-width: 767px) {
  .form-register .form .form-group input {
    height: 48px;
    padding: 8px 24px;
  }
}
.form-register .form .form-group button {
  position: absolute;
  border-radius: 30px;
  border: none;
  top: 50%;
  right: 8px;
  background: var(--second-color);
  color: white;
  height: 48px;
  width: 120px;
  transform: translate(0, -50%);
  cursor: pointer;
}

.share-socical {
  margin-bottom: 5px;
  margin-top: 30px;
}
.share-socical a {
  margin-right: 25px;
  color: var(--second-color);
  position: relative;
}
.share-socical a path {
  fill: var(--second-color);
}
.share-socical a.thanks-icon {
  margin-right: 60px;
}
.share-socical a.thanks-icon path {
  fill: var(--primary-color);
}
.share-socical a.thanks-icon span {
  background: linear-gradient(180deg, rgba(75, 166, 221, 0.36) 0%, rgba(75, 166, 221, 0) 100%);
  width: 50px;
  height: 50px;
  position: absolute;
  top: -28px;
  right: -20px;
  border-radius: 100%;
  z-index: -1;
}

.form-search-header {
  position: relative;
}
.form-search-header .text-danger {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  float: none;
  text-align: left;
  font-size: 14px;
  height: auto;
  padding: 5px;
  z-index: 50;
  left: 50%;
  transform: translate(-50%, 15%);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: -moz-max-content;
  width: max-content;
  opacity: 1;
  z-index: 1;
  top: 120%;
  transition: all 0.4s;
}
.form-search-header .text-danger::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0px;
  margin: auto;
  right: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid white;
}

.pop-input-search-message {
  display: none;
}

@media (max-width: 767px) {
  .text-desc {
    font-size: 15px;
    text-align: justify;
  }
}

.main-footer {
  background: var(--primary-color);
  -webkit-clip-path: ellipse(60% 70% at 50% 70%);
          clip-path: ellipse(60% 70% at 50% 70%);
  padding: 155px 0px 15px 0px;
  color: var(--white);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-footer {
    -webkit-clip-path: ellipse(75% 70% at 50% 70%);
            clip-path: ellipse(75% 70% at 50% 70%);
  }
}
.main-footer .f-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .main-footer .f-title {
    margin-bottom: 16px;
  }
}
.main-footer .list-info {
  padding-left: 0;
}
.main-footer .list-info li {
  display: flex;
}
.main-footer .list-info li + li {
  padding-top: 28px;
}
@media (max-width: 767px) {
  .main-footer .list-info li + li {
    padding-top: 16px;
  }
}
.main-footer .list-info li .icon {
  display: block;
  width: 24px;
}
.main-footer .list-info li .info-right {
  width: calc(100% - 24px);
  padding-left: 10px;
}
.main-footer .list-info li .info-right .s-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.main-footer .list-info li .info-right .text {
  margin-bottom: 0;
  font-size: 14px;
  opacity: 0.8;
}
.main-footer .col-group {
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  margin: 0px -35px;
}
@media (max-width: 1199px) {
  .main-footer .col-group {
    margin: 0px -15px;
  }
}
@media (max-width: 991px) {
  .main-footer .col-group {
    flex-wrap: wrap;
  }
}
.main-footer .col-group > .row-group {
  width: 28%;
  padding: 0px 35px;
  list-style: none;
  font-size: 14px;
  /* &.first{
      width: 26%;
      @media (max-width:$viewport-xl) {
        width: 23%;
      }
      @media (max-width:$viewport-md) {
        margin-bottom: 30px;
        width: 100% !important;
      }
      @media (max-width:$viewport-sm) {
        margin-bottom: 20px !important;
      }
  } */
}
@media (max-width: 1199px) {
  .main-footer .col-group > .row-group {
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  .main-footer .col-group > .row-group {
    padding: 0px 15px;
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .main-footer .col-group > .row-group {
    width: 100%;
    margin-bottom: 18px;
  }
}
.main-footer .col-group > .row-group.last {
  width: 16%;
}
@media (max-width: 1199px) {
  .main-footer .col-group > .row-group.last {
    width: 17%;
  }
}
@media (max-width: 991px) {
  .main-footer .col-group > .row-group.last {
    width: 100% !important;
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .main-footer .col-group > .row-group.last {
    padding-top: 0;
  }
}
.main-footer .row-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin-top: 85px;
}
@media (max-width: 767px) {
  .main-footer .row-bottom {
    margin-top: 24px;
    flex-flow: column;
    align-items: center;
  }
}
@media (max-width: 1199px) {
  .main-footer .row-bottom {
    margin-top: 15px;
  }
}
.main-footer .row-bottom .f-logo {
  width: 150px;
}
@media (max-width: 767px) {
  .main-footer .row-bottom .f-logo {
    order: 1;
    margin-bottom: 16px;
  }
}
.main-footer .row-bottom .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-footer .row-bottom .copyright {
    order: 3;
  }
}
.main-footer .social {
  display: flex;
  align-items: center;
  max-width: 199px;
}
@media (max-width: 767px) {
  .main-footer .social {
    order: 2;
    padding: 16px 0;
  }
}
.main-footer .social a {
  display: block;
  margin: 0 15px;
  width: 25%;
  display: inline-block;
}
@media (max-width: 991px) {
  .main-footer .social a {
    width: initial;
  }
}
.main-footer .social a svg {
  height: 20px;
  width: 100%;
}
.main-footer .social a:last-child {
  margin-right: 0;
}
.main-footer .quick-link {
  padding-left: 0px;
}
@media (max-width: 991px) {
  .main-footer .quick-link {
    display: flex;
    flex-flow: wrap;
  }
}
.main-footer .quick-link li {
  list-style: none;
  margin-bottom: 0px !important;
  padding: 8px 0;
}
@media (max-width: 991px) {
  .main-footer .quick-link li {
    margin-right: 30px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .main-footer .quick-link li {
    width: 100%;
  }
}
.main-footer .quick-link li:first-child {
  padding-top: 0;
}
.main-footer .quick-link li a {
  color: var(--white);
  font-size: 14px;
  opacity: 0.8;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  left: -150%;
  border-width: 7px 6px 0 6px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-width: 0 6px 6px 6px;
}

.radio-items {
  position: relative;
  color: #404041 !important;
  font-size: 15px;
  cursor: pointer;
  padding-left: 20px;
  margin-right: 16px;
}
.radio-items span::before {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 2px solid #ACB0B9;
  border-radius: 50%;
  content: "";
  left: 0;
  top: calc(50% - 9px);
  transition: all ease 0.1s;
}
.radio-items input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.radio-items input:checked ~ span::before {
  border: 6px solid var(--primary-color);
}

@media (max-width: 991px) {
  .row-16 {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (max-width: 991px) {
  .row-16 > [class*=col-] {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.error-page .error-content {
  color: var(--primary-color);
  text-align: center;
  padding-top: 42px;
}
.error-page .error-content .error-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .error-page .error-content .error-title {
    font-size: 32px;
  }
}
.error-page .error-content .error-text {
  font-size: 20px;
}
@media (max-width: 767px) {
  .error-page .error-content .error-text {
    font-size: 16px;
  }
}
.error-page .error-icon {
  width: 45%;
}
@media (max-width: 767px) {
  .error-page .error-icon {
    width: 80%;
  }
}
.error-page .er-name {
  color: #426AB3;
  font-weight: bold;
  font-size: 64px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .error-page .er-name {
    font-size: 48px;
  }
}

.img-apply {
  max-height: 597px;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  position: absolute;
}
@media (max-width: 1199px) {
  .img-apply {
    width: 313px;
  }
}

.bg-img-apply {
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 18vw;
}

.reason-choose-omi {
  left: 23px;
}

.btn-apply {
  cursor: pointer;
}

/* home */
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-stage-outer .owl-stage {
  display: flex;
  flex-wrap: wrap;
}
.owl-carousel .owl-stage-outer .owl-stage .owl-item {
  align-self: center;
}
.owl-carousel .owl-nav button {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  background: var(--primary-color) !important;
  display: flex;
  align-items: center;
}
.owl-carousel .owl-nav button span {
  font-size: 20px;
  color: var(--white);
  display: block;
}

.polygon-ellipse::after {
  content: "";
  background: var(--primary-color) url(../images/song-am.png);
  background-position: bottom center;
  background-size: 85%;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-clip-path: ellipse(85% 100% at 50% -20%);
          clip-path: ellipse(85% 100% at 50% -20%);
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

.flag-icon {
  width: 25px;
  height: 15px;
  border-radius: 5px;
}

/* end */
.logo {
  position: relative;
}

body {
  padding-top: 94px;
}
@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.main-header {
  background: var(--primary-color);
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .main-header {
    height: 60px;
    display: flex;
    align-items: center;
  }
}
.main-header .language {
  min-width: 65px;
}
@media (max-width: 767px) {
  .main-header .language::after {
    position: absolute;
    height: 18px;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
    right: -8px;
    top: calc(50% - 9px);
    content: "";
  }
}
.main-header .language-dropdown {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.main-header .language-dropdown::after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f107";
  font-size: 18px;
  margin-left: 4px;
}
.main-header .language-name {
  display: block;
  margin-left: 4px;
}
.main-header .language .dropdown-menu {
  min-width: 80px;
}
.main-header .language .dropdown-menu .dropdown-item {
  padding: 5px 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .main-header .logo {
    position: absolute;
    left: 15px;
    max-width: 134px;
    top: -40px;
  }
}
@media (max-width: 767px) {
  .main-header .logo {
    width: 100px;
    top: -33px;
  }
}
.main-header .three-line {
  margin-left: 25px;
  padding: 0;
  border: none;
  display: none;
  width: 20px;
  height: 14px;
  background: url("../icon/menu-button.svg") no-repeat;
  text-indent: -9999px;
  cursor: pointer;
}
.main-header nav [class^=col-] {
  width: 50% !important;
  align-self: center;
}
.main-header .form-search-top {
  color: var(--white);
  padding: 25px 0px 0px 0px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  float: right;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .main-header .form-search-top {
    padding-top: 15px;
  }
}
.main-header .form-search-top .div {
  width: 25px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .main-header .form-search-top .div {
    display: none;
  }
}
.main-header .form-search-top .div-after {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.5);
}
.main-header .form-search-top input {
  color: var(--white);
  border: none;
  outline: none;
  font-family: lato, FontAwesome;
  background: transparent;
  padding: 5px 14px;
  transition: all 0.2s;
  border-radius: 20px;
  width: 125px;
}
@media (max-width: 767px) {
  .main-header .form-search-top input {
    transition: none;
    margin-left: 0;
  }
}
.main-header .form-search-top input::-moz-placeholder {
  color: var(--white);
  font-size: 14px;
  padding-left: 2px;
}
.main-header .form-search-top input::placeholder {
  color: var(--white);
  font-size: 14px;
  padding-left: 2px;
}
.main-header .form-search-top input:focus {
  background: var(--white);
  width: 220px;
  color: var(--black);
  margin: 0px 5px;
}
@media (max-width: 767px) {
  .main-header .form-search-top input:focus {
    position: fixed;
    left: 10px;
    top: 12px;
    z-index: 5;
    width: calc(100vw - 20px);
    margin: 0;
  }
}
.main-header .form-search-top input:focus::-moz-placeholder {
  color: var(--black);
}
.main-header .form-search-top input:focus::placeholder {
  color: var(--black);
}
.main-header .form-search-top input:focus + .fa {
  color: black;
}
.main-header .form-search-top select {
  color: var(--white);
  background: transparent;
  border: none;
  outline: none;
  margin-left: 5px;
}
.main-header .form-search-top select option {
  color: var(--black);
}
@media (max-width: 991px) {
  .main-header .menu-desktop {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 8px 15px 2px rgba(46, 49, 56, 0.4), 0px 0px 4px rgba(46, 49, 56, 0.4);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
}
@media (max-width: 767px) {
  .main-header .menu-desktop {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    border-radius: 0 0 8px 8px;
    width: 100% !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    box-shadow: 0px 4px 7px 0px rgba(46, 49, 56, 0.4), 0px 0px 4px rgba(46, 49, 56, 0.4);
  }
}
.main-header .menu-desktop ul {
  text-align: right;
  margin-bottom: 0px;
  height: 100%;
  align-items: center;
  display: flex;
  padding-left: 0px;
  float: right;
}
.main-header .menu-desktop ul li {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  margin: 0px 15px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .main-header .menu-desktop ul li {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .main-header .menu-desktop ul li + li {
    border-top: 1px solid #ecedef;
  }
}
.main-header .menu-desktop ul li a {
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .main-header .menu-desktop ul li a {
    color: #2E3138;
    padding: 16px 20px;
    display: block;
    text-align: left;
  }
}
.main-header .menu-desktop ul li a.icon-arrow-down {
  position: relative;
}
.main-header .menu-desktop ul li a.icon-arrow-down::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f0dd";
  right: -15px;
  top: -7px;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .main-header .menu-desktop ul li a.icon-arrow-down::after {
    right: 15px;
    top: calc(50% - 8px);
    line-height: 50%;
  }
}
.main-header .menu-desktop ul li.parent::after {
  content: "";
  top: 100%;
  height: 80%;
  width: 100%;
  position: absolute;
  background: transparent;
  left: 0;
  right: 0;
  margin: auto;
}
.main-header .menu-desktop ul li ul {
  pointer-events: none;
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  display: block;
  float: none;
  text-align: left;
  height: auto;
  padding: 5px;
  z-index: 50;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 15%);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  z-index: -1;
  top: 120%;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .main-header .menu-desktop ul li ul {
    display: none;
    opacity: 1 !important;
    padding: 0 0 0 16px;
    position: inherit;
    transform: translate(0);
    left: initial;
    right: inherit;
    box-shadow: none;
    z-index: 50 !important;
  }
}
.main-header .menu-desktop ul li ul::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0px;
  margin: auto;
  right: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 48px solid white;
}
.main-header .menu-desktop ul li ul a {
  display: block;
  padding: 5px 15px;
  margin: 2px 0px;
  color: #1E1E1E !important;
}
@media (max-width: 991px) {
  .main-header .menu-desktop ul li ul a {
    color: #565C67 !important;
    font-weight: 500;
  }
}
.main-header .menu-desktop ul li ul a.parent2::after {
  content: "\f0da";
  font-family: "FontAwesome";
  position: absolute;
  right: 5px;
  top: 7px;
}
.main-header .menu-desktop ul li ul a.parent2::before {
  content: "";
  background: transparent;
  width: 120%;
  height: 115%;
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  z-index: -1;
}
.main-header .menu-desktop ul li ul a li {
  text-transform: none;
  color: #1E1E1E !important;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 991px) {
  .main-header .menu-desktop ul li ul a li {
    font-weight: 500;
    color: #565C67 !important;
  }
}
.main-header .menu-desktop ul li ul a ul {
  left: 110%;
  transform: translate(0, -50%);
  top: 50%;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
.main-header .menu-desktop ul li ul a ul::before {
  display: none;
}
.main-header .menu-desktop ul li ul a:hover {
  border-radius: 8px;
}
.main-header .menu-desktop ul li ul a:hover li {
  color: var(--menu-active-color) !important;
}
.main-header .menu-desktop ul li ul a:hover ul {
  display: block;
}
.main-header .menu-desktop ul li:hover a {
  color: var(--second-color);
}
.main-header .menu-desktop ul li:hover ul {
  pointer-events: inherit;
  opacity: 1;
  z-index: 50;
  top: 100%;
}
.main-header .menu-desktop ul li.active a {
  color: var(--menu-active-color);
}
@media (max-width: 991px) {
  .main-header .menu-desktop ul li.active a {
    background-color: #ECEDEF;
  }
}
.home-slide {
  padding: 70px 0px 50px 0px;
  position: relative;
  overflow: hidden;
}
.home-slide .banner {
  position: relative;
  max-width: 125%;
  z-index: 5;
  left: -5%;
  bottom: -5%;
}
@media (max-width: 991px) {
  .home-slide .banner {
    left: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .home-slide .banner {
    left: inherit;
    bottom: inherit;
    max-width: 100%;
  }
}
.home-slide .banner-event {
  position: relative;
  max-width: 100%;
  z-index: 5;
  bottom: 9%;
  border-radius: 25px;
}
@media (max-width: 991px) {
  .home-slide .banner-event {
    max-width: 100%;
    bottom: auto;
  }
}
@media (max-width: 767px) {
  .home-slide .banner-event {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .home-slide .banner-event-img {
    order: 2;
  }
}
@media (max-width: 767px) {
  .home-slide .banner-event-img {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .home-slide .banner-event-img {
    margin-top: 20px;
  }
}
.home-slide .banner-event-img .banner {
  display: block !important;
}
@media (max-width: 1199px) {
  .home-slide .banner-event-filter {
    order: 3;
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .home-slide .banner-event-filter {
    order: 3;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .home-slide .banner-event-filter {
    order: 3;
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .home-slide .banner-event-filter {
    margin-top: 25px;
  }
}
@media (max-width: 991px) {
  .home-slide .banner-img {
    order: 2;
  }
}
@media (max-width: 767px) {
  .home-slide .banner-img {
    margin-top: -50px;
  }
}
.home-slide .banner-img .banner {
  display: block !important;
}
@media (max-width: 991px) {
  .home-slide .banner-info {
    margin-bottom: -220px;
    order: 1;
    display: flex;
  }
}
@media (max-width: 767px) {
  .home-slide .banner-info {
    padding: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .home-slide .banner-info .wrapper {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .home-slide .banner-info .wrapper {
    margin: 0 0 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 991px) {
  .home-slide .banner-filter {
    order: 3;
  }
}
@media (max-width: 767px) {
  .home-slide .banner-filter {
    margin-top: -40px;
  }
}
.home-slide .banner-filter .btn-filter {
  white-space: nowrap;
  width: 150px;
  border-radius: 40px;
  height: 48px;
}
@media (max-width: 991px) {
  .home-slide .banner-filter .btn-filter {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .home-slide .banner-filter .btn-filter {
    max-width: 100%;
    width: 100%;
    height: 40px;
  }
}
@media (max-width: 991px) {
  .home-slide .banner-filter .filter-wrap {
    flex-flow: inherit;
  }
}
@media (max-width: 767px) {
  .home-slide .banner-filter .filter-wrap {
    flex-flow: wrap;
  }
}
@media (max-width: 991px) {
  .home-slide .banner-filter .filter-wrap div {
    flex: inherit;
    overflow: hidden;
  }
}
.home-slide .banner-filter .filter-wrap div:nth-child(3) {
  min-width: 150px;
}
.home-slide .box-slide .wrapper {
  margin: 60px 18px 60px 105px;
  position: relative;
  top: -45px;
}
@media (max-width: 767px) {
  .home-slide .box-slide .wrapper {
    margin: 60px 18px 60px 40px;
  }
}
@media (max-width: 480px) {
  .home-slide .box-slide .wrapper {
    margin: 60px 18px 60px 40px;
  }
}
.home-slide .box-slide .wrapper .boxes {
  position: relative;
  background: var(--white);
  padding: 40px;
  transform: rotate(0deg);
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .home-slide .box-slide .wrapper .boxes {
    padding: 40px 40px 100px;
  }
}
.home-slide .box-slide .wrapper .boxes .title {
  font-size: 34px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .home-slide .box-slide .wrapper .boxes .title {
    font-size: 32px;
  }
}
.home-slide .box-slide .wrapper .boxes .description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 991px) {
  .home-slide .box-slide .wrapper .boxes .description {
    text-overflow: initial;
    -webkit-line-clamp: initial;
  }
}
@media (max-width: 767px) {
  .home-slide .box-slide .wrapper .boxes .description p {
    margin-bottom: 0;
  }
}
.home-slide .box-slide .wrapper .boxes::after {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  background: var(--white);
  transform: rotate(-3deg);
  top: 0px;
  left: 0px;
  z-index: -1;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media (max-width: 767px) {
  .home-slide .box-slide .wrapper .boxes::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .home-slide .box-slide .wrapper .boxes .button-apply {
    text-align: right;
  }
}
.home-slide .box-slide .wrapper .boxes .btn-apply-now {
  position: relative;
  background: linear-gradient(90deg, #252C6D -4.26%, #42AADF 106.91%);
  border: 2px solid var(--white);
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 12px 60px 12px 20px;
  font-size: 24px;
  color: var(--white);
}
@media (max-width: 991px) {
  .home-slide .box-slide .wrapper .boxes .btn-apply-now {
    font-size: 20px;
  }
}
.home-slide .box-slide .wrapper .boxes .btn-apply-now svg {
  border-left: 1px solid rgba(255, 255, 255, 0.168627451);
  margin-left: 4px;
  position: absolute;
  height: calc(100% - 7px);
  top: 4px;
  right: 20px;
}
.home-slide .box-slide.owl-carousel {
  position: relative;
}
.home-slide .box-slide.owl-carousel .owl-dots {
  position: absolute;
  left: 60%;
  transform: rotate(90deg) translate(50%, 50%);
  display: flex;
  margin-top: 0px;
  align-items: center;
  float: right;
  overflow: hidden;
  width: 100%;
  margin: auto;
  top: 0%;
  bottom: 90%;
}
.home-slide .box-slide.owl-carousel .owl-dots .owl-dot {
  outline: none;
  border: none;
}
.home-slide .box-slide.owl-carousel .owl-dots .owl-dot button {
  font-size: 11px;
  transform: rotate(-90deg);
  margin: 0px 5px;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  cursor: pointer;
}
.home-slide .box-slide.owl-carousel .owl-dots .owl-dot.active button {
  color: var(--white);
}
.home-slide .box-slide.owl-carousel .owl-dots .owl-dot.active button::after {
  content: "";
  width: 1px;
  background: var(--white);
  height: 14px;
  display: block;
  position: absolute;
  left: 12px;
}
.home-slide .box-slide.owl-carousel .owl-dots .owl-dot:last-child button::after {
  display: none;
}

.form-filter {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 35px;
  margin-bottom: 35px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  position: relative;
  z-index: 15;
  top: -35px;
}
.form-filter .control {
  height: 100%;
  align-items: center;
}
@media (max-width: 767px) {
  .form-filter .control > img {
    width: 50px;
  }
}
.form-filter .control b {
  color: var(--primary-color);
}
.form-filter .control select {
  border: none;
  outline: none;
  width: 100%;
}
.form-filter .control button {
  background: var(--primary-color);
  color: var(--white);
  border-radius: 20px;
  padding: 7px 24px;
  font-size: 15px;
}
.form-filter .control div {
  width: 100%;
}
.form-filter .control input {
  width: 100%;
  border: none;
  outline: none;
}
@media (max-width: 991px) {
  .form-filter .control input {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .form-filter .control .select2-selection__rendered {
    font-size: 15px;
  }
}
.form-filter .control .select2-container--default .select2-selection--single {
  border-color: transparent;
}
.form-filter .control .select2-container--default .select2-search--dropdown .select2-search__field {
  outline: none;
  border-radius: 2px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  outline: none;
  border-radius: 2px !important;
}

.main-title {
  text-align: center;
}
.main-title h3 {
  color: #000;
  font-weight: bold;
  font-size: 36px;
}
@media (max-width: 767px) {
  .main-title h3 {
    font-size: 24px;
  }
}
.main-title h3 span {
  color: var(--second-color);
}

.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.hot-position {
  padding: 0px 0px 50px 0px;
}
@media (max-width: 1366px) {
  .hot-position .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .hot-position .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .hot-position .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.hot-position .boxes-position {
  color: var(--black);
  margin-top: 35pt;
}
.hot-position .boxes-position .box-item {
  margin: auto;
  height: 300px;
  display: flex;
  align-items: center;
  padding: 25px 0px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hot-position .boxes-position .box-item .label {
  position: absolute;
  background: #CB0202;
  color: white;
  transform: rotate(45deg);
  top: 5%;
  right: -41%;
  width: 100%;
  text-align: center;
  font-size: 11px;
  z-index: 5;
  padding: 2px;
  display: none;
  text-transform: uppercase;
}
.hot-position .boxes-position .box-item .label.label-new {
  background: #44c8f5;
}
.hot-position .boxes-position .box-item .content {
  width: 100%;
  height: 250px;
  padding: 30px 22px 22px 22px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: var(--white);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.hot-position .boxes-position .box-item .content .label {
  top: 6%;
  right: -42%;
  display: block;
}
.hot-position .boxes-position .box-item .content .title {
  font-size: 20px;
  color: #426AB3;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 48px;
  line-height: 24px;
}
.hot-position .boxes-position .box-item .content .r-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 28px;
}
.hot-position .boxes-position .box-item .content .tags {
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hot-position .boxes-position .box-item .content .tags span {
  background: rgba(68, 200, 245, 0.1);
  display: inline-block;
  padding: 7px 9px;
  margin-bottom: 5px;
  color: #6F6E6E;
  font-size: 14px;
  border-radius: 10px;
}
.hot-position .boxes-position .box-item .content .more {
  visibility: hidden;
  text-align: right;
}
.hot-position .boxes-position .box-item .content .more a {
  color: var(--white);
  font-weight: 600;
}
.hot-position .boxes-position .box-item .content .more hr {
  background: #D5D6D8;
  margin: 5px 0px;
}
.hot-position .boxes-position .box-item:hover {
  background: var(--primary-color);
  color: var(--white);
}
.hot-position .boxes-position .box-item:hover .label {
  display: block;
}
.hot-position .boxes-position .box-item:hover .content {
  box-shadow: none;
  background: var(--primary-color);
}
.hot-position .boxes-position .box-item:hover .content path {
  fill: var(--white);
}
.hot-position .boxes-position .box-item:hover .content .label {
  display: none;
}
.hot-position .boxes-position .box-item:hover .content .title {
  color: var(--white);
}
.hot-position .boxes-position .box-item:hover .content .tags span {
  color: var(--white);
  background: rgba(68, 200, 245, 0.54);
  border-radius: 10px;
}
.hot-position .boxes-position .box-item:hover .content .more {
  visibility: visible;
}
.hot-position .boxes-position .box-item:hover .content a {
  color: var(--white);
  font-size: 15px;
}
.hot-position .boxes-position.owl-carousel .owl-dots .owl-dot {
  outline: none;
  border: none;
}
.hot-position .boxes-position.owl-carousel .owl-dots .owl-dot span {
  transition: width 0.2s;
  background: rgba(75, 166, 221, 0.5);
  height: 7px;
  width: 7px;
}
.hot-position .boxes-position.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--second-color);
  width: 30px;
}
.hot-position .boxes-position.owl-carousel .owl-nav button {
  top: calc(50% - 45px);
}
.hot-position .boxes-position.owl-carousel .owl-nav button.owl-prev {
  left: -70px;
}
@media (max-width: 1366px) {
  .hot-position .boxes-position.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
  }
}
.hot-position .boxes-position.owl-carousel .owl-nav button.owl-next {
  right: -70px;
}
@media (max-width: 1366px) {
  .hot-position .boxes-position.owl-carousel .owl-nav button.owl-next {
    right: -50px;
  }
}

.about-ominext {
  background: linear-gradient(290.74deg, #5EAAAF 6.83%, #2F2E6C 52.53%, #251F3E 85.61%);
  padding: 94px 0px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-ominext {
    padding: 48px 0;
  }
}
.about-ominext::after {
  content: "";
  position: absolute;
  width: 694.83px;
  height: 712.23px;
  background: linear-gradient(247.38deg, rgba(247, 247, 249, 0) 47.02%, rgba(224, 230, 243, 0.8) 142.05%);
  opacity: 0.11;
  transform: matrix(0.96, 0.28, 0.28, -0.96, 0, 0);
  border-radius: 50%;
  bottom: -45%;
  right: -10%;
}
.about-ominext .about-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .about-ominext .about-title {
    font-size: 24px !important;
  }
}
.about-ominext.reason {
  background: #fff;
}
.about-ominext.show-bg {
  background: linear-gradient(290.74deg, #5EAAAF 6.83%, #2F2E6C 52.53%, #251F3E 85.61%);
  color: #fff;
}
.about-ominext h3 {
  font-size: 36px;
}
@media (max-width: 767px) {
  .about-ominext h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .about-ominext .text-desc {
    font-size: 15px;
    text-align: justify;
  }
}
.about-ominext [class^=col-] {
  align-self: center;
}
.about-ominext .wrapper {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.about-ominext .wrapper img {
  border-radius: 10px;
}
.about-ominext .wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #426AB3;
  border-radius: 10px;
  opacity: 0.2;
  left: 62px;
  top: 62px;
  position: absolute;
  z-index: -1;
}
.about-ominext .wrapper.no-after::after {
  display: none;
}
.about-ominext .wrapper .retangle {
  position: absolute;
  background: radial-gradient(91.1% 443.77% at -4.09% 212.92%, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.35) 100%);
  box-shadow: -21.0573px 13.7962px 116.904px -54.4586px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  border-radius: 12px;
  padding: 15px 20px;
  color: #4a4a4a;
  font-size: 14px;
  width: 220px;
  text-align: left;
  border: 3px solid rgba(255, 255, 255, 0.54);
}
.about-ominext .wrapper .retangle.style {
  background: radial-gradient(84.23% 284.83% at -4.09% 212.92%, rgba(197, 197, 197, 0.54) 0%, rgba(255, 255, 255, 0.86) 100%);
  box-shadow: -21.0573px 13.7962px 116.904px -54.4586px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
}
.about-ominext .wrapper .retangle.style:nth-child(2) {
  top: 25%;
  right: 0%;
}
.about-ominext .wrapper .retangle.style:nth-child(3) {
  top: 60%;
  right: 10%;
}
.about-ominext .wrapper .retangle.style:nth-child(4) {
  left: -15%;
  bottom: 15%;
}
@media (max-width: 1366px) {
  .about-ominext .wrapper .retangle.style:nth-child(4) {
    left: -3%;
  }
}
@media (max-width: 1300px) {
  .about-ominext .wrapper .retangle.style:nth-child(4) {
    left: 0;
  }
}
.about-ominext .wrapper .retangle.style:nth-child(5) {
  left: -15%;
  top: 35%;
}
@media (max-width: 1366px) {
  .about-ominext .wrapper .retangle.style:nth-child(5) {
    left: -5%;
  }
}
@media (max-width: 1300px) {
  .about-ominext .wrapper .retangle.style:nth-child(5) {
    left: 0;
  }
}
.about-ominext .wrapper .retangle h4 {
  font-weight: bold;
  font-size: 32px;
}
.about-ominext .wrapper .retangle p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.about-ominext .wrapper .retangle:nth-child(2) {
  top: 25%;
  right: -35%;
}
.about-ominext .wrapper .retangle:nth-child(3) {
  top: 60%;
  right: -20%;
}
.about-ominext .wrapper .retangle:nth-child(4) {
  left: -20%;
  bottom: 15%;
}
.about-ominext .wrapper .retangle:nth-child(5) {
  left: -20%;
  top: 35%;
}
.about-ominext .text {
  color: var(--white);
}
.about-ominext .text .main-title h3 {
  color: var(--white);
}
@media (max-width: 767px) {
  .about-ominext .des-about {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .about-ominext .des-about p {
    font-size: 15px;
  }
}

.btn-apply {
  background: linear-gradient(90deg, #252C6D -4.26%, #42AADF 106.91%);
  border-radius: 30px;
  color: var(--white);
  padding: 10px 56px 10px 20px;
  display: inline-flex;
  justify-content: center;
  font-size: 15px;
  white-space: nowrap;
  position: relative;
  text-align: center;
  transition: all ease 0.3s;
  font-weight: 700;
}
.btn-apply:hover {
  background: linear-gradient(90deg, #2f3781 -4.26%, #46b8f3 106.91%);
  color: var(--white);
}
.btn-apply::after {
  position: absolute;
  height: 100%;
  top: 0;
  right: 44px;
  content: "";
  background-color: rgba(255, 255, 255, 0.168627451);
  width: 1px;
}
.btn-apply svg {
  margin-left: 4px;
  position: absolute;
  right: 12px;
  top: calc(50% - 12px);
}
.btn-apply.white {
  background: var(--white);
  color: var(--primary-color);
}
.btn-apply.white svg {
  border-left: 1px solid rgba(128, 128, 128, 0.168627451);
}

.ominext-reason {
  padding-top: 45pt;
  padding-bottom: 5vw;
  background: linear-gradient(67.61deg, #88A0CC 5.45%, rgba(136, 160, 204, 0) 76.88%);
  position: relative;
}
@media (max-width: 991px) {
  .ominext-reason {
    background: transparent;
  }
}
.ominext-reason::before {
  content: "";
  background: url(../images/bg-reason.png) no-repeat;
  background-size: auto 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.ominext-reason::after {
  content: "";
  background: url(../images/bg-reason-bottom-right.png) no-repeat;
  background-size: auto 100%;
  background-position-x: right;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  right: 0px;
  z-index: -1;
}
.ominext-reason .group-circle {
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .ominext-reason .group-circle {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
@media (max-width: 767px) {
  .ominext-reason .group-circle {
    padding-top: 20vw;
    padding-bottom: 10vw;
  }
}
.ominext-reason .group-circle .circle-box {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  text-align: center;
  background: radial-gradient(140.76% 140.76% at 78.14% -22.61%, rgba(236, 241, 255, 0.29) 0%, rgba(236, 241, 255, 0.8) 100%);
  /* shadow */
  box-shadow: 0px 4px 40px rgba(37, 44, 109, 0.08);
  -webkit-backdrop-filter: blur(34.5px);
          backdrop-filter: blur(34.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 5;
  cursor: pointer;
}
.ominext-reason .group-circle .circle-box img, .ominext-reason .group-circle .circle-box svg {
  width: 55px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .ominext-reason .group-circle .circle-box img, .ominext-reason .group-circle .circle-box svg {
    max-width: 45px;
    display: inline-block;
    margin-bottom: 0;
  }
}
.ominext-reason .group-circle .circle-box .title {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .ominext-reason .group-circle .circle-box .title {
    font-size: 3.7vw;
  }
}
.ominext-reason .group-circle .circle-box p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
}
.ominext-reason .group-circle .circle-box:nth-child(1) {
  margin: auto;
  margin-bottom: -90px;
  z-index: 10;
  position: relative;
}
@media (max-width: 991px) {
  .ominext-reason .group-circle .circle-box:nth-child(1) {
    margin-bottom: -60px;
  }
}
@media (max-width: 767px) {
  .ominext-reason .group-circle .circle-box:nth-child(1) {
    left: 44vw;
    top: 6vw;
    position: absolute;
    z-index: 7;
  }
}
.ominext-reason .group-circle .circle-box:nth-child(2) {
  float: right;
}
@media (max-width: 767px) {
  .ominext-reason .group-circle .circle-box:nth-child(2) {
    left: 44vw;
    top: 48vw;
    position: absolute;
    z-index: 7;
  }
}
.ominext-reason .group-circle .circle-box:nth-child(3) {
  float: left;
  background: var(--primary-color);
  color: var(--white);
  position: relative;
}
@media (max-width: 767px) {
  .ominext-reason .group-circle .circle-box:nth-child(3) {
    width: 54vw;
    height: 54vw;
    margin-bottom: 3vw;
    float: none;
  }
}
.ominext-reason .group-circle .circle-box:nth-child(3) .title {
  color: var(--white);
}
.ominext-reason .group-circle .circle-box:nth-child(3) .title span {
  display: block;
}
.ominext-reason .group-circle .circle-box:nth-child(3) svg, .ominext-reason .group-circle .circle-box:nth-child(3) img {
  max-width: 55px;
}
.ominext-reason .group-circle .circle-box:nth-child(3)::after {
  content: "";
  background: url(../images/group-1181795.svg) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  width: 170%;
  height: 170%;
  position: absolute;
  z-index: -1;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media (max-width: 767px) {
  .ominext-reason .group-circle .circle-box:nth-child(3)::after {
    width: 130%;
    height: 130%;
    top: 59%;
    left: 43%;
  }
}
.ominext-reason .group-circle .circle-box:nth-child(4) {
  margin: auto;
  position: relative;
  margin-top: -90px;
}
@media (max-width: 767px) {
  .ominext-reason .group-circle .circle-box:nth-child(4) {
    margin-top: 20vw;
    clear: both;
    margin: 0 0 0 9vw;
  }
}
.ominext-reason .group-circle .circle-box:nth-child(5), .ominext-reason .group-circle .circle-box:nth-child(6), .ominext-reason .group-circle .circle-box:nth-child(7), .ominext-reason .group-circle .circle-box:nth-child(8), .ominext-reason .group-circle .circle-box:nth-child(9) {
  display: none;
}
.ominext-reason .group-circle .circle-box:hover {
  background: var(--primary-color);
}
.ominext-reason .group-circle .circle-box:hover .title {
  color: var(--white);
}
.ominext-reason .group-circle .circle-box:hover path {
  fill: #44C8F5;
}

.get-profile {
  background: var(--primary-color) url(../images/group-bg.png) no-repeat;
  background-size: 100% 100%;
  height: 356px;
  display: flex;
  align-items: center;
}
.get-profile .main {
  text-align: center;
}
.get-profile .main .text {
  text-transform: uppercase;
  opacity: 0.7;
  color: #FFFFFF;
  font-weight: normal;
  font-size: 18px;
}
.get-profile .main .title {
  color: var(--white);
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Barlow-Bold";
  font-weight: 600;
}

.explore-ominext {
  padding: 35pt 0px;
}
.explore-ominext .ominext-news .wrapper {
  margin: 50px 0px 100px 0px;
}
.explore-ominext .ominext-news .wrapper .new-item {
  position: relative;
}
.explore-ominext .ominext-news .wrapper .new-item .view {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(152, 157, 159, 0.5);
  padding: 4px 8px;
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  z-index: 5;
}
.explore-ominext .ominext-news .wrapper .new-item img {
  width: 100%;
  height: 329px;
  border-radius: 15px;
}
.explore-ominext .ominext-news .wrapper .new-item .date-time {
  position: absolute;
  top: 5%;
  left: 5%;
  background: var(--primary-color);
  border: 2px solid var(--second-color);
  color: var(--white);
  width: 73px;
  height: 74px;
  border-radius: 10px;
  text-align: center;
  display: grid;
}
.explore-ominext .ominext-news .wrapper .new-item .date-time b {
  font-size: 26px;
  bottom: 1px solid var(--white);
}
.explore-ominext .ominext-news .wrapper .new-item .date-time b::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  margin: auto;
  background: rgba(255, 255, 255, 0.3);
}
.explore-ominext .ominext-news .wrapper .new-item .box-title {
  position: absolute;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--white);
  padding: 15px;
  bottom: -50px;
  border-radius: 8px !important;
  z-index: 1;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.explore-ominext .ominext-news .wrapper .new-item .box-title img {
  border-radius: 10px;
}
.explore-ominext .ominext-news .wrapper .new-item .box-title .category {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.explore-ominext .ominext-news .wrapper .new-item .box-title .category a {
  color: var(--second-color);
  font-size: 14px;
}
.explore-ominext .ominext-news .wrapper .new-item .box-title .title {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 0px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-right: 25px;
  overflow: hidden;
  line-height: 28px;
}
.explore-ominext .ominext-news .wrapper .new-item .box-title .title a {
  color: var(--primary-color);
}
.explore-ominext .ominext-news.owl-carousel .owl-dots .owl-dot {
  outline: none;
  border: none;
}
.explore-ominext .ominext-news.owl-carousel .owl-dots .owl-dot span {
  transition: width 0.2s;
  background: rgba(75, 166, 221, 0.5);
  height: 7px;
  width: 7px;
}
.explore-ominext .ominext-news.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--second-color);
  width: 30px;
}
.explore-ominext .ominext-news.owl-carousel .owl-nav button {
  top: calc(50% - 45px);
}
.explore-ominext .ominext-news.owl-carousel .owl-nav button.owl-prev {
  left: -100px;
}
.explore-ominext .ominext-news.owl-carousel .owl-nav button.owl-next {
  right: -100px;
}

.follow-ominext {
  height: 580px;
  background: url(../images/mask-group-1.png) no-repeat;
  background-size: 70% 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.follow-ominext .block {
  text-align: center;
  color: var(--white);
}
.follow-ominext [class^=gradien-] {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.follow-ominext .container {
  z-index: 1;
}
.follow-ominext .container .description {
  font-size: 20px;
}
.follow-ominext .container .title {
  font-family: "Barlow-Bold";
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
}
.follow-ominext .gradien-1 {
  background: url(../images/gradien-1.svg) no-repeat;
  background-size: 80%;
  z-index: -1;
}
.follow-ominext .gradien-2 {
  background: url(../images/gradien-2.svg) no-repeat;
  background-size: 110%;
  z-index: -2;
}
.follow-ominext .gradien-3 {
  background: #3768A4;
  background-size: 100%;
  z-index: -3;
}
.follow-ominext .gradien-4 {
  background: linear-gradient(180deg, rgba(37, 44, 109, 0.48) 0%, rgba(37, 44, 109, 0.64) 48.62%, rgba(37, 44, 109, 0) 100.94%);
  z-index: 0;
}

.feedback-ominext {
  background: var(--white);
  padding: 80px 0px;
  position: relative;
}
@media (max-width: 991px) {
  .feedback-ominext {
    padding: 40px 0px;
    background: #F9FAFF;
  }
}
.feedback-ominext::before, .feedback-ominext::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
.feedback-ominext::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg-feed-back-left.png) no-repeat;
  background-size: auto 100%;
  top: 0px;
  left: 0px;
}
.feedback-ominext::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg-feed-back-right.png) no-repeat;
  background-size: auto 100%;
  background-position-x: right;
  bottom: 0px;
  right: 0px;
}
@media (max-width: 767px) {
  .feedback-ominext::after {
    background-position: 0 0;
  }
}
.feedback-ominext [class^=col-] {
  align-self: center;
}
.feedback-ominext .src-image {
  height: 580px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  animation: imgFadeIn 1s ease-in-out;
}
.feedback-ominext .feedback-list .wrapper {
  margin: 80px 0px 80px 40px;
}
.feedback-ominext .feedback-list .wrapper .feedback-text {
  background: #FFFFFF;
  box-shadow: 0px 15px 25px rgba(41, 47, 108, 0.05);
  border-radius: 0px 100px;
  height: 325px;
  display: flex;
  align-items: center;
  padding: 60px;
  position: relative;
}
@media (max-width: 767px) {
  .feedback-ominext .feedback-list .wrapper .feedback-text {
    height: 415px;
  }
}
.feedback-ominext .feedback-list .wrapper .feedback-text::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--white) url(../images/ios-quote.svg) no-repeat;
  box-shadow: 0px 15px 25px rgba(41, 47, 108, 0.05);
  background-position: center center;
  background-size: 50%;
  top: -40px;
  left: -40px;
  border-radius: 10px;
}
.feedback-ominext .feedback-list .wrapper .feedback-text .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--primary-color);
}
.feedback-ominext .feedback-list .wrapper .feedback-text .job {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--second-color);
}
.feedback-ominext .feedback-list .wrapper .feedback-text .description {
  margin-bottom: 0px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  max-height: 300px;
  overflow: hidden;
  -ms-overflow-style: none;
  height: 200px;
  overflow-y: scroll;
  scrollbar-color: #E9E9F2 #FFFFFF;
  scrollbar-width: none;
}
@media (max-width: 767px) {
  .feedback-ominext .feedback-list .wrapper .feedback-text .description {
    height: 300px;
    max-height: 300px;
  }
}
.feedback-ominext .feedback-list .wrapper .feedback-text .description::-webkit-scrollbar {
  width: 10px !important;
}
.feedback-ominext .feedback-list .wrapper .feedback-text .description::-webkit-scrollbar-thumb {
  background-color: #E9E9F2;
  border-radius: 10px;
}
.feedback-ominext .feedback-list.owl-carousel .owl-dots {
  width: 70%;
  margin: auto;
}
.feedback-ominext .feedback-list.owl-carousel .owl-dots .owl-dot {
  outline: none;
  border: none;
}
.feedback-ominext .feedback-list.owl-carousel .owl-dots .owl-dot span {
  background: rgba(36, 36, 36, 0.5);
  height: 1px;
  width: 50px;
  margin: 0px;
}
.feedback-ominext .feedback-list.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--second-color);
  height: 3px;
  margin-bottom: -1px;
}
.feedback-ominext .feedback-list.owl-carousel .owl-nav {
  margin-top: 0px;
}
.feedback-ominext .feedback-list.owl-carousel .owl-nav button {
  bottom: -17px;
}
.feedback-ominext .feedback-list.owl-carousel .owl-nav button.owl-prev {
  left: 0px;
}
.feedback-ominext .feedback-list.owl-carousel .owl-nav button.owl-next {
  left: 55px;
}
.feedback-ominext .feedback-list.owl-carousel .animated {
  animation-duration: 3000ms !important;
  animation-fill-mode: both;
}

@media (max-width: 991px) {
  .form-register .main-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .form-register .main-title h3 {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .form-register p {
    text-align: center;
  }
}

/* about */
.video-introduce {
  padding: 15px 0px;
}
.video-introduce .iframe-video iframe {
  border-radius: 25px;
  border: none;
}
.video-introduce .box-number {
  position: relative;
  text-transform: uppercase;
  margin: 35px 0px;
  align-items: self-end;
  display: flex;
}
@media (max-width: 767px) {
  .video-introduce .box-number {
    margin: 22px 0px;
  }
}
.video-introduce .box-number::before {
  content: "";
  width: 45px;
  height: 45px;
  background: url(../images/bg-icon.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 15px;
  bottom: 20px;
}
.video-introduce .box-number img {
  margin-right: 8px;
  height: 45px;
  width: 45px;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .video-introduce .box-number img {
    margin-right: 16px;
  }
}
.video-introduce .box-number h2 {
  font-weight: bold;
  font-size: 56px;
  margin-bottom: 0px;
  color: var(--primary-color);
}

.about-title {
  font-size: 36px;
  font-weight: 700;
}

.ominext-value {
  padding: 45px 0px;
}
.ominext-value .text-box {
  display: flex;
  align-items: flex-start;
  margin: 15px 0px;
}
@media (max-width: 991px) {
  .ominext-value .text-box {
    flex-flow: column;
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.ominext-value .text-box .icon {
  width: 45%;
}
@media (max-width: 991px) {
  .ominext-value .text-box .text {
    padding-top: 16px;
  }
}
.ominext-value .text-box .text h4 {
  font-weight: bold;
  font-size: 28px;
}
@media (max-width: 767px) {
  .ominext-value .text-box .text h4 {
    font-size: 24px;
  }
}
.ominext-value .text-box .text p {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .ominext-value .text-box .text p {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .ominext-value .order-lg-1 {
    order: 1;
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .ominext-value .order-lg-2 {
    order: 2;
  }
}

.group-value [class^=col-] {
  align-self: center;
}
.group-value h4 {
  font-size: 28px;
}
@media (max-width: 767px) {
  .group-value h4 {
    text-align: center;
  }
}
.group-value .group-icon {
  position: relative;
}
.group-value .group-icon p {
  text-align: center;
  position: absolute;
  color: white;
  font-weight: bold;
  font-size: 28px;
  width: 200px;
}
.group-value .group-icon p:nth-child(1) {
  top: 15px;
  left: 0;
  right: 0;
  margin: auto;
}
.group-value .group-icon p:nth-child(2) {
  top: 52%;
  right: 8%;
  margin: auto;
}
.group-value .group-icon p:nth-child(3) {
  right: 0;
  left: 0;
  margin: auto;
  bottom: 10%;
}
.group-value .group-icon p:nth-child(4) {
  top: 40%;
  left: 8%;
  margin: auto;
}
.group-value .box-value {
  display: flex;
  align-items: flex-end;
  margin: 15px 0px;
  position: relative;
}
@media (max-width: 991px) {
  .group-value .box-value {
    align-items: flex-start;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .group-value .box-value {
    flex-flow: column;
    align-items: center;
  }
}
.group-value .box-value::before {
  content: "";
  width: 45px;
  height: 45px;
  background: url(../images/bg-icon.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 30px;
  bottom: 20px;
}
@media (max-width: 767px) {
  .group-value .box-value::before {
    bottom: inherit;
    left: calc(50% - 22px);
    top: -12px;
  }
}
.group-value .box-value img {
  width: 50px;
  height: 50px;
}
.group-value .box-value .text {
  padding-left: 15px;
}
@media (max-width: 767px) {
  .group-value .box-value .text {
    text-align: center;
    padding-top: 16px;
  }
}
.group-value .box-value .text h5 {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 20px;
}
@media (max-width: 767px) {
  .group-value .box-value .text h5 br {
    display: none;
  }
}
.group-value .box-value .text p {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .group-value .box-value .text p {
    font-size: 15px;
  }
}

/* reason */
.page-banner {
  position: relative;
}
.page-banner .tab-menu-nav {
  position: absolute;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  bottom: -142px;
  z-index: 5;
}
.page-banner .tab-menu-nav ul a {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  border-radius: 8px;
  padding: 20px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  margin-bottom: 5px;
}
.page-banner .tab-menu-nav ul a li {
  display: block;
  color: var(--black);
  font-weight: bold;
  font-size: 20px;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.page-banner .tab-menu-nav ul a:hover, .page-banner .tab-menu-nav ul a.active {
  background: #426AB3;
}
.page-banner .tab-menu-nav ul a:hover li, .page-banner .tab-menu-nav ul a.active li {
  color: var(--white);
}

@media (max-width: 991px) {
  .slide-thongdiep {
    margin-bottom: 42px;
  }
}

.thongdiep-td {
  padding: 35px 0px;
}
.thongdiep-td [class^=col-] {
  align-self: center;
}
.thongdiep-td .image-slide-thongdiep {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  .thongdiep-td .image-slide-thongdiep {
    width: inherit;
    max-width: 700px;
    margin: 0 auto;
  }
}
.thongdiep-td .image-slide-thongdiep .img-eff {
  width: inherit;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .thongdiep-td .image-slide-thongdiep .img-eff {
    padding-right: 20px;
  }
}
.thongdiep-td .image-slide-thongdiep .img-eff img {
  width: 100%;
}
.thongdiep-td .image-slide-thongdiep img {
  border-radius: 10px;
}
.thongdiep-td .image-slide-thongdiep::after {
  content: "";
  width: calc(100% - 30px);
  height: 100%;
  background: #426AB3;
  border-radius: 10px;
  opacity: 0.2;
  left: 30px;
  top: 30px;
  position: absolute;
  z-index: -1;
}
@media (max-width: 767px) {
  .thongdiep-td .image-slide-thongdiep::after {
    width: calc(100% - 20px);
    left: 20px;
    top: 20px;
  }
}
.thongdiep-td .slide-thongdiep.owl-carousel .owl-dots {
  text-align: left;
}
.thongdiep-td .slide-thongdiep.owl-carousel .owl-dots .owl-dot {
  outline: none;
  border: none;
}
.thongdiep-td .slide-thongdiep.owl-carousel .owl-dots .owl-dot span {
  transition: width 0.2s;
  background: rgba(75, 166, 221, 0.5);
  height: 7px;
  width: 7px;
}
.thongdiep-td .slide-thongdiep.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--second-color);
  width: 30px;
}

.quytrinh {
  /* [class^="col-"]{
      align-self: center;
      &:nth-child(4){
          .item{
              &::after{
                  display: none;
              }
          }
      }
  }
  .item{
      text-align: center;
      margin: 50px 0px;
      position: relative;
      &::after{
          content: '';
          position: absolute;
          width: 100%;
          height: 2px;
          border: 1px dashed var(--second-color);
          top: calc(50%);
          left: 50%;
          z-index: -1;
      }
      &.connect{
          &::before{
              content: '';
              position: absolute;
              right: -15%;
              top: 50%;
              width: 212px;
              height: 212px;
              border-top-left-radius: 50%;
              border-top-right-radius: 50%;
              border: 2px dashed #4ba6dd;
              border-bottom: 0;
              transform: rotate(90deg);
          }
      }
      &.reverse{
          &::after{
              left: unset;
              right: 50%;
          }
      }
      .circle{
          width: 85px;
          height: 85px;
          background: linear-gradient(324.26deg, #3669B2 12.73%, #42AADF 90.28%);
          border-radius: 50%;
          margin: 10px auto;
          position: relative;
          display: flex;
          align-self: center;
          img{
              width: 50%;
              margin: auto;
          }
          &::before{
              content: '';
              position: absolute;
              width: 70px;
              height: 70px;
              border-radius: 50%;
              border: 1px solid var(--second-color);
              left: -35%;
              bottom: 35%;
              z-index: -1;
          }
          &::after{
              content: '';
              position: absolute;
              width: 10px;
              height: 10px;
              background: var(--second-color);
              border-radius: 50%;
              right: -35%;
              top: 0%;
          }
      }
      p{
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 0px;
          position: absolute;
          left: 0;
          right: 0;
      }
      .num{
          position: absolute;
          font-size: 45px;
          font-weight: bold;
          z-index: 10;
          left: 70px;
          top: -50px;
          font-family: system-ui;
          -webkit-text-stroke: 1px black;
          -webkit-text-fill-color: #ffffff;
      }
  } */
}
.quytrinh .interview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: wrap;
}
@media (max-width: 767px) {
  .quytrinh .interview-list {
    justify-content: center;
  }
}
.quytrinh .interview-list li {
  margin-bottom: 70px;
  width: 25%;
  position: relative;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .quytrinh .interview-list li {
    width: 70%;
  }
}
.quytrinh .interview-list li::before {
  border: 1px dashed var(--second-color);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 50px;
  width: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .quytrinh .interview-list li::before {
    display: none !important;
  }
}
.quytrinh .interview-list li::after {
  border: 1px dashed var(--second-color);
  content: "";
  height: 2px;
  right: 0;
  position: absolute;
  top: 50px;
  width: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .quytrinh .interview-list li::after {
    display: none !important;
  }
}
.quytrinh .interview-list li:nth-child(1) {
  order: 1;
}
.quytrinh .interview-list li:nth-child(1)::before {
  display: none;
}
@media (max-width: 767px) {
  .quytrinh .interview-list li:nth-child(1) .items::after {
    display: block;
  }
}
.quytrinh .interview-list li:nth-child(2) {
  order: 2;
}
@media (max-width: 767px) {
  .quytrinh .interview-list li:nth-child(2) .items::before {
    display: block;
  }
}
.quytrinh .interview-list li:nth-child(3) {
  order: 3;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(3) .items::after {
    display: block;
  }
}
.quytrinh .interview-list li:nth-child(4) {
  order: 4;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(4) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .quytrinh .interview-list li:nth-child(4) {
    order: 4;
  }
}
.quytrinh .interview-list li:nth-child(4) .items::after {
  display: block;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(4) .items::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .quytrinh .interview-list li:nth-child(4) .items::before {
    display: block;
  }
}
.quytrinh .interview-list li:nth-child(4)::after {
  display: none;
}
.quytrinh .interview-list li:nth-child(5) {
  order: 8;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(5) {
    order: 5;
  }
}
.quytrinh .interview-list li:nth-child(5)::after {
  display: none;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(5)::after {
    display: block;
  }
}
@media (max-width: 767px) {
  .quytrinh .interview-list li:nth-child(5) .items::after {
    display: block;
  }
}
.quytrinh .interview-list li:nth-child(6) {
  order: 7;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(6) {
    order: 4;
  }
}
@media (max-width: 767px) {
  .quytrinh .interview-list li:nth-child(6) {
    order: 6;
  }
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(6)::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(6) .items::before {
    display: block;
  }
}
.quytrinh .interview-list li:nth-child(7) {
  order: 6;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(7) {
    order: 7;
  }
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(7)::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .quytrinh .interview-list li:nth-child(7) .items::after {
    display: block;
  }
}
.quytrinh .interview-list li:nth-child(8) {
  margin-bottom: 0;
  order: 5;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(8) {
    order: 8;
  }
}
.quytrinh .interview-list li:nth-child(8)::before {
  display: none;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(8)::before {
    display: block;
  }
}
@media (max-width: 991px) {
  .quytrinh .interview-list li:nth-child(8)::after {
    display: none;
  }
}
.quytrinh .interview-list li .items {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.quytrinh .interview-list li .items::after {
  border: 2px dashed #4ba6dd;
  border-bottom: 0;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  content: "";
  height: calc(100% + 100px);
  position: absolute;
  right: -15%;
  top: 36px;
  display: none;
  transform: rotate(90deg);
  width: 226px;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li .items::after {
    right: -30px;
    height: calc(100% + 50px);
    top: 61px;
  }
}
@media (max-width: 767px) {
  .quytrinh .interview-list li .items::after {
    height: 100%;
    top: 84px;
    right: -25%;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
  }
}
.quytrinh .interview-list li .items::before {
  border: 2px dashed #4ba6dd;
  border-bottom: 0;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  content: "";
  height: calc(100% + 100px);
  position: absolute;
  left: -15%;
  top: 36px;
  display: none;
  transform: rotate(-90deg);
  width: 226px;
}
@media (max-width: 991px) {
  .quytrinh .interview-list li .items::before {
    left: -30px;
    height: calc(100% + 50px);
    top: 61px;
  }
}
@media (max-width: 767px) {
  .quytrinh .interview-list li .items::before {
    height: 100%;
    top: 84px;
    left: -25%;
    border-top-right-radius: 120px;
    border-top-left-radius: 120px;
  }
}
.quytrinh .interview-list li .circle-step {
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.quytrinh .interview-list li .circle-step .step-num {
  -webkit-text-stroke: 1px #000;
  -webkit-text-fill-color: #fff;
  font-family: "lato";
  font-size: 45px;
  font-weight: 700;
  left: -18px;
  position: absolute;
  top: -50px;
  z-index: 10;
}
.quytrinh .interview-list li .circle-step .circle {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: linear-gradient(324.26deg, #3669B2 12.73%, #42AADF 90.28%);
}
.quytrinh .interview-list li .circle-step .circle::before {
  border: 1px solid var(--second-color);
  border-radius: 50%;
  bottom: 35%;
  content: "";
  height: 70px;
  left: -35%;
  position: absolute;
  width: 70px;
  z-index: -1;
  background-color: #fff;
}
.quytrinh .interview-list li .text-step {
  padding: 0 20px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  right: 0;
  text-align: center;
  max-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

ul.list-icon {
  padding-left: 0px;
  /* &.v2{
      li{
          &::before{
              background: url("../images/list-icon.png") no-repeat;
              background-size: 100% auto;
          }
      }
  } */
}
ul.list-icon li {
  text-transform: uppercase;
  position: relative;
  display: block;
  text-overflow: ellipsis;
  overflow: initial;
  padding-left: 40px;
}
ul.list-icon li + li {
  margin-top: 20px;
}
ul.list-icon li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 10px;
  background: url("../images/list-icon-2.png") no-repeat;
  width: 30px;
  height: 30px;
  background-size: 100% auto;
  display: inline-block;
}

.show-bg ul.list-icon li::before {
  background-image: url("../images/list-icon.png");
}
.show-bg .img-shadow::after {
  background-color: rgba(75, 166, 221, 0.2);
}

/* recruitment */
.vitri-tuyendung {
  padding: 15px 0px 25px 0px;
}
@media (max-width: 767px) {
  .vitri-tuyendung .main-title h3 {
    padding: 0 30px;
  }
}

.item-tuyendung {
  background: var(--white);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  margin: 15px 0px;
  border-radius: 15px;
  overflow: hidden;
  height: 240px;
}
@media (max-width: 767px) {
  .item-tuyendung {
    margin: 8px 0;
  }
}
.item-tuyendung a {
  color: var(--black);
}
.item-tuyendung .content {
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.item-tuyendung .content::after {
  content: "";
  background: url(../images/group-mask.png) no-repeat;
  background-size: cover;
  position: absolute;
  width: 55%;
  height: 55%;
  right: -20%;
  bottom: 0px;
  opacity: 0.3;
}
.item-tuyendung .content .label {
  position: absolute;
  background: #CB0202;
  color: white;
  transform: rotate(45deg);
  top: 6%;
  right: -46%;
  width: 100%;
  text-align: center;
  font-size: 11px;
  z-index: 5;
  padding: 2px;
  display: block;
  text-transform: uppercase;
}
.item-tuyendung .content .label.label-new {
  background: #44c8f5;
}
.item-tuyendung .content .title {
  font-size: 20px;
  color: #426AB3;
  font-weight: bold;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
}
@media (max-width: 991px) {
  .item-tuyendung .content .title {
    font-size: 16px;
  }
}
.item-tuyendung .content .r-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 28px;
}
.item-tuyendung .content .tags {
  margin-top: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.item-tuyendung .content .tags span {
  background: rgba(68, 200, 245, 0.1);
  display: inline-block;
  padding: 7px 9px;
  margin-bottom: 5px;
  color: #6F6E6E;
  font-size: 14px;
  border-radius: 10px;
}
.item-tuyendung:hover {
  cursor: pointer;
  background: var(--primary-color);
}
.item-tuyendung:hover a {
  color: var(--white);
}
.item-tuyendung:hover .content {
  box-shadow: none;
}
.item-tuyendung:hover .content path {
  fill: var(--white);
}
.item-tuyendung:hover .content .title {
  color: var(--white);
}
.item-tuyendung:hover .content .tags span {
  color: var(--white);
  background: rgba(68, 200, 245, 0.54);
  border-radius: 10px;
}
.item-tuyendung:hover .content .more {
  visibility: visible;
}

@media (max-width: 767px) {
  .chitiet-tuyendung {
    margin-top: 16px;
  }
}
.chitiet-tuyendung .box-content {
  padding: 25px;
  background: var(--white);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-radius: 15px;
  margin-bottom: 15px;
}
.chitiet-tuyendung .box-content .banner-img {
  text-align: center;
}
.chitiet-tuyendung .box-content .banner-img img {
  border-radius: 22px;
}
.chitiet-tuyendung .box-content .title {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 36px;
}
.chitiet-tuyendung .box-content .title-md {
  font-size: 24px;
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .title {
    font-size: 28px;
  }
}
.chitiet-tuyendung .box-content .content-html h1, .chitiet-tuyendung .box-content .content-html h2, .chitiet-tuyendung .box-content .content-html h3, .chitiet-tuyendung .box-content .content-html h4, .chitiet-tuyendung .box-content .content-html h5, .chitiet-tuyendung .box-content .content-html h6 {
  font-size: 16px;
  font-weight: bold;
  color: var(--second-color);
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .content-html h2 span strong {
    font-size: 20px;
  }
}
.chitiet-tuyendung .box-content .content-html p, .chitiet-tuyendung .box-content .content-html li, .chitiet-tuyendung .box-content .content-html span {
  line-height: 28px;
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .content-html ul {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .content-html ul li {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 150%;
  }
  .chitiet-tuyendung .box-content .content-html ul li span {
    line-height: 150%;
  }
}
.chitiet-tuyendung .box-content .content-html ul li::marker {
  color: #44C8F5;
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .content-html .box-item p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .content-html .box-item p strong {
    display: block;
  }
}
.chitiet-tuyendung .box-content .box-card {
  background: #F6F7F9;
  color: var(--black);
  border-radius: 10px;
  padding: 25px;
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .box-card {
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .box-card h5 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .box-card p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .box-card p b {
    display: block;
  }
}
.chitiet-tuyendung .box-content .box-card ul li {
  width: 50%;
  list-style: none;
}
.chitiet-tuyendung .box-content .box-card ul li p {
  margin-bottom: 0px;
}
.chitiet-tuyendung .box-content .box-card .col-owner {
  padding: 0;
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .box-card .col-owner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.chitiet-tuyendung .box-content .box-card .col-owner .contact-owner {
  border-radius: 100%;
}
.chitiet-tuyendung .box-content .box-card .col-owner .owner-position {
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .chitiet-tuyendung .box-content .box-card .col-owner .owner-position {
    font-size: 14px;
  }
}
.chitiet-tuyendung .share-socical p {
  display: block;
  font-weight: 700;
}
.chitiet-tuyendung .share-socical a {
  margin-right: 20px;
}
.chitiet-tuyendung .share-socical svg {
  width: 26px;
  height: 26px;
}
@media (max-width: 767px) {
  .chitiet-tuyendung .recruitment-other {
    display: flex;
    overflow-x: auto;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-left: 15px;
    padding-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .chitiet-tuyendung .recruitment-other .item-tuyendung {
    margin-right: 16px;
    min-width: 300px;
    width: 70%;
    box-shadow: 0px 14px 24px 2px rgba(37, 44, 109, 0.08), 0px 2px 2px rgba(37, 44, 109, 0.01);
  }
}
@media (max-width: 767px) {
  .chitiet-tuyendung .share-socical {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .chitiet-tuyendung .btn-apply {
    width: 100%;
  }
}

.filter-recruit {
  position: relative;
  top: -50px;
}
.filter-recruit .form-filter {
  margin-bottom: 0px;
  margin-top: -50px;
}

.related-title {
  margin: 30px 0px;
}
.related-title h5 {
  font-weight: bold;
  font-size: 24px;
  border-left: 2px solid var(--second-color);
  padding-left: 10px;
}
@media (max-width: 991px) {
  .related-title h5 {
    font-size: 20px;
  }
}
.related-title h5 span {
  color: var(--second-color);
}
@media (max-width: 991px) {
  .related-title h5 span {
    display: block;
  }
}
@media (max-width: 767px) {
  .related-title h5 span {
    display: inline-block;
  }
}

/* contact */
.form-contact {
  background: url("../images/bg-contact.png") center no-repeat;
}
.form-contact form input, .form-contact form textarea {
  background: rgba(233, 233, 242, 0.5882352941);
  border-radius: 10px;
  padding: 9px;
}
@media (max-width: 991px) {
  .form-contact form input, .form-contact form textarea {
    min-height: 50px;
  }
}
.form-contact form input::-moz-placeholder, .form-contact form textarea::-moz-placeholder {
  font-size: 14px;
}
.form-contact form input::placeholder, .form-contact form textarea::placeholder {
  font-size: 14px;
}
.form-contact .nav-tabs {
  border-bottom: 0px solid transparent;
}
.form-contact .nav-tabs .nav-item {
  width: 33.3333333333%;
}
.form-contact .nav-tabs .nav-item .nav-link {
  color: var(--black);
  border-radius: 8px;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-contact .nav-tabs .nav-item .nav-link:hover, .form-contact .nav-tabs .nav-item .nav-link.active {
  background: var(--primary-color);
  color: var(--white);
}
.form-contact .tab-content .tab-pane .content {
  position: relative;
  background: var(--white);
  margin-top: 15px;
  padding: 15px;
  box-shadow: rgba(20, 10, 45, 0.05) 0px 40px 60px 0px;
  color: gray;
  overflow: hidden;
}
@media (max-width: 991px) {
  .form-contact .tab-content .tab-pane .content {
    padding: 26px 42px;
  }
}
@media (max-width: 767px) {
  .form-contact .tab-content .tab-pane .content {
    padding: 24px 20px;
  }
}
.form-contact .tab-content .tab-pane .content .head-title {
  color: var(--second-color);
}
.form-contact .tab-content .tab-pane .content::after {
  content: "";
  background: url(../images/group-mask.png) no-repeat;
  background-size: 100%;
  position: absolute;
  width: 35%;
  height: 55%;
  right: -5%;
  bottom: 0px;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .form-contact .tab-content .tab-pane .content::after {
    width: 80%;
    right: 0;
    background-position: 50px 50px;
  }
}

/* category */
@media (max-width: 991px) {
  .category-list .menu-navigation .menu-sticky + br {
    display: none;
  }
}
.category-list .menu-navigation [class^=col-] {
  align-self: center;
}
.category-list .menu-navigation ul li {
  display: inline-block;
}
@media (max-width: 767px) {
  .category-list .menu-navigation ul li {
    display: block;
    padding: 0;
    margin-bottom: 8px;
  }
}
.category-list .menu-navigation ul li a {
  color: gray;
  padding: 11px 15px;
  margin-right: 5px;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .category-list .menu-navigation ul li a {
    display: block;
    text-align: center;
  }
}
.category-list .menu-navigation ul li a:hover, .category-list .menu-navigation ul li a.active {
  background: var(--primary-color);
  color: var(--white);
}
.category-list .menu-navigation .form-search {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
}
.category-list .menu-navigation .form-search input {
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 14px;
}
.category-list .menu-navigation .form-search .fa-search {
  position: absolute;
  right: 15px;
  top: 29%;
  opacity: 0.5;
}
.category-list .news-item {
  overflow: hidden;
  background: var(--white);
  margin: 15px 0px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}
.category-list .news-item a {
  color: var(--black);
}
.category-list .news-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.category-list .news-item .view {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(152, 157, 159, 0.5);
  padding: 4px 8px;
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  z-index: 15;
}
.category-list .news-item .content {
  background: var(--white);
  padding: 15px;
}
.category-list .news-item .content .category-name {
  font-size: 14px;
  position: relative;
  align-items: center;
  display: flex;
  color: var(--primary-color);
}
.category-list .news-item .content .category-name::before {
  content: "";
  width: 14%;
  height: 1px;
  background: var(--primary-color);
  position: relative;
  margin-right: 5px;
}
.category-list .news-item .content .title {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 28px;
}
.category-list .news-item .content .datetime {
  color: var(--second-color);
  font-size: 14px;
}
.category-list .news-item .content .description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
  font-size: 14px;
}

.slide-thongdiep .owl-stage-outer .owl-stage {
  display: block;
}
.slide-thongdiep .boxes {
  align-content: space-between;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 30px;
}
.slide-thongdiep .boxes .img-quotes {
  top: 0;
  height: 20px;
}
.slide-thongdiep .boxes .title, .slide-thongdiep .boxes .sub-title {
  font-size: 16px;
  color: #404041;
  font-weight: bold;
}
.slide-thongdiep .boxes .sub-title {
  font-weight: 400;
  font-style: italic;
}
.slide-thongdiep .handbook-img .handbook-mask {
  bottom: 0;
  z-index: 10;
  height: 100%;
  display: none;
}
.slide-thongdiep .handbook-img .img-thongdiep {
  position: inherit;
  z-index: 15;
  max-height: 340px;
  border-bottom-left-radius: 55% 25%;
  border-bottom-right-radius: 55% 25%;
}
.slide-thongdiep .active .handbook-mask {
  display: block;
}
.slide-thongdiep .owl-dots {
  text-align: left !important;
}
.slide-thongdiep .owl-dots button:focus {
  outline: unset !important;
}
.slide-thongdiep .owl-dots button span {
  background: var(--second-color) !important;
  transition: width 0.2s;
  height: 7px !important;
  width: 7px !important;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.slide-thongdiep .owl-dots button.active span {
  width: 30px !important;
}

/* news */
.news-detail .post-nav nav.nav a {
  font-size: 14px;
  color: var(--second-color);
}
.news-detail .post-nav nav.nav a::after {
  content: "/";
  opacity: 0.4;
  color: gray;
  padding: 0px 5px;
}
.news-detail .post-nav nav.nav a:last-child::after {
  display: none;
}
.news-detail .post-nav .view-total {
  color: var(--second-color);
}
.news-detail .title-relative {
  border-left: 2px solid var(--second-color);
  font-weight: bold;
  padding-left: 5px;
  font-size: 24px;
  margin: 30px 0;
  color: #404041;
}
.news-detail .news-relative {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 15px;
  overflow: hidden;
  background: var(--white);
  border-radius: 10px;
  position: relative;
}
.news-detail .news-relative img {
  width: 100%;
  height: 320px;
  -o-object-fit: none;
     object-fit: none;
}
.news-detail .news-relative .view-total {
  color: var(--secondary);
  position: relative;
  left: 20px;
  top: 10px;
}
.news-detail .news-relative .content {
  padding: 15px;
  width: 100%;
  height: 100%;
  display: grid;
  align-content: end;
}
.news-detail .news-relative .content .title {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 16px;
}
.news-detail .news-relative .content .category a, .news-detail .news-relative .content .category span {
  color: var(--second-color);
  font-size: 14px;
}
.news-detail .share-socical a {
  margin-right: 20px;
}
.news-detail .share-socical a svg {
  height: 20px;
}
.news-detail .related-search {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--secondary);
  border-radius: 30px;
}
.news-detail .related-search input {
  border: unset !important;
  border-radius: 50px;
  opacity: 0.8;
}
.news-detail .related-search input:focus {
  box-shadow: none !important;
  opacity: 1;
}
.news-detail .related-search i {
  margin-left: -30px;
  color: var(--secondary);
}
.news-detail .side-bar {
  padding-left: 70px;
}
@media (max-width: 991px) {
  .news-detail .side-bar {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .news-detail .side-bar {
    display: none;
  }
}
.news-detail #related-post {
  position: relative;
}
.news-detail #related-post .related-link {
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  z-index: 5;
}
.news-detail #related-post .view-total, .news-detail #related-post .category {
  font-size: 14px;
}
.news-detail #related-post .view-total a, .news-detail #related-post .category a {
  position: relative;
  z-index: 10;
}
.news-detail #related-post.spinner::before {
  position: absolute;
  top: 20vh;
  left: 40%;
  z-index: 20;
}
.news-detail #related-post.spinner::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 18;
  background: rgba(221, 210, 210, 0.56);
  top: 0;
  left: 0;
}

.tin-noibat .item-news, .khampha-omi .item-news {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 98%;
}
.tin-noibat .item-news img, .khampha-omi .item-news img {
  height: 320px;
}
.tin-noibat .item-news .content .title, .khampha-omi .item-news .content .title {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .tin-noibat .item-news .content .title, .khampha-omi .item-news .content .title {
    font-size: 20px;
  }
}
.tin-noibat .item-news .content .category a, .tin-noibat .item-news .content .category span, .khampha-omi .item-news .content .category a, .khampha-omi .item-news .content .category span {
  color: var(--second-color);
  font-size: 14px;
}
.tin-noibat .item-news .content .description, .khampha-omi .item-news .content .description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .tin-noibat .item-news .content .description, .khampha-omi .item-news .content .description {
    padding-right: 50px;
  }
}
.tin-noibat .item-news .content .noti-arrow, .khampha-omi .item-news .content .noti-arrow {
  position: absolute;
  width: 80px;
  height: 50px;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-top-left-radius: 100%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 25px;
  cursor: pointer;
}
.tin-noibat .item-news--horizon, .khampha-omi .item-news--horizon {
  background: var(--white);
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  height: 161px;
}
.tin-noibat .item-news--horizon img, .khampha-omi .item-news--horizon img {
  width: 353px;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.tin-noibat .item-news--horizon.bigest, .khampha-omi .item-news--horizon.bigest {
  height: 220px;
}
@media (max-width: 991px) {
  .tin-noibat .item-news--horizon.bigest .category, .khampha-omi .item-news--horizon.bigest .category {
    margin-bottom: 12px;
  }
}
.tin-noibat .item-news--horizon.bigest img, .khampha-omi .item-news--horizon.bigest img {
  width: 565px;
  height: 100%;
}
.tin-noibat .item-news--horizon .view, .khampha-omi .item-news--horizon .view {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(152, 157, 159, 0.5);
  padding: 4px 8px;
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  z-index: 15;
}
.tin-noibat .item-news--horizon .content, .khampha-omi .item-news--horizon .content {
  padding: 25px 20px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
}
.tin-noibat .item-news--horizon .content .title, .khampha-omi .item-news--horizon .content .title {
  font-weight: bold;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 28px;
}
.tin-noibat .item-news--horizon .content .category a, .tin-noibat .item-news--horizon .content .category span, .khampha-omi .item-news--horizon .content .category a, .khampha-omi .item-news--horizon .content .category span {
  color: var(--second-color);
  font-size: 14px;
}
.tin-noibat .item-news--horizon .content .description, .khampha-omi .item-news--horizon .content .description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .tin-noibat .other-cate, .khampha-omi .other-cate {
    text-align: center;
  }
}
.tin-noibat .other-cate a, .khampha-omi .other-cate a {
  display: inline-block;
  font-weight: 600;
  color: gray;
  position: relative;
  margin: 5px 0px 5px 15px;
}
@media (max-width: 767px) {
  .tin-noibat .other-cate a, .khampha-omi .other-cate a {
    margin: 5px 15px 5px 0;
  }
}
.tin-noibat .other-cate a::after, .khampha-omi .other-cate a::after {
  content: "";
  width: 75%;
  margin: 5px auto;
  height: 2px;
  background: var(--primary-color);
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -45%;
}
.tin-noibat .other-cate a:hover, .tin-noibat .other-cate a.active, .khampha-omi .other-cate a:hover, .khampha-omi .other-cate a.active {
  color: var(--primary-color);
}
.tin-noibat .other-cate a:hover::after, .tin-noibat .other-cate a.active::after, .khampha-omi .other-cate a:hover::after, .khampha-omi .other-cate a.active::after {
  opacity: 1;
}

.tin-noibat {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .tin-noibat {
    margin-bottom: 0px;
  }
}
.tin-noibat .item-news--horizon .content {
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
@media (max-width: 991px) {
  .tin-noibat .item-news--horizon .content {
    padding: 16px;
  }
}

@media (max-width: 991px) {
  .page-list {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-list {
    margin-bottom: 16px;
  }
}

.news-detail .post-nav .nav * {
  color: #404041;
  display: inline-block;
  padding: 0 1px;
}
.news-detail .post-nav .view {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(64, 64, 65, 0.5);
  padding: 4px 8px;
  border-radius: 5px;
  color: var(--white);
  font-size: 12px;
  z-index: 15;
}
.news-detail .title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 36px;
}
@media (max-width: 767px) {
  .news-detail .title {
    font-size: 24px;
  }
}
.news-detail .detail-img {
  width: 100%;
  margin-bottom: 45px;
  text-align: center;
}
@media (max-width: 767px) {
  .news-detail .detail-img {
    margin-bottom: 20px;
  }
}
.news-detail .detail-img.img__col-2 {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}
.news-detail .detail-img.img__col-2 img {
  width: calc(50% - 9px);
}
.news-detail .detail-img img {
  border-radius: 20px;
}
.news-detail .box-comment {
  padding: 40px 40px 48px;
  background: #F2F3F3;
  border-radius: 16px;
  font-size: 20px;
  color: #252C6D;
  font-weight: 700;
  margin-bottom: 34px;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .news-detail .box-comment {
    padding: 40px 16px 48px;
    font-size: 18px;
  }
}
.news-detail .box-comment::before {
  margin-bottom: 14px;
  content: "";
  width: 42px;
  height: 42px;
  background: url("../icon/icon-quotes.svg") no-repeat 50% 50%;
}
.news-detail .s-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--primary-color);
}

.menu-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f9faff;
}

.wrapper-link {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .news-sub,
.news-list {
    display: flex;
    flex-flow: wrap;
    margin-right: -16px;
  }
}
@media (max-width: 991px) {
  .news-sub .news-detail,
.news-list .news-detail {
    height: inherit !important;
    width: calc(33.33% - 16px);
    margin-right: 16px;
  }
}
@media (max-width: 991px) {
  .news-sub .news-inner,
.news-list .news-inner {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .news-sub .news-inner .img-eff,
.news-list .news-inner .img-eff {
    height: 160px !important;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .news-sub .news-inner .img-eff::before,
.news-list .news-inner .img-eff::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .news-sub .news-inner .img-eff img,
.news-list .news-inner .img-eff img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 8px 8px 0 0;
  }
}

@media (max-width: 767px) {
  .news-sub {
    overflow-x: auto;
    flex-flow: initial;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .news-sub .news-detail {
    min-width: 300px;
    width: 70%;
    box-shadow: 0px 14px 24px 2px rgba(37, 44, 109, 0.08), 0px 2px 2px rgba(37, 44, 109, 0.01);
  }
}

@media (max-width: 991px) {
  .news-list .news-detail {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .news-list .news-detail {
    width: 100%;
  }
}

.tags-list {
  display: flex;
  flex-flow: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 32px;
}
.tags-list li {
  margin-right: 8px;
  padding: 8px 0;
}
.tags-list li a {
  display: block;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: #E6E9EE;
  color: var(--primary-color);
  font-size: 15px;
}
.tags-list li a:hover {
  background-color: #bebebe;
}

/* popup */
.hidden {
  display: none !important;
}

#pop-apply .form-body {
  min-width: 350px;
  max-width: 420px;
}

#pop-apply, #pop-search {
  display: none;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
}
#pop-apply.thanks, #pop-search.thanks {
  display: flex;
}
#pop-apply.thanks .pop-content, #pop-search.thanks .pop-content {
  padding: 30px 0;
  width: 50%;
  background: #fff url(../images/map-dot.png) 100% no-repeat;
}
#pop-apply.thanks .pop-content .thanks-content, #pop-search.thanks .pop-content .thanks-content {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 40px;
}
#pop-apply.thanks .pop-content .thanks-content .thanks-title, #pop-search.thanks .pop-content .thanks-content .thanks-title {
  font-weight: 700;
  font-size: 36px;
  color: var(--primary-color);
  line-height: 44px;
}
#pop-apply.thanks .pop-content .thanks-connect, #pop-search.thanks .pop-content .thanks-connect {
  margin-top: 60px;
}
#pop-apply.thanks .pop-content .thanks-connect p, #pop-search.thanks .pop-content .thanks-connect p {
  display: none;
}
#pop-apply.thanks .pop-content .thanks-connect .thanks-title, #pop-search.thanks .pop-content .thanks-connect .thanks-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--primary-color);
}
#pop-apply.thanks .pop-content .map-dot, #pop-search.thanks .pop-content .map-dot {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#pop-apply .pop-bg, #pop-search .pop-bg {
  display: block;
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 70, 70, 0.56);
  top: 0;
  left: 0;
}
#pop-apply .pop-content, #pop-search .pop-content {
  position: relative;
  z-index: 20;
  background-color: #fff;
  width: 70%;
  border-radius: 10px;
  max-height: 90vh;
  overflow-y: auto;
}
#pop-apply .pop-content .fa-times, #pop-search .pop-content .fa-times {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 25;
  cursor: pointer;
  font-size: 27px;
}
#pop-apply .pop-content .pop-form, #pop-search .pop-content .pop-form {
  padding: 40px 0 40px 40px;
}
#pop-apply .pop-content .form-head h2, #pop-search .pop-content .form-head h2 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 28px;
}
#pop-apply .pop-content .form-head h2::after, #pop-search .pop-content .form-head h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 55px;
  background: var(--primary-color);
  margin-top: 10px;
}
#pop-apply .pop-content .form-body, #pop-search .pop-content .form-body {
  margin-top: 15px;
}
#pop-apply .pop-content .form-body label, #pop-search .pop-content .form-body label {
  color: var(--second-color);
}
#pop-apply .pop-content .form-body input, #pop-apply .pop-content .form-body select, #pop-apply .pop-content .form-body textarea, #pop-search .pop-content .form-body input, #pop-search .pop-content .form-body select, #pop-search .pop-content .form-body textarea {
  background: #e8e9ef;
  border-radius: 12px !important;
  font-size: 14px;
}
#pop-apply .pop-content .form-body input::-moz-placeholder, #pop-apply .pop-content .form-body select::-moz-placeholder, #pop-apply .pop-content .form-body textarea::-moz-placeholder, #pop-search .pop-content .form-body input::-moz-placeholder, #pop-search .pop-content .form-body select::-moz-placeholder, #pop-search .pop-content .form-body textarea::-moz-placeholder {
  font-size: 14px;
}
#pop-apply .pop-content .form-body input::placeholder, #pop-apply .pop-content .form-body select::placeholder, #pop-apply .pop-content .form-body textarea::placeholder, #pop-search .pop-content .form-body input::placeholder, #pop-search .pop-content .form-body select::placeholder, #pop-search .pop-content .form-body textarea::placeholder {
  font-size: 14px;
}
#pop-apply .pop-content .form-body input, #pop-apply .pop-content .form-body select, #pop-search .pop-content .form-body input, #pop-search .pop-content .form-body select {
  height: 45px;
}
#pop-apply .pop-content .form-body .btn, #pop-search .pop-content .form-body .btn {
  border-radius: 99px;
  padding: 8px;
  line-height: 1.2;
}
#pop-apply .pop-content .form-body .btn .btn-text, #pop-search .pop-content .form-body .btn .btn-text {
  padding: 8px;
  border-right: 1px solid #878787;
}
#pop-apply .pop-content .form-body .btn.btn-submit, #pop-search .pop-content .form-body .btn.btn-submit {
  background: #252C6D;
  color: #fff;
  padding: 13px 10px;
}
#pop-apply .pop-content .form-body .btn.btn-submit .btn-text, #pop-search .pop-content .form-body .btn.btn-submit .btn-text {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
}
#pop-apply .pop-content .form-body .btn.btn-submit .btn-icon, #pop-search .pop-content .form-body .btn.btn-submit .btn-icon {
  padding: 8px;
  background: url("../icon/arrow-right-white.svg") 50% 50%;
  width: 30px;
  height: 100%;
  display: inline-block;
}
#pop-apply .pop-content .form-body .btn.btn-submit .btn-icon i, #pop-search .pop-content .form-body .btn.btn-submit .btn-icon i {
  display: none;
}
#pop-apply .pop-content .form-body .message-cv, #pop-apply .pop-content .form-body .support-text, #pop-search .pop-content .form-body .message-cv, #pop-search .pop-content .form-body .support-text {
  font-size: 14px;
  padding-left: 8px;
}

#pop-search .pop-content {
  min-height: 50%;
  padding: 30px;
  width: 50%;
  position: relative;
}
#pop-search .pop-content .search-content {
  display: block;
  height: 100%;
}
#pop-search .pop-content .search-content .form-head {
  padding: 0;
}
#pop-search .pop-content .search-content .form-head h2 {
  font-size: 24px;
}
#pop-search .pop-content .search-content .form-head .input-search-box {
  width: 100%;
  border-radius: 99px;
  border: 1px solid #888;
  display: flex;
  padding: 0 10px;
  align-items: center;
  line-height: 2;
}
#pop-search .pop-content .search-content .form-head .input-search-box svg {
  height: 20px;
  width: 20px;
}
#pop-search .pop-content .search-content .form-head .input-search-box input {
  outline: unset;
  border: unset;
  width: 100%;
  border-radius: 99px;
  padding: 5px 10px;
}
#pop-search .pop-content .search-content .form-head .input-search-box.border-red {
  border-color: red;
}
#pop-search .pop-content .search-content .search-items {
  border-bottom: 1px solid rgba(108, 117, 125, 0.231372549);
  padding: 0;
}
#pop-search .pop-content .search-content .search-items .title {
  color: var(--primary-color);
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#pop-search .pop-content .search-content .search-items .description {
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#pop-search .pop-content .search-content .search-items .description .tags {
  margin-top: 5px;
}
#pop-search .pop-content .search-content .search-items .description .tags span {
  background: rgba(68, 200, 245, 0.1);
  display: inline-block;
  padding: 8px 10px;
  margin-bottom: 5px;
  color: #6F6E6E;
  border-radius: 10px;
}
#pop-search .pop-content .search-content .search-body {
  height: 70%;
}
#pop-search .pop-content.spinner::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 15;
}
#pop-search .pop-content.spinner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 117, 125, 0.4784313725);
  z-index: 10;
}
#pop-search .pop-content .custom-pagination {
  padding-top: 15px;
}
#pop-search .pop-content .custom-pagination .pagination {
  margin-bottom: 0;
}
#pop-search .pop-content .custom-pagination .pagination li {
  cursor: pointer;
}
#pop-search .pop-content .pop-img img:first-child {
  position: relative;
  z-index: 10;
}
#pop-search .pop-content .pop-img img:nth-child(2) {
  position: absolute;
  left: 13vw;
  top: 0;
  height: 100%;
  width: 18vw;
}

/* custom pagination */
.custom-pagination ul li {
  display: inline-block;
  margin: 0 5px;
}
.custom-pagination ul li a, .custom-pagination ul li span {
  background: rgba(196, 196, 196, 0.1450980392);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  align-items: center;
  border-radius: 100%;
}
.custom-pagination ul li.active a, .custom-pagination ul li.active span {
  color: #fff;
  background: var(--primary-color);
}
.custom-pagination ul li.hide-page {
  opacity: 0;
}
.custom-pagination ul li .dot-page {
  display: none;
}

/* responsive tablet */
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1198px;
  }
  .group-value .group-icon p:nth-child(4) {
    left: 4%;
    top: 43%;
  }
  .group-value .group-icon p:nth-child(2) {
    right: 4%;
  }
  .group-value .group-icon p:nth-child(1) {
    left: 5%;
    top: 5%;
  }
}
@media only screen and (max-width: 1199px) {
  .about-ominext .wrapper .retangle.style:nth-child(5), .about-ominext .wrapper .retangle.style:nth-child(4) {
    left: -5%;
  }
  .group-value .group-icon p:nth-child(4) {
    left: -1%;
    top: 43%;
  }
  .group-value .group-icon p:nth-child(2) {
    top: 50%;
    right: 0;
  }
  .group-value .group-icon p:nth-child(1) {
    top: 25px;
  }
}
/* Medium devices (landscape tablets, 992px and down) */
@media only screen and (max-width: 992px) {
  .group-value .group-icon p:nth-child(4) {
    left: 16%;
    top: 43%;
  }
  .group-value .group-icon p:nth-child(2) {
    right: 16%;
    top: 52%;
  }
  .group-value .group-icon p:nth-child(1) {
    top: 25px;
  }
  .page-banner {
    min-height: 360px;
  }
  .container {
    padding: 0 30px;
    max-width: 100%;
  }
  .polygon-ellipse::after {
    -webkit-clip-path: ellipse(100% 100% at 50% -10%);
            clip-path: ellipse(100% 100% at 50% -10%);
  }
  .main-header {
    padding-bottom: 10px;
  }
  .main-header .three-line {
    float: right;
    display: block;
  }
  .main-header .menu-desktop {
    display: block;
    position: absolute;
    top: 0px;
    right: 15px;
    width: 274px;
    transition: all 0.2s;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
  .main-header .menu-desktop.opened {
    opacity: 1;
    z-index: 100;
    pointer-events: inherit;
  }
  .main-header .menu-desktop.opened::after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(255, 255, 255, 0);
    z-index: -1;
    transition: all 0.3s;
  }
  .main-header .menu-desktop ul {
    display: block;
    text-align: center;
    width: 100%;
    background: var(--white);
  }
  .main-header .menu-desktop ul li {
    display: block;
  }
  .main-header .menu-desktop ul li ul {
    position: relative;
    width: 100%;
    opacity: 1;
    margin-bottom: 15px;
    display: none;
  }
  .main-header .menu-desktop ul li ul::before {
    display: none;
  }
  .main-header .menu-desktop ul li ul li ul {
    left: 0;
    transform: translate(0, 10%);
    width: 100%;
    position: relative;
  }
  .main-header .menu-desktop ul li:hover ul {
    display: block;
  }
  .home-slide {
    padding: 25px 0px 0px 0px;
  }
  .home-slide .banner {
    display: none;
  }
  .home-slide .box-slide .wrapper {
    margin: 60px 18px 60px 18px;
  }
  .home-slide .box-slide .wrapper .boxes {
    margin-bottom: 25px;
  }
  .home-slide .box-slide.owl-carousel .owl-dots {
    left: 57%;
  }
  .form-filter .control {
    margin-bottom: 15px;
  }
  .form-filter .control button {
    width: 100%;
  }
  .get-profile {
    padding: 76px 30px;
    height: inherit;
    background-size: 210% auto;
    background-position: 50% 100%;
  }
  .about-ominext .wrapper::after {
    left: 25px;
    top: 25px;
  }
  .about-ominext .wrapper .retangle.style {
    padding: 10px 15px;
    width: auto;
  }
  .about-ominext .wrapper .retangle.style h4 {
    font-size: 20px;
  }
  .about-ominext .wrapper .retangle.style:nth-child(2) {
    right: 5%;
  }
  .about-ominext .wrapper .retangle.style:nth-child(3) {
    right: 5%;
  }
  .about-ominext .wrapper .retangle.style:nth-child(4) {
    left: -5%;
  }
  .about-ominext .wrapper .retangle.style:nth-child(5) {
    left: -5%;
  }
  .feedback-ominext .feedback-list .wrapper {
    margin: 60px 10px;
  }
  .feedback-ominext .feedback-list .wrapper .feedback-text {
    padding: 35px 25px;
  }
  .feedback-ominext .feedback-list .wrapper .feedback-text::before {
    left: -10px;
    top: -60px;
  }
  .feedback-ominext .feedback-list .wrapper .feedback-text .content {
    height: 100%;
  }
  .feedback-ominext .feedback-list .wrapper .feedback-text .description {
    -webkit-line-clamp: 8;
  }
  .feedback-ominext .feedback-list.owl-carousel .owl-nav button {
    bottom: 10px;
  }
  .follow-ominext {
    height: inherit;
    padding: 145px 15px;
  }
  .follow-ominext .title {
    margin-bottom: 55px;
  }
  .follow-ominext .description {
    font-weight: 400;
    font-size: 20px;
  }
  .main-footer {
    -webkit-clip-path: ellipse(115% 85% at 50% 80%);
            clip-path: ellipse(115% 85% at 50% 80%);
  }
  .main-footer .col-group > li {
    width: 33.3333333333% !important;
  }
  .quytrinh [class^=col-]:nth-child(2) .item::after {
    display: none;
  }
  .quytrinh .item.reverse::after {
    left: 50%;
    right: unset;
  }
  .quytrinh .item.connect::before {
    display: none;
  }
  .news-detailt .news-relative img {
    height: 230px;
  }
  .news-detailt .news-relative .content .title {
    font-size: 15px !important;
  }
  .form-register {
    margin-bottom: -110px;
  }
  .form-register .form {
    width: 100%;
  }
  .page-banner .tab-menu-nav {
    bottom: -120px;
  }
  .page-banner .tab-menu-nav ul a li {
    font-size: 18px;
  }
  .quytrinh [class^=col-]:nth-child(2) .item::after {
    display: none;
  }
  .quytrinh .item.reverse::after {
    left: 50%;
    right: unset;
  }
  .news-detail .news-relative img {
    height: 230px;
  }
  .news-detail .news-relative .content .title {
    font-size: 15px !important;
  }
  .video-container .video-viewer {
    width: 90%;
    height: 45vh;
  }
  .filter-recruit {
    top: 0;
  }
  .filter-recruit .form-filter {
    margin-bottom: 15px;
  }
  .vitri-tuyendung .item-tuyendung .content .label {
    top: 7%;
    right: -43%;
  }
  .title-sm {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 17px !important;
  }
  .tin-noibat .item-news--horizon img,
.khampha-omi .item-news--horizon img {
    width: 45vw;
  }
  .tin-noibat .item-news--horizon.bigest,
.khampha-omi .item-news--horizon.bigest {
    height: 150px;
  }
  .tin-noibat .item-news--horizon.bigest img,
.khampha-omi .item-news--horizon.bigest img {
    width: 440px;
  }
  .about-ominext .wrapper {
    margin: 0px auto 50px 35px;
  }
  #pop-search .pop-content {
    width: 80%;
    height: 100%;
  }
  #pop-apply .pop-content {
    width: 80%;
  }
  #pop-apply .pop-content .pop-form {
    padding: 32px;
  }
  #pop-apply.thanks .pop-content {
    width: 80%;
  }
  #pop-apply.thanks .pop-content .share-socical a {
    margin-right: 40px;
  }
  .form-filter {
    top: -20px;
    padding: 20px 16px;
  }
  .form-filter .border-md-right-0 {
    border-right: 0px !important;
  }
  .explore-ominext {
    padding-bottom: 0;
  }
  .explore-ominext .ominext-news .wrapper .new-item .box-title {
    width: calc(100% - 30px);
    margin-left: 15px;
  }
  .explore-ominext .ominext-news .wrapper .new-item .box-title {
    bottom: -77px;
  }
  .explore-ominext .ominext-news .wrapper .new-item .box-title .title {
    padding-right: 0;
    font-size: 18px;
  }
  .explore-ominext .ominext-news .wrapper .new-item img {
    height: 123px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .explore-ominext .ominext-news .wrapper .new-item img {
    height: 170px;
  }
}
@media only screen and (max-width: 992px) {
  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    left: 50%;
    border-width: 7px 6px 0 6px;
  }
  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 6px 6px 6px;
  }
}
@media only screen and (max-width: 800px) and (min-height: 1000px) {
  .group-value .group-icon p:nth-child(4) {
    left: 12%;
    top: 41%;
  }
  .group-value .group-icon p:nth-child(3) {
    left: 2%;
    bottom: 15%;
  }
  .group-value .group-icon p:nth-child(2) {
    right: 12%;
    top: 50%;
  }
  .group-value .group-icon p:nth-child(1) {
    left: 5%;
    top: 5%;
  }
}
/* responsive mobile */
/* Small devices (portrait tablets and large phones, 768px and down) */
@media only screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .reason-choose-omi {
    left: auto;
  }
  .ominext-reason .container {
    overflow: hidden;
  }
  .ominext-reason .group-circle .circle-box {
    width: 40vw;
    height: 40vw;
    /* float: none !important;
    margin: 65px auto !important;
    top: 0px !important;

    &:nth-child(3) {
        display: none;
    } */
  }
  .feedback-ominext .src-image {
    height: 255px;
  }
  .feedback-ominext .feedback-list .wrapper {
    margin: 60px 10px;
  }
  .feedback-ominext .feedback-list .wrapper .feedback-text {
    padding: 35px 25px 35px 60px;
  }
  .feedback-ominext .feedback-list .wrapper .feedback-text::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -10px;
  }
  .follow-ominext,
.get-profile {
    padding: 81px 15px 91px;
    background-size: 330% auto;
    background-position: 56% 100%;
  }
  .follow-ominext .main .text,
.get-profile .main .text {
    font-size: 16px;
    font-weight: 400;
  }
  .follow-ominext .main .title,
.get-profile .main .title {
    font-size: 24px;
  }
  .follow-ominext .block .description,
.get-profile .block .description {
    font-size: 16px;
  }
  .follow-ominext .block .title,
.get-profile .block .title {
    font-size: 24px;
  }
  .follow-ominext {
    padding-bottom: 40px;
  }
  .about-ominext {
    padding: 40px 0px;
  }
  .about-ominext .wrapper {
    margin-bottom: 25px;
    text-align: center;
    right: 12px;
  }
  .about-ominext .wrapper img {
    width: 80%;
  }
  .about-ominext .wrapper::after {
    display: none;
  }
  .about-ominext .wrapper .retangle.style {
    padding: 5px 10px;
    font-size: 11px;
    width: auto;
  }
  .about-ominext .wrapper .retangle.style h4 {
    font-size: 20px;
  }
  .about-ominext .wrapper .retangle.style:nth-child(2) {
    right: 5%;
  }
  .about-ominext .wrapper .retangle.style:nth-child(3) {
    right: 5%;
  }
  .about-ominext .wrapper .retangle.style:nth-child(4) {
    left: 0%;
  }
  .about-ominext .wrapper .retangle.style:nth-child(5) {
    left: 0%;
  }
  .main-title h3 {
    font-size: 24px;
  }
  .form-filter {
    padding: 15px;
  }
  .form-filter [class^=col-]:last-child .control {
    border-bottom: 0px;
  }
  .form-filter .border-sm-right-0 {
    border-right: 0px !important;
  }
  .home-slide {
    padding-top: 0;
  }
  .home-slide .box-slide .wrapper .boxes {
    padding: 20px 20px 80px;
    margin-bottom: 0;
  }
  .home-slide .box-slide .wrapper .boxes .title {
    font-size: 22px;
  }
  .home-slide .box-slide .wrapper .boxes .description {
    font-size: 14px;
    margin-bottom: 18px !important;
  }
  .home-slide .box-slide .wrapper .boxes .btn-apply-now {
    font-size: 16px;
    padding: 8px 60px 8px 15px;
    width: 100%;
  }
  .main-footer {
    -webkit-clip-path: ellipse(215% 85% at 50% 83%);
            clip-path: ellipse(215% 85% at 50% 83%);
    padding-top: 155px;
  }
  .main-footer .container {
    padding: 0 24px;
  }
  .main-footer .container .col-group > li {
    padding: 0 5px;
    width: 100% !important;
    margin-bottom: 5px;
  }
  .hot-position {
    padding: 0px 0px 25px 0px;
  }
  .page-banner {
    min-height: 262px;
  }
  .video-introduce .iframe-video iframe {
    max-height: 330px;
  }
  .video-introduce .box-number h2 {
    font-size: 40px;
  }
  .page-banner .tab-menu-nav {
    text-align: center;
    width: inherit;
    bottom: -100px;
  }
  .page-banner .tab-menu-nav ul {
    width: 100%;
    max-width: 480px;
    padding: 0 15px !important;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .page-banner .tab-menu-nav ul a {
    padding: 6px 12px;
    line-height: 130%;
    width: calc(50% - 6px);
  }
  .page-banner .tab-menu-nav ul a li {
    font-size: 15px;
  }
  .thongdiep-td {
    padding-top: 50px;
  }
  .thongdiep-td .main-title {
    text-align: left;
  }
  .quytrinh [class^=col-] .item::after {
    display: block;
    transform: rotate(90deg);
    left: 0;
    top: 100%;
    z-index: -5;
  }
  .quytrinh [class^=col-]:nth-child(4) .item.reverse::after {
    display: none;
  }
  .tin-noibat .item-news img,
.khampha-omi .item-news img {
    height: 220px;
  }
  .tin-noibat .item-news--horizon,
.khampha-omi .item-news--horizon {
    overflow: hidden;
  }
  .tin-noibat .item-news--horizon .content,
.khampha-omi .item-news--horizon .content {
    padding: 10px;
  }
  .tin-noibat .item-news--horizon .content .title,
.khampha-omi .item-news--horizon .content .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 17px !important;
  }
  .tin-noibat .item-news--horizon .content .description,
.khampha-omi .item-news--horizon .content .description {
    -webkit-line-clamp: 1 !important;
  }
  .form-register {
    margin-bottom: -130px;
  }
  .form-register .form {
    padding-right: 16px;
    padding-left: 16px;
    width: 100%;
    margin-bottom: 15px;
  }
  .form-register .form .form-group {
    display: block !important;
    max-width: 100%;
  }
  .form-register .form .form-group button {
    transform: translate(0);
    position: inherit;
    top: inherit;
    width: 100%;
    margin: 10px 5px 0;
  }
  .video-container .video-viewer {
    width: 90%;
    height: 22vh;
  }
  .page-banner .box-breakcumb .title-page {
    font-size: 32px;
  }
  .slide-cam-nang {
    padding: 10px;
    margin-bottom: 0px;
  }
  .slide-cam-nang .row {
    flex-direction: column-reverse !important;
  }
  .slide-cam-nang .boxes {
    margin-top: 10px;
  }
  .custom-pagination ul {
    margin-top: 10px;
  }
  .custom-pagination ul li {
    margin: 0 !important;
  }
  .custom-pagination ul li .page-link {
    width: 30px !important;
    height: 30px !important;
    border-radius: unset !important;
    font-size: 14px !important;
  }
  .title-sm,
.des-sm {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px !important;
  }
  .title-sm {
    font-size: 17px !important;
  }
  #pop-apply .pop-content {
    width: calc(100% - 32px) !important;
    max-height: 90vh;
  }
  #pop-apply .pop-content .pop-form {
    padding: 8px 16px 16px 16px !important;
  }
  #pop-apply .pop-content .pop-form h2 {
    font-size: 24px;
  }
  #pop-apply .pop-content .pop-form .message-cv {
    font-size: 14px;
  }
  #pop-apply .pop-content .fa-times {
    top: 10px;
    right: 10px;
    font-size: 22px;
  }
  #pop-apply.thanks .share-socical a {
    margin-right: 30px !important;
  }
  .socical-popup {
    bottom: 90px;
    top: unset !important;
  }
  #pop-search .pop-content {
    width: calc(100% - 32px) !important;
    height: 65%;
    padding: 15px;
  }
  #pop-search .pop-content .title-sm {
    -webkit-line-clamp: 1;
  }
  .menu-sticky {
    top: 60px;
    padding-top: 3px;
    padding-bottom: 8px;
  }
  .side-bar {
    padding-left: 15px !important;
  }
  .menu-hanbook {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .menu-hanbook li {
    padding: 10px;
  }
  .form-contact .nav-tabs {
    flex-direction: column;
  }
  .form-contact .nav-tabs li {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) and (max-height: 1000px) {
  .group-value .group-icon p {
    text-align: center;
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 18px;
    width: 180px;
  }
  .group-value .group-icon p:nth-child(1) {
    top: 25px;
  }
  .group-value .group-icon p:nth-child(2) {
    top: 46%;
    right: -5%;
  }
  .group-value .group-icon p:nth-child(3) {
    bottom: 20%;
  }
  .group-value .group-icon p:nth-child(4) {
    top: 37%;
    left: -5%;
  }
}
@media only screen and (max-width: 1000px) and (max-height: 450px) {
  .group-value .group-icon p {
    text-align: center;
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 18px;
    width: 180px;
  }
  .group-value .group-icon p:nth-child(1) {
    top: 50px;
  }
  .group-value .group-icon p:nth-child(2) {
    top: 53%;
    right: 12%;
  }
  .group-value .group-icon p:nth-child(3) {
    bottom: 15%;
  }
  .group-value .group-icon p:nth-child(4) {
    top: 41%;
    left: 12%;
  }
}
@keyframes imgFadeIn {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  width: 800px;
  animation: cookieSlideUp 0.4s ease;
}
.cookie-consent__close {
  background: #F5F5F5;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cookie-consent__close:hover {
  color: #333;
}
.cookie-consent__close:focus {
  outline: none;
}
.cookie-consent__content {
  flex: 1;
}
.cookie-consent__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #212529;
}
.cookie-consent__link {
  color: var(--second-color);
  text-decoration: underline;
}
.cookie-consent__link:hover {
  color: var(--primary-color);
}
.cookie-consent__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-consent__btn {
  border-radius: 25px;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-width: 120px;
}
.cookie-consent__btn--accept {
  background: var(--second-color);
  color: #fff;
  border: none;
}
.cookie-consent__btn--accept:hover {
  background: var(--primary-color);
}
.cookie-consent__btn--decline {
  background: #fff;
  color: #333;
  border: 1.5px solid #ccc;
}
.cookie-consent__btn--decline:hover {
  border-color: #999;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Tablet */
@media (max-width: 991px) {
  .cookie-consent {
    max-width: 800px;
    width: 800px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
  @keyframes cookieSlideUp {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
}
/* Mobile */
@media (max-width: 767px) {
  .cookie-consent {
    width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    bottom: 15px;
    transform: none;
    border-radius: 12px;
    flex-wrap: wrap;
    padding: 20px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent__close {
    position: static;
    align-self: flex-end;
    margin-bottom: 8px;
  }
  .cookie-consent__content {
    padding-right: 0;
  }
  .cookie-consent__text {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .cookie-consent__actions {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
  .cookie-consent__btn {
    flex: 1;
  }
  @keyframes cookieSlideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* Cookie Icon Toggle */
.cookie-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.2s;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.cookie-icon:hover {
  transform: scale(1.1);
}
.cookie-icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .cookie-icon {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
  }
  .cookie-icon img {
    width: 28px;
    height: 28px;
  }
}

/* Policy Content - Reset styles to allow TinyMCE/CKEditor HTML to render correctly */
.policy-content .content-body {
  all: revert;
}
.policy-content .content-body * {
  all: revert;
}
.policy-content .content-body a {
  color: var(--second-color);
  text-decoration: underline;
}
.policy-content .content-body a:hover {
  color: var(--primary-color);
}
.policy-content .content-body img {
  max-width: 100%;
  height: auto;
}
.policy-content .content-body table {
  border-collapse: collapse !important;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #d0d0d0 !important;
  width: 100%;
  margin-bottom: 1em;
}
.policy-content .content-body table td, .policy-content .content-body table th {
  border: 1px solid #d0d0d0 !important;
  border-style: solid !important;
  padding: 10px 12px;
  vertical-align: top;
}
.policy-content .content-body table th {
  background-color: #f5f6fa;
  font-weight: 700;
}
.policy-content .content-body table tr:nth-child(even) {
  background-color: #fafbfc;
}
