/* @charset "utf-8"; */

@font-face {
  font-family: "HKGrotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/HKGrotesk-Bold.woff") format("woff");
}

@font-face {
  font-family: "HKGrotesk";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/HKGrotesk-BoldItalic.woff") format("woff");
}

@font-face {
  font-family: "HKGrotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/HKGrotesk-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "HKGrotesk";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/HKGrotesk-SemiBoldItalic.woff") format("woff");
}

@font-face {
  font-family: "HKGrotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/HKGrotesk-Medium.woff") format("woff");
}

@font-face {
  font-family: "HKGrotesk";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/HKGrotesk-MediumItalic.woff") format("woff");
}

@font-face {
  font-family: "HKGrotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/HKGrotesk-Regular.woff") format("woff");
}

@font-face {
  font-family: "HKGrotesk";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/HKGrotesk-Italic.woff") format("woff");
}

@font-face {
  font-family: "HKGrotesk";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/HKGrotesk-Light.woff") format("woff");
}

@font-face {
  font-family: "HKGrotesk";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/HKGrotesk-LightItalic.woff") format("woff");
}

@font-face {
  font-family: "JosefinSans";
  src: url("../fonts/JosefinSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
  font-weight: 400;
}

:root {
  --font-primary: "HKGrotesk", Arial, Helvetica, sans-serif;
}

:root {
  --body-color: #fff;
  --text-color: #000;
  --color1: #40a12a;
  --color2: #1c468c;
  --font-size: 16px;
  --font-width: 400;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-weight: var(--font-width) !important;
  font-style: normal;
  font-size: var(--font-size);
  color: var(--text-color);
  background-color: var(--body-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color2);
}

a,
input,
button {
  outline: none !important;
}

ul,
ol {
  list-style-type: none;
}

p {
  margin: 0;
  padding: 0;
  /* font-family: var(--font-primary-text); */
}

@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

.header {
  padding: 0;
  margin: 0;
  transition: all 0.4s ease-in-out;
}

.top_menu {
  display: none;
}

@media (min-width: 1200px) {
  .top_menu {
    display: block !important;
  }

  .top_menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 1s ease-in-out;
    z-index: 999;
  }

  .top_menu.fixed .menu_web .nav-link {
    padding: 8px 2px 4px !important;
  }
}

.header-wel {
  display: none;
}

@media (min-width: 768px) {
  .header-wel {
    background-color: #f9f9f8;
    display: block;
  }
}

.header-wel p {
  font-size: 12px;
  color: #333;
  padding: 6px 0;
}

.header-wel p a {
  color: #333;
}

.logo_box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 0; */
  position: relative;
}

@media (min-width: 768px) {
  .logo_box {
    justify-content: space-between;
    /* padding: 8px 0 0; */
  }
}

.logo {
  display: inline-block;
}

.logo img {
  height: 60px;
  width: auto;
  margin: 12px 0;
  object-fit: contain;
}

/* @media (min-width: 576px) {
  .logo img {
    height: 80px;
  }
} */

@media (min-width: 768px) {
  .logo img {
    height: 80px;
    margin: 10px 0;
  }
}

@media (min-width: 1200px) {
  .logo img {
    height: 90px;
    margin: 8px 0;
  }
}

.search_box {
  display: none;
}

@media (min-width: 1200px) {
  .search_box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.smail_nav_menu {
  width: 100%;
  height: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color2);
  padding: 8px;
  border-radius: 6px;
}

.smail_nav_menu li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


.smail_nav_menu li a {
  color: white;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 14px;
}

.smail_nav_menu li a:hover {
  color: var(--color1) !important;
}

.search-into {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  overflow: hidden;
}

.search-into input {
  border: none;
  outline: none;
  padding: 0px 5px 0px 10px;
  width: 100%;
  background-color: #fff !important;
  font-size: 15px;
}

.search-into input::placeholder {
  font-size: 14px;
}

.search-into button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(13, 79, 141, 1) 0%,
      rgba(52, 91, 190, 1) 100%) !important;
  border: none;
  outline: none;
  padding: 5px 8px;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.search-into button:hover {
  background: var(--color2) !important;
}

.position_navbar {
  position: absolute;
  right: 0;
  top: calc(42px - 28px);
}

@media (min-width: 768px) {
  .position_navbar {
    top: calc(50px - 23px);
  }
}

button.navbar-toggler .fa-navicon {
  color: #000;
  font-size: 24px;
}

.menu ul.navbar-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.svg-icon img {
  width: 28px;
  height: 28px;
}

.nav-search-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../images/nav-ss-ico.svg) no-repeat center center;
  background-size: 100% 100%;
  transform: translateY(4px);
  margin-left: 3px;
}

.nav-item {
  display: flex;
  flex-direction: column;
}

.navbar-nav li.nav-item:nth-child(1) {
  margin-left: 0 !important;
}

@media (min-width: 992px) {
  .nav-item {
    margin: 0 5px;
  }
}

@media (min-width: 1200px) {
  .nav-item {
    height: 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

@media (min-width: 1400px) {
  .nav-item {
    margin: 0 10px;
  }
}

.nav-link {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  padding: 2px !important;
  margin: 0;
  position: relative;
}

@media (min-width: 1200px) {
  .nav-link {
    font-size: 15px;
    border-bottom: none;
    color: #444;
  }
}

.nav-link:hover,
.nav-link.active {
  color: var(--color1) !important;
}

.nav-item::after,
.nav-link::after {
  display: none;
}

.nav-link a {
  margin: 0;
  padding: 0;
}

.nav-item .nav-link .fa {
  color: #6080b5;
  font-size: 17px;
  font-weight: bold;
}

.nav-item .nav-link .fa.fa-search {
  font-size: 14px;
  color: #40a12a;
}

@media (max-width: 1200px) {
  .nav-item {
    margin: 0px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 0;
    color: #444 !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--color1) !important;
  }

  .nav-link::before {
    display: none;
  }

  .nav-item.dropdown ol li a {
    color: #666 !important;
    font-size: 14px;
  }

  .nav-item.dropdown ol li a .fa {
    margin-right: 5px;
  }

  .nav-item.dropdown ol li a:hover {
    color: #45bd2a !important;
  }

  .nav-item.dropdown ol li a:hover .fa {
    color: var(--color2) !important;
  }

  .nav-item.dropdown ol {
    padding-left: 10px;
    /* margin-top: 10px; */
  }
}

.navbar-toggler .fa {
  color: #fff;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.btn-close {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
}

.btn-close::before,
.btn-close::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 70%;
  background-color: var(--color1);
}

.btn-close::before {
  transform: rotate(45deg);
}

.btn-close::after {
  transform: rotate(-45deg);
}

.btn-close:focus {
  outline: none;
  box-shadow: none;
}

.btn-close:hover {
  transform: rotate(180deg);
}

.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  right: -10px;
  top: -10px;
  width: 50px;
  height: 50px;
  background-color: #1a63cc;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  z-index: 9;
}

@media (max-width: 414px) {
  .captcha-box {
    transform: scale(0.8);
    margin-left: -40px;
  }
}

.img-style {
  text-transform: uppercase;
  font-size: 14px;
}

.img-style img {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

.dropdown-style {
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0) !important;
  border-color: rgba(0, 0, 0, 0) !important;
  width: 120px;
}

.dropdown-item-style {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  color: #fff;
}

.menu-down {
  left: auto !important;
}

.menu-down .dropdown-menu {
  font-size: 18px;
  color: #333;
}

.menu-down .dropdown-item:hover {
  background-color: #1a63cc !important;
  color: #fff;
}

.menu-down {
  display: none;
  top: 100%;
}

.nav-item.dropdown:hover .menu-down {
  display: block;
}

.mobile_ol {
  display: none;
  margin-top: 6px !important;
}

.mobile_ol li a {
  text-transform: capitalize;
}

.smail_mobile {
  display: flex;
  flex-direction: column;
  /* flex-direction: row; */
  /* flex-wrap: wrap; */
}

.smail_mobile li {
  margin-bottom: 6px;
}

.smail_mobile li a {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-transform: capitalize;
}

.off-btn {
  background-color: var(--color2) !important;
  border: none;
}

.off-btn .fa {
  color: #fff;
}

