@charset "UTF-8";
.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 48px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 8px 0;
  border: 4px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
}
.modal__content {
  background-color: #fff;
  padding: 60px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 890px;
  width: 95%;
  margin: 0 auto 60px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .modal__content {
    margin: 0 auto;
    padding: 20px;
  }
}
.modal__content .modal-body {
  padding: 2px;
  overflow-y: auto;
  max-height: 70vh;
}
@media (max-width: 767px) {
  .modal__content .modal-body {
    max-height: 70vh;
  }
}
.modal__content .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}
.modal__content .btn-close:hover {
  transform: rotate(180deg);
}
.modal__content h2 {
  margin-top: 0;
  margin-bottom: 12px;
}
.modal__content button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 15px 8px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}
.modal__content button:hover {
  background-color: #0056b3;
}
.modal__content .note {
  font-style: italic;
  font-weight: 500;
  color: #000036;
}

.form-group {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #E6E8F0;
  padding: 5px 11px 7px;
  margin-bottom: 0;
}
.form-group.invalid {
  border-color: red;
}
.form-group.invalid .form-message {
  color: red;
  display: none;
  height: 0;
  position: absolute;
}
.form-group.focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}
.form-group.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.form-group.disabled .form-control {
  cursor: not-allowed;
  background: transparent;
}
.form-group.form-textarea .form-control {
  resize: none;
  min-height: 120px;
  height: calc(100% - 22px);
}

.form-label {
  display: block;
  width: 100%;
  font-weight: 500;
  margin-bottom: 0;
}
.form-label .required {
  color: red;
  font-weight: 600;
}

.form-control {
  width: 100%;
  height: 20px;
  background: transparent;
  border: none;
  font-family: inherit;
  box-shadow: none;
  padding: 0;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.form-message {
  position: absolute;
  display: none;
  margin-top: 8px;
  margin-left: 3px;
}

.form-submit {
  font-family: inherit, sans-serif;
  border-radius: 100px;
  border: none;
  width: 200px;
  height: 48px;
  cursor: pointer;
  transition: 0.4s ease-out;
}
.form-submit:hover {
  opacity: 0.8;
}
.form-submit.loading {
  cursor: not-allowed;
  opacity: 0.5;
}
.form-submit.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-response {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  font-weight: 600;
}
.form-response.failed {
  opacity: 1;
  visibility: visible;
  display: block;
  color: red;
}
.form-response.success {
  opacity: 1;
  visibility: visible;
  display: block;
  color: green;
}

@keyframes hideMessage {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tw-form-home .form-group {
  width: calc(50% - 8px);
}
.tw-form-home .form-group.w-100 {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .tw-form-home .form-group {
    width: 100%;
  }
}
.tw-form-home .form-bottom {
  width: 100%;
  margin-top: 24px;
}
.tw-form-home .form-bottom .lds-ring {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.tw-form-home.loading .lds-ring {
  opacity: 1;
  visibility: visible;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-flex,
.d-inline-flex {
  /* Align items */
  /* justify-content */
}
.d-flex.align-start,
.d-inline-flex.align-start {
  align-items: flex-start;
}
.d-flex.align-end,
.d-inline-flex.align-end {
  align-items: flex-end;
}
.d-flex.align-center,
.d-inline-flex.align-center {
  align-items: center;
}
.d-flex.align-baseline,
.d-inline-flex.align-baseline {
  align-items: baseline;
}
.d-flex.justify-between,
.d-inline-flex.justify-between {
  justify-content: space-between;
}
.d-flex.justify-end,
.d-inline-flex.justify-end {
  justify-content: flex-end;
}
.d-flex.justify-start,
.d-inline-flex.justify-start {
  justify-content: flex-start;
}
.d-flex.justify-center,
.d-inline-flex.justify-center {
  justify-content: center;
}
.d-flex.flex-wrap,
.d-inline-flex.flex-wrap {
  flex-wrap: wrap;
}
.d-flex.flex-column,
.d-inline-flex.flex-column {
  flex-direction: column;
}
.d-flex.flex-row,
.d-inline-flex.flex-row {
  flex-direction: row;
}
.d-flex.gap-4,
.d-inline-flex.gap-4 {
  gap: 4px;
}
.d-flex.gap-8,
.d-inline-flex.gap-8 {
  gap: 8px;
}
.d-flex.gap-16,
.d-inline-flex.gap-16 {
  gap: 16px;
}
.d-flex.gap-32,
.d-inline-flex.gap-32 {
  gap: 32px;
}
.d-flex.gap-16-32,
.d-inline-flex.gap-16-32 {
  gap: 32px 16px;
}

@font-face {
  font-family: "GMV_DIN_Pro";
  src: url("../fonts/GMV_DIN_Pro.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Black";
  src: url("../fonts/GMV_DIN_Pro-Black.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Black_Italic";
  src: url("../fonts/GMV_DIN_Pro-Black_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro";
  font-weight: 700;
  src: url("../fonts/GMV_DIN_Pro-Bold.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Bold_Italic";
  src: url("../fonts/GMV_DIN_Pro-Bold_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond";
  src: url("../fonts/GMV_DIN_Pro-Cond.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Black";
  src: url("../fonts/GMV_DIN_Pro-Cond_Black.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Black_Italic";
  src: url("../fonts/GMV_DIN_Pro-Cond_Black_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Bold";
  src: url("../fonts/GMV_DIN_Pro-Cond_Bold.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Extlight";
  src: url("../fonts/GMV_DIN_Pro-Cond_Extlight.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Italic";
  src: url("../fonts/GMV_DIN_Pro-Cond_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Light";
  src: url("../fonts/GMV_DIN_Pro-Cond_Light.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Light_Italic";
  src: url("../fonts/GMV_DIN_Pro-Cond_Light_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Medium";
  src: url("../fonts/GMV_DIN_Pro-Cond_Medium.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Medium_Italic";
  src: url("../fonts/GMV_DIN_Pro-Cond_Medium_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Thin";
  src: url("../fonts/GMV_DIN_Pro-Cond_Thin.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Cond_Thin_Italic";
  src: url("../fonts/GMV_DIN_Pro-Cond_Thin_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Extlight";
  src: url("../fonts/GMV_DIN_Pro-Extlight.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Extlight_Italic";
  src: url("../fonts/GMV_DIN_Pro-Extlight_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Italic";
  src: url("../fonts/GMV_DIN_Pro-Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Light";
  src: url("../fonts/GMV_DIN_Pro-Light.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Light_Italic";
  src: url("../fonts/GMV_DIN_Pro-Light_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_PRO-MEDIUM";
  src: url("../fonts/GMV_DIN_PRO-MEDIUM.TTF");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Medium_Italic";
  src: url("../fonts/GMV_DIN_Pro-Medium_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Thin";
  src: url("../fonts/GMV_DIN_Pro-Thin.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro-Thin_Italic";
  src: url("../fonts/GMV_DIN_Pro-Thin_Italic.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GMV_DIN_Pro";
  src: url("../fonts/GMV_DIN_Pro.ttf");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "HY-MANARK";
  src: url("../fonts/HY-MANARK.OTF");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "MONTSERRAT-SEMIBOLD";
  src: url("../fonts/MONTSERRAT-SEMIBOLD.TTF");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "MONTSERRAT-REGULAR";
  src: url("../fonts/MONTSERRAT-REGULAR.OTF");
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
body {
  font-family: "GMV_DIN_Pro";
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  position: relative;
}

header#header {
  border-bottom: 1px solid #b3b3b3;
}

header#header ul,
header#header li {
  list-style-type: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.d-flex {
  display: flex;
}

.container {
  width: 70vw;
}

section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

a:hover {
  text-decoration: none;
}

.pc {
  display: block !important;
}

.mb {
  display: none !important;
}

/* ------------------------------ Header ------------------------------ */
.header {
  padding: 14px 0px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  position: relative;
  width: 100%;
  background: #fff;
}

.header_menu_fix {
  position: fixed;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.0745098039);
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  top: 0px;
  z-index: 9999;
  background-color: #fff;
  padding: 10px 0px;
}

.header_menu_fix .header_logo img {
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  max-width: 150px;
}

.header_right_wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
       column-gap: 2px;
  justify-content: flex-end;
}

.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 10px 0px;
  font-size: 12px;
  color: #a34624;
}

.header_left,
.header_right {
  margin: auto 0px;
}

.header_right {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.header_logo {
  overflow: hidden;
}

.header_logo img {
  height: auto;
  width: 100%;
}

.header_lang {
  margin: auto 0px;
  position: relative;
}
@media (max-width: 640px) {
  .header_lang {
    order: 1;
    margin-left: 14px;
  }
}
.header_lang ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header_lang .item-current_lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 20px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .header_lang .item-current_lang {
    display: none;
  }
}
.header_lang .item-current_lang img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header_lang .item-current_lang:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: -7px;
  border-left: 1.5px solid #222;
  border-top: 1.5px solid #222;
  transform: translateY(-80%) rotate(-135deg);
  transition: 0.3s;
}
.header_lang .dropdown-lang {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  transform: translateX(-30%);
  z-index: 1000;
  display: none;
  padding-top: 10px;
  min-width: 60px;
}
@media (max-width: 640px) {
  .header_lang .dropdown-lang {
    left: 0;
    transform: translateX(0);
    width: 100%;
    display: block;
    position: relative;
    padding: 0;
  }
}
.header_lang .dropdown-lang .list-lang {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 6px 6px;
  padding: 5px 0;
}
@media (max-width: 640px) {
  .header_lang .dropdown-lang .list-lang {
    padding: 0;
    box-shadow: none;
    border-radius: 6px;
    overflow: hidden;
  }
}
.header_lang .dropdown-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 20px;
  gap: 5px;
  padding: 5px 5px;
  transition: 0.4s ease-out;
  color: #222;
  order: 1;
}
.header_lang .dropdown-lang a span {
  padding-top: 3px;
}
.header_lang .dropdown-lang a.current, .header_lang .dropdown-lang a:hover {
  background-color: #f0f0f0;
  color: #00578a;
}
.header_lang .dropdown-lang a.current {
  order: 2;
}
@media (max-width: 480px) {
  .header_lang .dropdown-lang a.current {
    display: none;
  }
}
.header_lang .dropdown-lang a img {
  border-radius: 100px;
  width: 20px !important;
  height: 20px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.header_lang:hover .current_lang::before {
  transform: rotate(45deg) translate(0px, -80%);
}
.header_lang:hover .dropdown-lang {
  display: block;
}

.header_menu_wrap {
  display: grid;
  width: 100%;
  grid-template-columns: 150px 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 25px;
       column-gap: 25px;
}

label.screen-reader-text {
  display: none;
}

.header-search form div {
  display: flex;
  align-items: center;
  position: relative;
}

.header-search {
  margin: auto 0px;
}

.wrap-header-search {
  position: relative;
  cursor: pointer;
}

.wrap-header-search > img {
  width: 15px;
  height: auto;
}

.wrap-header-search:hover .wrap_search_form {
  display: block;
}

.wrap_search_form {
  position: absolute;
  right: 0;
  top: 8px;
  padding-top: 25px;
  display: none;
  transition: 0.3s ease-in-out;
  z-index: 99;
}

.header-search form {
  margin: auto 0px;
}

.header-search form input {
  padding: 5px 20px 5px 20px;
  border: 1px solid #a6a8ab;
  background-color: #ffffff;
  color: #000000;
  outline: none;
  border-radius: 7px;
  height: 45px;
  position: relative;
  width: 300px;
}

.header-search form input#searchsubmit {
  width: 45px;
  height: 45px;
  color: transparent;
  background-image: url("../images/search.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
}

.header-search form input::-moz-placeholder {
  color: #a5a5a5;
  font-size: 14px;
  font-style: italic;
  list-style: 1;
}

.header-search form input::placeholder {
  color: #a5a5a5;
  font-size: 14px;
  font-style: italic;
  list-style: 1;
}

.header-search form input#searchsubmit {
  width: 40px;
  height: 28px;
  color: transparent;
  background-image: url(../images/search.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  position: relative;
  z-index: 9;
  margin-left: -42px;
  padding: 5px 10px;
}

.wrap-menu {
  margin: auto 0px;
}

#mega-menu-wrap-mainmenu #mega-menu-mainmenu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
  vertical-align: middle !important;
}

.wrap-menu ul#mega-menu-mainmenu li a {
  font-family: "GMV_DIN_Pro" !important;
  font-weight: 700 !important;
}
.wrap-menu ul#mega-menu-mainmenu .mega-sub-menu li a,
.wrap-menu ul#mega-menu-mainmenu .sub-menu li a {
  font-family: "GMV_DIN_Pro-Medium" !important;
  font-weight: 500 !important;
}

.wrap-header-icon {
  display: none;
}

.translate {
  margin: auto 0px;
}

.translate-bar {
  position: relative;
  display: flex;
  gap: 10px;
}

.translate-bar::before {
  content: "";
  z-index: 2;
  position: absolute;
  width: 7px;
  height: 5px;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  background-color: #ffffff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  margin-top: 1px;
}

#translate-menu {
  position: relative;
}

ul#translate-menu,
ul#translate-menu li {
  margin: 0;
  padding: 0;
}

#translate-menu > li > a {
  color: #ffffff;
}

#translate-menu .sub-menu {
  display: flex;
  flex-direction: column;
  padding: 8px;
  row-gap: 2px;
  min-width: 114px;
  width: 100%;
  position: absolute;
  left: -30px;
  top: 8px;
  z-index: 99;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2901960784);
  opacity: 0.5;
  transform: translateY(37px);
  margin: 0;
  margin-left: 0px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background-color: #ffffff;
}

#translate-menu .sub-menu li a {
  padding: 10px 10px;
  color: #000000;
  background: #ffffff;
}

#translate-menu .sub-menu .current-lang a {
  background: #002059;
  color: #ffffff;
}

#translate-menu .sub-menu li:first-child a {
  border-radius: 4px 4px 4px 4px;
  border-bottom: 1px solid #ffffff;
}

#translate-menu .sub-menu li:last-child a {
  border-radius: 4px 4px 4px 4px;
  border-top: 1px solid #ffffff;
}

#translate-menu .sub-menu li:hover a {
  background: #002059;
  color: #ffffff;
}

#translate-menu .sub-menu li a {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.translate:hover .sub-menu {
  visibility: visible !important;
  transform: translateY(22px) !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
}

#translate-menu .current-menu-parent > a {
  font-size: 16px;
  font-family: "SVN-Gilroy-Medium";
  text-transform: uppercase;
  padding: 10px;
}

/* ------- menu ------- */
ul#main2 {
  display: flex;
  justify-content: end;
  -moz-column-gap: 20px;
       column-gap: 20px;
  position: relative;
  padding-left: 0px;
  margin-bottom: 0px;
}

ul#main2 > li {
  position: relative;
}

ul#main2 > li > a {
  color: #ffffff;
  font-size: 16px;
  font-family: "Lexend-Regular";
  padding: 10px;
  transition: 0.3s ease-in-out;
}

ul#main2 li:nth-child(3) ul.sub-menu {
  width: 300px;
  height: auto;
  left: -100px;
  top: 40px;
}

ul#main2 li ul.sub-menu {
  width: 300px;
  height: auto;
  left: -100px;
  top: 40px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

ul#main2 li ul.sub-menu::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 100%;
  left: 0px;
  top: 0;
  background: hsla(0, 0%, 96.1%, 0.7098039216) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  top: 0px;
  z-index: -1;
}

ul#main2 li ul.sub-menu li {
  width: 300px !important;
}

ul#main2 li ul.sub-menu ul.sub-menu li {
  width: 320px !important;
  position: relative;
}

ul#main2 li ul.sub-menu ul.sub-menu {
  width: 340px;
  height: auto;
  max-height: 400px;
  left: 312px;
  right: unset;
  padding-left: 9px;
  margin-top: 0px;
  top: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

ul#main2 li ul.sub-menu ul.sub-menu::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 100%;
  max-height: 400px;
  left: 0px;
  right: 0;
  top: 0;
  z-index: -1;
  background: hsla(0, 0%, 96.1%, 0.7098039216) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

ul#main2 li ul.sub-menu ul.sub-menu::-webkit-scrollbar-button,
ul#main2 li ul.sub-menu ul.sub-menu::-webkit-scrollbar-track-piece,
ul#main2 li ul.sub-menu ul.sub-menu::-webkit-scrollbar-corner,
ul#main2 li ul.sub-menu ul.sub-menu::-webkit-resizer {
  display: none;
}

ul#main2 li ul.sub-menu ul.sub-menu::-webkit-scrollbar,
ul#main2 li ul.sub-menu ul.sub-menu::-webkit-scrollbar-thumb,
ul#main2 li ul.sub-menu ul.sub-menu::-webkit-scrollbar-track {
  border: none;
  background: transparent;
  width: 2px;
}

ul#main2 li ul.sub-menu ul.sub-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.418);
  background-size: 1px;
  border-radius: 6px;
}