.offcanvas-backdrop {
  background-color: rgba(0, 0, 0, 0.95);
}

.offcanvas {
  background-color: white;
}

.offcanvas.offcanvas-end {
  width: 100%;
  height: 500px;
  left: 0;
  transform: translateX(-100%);
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
}

@media (min-width: 768px) {
  .offcanvas.offcanvas-end {
    width: 40%;
  }
}

.offcanvas-lang a {
  font-size: 14px;
  color: #666;
}

.offcanvas-lang a.active {
  color: #1a63cc;
}

.offcanvas-header {
  padding-bottom: 6px;
}

.mobile-logo img {
  width: auto;
  height: 80px;
}

.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    display: flex;
    align-items: center;
  }

  .nav-item.dropdown ol {
    list-style-type: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-top: 2px solid #40a12a;
    max-width: 230px;
    min-width: 150px;
    width: calc(25vw - 10px);
    z-index: 1000;
  }

  .width-210 {
    width: 220px !important;
  }

  .width-200 {
    width: 208px !important;
  }

  .width-180 {
    width: 188px !important;
  }

  /* .web-width {
    max-width: 220px !important;
  } */

  .nav-item.dropdown ol li {
    padding: 2px 0;
  }

  .nav-item.dropdown ol li:last-child {
    margin-bottom: 0;
  }

  .nav-item.dropdown ol li a {
    display: block;
    white-space: nowrap;
    font-size: 15px;
    color: #666;
    padding: 0 14px;
    text-transform: capitalize;
    position: relative;
  }

  .nav-item.dropdown ol li:hover a {
    color: #45bd2a;
  }

  .nav-item.dropdown ol li a i.fa {
    font-size: 16px;
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    color: #111;
  }

  .nav-item.dropdown ol li:hover a i.fa {
    margin-right: 5px;
    color: #6080b5;
  }

  .nav-item.dropdown:hover ol {
    display: block;
  }

  ul.web_menu2 {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 0;
    background-color: #fff;
    min-width: 150px;
    width: 220px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  ul.web_menu2 li a,
  ul.web_menu2 li a i.fa {
    color: var(--text-color) !important;
  }

  ul.web_menu2 li:hover a {
    color: var(--color2) !important;
  }

  ul.web_menu2 li:hover a i.fa {
    color: var(--color2) !important;
  }

  .nav-item.dropdown ol li.dropdown:hover ul.web_menu2 {
    display: block;
  }

  .nav-item.dropdown ol li {
    margin-bottom: 2px;
  }
}

.nav-item.dropdown ol li {
  margin-bottom: 6px;
}

.nav-item.dropdown .dropdown-toggle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0) !important;
}

.nav-item.dropdown .dropdown-toggle::after {
  transform: rotate(-90deg);
  transition: all 0.3s ease-in-out;
}

.nav-item.dropdown .dropdown-toggle.show::after {
  transform: rotate(0deg);
}

ul.dropdown-menu>li>.dropdown-item {
  color: rgba(255, 255, 255, 0.5) !important;
  background-color: rgba(0, 0, 0, 0) !important;
  font-size: 14px !important;
}

ul.dropdown-menu>li>.dropdown-item:hover {
  color: #fff !important;
}

#back-to-top {
  display: none;
}

#back-to-top.show {
  display: block;
}

.back-to-top {
  position: fixed;
  right: 2%;
  bottom: 6%;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(180deg, #5372a2, var(--color2));
  display: flex;
  justify-content: center;
  align-items: center;
  /* transition: all 0.1s ease-in-out; */
  z-index: 9;
}

.back-to-top svg {
  width: 30px;
  height: 30px;
}

.back-to-top:hover {
  background-color: rgb(64, 161, 42);
  background-image: none;
}

.navbar-toggler-icon {
  width: 26px;
  height: 26px;
}

.btnMenu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
}

.btnMenu span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color1);
  margin: 3px 0;
  transition: all 0.3s ease-in-out;
}

.btnMenu span:nth-child(2) {
  width: 20px;
  transition: all 0.3s ease-in-out;
}

.btnMenu:hover span {
  width: 20px;
}

.btnMenu:hover span:nth-child(2) {
  width: 28px;
}



.btn-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-nav-link {
  display: inline-block;
  margin: 5px 0;
  padding: 8px 16px;
  border: 1px solid var(--color1);
  border-radius: 100px;
  font-size: 16px;
  color: var(--color1);
  text-transform: capitalize;
  text-align: center;
  min-width: 240px;
  transition: all 0.3s ease-in-out;
}

.btn-nav-link:hover {
  background-color: var(--color1);
  border-color: var(--color1);
  color: #fff;
}

.offcanvas-body {
  justify-content: space-between;
}

.offcanvas-body .share {
  align-items: start;
}

/* banner */

.banner {
  width: 100%;
  height: 80vh;
  /* min-height: 260px; */
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

@media (min-width: 992px) {
  .banner {
    height: 90vh;
  }
}

@media (min-width: 1200px) {
  .banner {
    min-height: 600px;
    height: 600px;
  }
}

@media (min-width: 1600px) {
  .banner {
    min-height: 750px;
    height: 750px;
  }
}

.prev-style::after,
.next-style::after {
  font-size: 24px;
  color: #fff;
  transition: all 0.4s ease-in-out;
}

.prev-style:hover::after,
.next-style:hover::after {
  color: rgba(255, 255, 255, 0.5);
}

.pag-style {
  bottom: 10px !important;
  padding-right: 5%;
  text-align: end;
  z-index: 1;
}

@media (min-width: 992px) {

  .prev-style::after,
  .next-style::after {
    font-size: 30px;
  }

  .pag-style {
    bottom: 60px !important;
  }
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
}

.swiper-img,
.swiper-img img {
  width: 100%;
  height: 100%;
}

.swiper-img img {
  background-size: 100% 100%;
  object-fit: cover;
}

.swiper-img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 4000ms linear;
  -moz-transition: all 4000ms linear;
  -ms-transition: all 4000ms linear;
  -o-transition: all 4000ms linear;
  transition: all 4000ms linear;
  object-fit: cover;
}

@media (min-width: 576px) {
  .banner .swiper-slide-active .swiper-img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.swiper-img {
  position: relative;
  overflow: hidden;
  /* z-index: 1; */
}

.swiper-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  /* background: linear-gradient(-252.4deg,
      rgba(0, 43, 55, 0.1) 40.01%,
      #003715 100.01%); */
      background: linear-gradient(-252.4deg,
      rgba(0, 43, 55, 0.1) 40.01%,
      rgba(0, 43, 55, 0.5) 100.01%);
  z-index: 0;
}

@media (max-width: 575px) {
  .swiper-img::after {
    background: linear-gradient(90deg,
      rgba(0, 43, 55, 0.1) 24.01%,
      rgba(0, 43, 55, 0.5) 100.01%);
  }
}

.w-slider {
  width: 55%;
  height: 100%;
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 10px 300px 10px;
}

@media (min-width: 576px) {
  .w-slider {
    width: 100%;
    justify-content: flex-start;
    margin-top: 40px;
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .w-slider {
    right: 5%;
  }
}

@media (min-width: 1200px) {
  .w-slider {
    width: 800px;
  }
}

.swiper-style {
  display: inline-block;
}

.swiper-style h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  text-transform: capitalize;
}

.swiper-style-1 h2 {
  font-size: 18px;
  text-align: end;
  padding-right: 10px;
}

.swiper-style p {
  font-size: 17px;
  color: #fff;
  margin-top: 20px;
  padding-left: 3px;
}

@media (min-width: 321px) {
  .swiper-style-1 h2 {
    font-size: 24px;
  }
}

@media (min-width: 414px) {
  .swiper-style h2 {
    font-size: 38px;
  }

  .swiper-style-1 h2 {
    font-size: 26px;
  }
}

@media (min-width: 768px) {
  .swiper-style h2 {
    font-size: 40px;
  }
}

@media (min-width: 1200px) {
  .swiper-style h2 {
    font-size: 50px;
  }
}

.swiper-video {
  position: relative;
}

.swiper-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background: linear-gradient(252.4deg,
      rgba(0, 43, 55, 0.1) 40.01%,
      #003715 100.01%);
}