ul#main2 li ul.sub-menu ul.sub-menu::-webkit-scrollbar-track {
  background-repeat: repeat-y;
  background-size: 1px;
  background-position: center top;
}

ul#main2 > li > ul.sub-menu::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 10px;
  /* background-color: rgba(255, 255, 255, 0.75); */
  /* background-color: #FFFFFF; */
  background: hsla(0, 0%, 96.1%, 0.7098039216) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  top: -9.5px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

ul#main2 > li > ul.sub-menu > li {
  width: 300px;
}

ul#main2 ul.sub-menu a,
ul#main2 ul.sub-menu ul.sub-menu a {
  padding: 10px;
  display: block;
  /* border-bottom: 1px solid #ffffff !important; */
  border-bottom: 1px solid #dcdcdc !important;
  transition: 0.3s ease-in-out;
  font-size: 16px;
}

ul#main2 ul.sub-menu ul.sub-menu a {
  font-family: "Inter-Light";
  color: #000000;
}

ul#main2 ul.sub-menu a {
  font-family: "Inter-Medium";
  color: #000000;
  position: relative;
}

.sub-menu > li {
  position: relative;
}

.sub-menu > li > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
}

.sub-menu > li > .sub-menu > li > .sub-menu {
  position: absolute;
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
}

.sub-menu > li:has(.sub-menu > .sub-menu) > a::after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 5px;
  color: #ffffff;
}

.sub-menu > li > a {
  position: relative;
  padding-right: 10px;
}

.arrow-icon {
  font-size: 0.8em;
  margin-left: 5px;
  color: hsla(0, 0%, 96.1%, 0.7098039216) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  position: absolute;
  right: -13px;
  transform: rotate(90deg);
  opacity: 0;
  transition: 0.3s ease-in-out;
}

ul#main2 ul.sub-menu > li > a:hover {
  color: #002059;
  transition: 0.3s ease-in-out;
  font-family: "SVN-Gilroy-SemiBold";
}

ul#main2 ul.sub-menu ul.sub-menu a:hover {
  font-family: "Inter-SemiBold";
}

ul#main2 ul.sub-menu li:last-child a,
ul#main2 ul.sub-menu ul.sub-menu li:last-child a {
  border-bottom: 1px solid transparent;
}

ul#main2 .current_page_item a,
ul#main2 > li:hover > a {
  color: #f0ab1f;
}

ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-left: 0;
  width: 200px;
}

ul.sub-menu li a {
  color: #000000;
}

ul#main2 > li:hover > ul.sub-menu {
  display: block;
}

.button_contact {
  background: #00578a;
  text-align: center;
  padding: 10px 20px 8px;
  border-radius: 11px;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
  transition: 0.4s ease-out;
}
.button_contact a {
  text-decoration: none;
}
.button_contact:hover {
  transform: scale(1.035);
}
.button_contact:hover a {
  text-decoration: none;
}

.button_contact svg {
  width: 16px;
}
@media (max-width: 400px) {
  .button_contact svg {
    display: none;
  }
}

.button_contact a {
  font-size: 16px;
  color: #fff;
  font-family: "GMV_DIN_Pro-Medium";
  display: flex;
  justify-content: center;
  align-self: center;
  gap: 10px;
}

.searchform-header {
  position: relative;
}
@media (max-width: 942px) {
  .searchform-header {
    display: none;
  }
}
.searchform-header .icon-toggle-search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.searchform-header .icon-toggle-search-form svg {
  width: 100%;
  height: 100%;
}
.searchform-header form {
  position: relative;
  width: 160px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
}
.searchform-header input[type=text] {
  width: 100%;
  height: 100%;
  padding: 7px 10px 5px;
  outline: none;
  border: none;
  border-radius: 10px;
  background: transparent;
}
.searchform-header button[type=submit] {
  width: 30px;
  height: 30px;
  border: none;
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ------------------------------ Banner ------------------------------ */
section#home_banner {
  padding: 50px 0px;
}