.swiper-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .swiper-video video {
    object-fit: cover;
    object-position: left center;
  }
}

.video-txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-txt-box .container {
  height: 100%;
}

.video-txt-info {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .video-txt-info {
    width: 60%;
    padding-bottom: 240px;
  }
}

@media (min-width: 1024px) {
  .video-txt-info {
    padding-bottom: 80px;
  }
}

/* home css */

.plate {
  padding: 30px 0 60px;
}

@media (min-width: 1024px) {
  .plate {
    padding: 40px 0 80px;
  }
}

.top-job-search {
  width: 100%;
}

.top-job-search {
  position: absolute;
  bottom: 30px;
  z-index: 9;
}

.job-search-box {
  display: inline-block;
  width: 70%;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .job-search-box {
    width: 100%;
    margin: 10px 0 0;
    padding-left: 30px;
    padding-right: 30px;
    box-shadow: none;
  }

  .btn-search {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .job-search-box {
    padding: 10px;
  }
}

.job-search-info-in {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  padding: 5px;
}

@media (max-width: 991.99px) {
  .job-search-info-in {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .job-search-info-in .form-select {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

.job-search-info1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.job-search-info-in input {
  border: none;
  background-color: rgba(0, 0, 0, 0);
  padding: 2px;
  width: 100%;
}

@media (min-width: 768px) {
  .job-search-info-in input {
    padding: 6px;
  }
}

.job-search-info-in input::placeholder {
  color: #999;
}

.job-search-info-in .fa {
  padding-left: 8px;
  padding-right: 8px;
  color: #333;
}

.form-select {
  color: #999;
  border: none;
  padding-left: 5px;
  padding-right: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23555555' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select.selected {
  color: #333;
}

.small-select {
  max-height: 200px;
  overflow-y: auto;
}

.form-select:focus {
  box-shadow: none;
}

.btn-search {
  background-color: var(--color2);
  position: relative;
  transition: all 0.3s ease-in-out;
}

.btn-search::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: -6px;
  left: auto;
  right: -8px;
  width: 30px;
  height: 30px;
  background-image: url(../images/mdi_menu-right.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-45deg);
}

.subsear {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  width: 100%;
  color: #fff;
  font-weight: bold;
  padding: 6px 12px;
  transition: all 0.3s ease-in-out;
}

.btn-search:hover {
  background-color: var(--color1);
}

@media (max-width: 767.98px) {
  .btn-search .subsear {
    padding: 2px 12px;
  }
}

.add-job {
  display: flex;
  width: 30px;
  height: 30px;
  background-image: url(../images/add-job.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.job-search-box .row>div {
  padding-left: 6px;
  padding-right: 6px;
}

@media (min-width: 1200px) {
  .w-style {
    width: 85%;
  }

  .w-tr {
    transform: translateX(-30px);
  }
}

.why-choose {
  background: linear-gradient(180deg, #cbcbcb 0%, #fafafa 90%, #fff 100% 100%);
}

.why-choose1 {
  padding-bottom: 0px;
}

.why-choose2 {
  /* background: linear-gradient(0deg, #fafafa 0%, rgba(203, 203, 203, 0.45) 50%, #fafafa 90%, #fff 100% 100%); */
  background: linear-gradient(0deg, #dfdfdf 0%, #fafafa 90%, #fff 100% 100%);
}

.plate-ss {
  background: linear-gradient(180deg, #cbcbcb 0%, #fafafa 90%, #fff 100% 100%);
}

.whycan h6 {
  color: var(--color2);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 35px;
}

.whycan span {
  font-size: 1.875rem;
  line-height: 32px;
  color: var(--color2);
}

.whycan p {
  font-size: 1.875rem;
  line-height: 36px;
  color: var(--color2);
  position: relative;
}

.gm-heading-content {
  display: inline-block;
  padding-right: 44px;
  overflow: hidden;
  margin-bottom: 15px;
}

.gm-heading-content h2 {
  font-size: 0.95rem;
  color: var(--color2);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: initial;
}

.gm-plate-info {
  margin-top: 20px;
}

.gm-plate-info-small {
  padding: 0 16px;
}

@media (min-width: 768px) {
  .gm-plate-info {
    margin-top: 30px;
  }

  .gm-plate-info-small {
    padding: 0;
  }
}

.sercard {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  min-height: 140px;
  height: 140px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.sercard::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url(../images/mdi_menu-right.svg);
  transform: rotate(-45deg);
  z-index: 2;
}

.sercard1 {
  background-image: url(../images/ser1.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.sercard2 {
  background-image: url(../images/ser2.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.sercard3 {
  background-image: url(../images/ser3.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.sercard4 {
  background-image: url(../images/ser4.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}


@media (min-width: 768px) {
  .sercard {
    min-height: 200px;
    height: 290px;
  }
}

.sercard .sercard-title {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(28, 70, 140, 0.7);
  padding: 10px 20px 15px;
  z-index: 1;
  transform: translateY(58%);
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .sercard .sercard-title {
    transform: translateY(62%);
  }
}

.sercard .sercard-title h3 {
  text-transform: capitalize;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .sercard .sercard-title h3 {
    font-size: 20px;
  }
}


.sercard .sercard-title p {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}

.sercard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sercard:hover .sercard-title {
  transform: translate(0, 0);
}

/* today */
.today-af {
  background-color: var(--color1);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 1);
}

.today-af h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 992px) {
  .today-af h3 {
    font-size: 50px;
  }
}

.today-af h3 strong {
  background: linear-gradient(-90deg,
      rgb(94, 201, 70) 0%,
      rgb(222, 252, 215) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.today-af p {
  font-size: 24px;
  color: #fff;
  margin-top: 20px;
}

.today-btn {
  margin-top: 40px;
}

.btn-find {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: #fff;
  font-size: 18px;
  font-weight: 400;
  color: #555;
  transition: all 0.3s ease-in-out;
}

.btn-find:last-child {
  margin-right: 0;
}

.btn-find:hover {
  border-color: #fff;
  background-color: var(--color1);
  color: #fff;
}

.btn-find1 {
  background-color: #ddd !important;
  border-color: #ddd !important;
  color: #1a63cc !important;
}

.btn-find1:hover {
  color: #40a12a !important;
}

.today-ar {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 12px;
  display: flex;
  align-items: center;
}

.today-ar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.today-af,
.today-ar {
  height: 100%;
}

@media (min-width: 992px) {
  .today-af {
    padding: 35px;
  }

  .btn-find {
    display: inline-block;
    min-width: 150px;
    margin-right: 10px;
  }

  .today-ar {
    margin-top: 0;
  }
}

.testimonial {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(252.4deg,
      rgba(0, 43, 55, 0.1) 40.01%,
      #003715 100.01%);
}

.testimonial img {
  object-fit: cover;
}

.position-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.position-box .container {
  height: 100%;
}

.swiper-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.testi-whycan {
  padding-top: 50px;
}

@media (min-width: 768px) {
  .testi-whycan {
    padding-top: 80px;
  }
}

.testi-whycan h6 {
  color: #fff !important;
  font-size: 18px;
}

.button-box {
  position: absolute;
  bottom: 7%;
  left: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .button-box {
    bottom: 10%;
  }

  .testi-whycan h6 {
    font-size: 24px;
  }
}

.testiNext,
.testiPrev {
  position: relative !important;
  width: auto;
  height: auto;
  padding: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  z-index: 1;
  /* Safari fix for vertical centering */
  -webkit-box-align: center;
  -webkit-box-pack: center;
}

.testiNext img,
.testiPrev img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

@media (max-width: 500px) {
  .testiNext img,
  .testiPrev img {
    width: 34px;
    height: 34px;
  }
}

.testiPrev img {
  transform: rotate(180deg);
}


.testi-content {
  width: auto;
  position: absolute;
  bottom: 100px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .testi-content {
    /* width: 70%; */
    bottom: 20%;
  }
}

.testi-content p {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}

@media (min-width: 768px) {
  .testi-content p {
    font-size: 30px;
    line-height: 38px;
  }
}

.testi-content div {
  display: block;
  margin-top: 30px;
  font-size: 18px;
  color: #fff;
}

@media (min-width: 768px) {
  .testi-content div {
    margin-top: 50px;
  }
}

.testimonial img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .testimonial img {
    height: 750px;
  }
}

@media (min-width: 1024px) {
  .testimonial img {
    height: 800px;
  }
}

.gm-info-flex {
  display: flex;
  flex-direction: column;
}

.gm-info-flex a {
  display: block;
  margin: 2px 0;
  color: var(--color2);
  font-size: 20px;
  font-weight: 500;
  cursor: auto;
  transition: all 0.3s ease-in-out;
}

/* .gm-info-flex a:hover {
  color: var(--color1);
  letter-spacing: .005rem;
  transform: translateX(3px);
  text-decoration: underline;
} */

/* news */

.new-img {
  border-radius: 20px;
  overflow: hidden;
}

.new-img img {
  transition: all 0.3s ease-in-out;
}

.item-new:hover .new-img img {
  transform: scale(1.1);
}

.item-new-info {
  margin-top: 14px;
}

.item-new-info h3 {
  color: #222;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s ease-in-out;
}

.item-new-info h3:hover {
  color: var(--color1);
}

.item-new-info span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.item-new-info span i {
  display: block;
  height: 49px;
  line-height: 49px;
  font-style: normal;
  color: #666;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

.swiper-wrapper {
  height: auto;
}

.new-swiper,
.pa-swiper {
  padding: 0 24px;
}

.pa-swiper {
  position: relative;
}

.pa-swiper::after,
.pa-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100px;
  z-index: 10;
}

@media (min-width: 768px) {

  .pa-swiper::after,
  .pa-swiper::before {
    width: 200px;
  }
}

.pa-swiper::before {
  left: 0;
  background-image: linear-gradient(to right, #fff 20%, transparent);
}

.pa-swiper::after {
  right: 0;
  background-image: linear-gradient(to left, #fff 20%, transparent);
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0;
}

.newsPrev {
  left: -4px;
  top: 38% !important;
}

.newsNext {
  right: -4px;
  top: 38% !important;
}

.newsPrev svg,
.newsNext svg {
  width: 30px;
  height: 30px;
}

.newsPrev svg {
  transform: rotate(180deg);
}

.more-btn {
  position: absolute;
  right: -8px;
  bottom: -6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.more-btn svg {
  transform: translateY(-1px);
  transition: all 0.3s ease-in-out;
}

.more-btn:hover svg {
  transform: rotate(-45deg) translateY(-6px);
}

.more-btn-2 {
  color: var(--color1) !important;
}

.more-btn-2 span {
  transform: translateY(-3px);
}

.pa-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 80px;
  height: 100px;
  padding: 0 10px;
  background-color: #fff;
  overflow: hidden;
}

.pa-img::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 40px;
  background-color: #ccc;
}

.prev-1,
.next-1 {
  background-color: #fff;
  height: 100%;
  top: calc(50px - 30%);
}

.prev-1 svg {
  transform: rotate(180deg);
}

.footer {
  background: linear-gradient(0deg, #fff 32.11%, #d2d3d5 102.17%);
  padding: 20px 0 10px;
  /* margin-top: 30px; */
  overflow: hidden;

}

@media (min-width: 768px) {
  .footer {
    margin-top: 60px;
  }
}

.footer-nav {
  background-color: rgba(0, 0, 0, 0) !important;
  border: none;
  color: #666 !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
}

.footer-nav:hover {
  color: #40a12a !important;
}

.footer-nav::after {
  display: none;
}

.footer-down {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .footer-down {
    margin-bottom: 12px;
  }
}

.footer-down .dropdown-menu .dropdown-item {
  color: #666 !important;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 2px 12px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767.98px) {
  .footer-down .dropdown-menu .dropdown-item {
    white-space: unset;
    padding-left: 1px;
  }

  .footer-nav {
    padding-left: 0;
    padding-right: 0;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.footer-down .dropdown-menu .dropdown-item:hover {
  color: var(--color1) !important;
  padding-left: 15px;
}

.footer-down .dropdown-menu.show {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  position: relative !important;
  transform: translate3d(0px, 0px, 0px) !important;
}

@media (min-width: 768px) {
  .footer-nav::after {
    display: none;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copy {
  color: #333;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.copy a {
  color: #333 !important;
  text-decoration: underline;
}

.share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .share {
    align-items: flex-end;
    margin-bottom: 0;
  }
}

.share span {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  text-transform: capitalize;
}

.share ul li {
  margin: 0 4px;
}

.share ul li:first-child {
  margin-left: 0;
}

.share ul li:last-child {
  margin-right: 0;
}

.menu_web {
  display: none;
}

.menu_mobile {
  display: block;
}

@media (min-width: 1200px) {
  .menu_web {
    display: block;
    padding: 10px 10px 8px 8px;
  }

  .menu_mobile {
    display: none;
  }
}

/* inner page */


.breadcrumb {
  padding: 10px 0;
  margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  font-size: 14px;
}

.breadcrumb-item a {
  color: #444;
}

.breadcrumb-item.active {
  color: var(--color2);
  font-weight: bold;
  text-decoration: underline;
}

.inner-main {
  padding: 30px 0 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .inner-main {
    padding: 60px 0 0;
  }
}

.contact {
  position: relative;
  z-index: 1;
}

.map {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  border: 3px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.map iframe {
  width: 100%;
  height: 400px;
}

.contact-title h3 {
  font-size: 24px;
  display: block;
  margin: 0 0 10px 0;
  font-weight: bold;
  color: var(--color2);
}

@media (min-width: 768px) {
  .col-md-style {
    display: flex;
    justify-content: flex-end;
  }
}

.contact-list li {
  margin-bottom: 28px;
}

@media (max-width: 767.9px) {
  .contact-list li {
    margin-bottom: 14px;
  }
}

.contact-list h5 {
  color: var(--color2);
  font-weight: 700;
}

.contact-list h6 {
  color: var(--color2);
  font-weight: 700;
}

.contact-list span {
  display: block;
  height: 15px;
}

.contact-list p {
  margin-bottom: 5px;
  font-size: 16px;
  color: #111;
}

.contact-list a {
  color: var(--color2);
  text-decoration: underline;
}

.contact-list a:hover {
  text-decoration: none;
}

.contact-info svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.contact-form h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.contact-form p {
  font-size: 16px;
  color: #666;
  text-align: center;
  display: block;
  margin: 8px 0;
}

@media (min-width: 768px) {
  .contact-form h4 {
    font-size: 26px;
  }
}

.contact-form form {
  margin-top: 30px;
}

.contact-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px;
  color: #333;
}

.contact-form .form-control::placeholder {
  color: #666;
}

@media (max-width: 767.98px) {

  .contact-form .form-control,
  .contact-form .form-control::placeholder {
    font-size: 14px;
  }
}

.btn-primary {
  position: relative;
  overflow: hidden;
  outline: none;
  background-color: var(--color2) !important;
  border-color: var(--color2) !important;
  text-transform: capitalize;
  padding: 6px 30px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: var(--color1) !important;
  border-color: var(--color1) !important;
}

@media (min-width: 768px) {
  .btn-primary {
    padding: 12px 30px;
  }
}

@keyframes shine {
  100% {
    left: 200%;
  }
}

.item-group {
  background-color: #f4f4f4;
  padding: 15px 12px;
}

@media (min-width: 768px) {
  .item-group {
    padding: 24px;
  }
}

.item-group-title {
  color: var(--color2);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media (max-width: 767px) {
  .item-group-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.item-group-title:hover {
  color: var(--color1);
}

.form-label {
  color: #333;
}

.form-label i {
  color: red;
}

.item-group .form-control,
.item-group .form-select {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  padding: 6px;
  background-color: #fff;
}

@media (min-width: 992px) {

  .item-group .form-control,
  .item-group .form-select {
    padding: 8px;
  }
}

.group-check {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .group-check {
    margin-top: 10px;
  }
}

.group-check .form-check {
  width: 33.333%;
}

.group-check2 .form-check {
  width: 100% !important;
}

.group-check2 .form-check-label {
  font-size: 14px;
  padding-left: 6px;
}

.form-check-input:checked {
  background-color: var(--color2);
  border-color: var(--color2);
}

.form-check-label {
  text-transform: capitalize;
}

.file-group {
  display: flex;
  align-items: center;
}

.file-btn {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.35) !important;
  background: #f4f4f4 !important;
  color: #000 !important;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  transition: all 0.3s ease-in-out;
}

.file-btn:hover {
  color: var(--body-color) !important;
  background: var(--color2) !important;
  border-color: var(--color2) !important;
}

.file-btn svg {
  fill: #000 !important;
  transition: all 0.3s ease-in-out;
}

.file-btn:hover svg {
  fill: #fff !important;
}

.file-group span {
  display: inline-block;
  font-size: 16px;
  color: #666;
  margin-left: 12px;
}

.text-muted {
  color: #333 !important;
  font-size: 13px;
  margin-top: 5px;
  font-style: italic;
}

.text-muted a {
  color: var(--color2) !important;
  text-decoration: underline;
}

.text-muted a:hover {
  text-decoration: none;
}

.gr {
  display: none;
}

.group-check3 .form-check {
  width: 50%;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .group-check3 .form-check {
    width: 33.333%;
  }
}

@media (min-width: 992px) {
  .group-check3 .form-check {
    width: 25%;
  }
}

.form-text {
  font-size: 12px;
  color: #666;
  line-height: 20px;
  font-style: italic;
}

.form-text a {
  color: var(--color2);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.form-text a:hover {
  text-decoration: none;
}

.let-connect {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .let-connect {
    max-width: 28rem;
  }
}

.let-connect h2 {
  color: var(--color2);
  font-weight: 700;
}

.let-connect h6 {
  text-transform: uppercase;
}

.let-connect h6 span {
  display: block;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}

.let-connect h6 span::after,
.let-connect h6 span::before {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid #40a12a;
  margin: auto;
}

.let-connect h6 span::before {
  margin-right: 18px;
}

.let-connect h6 span::after {
  margin-left: 18px;
}

.sign-in-up {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sign-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #40a12a;
  border-radius: 20px;
  padding: 10px 20px;
  margin: 5px 0;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 60px;
  transition: all 0.3s ease-in-out;
}

.sign-btn:hover {
  background-color: rgba(64, 161, 42, 0.05);
  cursor: pointer;
}

.sign-info {
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-info svg {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.sign-info span {
  font-weight: 400;
  color: #222;
  font-size: 18px;
}

.contcat-banner {
  background-color: #fff;
}

.contcat-banner::after {
  display: none;
}

.contcat-inImg img {
  width: 100%;
  object-fit: cover;
}

/* 滾動文字動畫效果樣式 */
.scroll-text-demo {
  padding: 80px 0;
}

.scroll-text-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color2);
  margin-bottom: 20px;
}

/* 字符逐個顯現效果 */
.scroll-reveal-text {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color2);
  min-height: 120px;
  position: relative;
  hyphens: none;
}

.scroll-reveal-text .char {
  display: inline;
  transition: color 0.4s ease-in-out;
  position: relative;
  opacity: 1;
}

.scroll-reveal-text .char.default {
  color: #cccccc;
}

.scroll-reveal-text .char.visible {
  color: var(--color2);
}

/* 打字机光标样式 */
.scroll-reveal-text .cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background-color: var(--color2);
  animation: blink 1s infinite;
  vertical-align: text-bottom;
  position: relative;
  top: 0;
  left: 0;
  margin: 0 1px;
}

.scroll-reveal-text .cursor.hidden {
  opacity: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* 避免單詞斷行的樣式 */
.scroll-reveal-text .word {
  display: inline-block;
  white-space: nowrap;
  vertical-align: baseline;
  margin-right: 0.3em;
}

.scroll-reveal-text .word:last-child {
  margin-right: 0;
}

/* 單詞間空格字符 — 跨平台統一寬度，避免 iOS/Android &nbsp; 渲染差異 */
.scroll-reveal-text .char-space {
  display: none;
}

/* 確保整個容器也支持正確的換行 */
.scroll-reveal-text {
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  word-spacing: 0;
  text-align: left !important;
  /* 跨平台字體渲染一致性 */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* 單詞淡入效果 */
.word-fade-text {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color2);
}

.transition-opacity {
  opacity: 0;
  display: inline-block;
  margin-right: 8px;
  transition: opacity 0.6s ease-in-out;
}

.transition-opacity.visible {
  opacity: 1;
}

/* 響應式設計 */
@media (max-width: 768px) {
  .scroll-reveal-text {
    font-size: 24px;
  }

  .word-fade-text {
    font-size: 20px;
  }

  .typewriter-text {
    font-size: 20px;
  }

  .scroll-text-title {
    font-size: 20px;
  }
}

.mobile_m_search {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  width: 240px;
  height: 39px;
  overflow: hidden;
  padding: 2px 0;
}

.mobile_m_search input {
  width: calc(240px - 20px - 20px);
}

.box-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 1.5rem;
  height: 100%;
  border-radius: 20px;
}

.box-color {
  background: linear-gradient(90deg, #f1f1f1 8.11%, #cfcfcf 99.83%);
}

.box-item .icon {
  width: 50px;
  height: 50px;
  /* background-color: #fafafa; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
}

.box-item h4 {
  text-align: center;
  color: var(--color2);
  font-size: 24px;
}

.box-item span {
  display: block;
  width: 70%;
  height: 2px;
  background-color: var(--color2);
  margin: 20px 0;
}

.box-item p {
  text-align: center;
  font-size: 16px;
}

.gm-register-box {
  background: linear-gradient(0deg, #30535C 0%, #002B37 100%);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.register-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 12px;
}

@media (min-width: 992px) {
  .register-info {
    max-width: 700px;
    width: 70%;
  }
}

.register-info h3 {
  font-size: 28px;
  /* font-weight: 600; */
  color: #eee;
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .register-info h3 {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .register-info h3 {
    font-size: 42px;
  }
}

.register-info p {
  font-size: 16px;
  font-weight: 400;
  color: #eee;
  margin-bottom: 20px;
  text-align: center;
}

.btn-register {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #002B37 !important;
}

.btn-register:hover {
  background-color: rgba(0, 0, 0, 0) !important;
  border-color: #fff !important;
  color: #fff !important;
}



.setting-plate {
  background-color: #f9f9f9;
  padding: 60px 0;
}

@media (min-width: 992px) {
  .setting-plate {
    padding: 100px 0;
  }
}

.setting-wrap {
  display: flex;
  flex-direction: row;
}

.dashboard-menu {
  max-width: 290px;
  width: 290px;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid var(--color2);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  transition: all .3s ease-in-out;
}

.dashboard-menu-item a {
  display: flex;
  align-items: center;
  padding: 15px 0px;
  margin: 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 17px;
  font-weight: 600;
  color: #666;
  transition: all .3s ease-in-out;
}

.dashboard-menu-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.dashboard-menu-item:hover a {
  transform: translateX(2px);
  color: var(--color1);
}

.dashboard-menu-item a.active {
  color: var(--color1);
}

.dashboard-menu-item:last-child a {
  border-bottom: none;
}

.dashboard-menu-item a span.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  transition: all .3s ease-in-out;
}

.dashboard-menu-item a span.icon img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.dashboard-content {
  padding-left: 0px;
  width: 100%;
}

@media (min-width: 992px) {
  .dashboard-content {
    padding-left: 60px;
    width: calc(100% - 290px);
  }
}

.dashboard-content h2 {
  font-weight: 600;
}

.as-item-box {
  padding-top: 20px;
}

.as-item-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.as-item-box p,
.as-item-box ul li {
  font-size: 18px;
  color: #333;
}

.as-item-box p b {
  font-size: 20px;
  color: #000;
}

.as-item-box input {
  min-width: 280px;
  width: 100%;
  padding: 15px 10px;
}

.as-item-input {
  min-width: 280px;
  width: 100%;
}

@media (min-width: 768px) {
  .as-item-input {
    width: 400px;
  }
}

.btn-primary-green {
  background-color: var(--color1) !important;
  border-color: var(--color1) !important;
  color: #fff;
}

.btn-primary-green:hover {
  background-color: var(--color2) !important;
  border-color: var(--color2) !important;
}

.mobile-dash {
  border-radius: 50px;
  background-color: var(--color1) !important;
  border: 1px solid var(--color1) !important;
  font-size: 12px;
  font-weight: 600;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: -5px;
}

.mobile-dash-menu {
  background-color: rgba(255, 255, 255, 1);
  min-width: 180px;
  padding: 0;
  border: 1px solid var(--color2);
}

.mobile-dash-dropdown .mobile-dash-menu .dropdown-item {
  width: auto;
  color: var(--color1) !important;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.mobile-dash-dropdown .mobile-dash-menu li:last-child .dropdown-item {
  border-bottom: none;
}

.mobile-dash-dropdown .mobile-dash-menu .dropdown-item:hover {
  color: var(--color1) !important;
}

.mobile-dash-menu .dropdown-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

.mobile-dash-menu .dropdown-item .icon img {
  width: 15px;
  height: 15px;
  object-fit: cover;
}

.nav-pills-dash .nav-item {
  border-bottom: none;
}

.nav-link-dash {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: rgba(0, 0, 0, 0) !important;
  border-radius: 0 !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  text-transform: none;
}

.nav-link-dash.active {
  border-bottom: 2px solid var(--color1);
}

.user-img {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.user-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .user-img img {
    width: 150px;
    height: 150px;
  }
}

.as-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.as-form-item {
  width: 100%;
}

.form-label {
  display: block;
  font-size: 18px;
  font-weight: 400;
}

.as-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 10px;
}

.as-form .form-select {
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 12px 10px;
  background-color: #fff;
  color: #111;
}

.text-muted {
  display: block;
}

@media (max-width: 991.99px) {
  .over-box {
    overflow-x: auto;
  }

  .nav-pills-dash {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .nav-pills-dash .nav-item {
    margin-right: 20px;
  }

  .nav-pills-dash .nav-link-dash {
    white-space: nowrap;
  }
}

.as-option {
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.op-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  cursor: pointer;
}

.op-item.active {
  background-color: var(--color1);
}

.op-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background-color: #E5E6E2;
  border: 1px solid rgba(255, 255, 255, 1);
  margin-right: 5px;
}

.op-item.active .op-check {
  background-color: var(--color1);
}

.op-check .fa {
  display: none;
  font-size: 12px;
  color: #fff;
}

.op-item.active .op-check .fa {
  display: block;
}

.as-option .op-title {
  font-size: 14px;
}

.op-item.active .op-title {
  color: #fff;
}

.no-box {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px 20px;
}

.no-box svg {
  width: 40px;
  height: 40px;
  fill: #999 !important;
}

.no-box i {
  display: block;
  text-align: center;
  margin: 30px 0 20px;
  font-style: normal;
  color: #666;
}

.tab-pane-info input {
  padding: 12px 10px;
}

/* 多选组件样式 */
.clack-multiple {
  min-height: 50px;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.clack-multiple:empty::after {
  content: 'Please select options';
  color: #999;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.clack-multiple .selected-tag {
  display: inline-flex;
  align-items: center;
  background-color: var(--color1);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  animation: tagFadeIn 0.3s ease;
}

@keyframes tagFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.clack-multiple .selected-tag .close-icon {
  margin-left: 8px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.clack-multiple .selected-tag .close-icon:hover {
  transform: scale(1.2);
}

.multiselect {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-top: 4px;
  padding: 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.multiselect.show {
  display: block;
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.multiselect-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  user-select: none;
}

.multiselect-item:hover {
  background-color: #f5f5f5;
}

.multiselect-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  margin-right: 10px;
  transition: all 0.2s ease;
  position: relative;
}

.multiselect-item span::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.multiselect-item.selected span {
  background-color: var(--color1);
  border-color: var(--color1);
}

.multiselect-item.selected span::after {
  transform: rotate(45deg) scale(1);
}

/* 文件上传组件样式 */
.single-upload {
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  background-color: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.single-upload:hover {
  border-color: var(--color1);
  background-color: #f0f9ed;
}

.single-upload.drag-over {
  border-color: var(--color1);
  background-color: #e8f5e9;
  transform: scale(1.02);
}

.upload-text {
  display: block;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.upload-text i {
  color: var(--color1);
  font-weight: 600;
  font-style: normal;
  text-decoration: underline;
}

.upload-icon {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.single-upload:hover .upload-icon {
  color: var(--color1);
  transform: scale(1.1);
}

.file-preview {
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 15px;
  margin-top: 15px;
  animation: slideDown 0.3s ease;
}

.file-preview.show {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.file-info {
  display: flex;
  align-items: center;
  flex: 1;
}

.file-icon {
  font-size: 32px;
  color: var(--color2);
  margin-right: 15px;
}

.file-details {
  flex: 1;
}

.file-name {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin-bottom: 4px;
  word-break: break-all;
}

.file-size {
  font-size: 12px;
  color: #999;
}

.file-remove {
  cursor: pointer;
  color: #999;
  font-size: 20px;
  padding: 5px 10px;
  transition: all 0.2s ease;
  line-height: 1;
}

.file-remove:hover {
  color: #ff4444;
  transform: scale(1.2);
}

.upload-error {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.upload-error.show {
  display: block;
  animation: shake 0.3s ease;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

.legal-mobile-nav {
  position: relative;
  margin-bottom: 24px;
}

/* 响应式显示控制 - 移动端显示，桌面端隐藏 */
.legal-mobile-nav-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: var(--color2);
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.legal-mobile-nav-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.legal-mobile-nav-btn span:last-child {
  margin-bottom: 0;
}

/* 点击后按钮样式变化 */
.legal-mobile-nav-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.legal-mobile-nav-btn.active span:nth-child(2) {
  opacity: 0;
}

.legal-mobile-nav-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 移动端菜单容器 */
.legal-nav-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* 展开时的样式 */
.legal-nav-box.active {
  max-height: 600px;
}

/* 多标签效果样式 */
.legal-menu {
  list-style: none;
}

.legal-menu li {
  margin-bottom: 10px;
}

.legal-menu li a {
  display: block;
  padding: 12px 15px;
  color: var(--color2);
  text-decoration: none;
  transition: all 0.3s ease;
  /* background-color: #f8f9fa; */
  border-left: 3px solid transparent;
}

.legal-menu li a:hover,
.legal-menu li a.active {
  font-weight: 600;
  color: var(--color1);
}

/* 添加悬停效果 */
@media (min-width: 992px) {
  .legal-menu li a:hover {
    background-color: #f8f9fa;
    border-left: 3px solid var(--color1);
  }
}

/* 内容区域默认隐藏 */
.col-lg-8 [class^="legal-tab"] {
  display: none;
}

.col-lg-8 .legal-tab1 {
  display: block;
}

/* 响应式调整 */
@media (min-width: 992px) {
  .legal-mobile-nav-btn {
    display: none !important;
  }

  .legal-nav-box {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 991px) {
  .legal-menu li {
    margin-bottom: 8px;
  }

  .legal-menu li a {
    padding: 5px 12px 5px 0;
    font-size: 14px;
  }
}

.legal-tab {
  padding: 0 10px;
}

@media (min-width: 992px) {
  .legal-tab {
    padding: 0 20px;
  }

}

.legal-tab h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #444;
}

.legal-tab p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #666;
}

.legal-tab p strong {
  color: #444;
}

.legal-tab h5 {
  font-weight: 600;
  font-size: 16px;
  color: var(--color2);
}

.legal-tab a {
  color: #666;
  text-decoration: underline;
}

.legal-tab a:hover {
  text-decoration: none;
}

.txt-justify {
  display: block;
  margin: 30px 0;
  padding: 10px;
  font-size: 16px;
  background-color: #DFEBFA;
}

.txt-justify strong {
  color: #444;
}

.legal-tab ul {
  list-style-type: disc;
  color: #888;
}

.legal-tab ul li ol {
  list-style-type: lower-alpha;
}

.legal-tab ul li ol li ol {
  list-style-type: lower-roman;
}

.h--style {
  height: 50px;
}

@media (min-width: 768px) {
  .h--style {
    height: 100px;
  }
}

.max-900 {
  max-width: 900px;
  margin: 0 auto;
}


.main-width--600 {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.search-add {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.small-btn {
  padding: 8px 16px;
}

.gray-section {
  font-size: 16px;
  font-weight: bold;
  color: var(--color2);
}

.gray-section a {
  color: #1c468c;
  text-decoration: underline;
}

.cv-box {
  border: 2px solid var(--color1);
}

.cv-box,
.bg-gray {
  background-color: #F4F4F4;
  padding: 50px 40px;
  border-radius: 20px;
}

@media (max-width: 991px) {

  .cv-box,
  .bg-gray {
    padding: 30px 20px;
  }

}

.bg-gray .form-select {
  padding: .5rem .75rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
}

.cv-box h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}

.cv-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #888;
}

.accordion-item:first-of-type {
  border-radius: 0 !important;
}

.accordion-item {
  background-color: rgba(0, 0, 0, 0) !important;
  border: none !important;
}

.accordion-item .form-acc-button {
  border-radius: 0 !important;
  padding-left: 0;
  padding-right: 0;
}

.accordion-item .form-acc-button:not(.collapsed) {
  box-shadow: none !important;
}

.form-acc-button {
  font-weight: bold;
  font-size: 16px;
  color: var(--color2) !important;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.form-acc-button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color2);
  margin-left: 10px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: rotate(-45deg) translateY(2px) !important;
}

.form-acc-button:not(.collapsed)::after {
  display: none;
}

.form-acc-button:not(.collapsed) {
  background-color: rgba(0, 0, 0, 0) !important;
}

.accordion-from .accordion-body {
  padding-left: 0;
  padding-right: 0;
}

.accordion-from .table thead tr th {
  background-color: #D1D3D4;
}

.accordion-from .table tbody tr td.bcolor {
  background-color: #5081A4;
  color: white;
}

.accordion-from .table tbody tr td {
  font-size: 15px;
}

@media (max-width: 400px) {
  .accordion-from .table tbody tr td {
    font-size: 13px;
  }
}

.table1 thead tr th {
  background-color: #6E6F72;
  color: white;
}

.table tbody tr td {
  font-size: 15px;
}

.table tbody tr td i {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-style: normal;
}

.legal-tab ul li {
  color: #666;
}

.f--bold {
  font-weight: bold;
}

.rs-services {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.rs--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 20px;
  border: 1px solid #ced4da;
  background-color: #fff;
  max-width: 250px;
  height: 140px;
  width: 100%;
}

.rs--item span {
  display: flex;
  align-items: center;
}

.rs--item span img {
  width: 40px;
  height: 40px;
}

.rs--item p {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #5081A2;
  margin: 0;
}

.ul-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  list-style-type: none;
}

@media (min-width: 992px) {
  .ul-item li {
    width: calc(50% - 20px);
  }
}

.help-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 20px;
  background: linear-gradient(90deg, #EDF0F1 0%, #ABDADF 100%);
  border-radius: 20px;
}

.help-box span {
  color: #004678;
  text-align: center;
}

.help-box span:first-child {
  font-size: 16px;
  font-weight: bold;
}

.none-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.none-box i.fa {
  font-size: 16px;
  color: var(--color2);
}

.none-box span {
  color: #333;
}

.none-box a {
  color: var(--color2);
  text-decoration: underline;
}

.none-box a:hover {
  text-decoration: none;
}

.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #E7E8E9;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.benefits h5 {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: #E7E8E9;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
}

.benefits-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.benefits-list ul {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.benefits-list ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
}

@media (min-width: 992px) {
  .benefits-list ul li {
    width: 40%;
  }
}

.benefits-list ul li span {
  margin-right: 12px;
}

.links-group-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #40759A;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
}

.links-group ul li {
  padding: 8px 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.links-group ul li:hover {
  background-color: #eee;
}

.links-group ul li a {
  display: block;
  width: 85%;
  font-size: 15px;
  text-decoration: underline;
  color: #333;
}

.links-group ul li i {
  font-size: 15px;
  color: #333;
  font-style: normal;
  text-align: end;
  display: block;
  width: 15%;
}

@media (max-width: 575px) {
  .links-group ul li a {
    width: 60%;
  }

  .links-group ul li i {
    width: 40%;
  }
}

/* Inner banner css */
.inner-banner {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  /* height: 13vh; */
  padding-bottom: 20px;
  z-index: 1;
}

@media (max-width: 575.98px) {
  .inner-banner {
    height: 40px;
  }
}

.inner-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .inner-banner-text {
    width: 70%;
  }
}

.inner-banner-text h2 {
  color: #fff;
  font-size: 34px;
}

.inner-banner-text p {
  color: #fff;
  font-size: 17px;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .inner-banner-text h2 {
    font-size: 44px;
  }
}

@media (min-width: 1200px) {
  .inner-banner-text h2 {
    font-size: 56px;
  }
}

.inner-banner-overlay {
  position: absolute;
  bottom: -10px;
  left: 0;
}

.inner-banner-overlay h2 {
  font-size: 24px;
  color: var(--color2);
  text-transform: capitalize;
}

.inner-banner-overlay h2 strong {
  font-weight: 800;
}

.inner-banner-overlay h2 svg {
  width: 10px !important;
  height: 10px !important;
}

@media (min-width: 768px) {
  .inner-banner-overlay h2 {
    font-size: 28px;
  }

  .inner-banner-overlay h2 svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (min-width: 1024px) {
  .inner-banner-overlay h2 {
    font-size: 32px;
  }
}

@media (min-width: 1400px) {
  .inner-banner-overlay h2 {
    font-size: 36px;
  }
}

.inner-video {
  width: 100%;
  height: auto;
  /* max-height: 400px;
  min-height: 400px; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inner-video video,
.inner-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-video-crp img {
  object-position: right center;
}

.inner-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(252.4deg,
      rgba(0, 43, 55, 0.1) 40.01%,
      #003715 100.01%); */
  /* background: rgba(0, 0, 0, 0.15); */
}

.inner-video-right img {
  object-fit: cover;
  object-position: right center;
}

@media (max-width: 600px) {
  .inner-video-right img {
    object-position: calc(100% + 380px);
  }
}

.video-txt-info-inner {
  padding-bottom: 30px !important;
}

@media (min-width: 768px) {
  .video-txt-info-inner {
    width: 40%;
  }
}

.swiper-style-inner h2 {
  text-transform: none;
  font-size: 30px;
  text-shadow: 0 .08rem 0px rgba(0, 0, 0, 0.25);
}

.swiper-style-inner h2 strong{
  /* text-shadow: none; */
  text-shadow: 0 .03rem 0px rgba(255, 255, 255, 0.25);
}

/* .swiper-style-inner h2 strong.bl {
  text-shadow: 0 .03rem 0px rgba(255, 255, 255, 0.5);
} */

@media (max-width: 1050px) {
  .swiper-style-inner h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .swiper-style-inner h2 {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  /* .swiper-style-inner {
    width: 80%;
  } */

  .swiper-style-inner h2 {
    font-size: 13px;
  }

  /* .inner-video img {
    height: 180px;
  } */

  .video-txt-info-inner {
    padding-bottom: 0 !important;
    /* align-items: center !important; */
    align-items: end !important;
  }
}

.tt-title {
  display: block;
  margin-top: 40px;
  font-size: 24px;
  color: var(--color2);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .tt-title {
    font-size: 36px;
  }
}

@media (min-width: 1200px) {
  .tt-title {
    font-size: 40px;
  }
}

.inner-main .item--box p a {
  color: var(--color2);
  text-decoration: underline;
}

.inner-main .item--box p a:hover {
  text-decoration: none;
}

.inner-plate {
  padding: 50px 0 60px;
}

@media (max-width:820.99px) {
  .item--box.mt-md-0.mt-4 {
    padding-top: 40px;
  }
}


/* Job Function Select Visibility Control */
.search-job-select select[data-id] {
  display: none;
}

.search-job-select select[data-id="sj0"] {
  display: block;
}

select option {
  font-size: 15px;
}

.inner-whycan span,
.inner-whycan p {
  font-size: 1.5rem;
}

.card {
  border: none;
  border-radius: 0;
  justify-content: center;
  align-items: center;
}

.card-img,
.card-img img {
  width: 100%;
  height: 100%;
}

.card-img {
  width: 90%;
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}

.card-img img {
  object-fit: cover;
}

.card-body {
  padding: 20px 0 10px;
}

.card-body .h5 {
  color: var(--color2);
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 16px;
  display: block;

}

@media (min-width: 768px) {
  .card-body p {
    /* height: 70px; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
}

.le-title {
  background-color: #f5f5f5;
  font-size: 16px;
  font-weight: 700;
  color: var(--color2);
  padding: 10px;
  margin-top: 20px;
}

.le-ul {
  padding: 0;
  margin: 15px 0;
}

.le-ul li {
  margin-bottom: 6px;
  padding: 0 10px;
}

.le-ul li a {
  display: inline-block;
  font-size: 15px;
  color: var(--color2);
  text-decoration: underline;
  transition: all .3s ease-in-out;
}

.le-ul li a:hover {
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .contcat-banner {
    height: 106px;
  }
  
  .inner-banner-overlay {
    bottom: -15px;
  }
}

.item-group-desc p {
  margin-bottom: 15px;
}

.grid-btn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}

.offer-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}

.offer-item {
  border: 1px solid #d5d7d8;
  background-color: #fcfcfc;
  padding: 20px;
  width: 100%;
  height: max-content;
}

@media (min-width: 576px) {
  .offer-item {
    width: calc(50% - 15px);
  }

  .offer-item:nth-child(3) {
    transform: translateY(-22%);
  }
}

.event-card {
  border: none;
  border-radius: 0;
  align-items: flex-start;
  transition: all .4s ease-in-out;
}

.event-card h5 {
  margin-top: 15px;
  font-size: 16px;
  color: #111;
}

.event-card i {
  margin-top: 5px;
  font-style: normal;
  font-size: 12px;
  color: #666;
}

.event-card h5:hover {
  color: var(--color2);
}

.pt-title-box {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.pt-title-box .ptl {
  display: block;
  width: 15px;
  height: 40px;
  background-color: #399A33;
  position: relative;
}

.pt-title-box .ptl::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-65%) translateY(-1px) rotate(226deg);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #185714;
}

.pt-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 8px 10px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: #1c468c;
  position: relative;
}

.pt-title::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(67%) translateY(-4px) rotate(135deg);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 28px solid #1c468c;
}

.pt-card {
  display: flex;
  flex-direction: column;
}

.pt-top {
  display: flex;
  flex-direction: column;
  padding: 10px 25px;
  background-color: #DCEFF5;
}

.pt-top1 {
  background-color: #E1F9DF;
}

.pt-top span {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
  font-size: 17px;
  position: relative;
}

.pt-top span::before {
  content: ' > ';
  position: absolute;
  transform: translateX(-14px);
}

.pt-top i {
  font-size: 15px;
  color: #0b2046;
  font-style: normal;
}

.pt-info {
  margin-top: 20px;
}

.pt-info li {
  margin-bottom: 4px;
}

.pt-info li,
.pt-info li a {
  color: #2a7bbd;
  font-size: 16px;
}

.pt-info li a {
  text-decoration: underline;
}

.pt-info li a:hover {
  text-decoration: none;
}

.inner-news-body {
  padding: 0 15px;
  margin: 0 auto;
}

.inner-headline {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.inner-headline-time {
  font-size: 15px;
  color: #888;
  display: flex;
  justify-content: center;
  margin: 10px 0 20px;
}

.grid-link {
  color: #fff !important;
}

.fag-box {
  /* background-color: #fff; */
  padding: 20px;
  border-radius: 20px;
}

.fag-card {
  background-color: #fff;
  height: 100%;
  border-radius: 20px;
  padding: 20px;
}

.fag-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fag-card-txt {
  padding: 10px 20px 0;
  display: flex;
  justify-content: center;
}

.fag-card-txt p {
  display: inline-block;
  max-width: 80%;
  font-size: 16px;
  text-align: center;
}

.gm-li {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.gm-li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--color2);
  border-radius: 100%;
  margin-right: 10px;
}

.note {
  /* background-color: #dfebfb; */
  background: linear-gradient(90deg, #EDF0F1 0%, #ABDADF 100%);
  padding: 20px;
  border-radius: 20px;
}

/* Mobile swipe functionality for table1 */
@media (max-width: 768px) {
  .table1-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .table1 {
    min-width: 800px;
    margin-bottom: 0;
  }

  .table1-1 {
    min-width: 480px;
  }
  
  .table1 th,
  .table1 td {
    /* white-space: nowrap; */
    min-width: 50px;
    width: 100px;
    padding: 12px 8px;
  }
  
  .table1 th:first-child,
  .table1 td:first-child {
    /* position: sticky; */
    /* left: 0; */
    background-color: #f8f9fa;
    z-index: 2;
    border-right: 2px solid #dee2e6;
  }
  
  .table1 thead th:first-child {
    background-color: #6E6F72;
    color: white;
  }
  
  /* Scrollbar styling for mobile */
  .table1-container::-webkit-scrollbar {
    height: 6px;
  }
  
  .table1-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .table1-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
  }
  
  .table1-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
}

/* Mobile image fix for Social Responsibility page */
@media (max-width: 768px) {
    .card-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
        max-height: 200px;
    }
    
    .card-img {
        overflow: hidden;
        border-radius: 8px;
    }
}

/* Additional fix for all card images to prevent stretching */
.card-img img {
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* Fix for anchor links being covered by fixed header */
html {
    scroll-padding-top: 120px; /* Adjust this value based on your fixed header height */
}

/* Alternative method for older browsers */
.legal-tab {
    scroll-margin-top: 120px;
}

/* Specific fix for legal page anchor navigation */
.legal-tab3 {
    scroll-margin-top: 120px;
}

.swiper-style-inner {
  /* background-color: rgba(0, 0, 0, 0.15); */
  padding: 10px;
  border-radius: 10px; 
  display: flex;
}

.top-left-fix,
.top-right-fix,
.bottom-right-fix,
.bottom-left-fix {
  height: auto;
  width: auto;
}

.top-right-fix {
  position: absolute;
  right: 0;
  top: 10%;
}

.top-left-fix {
  position: absolute;
  left: 0;
  top: 10%;
}

.bottom-right-fix {
  position: absolute;
  bottom: 10%;
  right: 0;
}

.bottom-left-fix {
  position: absolute;
  bottom: 5%;
  left: 0;
}

@media (max-width: 767px) {
  /* .top-left-fix,
  .top-right-fix,
  .bottom-right-fix {
    width: 60%;
  } */

  .top-left-fix,
  .top-right-fix {
    top: 5%;
  }

  .bottom-right-fix,
  .bottom-left-fix {
    bottom: 5%;
  }

  .top-right-fix,
  .bottom-right-fix {
    justify-content: end !important;
  }
}

.bottom-right-fix .swiper-style-inner h2,
.top-right-fix .swiper-style-inner h2 {
  text-align: end;
}

@media (min-width: 1400px) {
  .inner-video {
    height: 500px;
  }
}

@media (min-width: 1921px) {
  .inner-video {
    height: auto;
  }
}

@media (max-width: 600px) {
  .swiper-img2 img {
    object-position: right;
  }
}

.object-top img {
  object-position: top;
}

.gm-heading-content {
  margin-bottom: 25px;
}

@media (min-width: 992px) {
  .plate {
    padding: 50px 0;
  }

  .why-choose1,
  .plate-sevice {
    padding-bottom: 0;
  }

  .why-choose2 .h--style {
    height: 50px;
  }

  .gm-heading-content.webadv {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .plate-sevice {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .whycan h6 {
    margin-bottom: 30px;
  }

  .h--style {
    height: 45px;
  }

  .gm-heading-content {
    margin-bottom: 20px;
  }

  .why-choose2 {
    padding-bottom: 40px;
  }

  .plate-ouv {
    padding-top: 50px;
  }
}

.nav-top-link {
  border-radius: 5px;
  border: 1px solid var(--color2);
  color: var(--color2);
  padding: 4px 20px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .4s ease-in-out;
}

.nav-top-link:hover {
  background-color: var(--color2);
  color: #fff !important;
}

.top_menu.fixed .menu_web .nav-link.nav-top-link {
  padding: 5px 20px 4px !important;
}