.home_banner_left,
.home_banner_right {
  display: grid;
  grid-template-columns: 100%;
  justify-content: space-between;
}

.home_banner_ga {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.home_banner_right_img {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 16px;
  /* Container của nút */
  /* Hover vào ảnh thì hiện nút */
  /* Style cho từng nút */
}
.home_banner_right_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92.5%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}
.home_banner_right_img .home_banner_right_img_item {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.home_banner_right_img .app_links {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.home_banner_right_img:hover .app_links {
  opacity: 1;
  pointer-events: auto;
}
.home_banner_right_img:hover::after {
  opacity: 1;
}
.home_banner_right_img .btn_app {
  padding: 10px 16px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  min-width: 140px;
  transition: all 0.3s ease;
}
.home_banner_right_img .btn_app.ios {
  background-color: #00578a;
}
.home_banner_right_img .btn_app.android {
  background-color: #00578a;
}
.home_banner_right_img .btn_app:hover {
  background: #333;
}

.home_banner_right_img img {
  width: 100%;
}

.owl-item .home_banner_ga {
  width: 100%;
  height: 100%;
}

.home_banner_ga img {
  aspect-ratio: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home_banner_bottom {
  display: grid;
  grid-template-columns: 313px 1fr;
  gap: 35px;
  border: 1px solid #999999;
  border-radius: 16px;
  align-items: center;
  padding-right: 35px;
  overflow: hidden;
}

.home_banner h3 {
  margin-top: 0px;
  font-size: 20px;
  font-family: "GMV_DIN_Pro-Medium";
}

.home_banner a {
  color: #000;
}

.home_banner_text_bottom p {
  color: #666666;
}

.home_banner_right_content {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #999999;
  border-radius: 16px;
  padding: 25px;
  justify-content: space-between;
}
.home_banner_right_content a {
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5%;
}
.home_banner_right_content a .home_icon-left {
  width: 58px;
  height: 58px;
}
.home_banner_right_content a h3 {
  margin-bottom: 0;
}
.home_banner_right_content a .home_iconright {
  width: 24px;
  height: 22px;
}

.home_iconright {
  text-align: right;
}

.home_banner_right_content {
  transition: 0.4s ease-out;
}
.home_banner_right_content:hover h3 {
  color: #00578a;
}
.home_banner_right_content:hover .home_iconright {
  transform: translateX(3px);
}

.home_iconright {
  transition: 0.3s ease-out;
}

.home_right_text h3 {
  transition: 0.4s ease-out;
  margin-bottom: 0px;
}

/* ------------------------------ Home service ------------------------------ */
section#service_home {
  padding: 70px 0px 100px 0px;
}

.service_home_right_slider img {
  aspect-ratio: 0.6;
  border-radius: 16px;
}

.service_home_content p span {
  font-size: 16px;
  font-family: "MONTSERRAT-SEMIBOLD";
}

.home_service_item_exp p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.service_home_content h2 {
  font-size: 40px;
  font-family: "GMV_DIN_Pro", sans-serif;
  font-weight: 700;
  margin: 10px 0px 20px 0px;
}

.service_home_content {
  margin-bottom: 50px;
}

.home_service_item_title a {
  font-size: 20px;
  font-family: "GMV_DIN_Pro-Medium";
  color: black;
  line-height: 22px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 44px;
  transition: 0.3s ease-in-out;
}

.home_service_item_title a:hover {
  color: #00578a;
}

.home_service_item_title {
  margin: 0px 0px 10px 0px;
}

.home_service_avata img {
  aspect-ratio: 1.8;
}

.home_service_item_exp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 10px;
}

.home_service_icon {
  font-size: 16px;
  font-family: "GMV_DIN_Pro-Medium";
  color: #fff;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease-out;
  background: #00578a;
  text-align: center;
  padding: 10px 0px;
  border-radius: 10px;
}

.home_service_icon:hover {
  border-color: #00578a;
}

.home_service_icon img {
  width: 16px;
}

#service_home .owl-nav {
  display: flex;
  position: absolute;
  left: 15px;
  bottom: -55px;
  gap: 15px;
}

#service_home .owl-carousel,
#service_home .owl-stage-outer,
#service_home .owl-stage {
  position: initial;
}

#service_home .owl-prev,
#service_home .owl-next {
  width: 31px;
  height: 31px;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s ease-out;
}
#service_home .owl-prev:hover,
#service_home .owl-next:hover {
  background-color: #00578a;
  border-color: #00578a;
}
#service_home .owl-prev:hover i,
#service_home .owl-next:hover i {
  color: #fff;
}
#service_home .owl-prev.disabled,
#service_home .owl-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ------------------------------ Stanhome ------------------------------ */
section#standard_home {
  padding: 30px 0px 80px 0px;
}

.stan_home_content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  grid-template-rows: auto;
  align-items: center;
}

.img_stan_home img {
  width: 100%;
  aspect-ratio: 1.6;
  border-radius: 16px;
}

.title_stan_home {
  text-align: center;
  margin-bottom: 60px;
}

.title_stan_home h2:first-child span {
  font-family: "GMV_DIN_Pro-Medium";
  font-size: 16px;
}

.title_stan_home h1 {
  font-size: 36px;
  font-family: "GMV_DIN_Pro", sans-serif;
  font-weight: 700;
}

.title_stan_home h2 {
  color: #00578a;
  font-family: "GMV_DIN_Pro", sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-top: 0px;
}

.stan_home_content_list {
  text-align: center;
}

.text_stan_home h3 {
  font-family: "GMV_DIN_Pro", sans-serif;
  font-weight: 700;
  font-size: 36px;
}

.text_stan_home p {
  font-size: 16px;
  padding: 0px 80px;
}

.stan_home_content_list:nth-child(odd) .stan_group {
  display: none;
}

.stan_home_content_list:nth-child(even) .img_stan_home {
  display: none;
}

.icon_stan_home {
  width: 27%;
  margin: 0px auto 10px;
}

.banner_stan_home img {
  width: 100%;
  aspect-ratio: 1.6;
}

.sub_content_stan_home h2 {
  font-size: 36px;
  font-family: "GMV_DIN_Pro", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 52px auto;
}
@media (max-width: 972px) {
  .sub_content_stan_home h2 br {
    display: none;
  }
}
@media (max-width: 640px) {
  .sub_content_stan_home h2 {
    font-size: 28px;
  }
}

/* --------------------------app-------------------------- */
section#app_home {
  padding: 50px 0px 130px 0px;
}

.app_home {
  position: relative;
  z-index: 3;
}

.app_bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.app_bg img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.app_home_content {
  position: relative;
  z-index: 9;
  padding: 15px 30px;
}

.img_app_home {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 85%;
  margin: 0 auto;
  gap: 45px;
}

.img_app_list img {
  border-radius: 20px;
}

.img_app_list {
  text-align: center;
}

.title_app_home h2 {
  margin-top: 0px;
  color: #fff;
  font-family: "GMV_DIN_Pro", sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .title_app_home h2 {
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.24;
  }
  .title_app_home h2 br {
    display: none;
  }
}

.img_app_list:nth-child(2) img {
  margin-top: -40px;
}

.img_app_list:nth-child(3) img {
  margin-top: -80px;
}

/* ----------------------- pay home ------------------------- */
section#pay_home {
  padding: 10px 0px 80px 0px;
}

.pay_home {
  display: grid;
  grid-template-columns: 65% 32%;
  justify-content: space-between;
  margin-right: 280.5px;
  padding-right: 15px;
  align-items: flex-start;
}

.pay_home_left {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 8px;
}

.pay_home_left_img:nth-child(1) {
  grid-column: span 3/span 3;
  grid-row: span 6/span 6;
}

.pay_home_left_img:nth-child(1) img {
  border-radius: 16px;
  height: 100%;
  width: 100%;
}

.pay_home_left_img:nth-child(2) {
  grid-column: span 4/span 4;
  grid-row: span 3/span 3;
  grid-column-start: 4;
}

.pay_home_left_img:nth-child(3) {
  grid-column: span 4/span 4;
  grid-row: span 3/span 3;
  grid-column-start: 4;
  grid-row-start: 4;
}

.pay_home_right_title p span {
  font-size: 16px;
  font-family: "GMV_DIN_Pro-Medium";
}

.pay_home_right_title h2 {
  font-family: "GMV_DIN_Pro";
  font-weight: 700;
  font-size: 36px;
  color: #00578a;
  margin-top: 0px;
  margin-bottom: 20px;
  width: 90%;
}

.title_content_pay_home {
  font-size: 20px;
  font-family: "GMV_DIN_Pro";
  font-weight: 700;
  color: #201d63;
  margin-bottom: 10px;
}

.icon_box {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 20px;
}

.content_pay_home_list {
  margin: 30px 0px;
}
.content_pay_home_list a:hover {
  color: #00578a;
}

/* -------------------------------New--------------------------------------- */
.home_news_title {
  text-align: center;
}

.home_news_title p span {
  font-family: "MONTSERRAT-SEMIBOLD";
  font-size: 16px;
}

.home_news_title h2 {
  font-family: "MONTSERRAT-SEMIBOLD";
  font-size: 36px;
  margin-bottom: 30px;
  margin-top: 0px;
}

.home_news_box .owl-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  width: 100% !important;
}

.home_news_box .owl-item {
  width: 100% !important;
}

.home_news_box .owl-item:nth-child(1) .home_new_item_item {
  display: grid;
  grid-template-columns: 57% 40%;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #999999;
  padding-right: 30px;
  margin-bottom: 30px;
}

.home_news_box .owl-item:nth-child(1) .home_new_item_title a {
  font-family: "GMV_DIN_Pro";
  font-weight: 700;
  font-size: 20px;
  color: #00578a;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home_news_box .owl-item:nth-child(1) .home_new_item_title {
  margin-bottom: 15px;
}

.home_news_box .owl-item:nth-child(1) .home_new_item_exp p {
  text-align: justify;
}

.home_news_box .owl-item:nth-child(1) .home_new_item_date {
  display: none;
}

.home_news_box .home_new_avata a {
  display: flex;
  flex-wrap: wrap;
  aspect-ratio: 1.8;
  border-radius: 16px;
  overflow: hidden;
}
.home_news_box .home_new_avata img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease-out;
}
.home_news_box .home_new_avata:hover img {
  transform: scale(1.035);
}

.home_news_box .owl-item:nth-child(1) {
  grid-column: span 3/span 3;
}

.home_news_box .owl-item:nth-child(2) {
  grid-row-start: 2;
}

.home_news_box .owl-item:nth-child(3) {
  grid-row-start: 2;
}

.home_news_box .owl-item:nth-child(4) {
  grid-row-start: 2;
}

.home_new_item_date {
  font-family: "MONTSERRAT-REGULAR";
  font-size: 14px;
  margin: 15px 0px;
  color: #4b5563;
}

.home_new_item_title a {
  font-size: 20px;
  font-family: "GMV_DIN_Pro";
  font-weight: 700;
  color: #727376;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: 0.3s ease-in-out;
}

.home_new_item_title {
  margin-bottom: 15px;
}

.home_new_item_exp p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.home_new_item_title a:hover {
  color: #00578a;
}

/* ------------------------------ Partner ------------------------------ */
section#partner_home {
  padding: 50px 0px 80px 0px;
}

#owl-partner {
  padding-top: 20px;
}
#owl-partner .owl-stage {
  display: flex;
  align-items: center;
}
#owl-partner .owl-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
#owl-partner .partner_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
#owl-partner .partner_item img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------ BackToTop ------------------------------ */
#supportfix {
  position: fixed;
  z-index: 9999;
  bottom: 100px;
  right: 40px;
  bottom: 20%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

#supportfix .support_item {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

#supportfix .support_item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn_top {
  display: none;
}

svg.bi.bi-chevron-up {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  fill: #707070;
}

.page_pagaination {
  margin-top: 35px;
}

.pagination {
  clear: both;
  position: relative;
  font-size: 16px;
  line-height: 13px;
  float: right;
  list-style-type: none;
  width: 100%;
  margin: 0px !important;
  display: flex !important;
  justify-content: center;
}

.pagination span,
.pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #fff;
  background: #072b6b;
}

.pagination a:hover {
  color: #fff;
  background: #072b6b;
}

.pagination .current {
  padding: 6px 9px 5px 9px;
  color: #fff;
}

.pagination .active a,
.pagination .active a:focus,
.pagination .active a:hover,
.pagination .active span,
.pagination .active span:focus,
.pagination .active span:hover {
  background-color: #072b6b !important;
  border-color: #072b6b !important;
}

.pagination li a:focus,
.pagination li a:hover,
.pagination li span:focus,
.pagination li span:hover {
  color: #ffffff !important;
  background-color: #072b6b !important;
  border-color: #072b6b !important;
}

.pagination li a,
.pagination li span {
  color: #b2b2b2 !important;
}

.pagination li:last-child a,
.pagination li:last-child span {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

/* ------------------------------ Modal ------------------------------ */
.modal-dialogs .modal-content {
  overflow: hidden;
}

.modal-dialogs .modal-body {
  background-color: #d4dde5;
}

.modal-dialogs .modal-body .form-contact-btn .form-contact-item p::before {
  display: none;
}

.modal-dialogs h5#exampleModalLabel {
  font-size: 20px;
  font-family: "SVN-Gilroy SemiBold";
  color: #511210;
}

.modal-dialogs .modal-header {
  position: relative;
  width: 100%;
}

.modal-dialogs button.close {
  position: absolute;
  top: 20px;
  right: 15px;
}

.modal-dialogs {
  width: 100%;
  max-width: 600px;
  position: relative;
  top: 50%;
  z-index: 999999999999;
  transform: translateY(-50%);
  margin: auto;
}

.modal {
  z-index: 999999999999 !important;
}

.wrap-menu_mobile {
  display: none;
}
@media (max-width: 942px) {
  .wrap-menu_mobile #searchform {
    width: 100%;
    padding: 0 10px;
    margin: 24px 0;
  }
  .wrap-menu_mobile #searchform input[type=text] {
    width: calc(100% - 100px);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 36px;
    font-size: 14px;
  }
  .wrap-menu_mobile #searchform input[type=submit] {
    width: 80px;
    height: 36px;
    border-radius: 5px;
    background-color: #00578a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
  }
}

.modal-dialogs .modal-body form p {
  margin-bottom: 0px;
}

.modal-dialogs .modal-body form input,
.modal-dialogs .modal-body form textarea {
  width: 100%;
  color: #000;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  outline: none;
  margin-bottom: 10px;
}

.modal-dialogs .modal-body form textarea {
  height: 150px;
}

.modal-dialogs .modal-body form .contact_fbox1,
.modal-dialogs .modal-body form .contact_fbox2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.modal-dialogs .modal-body form .contact_fbox2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.modal-dialogs .modal-body form .contact_fsize p,
.modal-dialogs .modal-body form .contact_fgoi p {
  display: flex;
}

.modal-dialogs .modal-body form .contact_fsize span,
.modal-dialogs .modal-body form .contact_fgoi span {
  text-align: center;
}

.modal-dialogs .modal-body form input[type=submit] {
  background-color: #ff6700;
  font-size: 16px;
  font-family: "SVN-Gilroy SemiBold";
  color: #fff;
  text-transform: uppercase;
  width: auto;
  display: inline-block;
  padding: 10px 50px;
  border-radius: 25px;
  position: relative;
  left: 0%;
  transform: translateX(0%);
  margin-top: 30px;
  transition: 0.3s ease-in-out;
}

.modal-dialogs .modal-body form input[type=submit]:hover {
  background-color: #511210;
  color: #ffffff;
  transition: 0.3s ease-in-out;
}

.modal-dialogs .home_contact_lbox {
  position: relative;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.share-posts {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e5e5e5;
}
.share-posts .share-item,
.share-posts .copy-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  padding: 8px;
  border-radius: 100px;
  color: #9CA3AF;
  transition: 0.3s;
}
.share-posts .share-item:hover,
.share-posts .copy-wrapper:hover {
  color: #000;
}
.share-posts .share-item svg,
.share-posts .copy-wrapper svg {
  width: 20px;
  height: 20px;
}
.share-posts .share-item.facebook:hover svg path,
.share-posts .copy-wrapper.facebook:hover svg path {
  fill: #1877F2;
}
.share-posts .share-item.linkedin:hover svg path,
.share-posts .copy-wrapper.linkedin:hover svg path {
  fill: #0077B5;
}
.share-posts .copy-wrapper:hover svg path {
  stroke: #000;
}

.tw-floating {
  position: fixed;
  z-index: 102;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 640px) {
  .tw-floating {
    right: 15px;
  }
}
.tw-floating .float-item {
  border-radius: 100px;
  width: 72px;
  height: 72px;
  padding: 10px;
  position: relative;
  background: var(--primary);
}
@media (max-width: 1440px) {
  .tw-floating .float-item {
    width: 60px;
    height: 60px;
  }
}
.tw-floating .float-item::before, .tw-floating .float-item::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 100%;
  transform-origin: 50% 50%;
  transition: all 0.5s;
  pointer-events: none;
}
.tw-floating .float-item::before {
  background-color: var(--primary);
  border: 2px solid transparent;
  animation: phonering-circle-fill 2.3s infinite ease-in-out;
}
.tw-floating .float-item::after {
  width: 220%;
  height: 220%;
  border: 2px solid var(--primary);
  background-color: transparent;
  animation: phonering-cricle 1.2s infinite ease-in-out;
  opacity: 0.5;
}
.tw-floating .float-item svg {
  width: 60%;
  height: 60%;
  animation: snakeX 1.3s ease-in-out infinite;
}
@media (max-width: 1440px) {
  .tw-floating .float-item svg {
    width: auto;
    height: auto;
    min-width: 20px;
  }
}
.tw-floating .float-item .txt {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #fff;
  text-align: center;
  min-width: 100%;
  background: #002059;
  width: -moz-max-content;
  width: max-content;
  padding: 7px 10px 5px;
  border-radius: 10px;
  transition: 0.4s ease-out;
  opacity: 0;
  visibility: hidden;
  margin-right: 6px;
}
.tw-floating .float-item:hover .txt {
  opacity: 1;
  visibility: visible;
}
.tw-floating .wrap-buttons {
  display: none;
}
@media only screen and (max-width: 640px) {
  .tw-floating .wrap-buttons {
    position: fixed;
    left: 50%;
    top: 166px;
    transform: translateX(-50%);
    display: flex;
  }
  .tw-floating .wrap-buttons a {
    width: -moz-max-content;
    width: max-content;
    height: 36px;
    font-weight: 500;
    transition: 0.4s ease-out;
    position: relative;
    overflow: visible;
  }
  .tw-floating .wrap-buttons a span {
    position: relative;
    z-index: 9;
  }
  .tw-floating .wrap-buttons a span.icon {
    animation: snakeX 1.3s ease-in-out infinite;
  }
}
.tw-floating a.zalo {
  display: none;
}
@media only screen and (max-width: 640px) {
  .tw-floating a.zalo {
    display: flex;
    position: fixed;
    top: 116px;
    right: 17px;
    height: 82px;
    width: 36px;
  }
  .tw-floating a.zalo svg {
    animation: snakeX 1.3s ease-in-out infinite;
  }
}
@media only screen and (max-width: 640px) {
  .tw-floating.bottom .wrap-buttons {
    top: auto;
    bottom: 42px;
  }
  .tw-floating.bottom a.zalo {
    top: auto;
    bottom: 96px;
  }
}

@keyframes phonering-cricle {
  0% {
    transform: translate(-50%, -50%) rotate(0) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) rotate(0) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) rotate(0) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@keyframes phonering-circle-fill {
  0% {
    transform: translate(-50%, -50%) rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@keyframes snakeX {
  0% {
    transform: rotate(0) skew(1deg);
    transform: rotate(0) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) skew(1deg);
    transform: rotate(-25deg) skew(1deg);
  }
  20% {
    transform: rotate(25deg) skew(1deg);
    transform: rotate(25deg) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) skew(1deg);
    transform: rotate(-25deg) skew(1deg);
  }
  40% {
    transform: rotate(25deg) skew(1deg);
    transform: rotate(25deg) skew(1deg);
  }
  50% {
    transform: rotate(0) skew(1deg);
    transform: rotate(0) skew(1deg);
  }
  100% {
    transform: rotate(0) skew(1deg);
    transform: rotate(0) skew(1deg);
  }
}/*# sourceMappingURL=style.css.map */