/* 
* Theme name: bap-theme
* Theme URI: https://bap-softwares.net
* Author: BAP Team
* Version: 1.0
* Text Domain: bau
*/
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
/*===================
	Start Header CSS 
=====================*/
.header {
  background-color: transparent;
  position: relative;
}

.header .navbar-collapse {
  padding: 0;
}

/* Topbar */
.header .container {
  max-width: calc(100% - 30px);
  margin: 26px 14px 0;
  border-radius: 100px;
}

.header .header-inner {
  z-index: 999;
  width: 100%;
}

.header .logo {
  float: left;
  width: 94px;
  height: 38px;
  object-fit: cover;
  margin-top: 8px;
}

.header .navbar {
  background: none;
  box-shadow: none;
  border: none;
  margin: 0;
  height: 0px;
  min-height: 0px;
}

.header .main-menu {
  display: flex;
  justify-content: flex-end;
}

.header .nav-btn {
  display: none;
  border-radius: 50%;
  padding: 4px;
}
.header .nav-btn:hover {
  background: #ffffff80;
}

/*===================
  Start Header menu CSS 
=====================*/
ul.menu > li.menu-item {
  padding-bottom: 14px;
  text-align: left;
}
.menu-item {
  position: relative;
}
.menu-item-has-children > a .fa-angle-up {
  font-size: 12px;
  color: #333;
  margin-left: 5px; /* Khoảng cách giữa văn bản và mũi tên */
  transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a .fa-angle-up {
  transform: rotate(180deg); /* Xoay mũi tên khi hover */
}

/* Style cho submenu */
.menu .sub-menu {
  display: none; /* Ẩn submenu mặc định */
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #fff;
  padding: 0;
  margin: 0;
  min-width: 100%;
  width: max-content; /* Điều chỉnh nếu cần */
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 10px 10px;
  border-top: 3px solid var(--primary-active);
}

/* Style cho các mục trong submenu */
.menu .sub-menu li {
  display: block;
}

.menu .sub-menu li a {
  padding: 10px 15px;
  display: block;
  color: #333 !important;
  text-decoration: none;
}

.menu .sub-menu li:hover {
  background-color: #f3faff;
  display: block;
}

.menu .sub-menu li:last-child {
  border-radius: 0 0 10px 10px;
}

/* Submenu cấp thứ hai hiển thị ở phía bên phải */
.menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 10px 10px;
  border-top: 3px solid var(--primary-active);
}

/* Thêm icon chỉ cho các mục từ cấp thứ hai trở đi */
.menu .sub-menu .menu-item-has-children > a .fa-angle-right {
  display: inline-block;
  font-size: 12px;
  color: #333;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.menu .sub-menu .menu-item-has-children:hover > a .fa-angle-right {
  transform: rotate(90deg);
}

/*===================
  End Header menu CSS 
=====================*/

.header .nav li a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 0;
  margin: 0 16px;
  position: relative;
  display: inline-block;
  position: relative;
  width: max-content;
}

.header .nav li.get-quote a {
  padding-left: 16px;
  padding-right: 16px;
}

.header .nav li:not(.get-quote):hover a {
  opacity: 0.75;
  border-radius: 0 0 10px 10px;
}

.header .nav li:not(.get-quote).active a {
  color: var(--primary-active);
}

.header .nav .get-quote {
  display: inline-block;
}

.header .get-quote .btn {
  font-size: 14px;
  border-radius: 25px;
  text-transform: uppercase;
}

.header .language {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 7px;
}

.header .angle-down {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: 8px;
}

/* Dropdown Menu */
.header .nav li .dropdown {
  background: #fff;
  width: 180px;
  position: absolute;
  right: -20px;
  top: 60px;
  z-index: 999;
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 5px #3333334d;
  transform-origin: 0 0 0;
  transform: scaleY(0.2);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  border-left: 3px solid #124797;
}
.header .nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header .nav li .dropdown li {
  float: none;
  margin: 0;
  border-bottom: 1px dashed #124797;
}
.header .nav li .dropdown li:last-child {
  border: none;
}
.header .nav li .dropdown li a {
  padding: 12px 15px;
  color: #000;
  display: block;
  font-weight: 400;
  text-transform: capitalize;
  background: transparent;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header .nav li .dropdown li a .img-language {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}
.header .nav li .dropdown li a.active {
  color: #124797;
  font-weight: 700;
}
.header .nav li .dropdown li a:before {
  display: none;
}
.header .nav li .dropdown li:last-child a {
  border-bottom: 0px;
}
.header .nav li .dropdown li:hover a {
  color: #fff;
  background: #124797;
}
.header .nav li .dropdown li a:hover {
  border-color: transparent;
}

/* Header Sticky */
.header.sticky .header-inner {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  bottom: initial;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  animation: fadeInDown 0.5s both 0.1s;
}
/*===========================
      End Header CSS
  =============================*/

/*===================
	Start Banner CSS 
=====================*/
.page-banner .title {
  margin-bottom: 0px;
}
.page-banner {
  padding: 85px 15px 50px;
  min-height: 428px;
  background-color: rgba(8, 36, 79, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page-banner.services-single {
  min-height: 375px;
}
.career-banner {
  min-height: 720px;
  background-size: cover !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 0;
}
.career-banner .title,
.page-banner .title {
  font-size: 56px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
}
.career-banner .description,
.page-banner .description {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.02em;
  text-align: center;
}
/*===================
      End Banner CSS 
  =====================*/

/*===================
	Start Footer CSS 
=====================*/
.footer {
  background-color: #061d3f;
  padding: 28px 0;
}
.footer .container .logo {
  width: 215px;
}
.footer .container .divide-line {
  border-color: rgba(255, 255, 255, 0.2);
  opacity: 0.2;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer .container .copyright {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}
.footer .container .nav-container {
  width: fit-content;
}
.footer .container .nav-container .nav-link {
  color: #fff;
}
.footer .container .social {
  column-gap: 50px;
  margin-top: 25px;
}
.footer .container .social .social-link {
  display: inline-block;
  text-align: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 8px 12px;
}
.footer .container .social .social-link:hover,
.footer .container .social .social-link:focus {
  background-color: #e5e5e5;
}
.footer .container .social .social-link:hover img {
  opacity: 0.7;
}
/*===================
      End Footer CSS 
  =====================*/

/*===========================
	End Why Choose Us Area CSS
=============================*/

/*===========================
	Start Location Area CSS
=============================*/
.location {
  padding: 56px 0 46px;
  background: #08244f url(img/global-map.png) no-repeat top right;
  position: relative;
}
.location .container .section-title {
  color: #f3faff;
}
.location .container .title {
  color: #fbfaf5;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 18px 0;
  line-height: normal;
  text-transform: capitalize;
}
.location .container .text {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 2px;
  margin-bottom: 100px;
}
.location .container .button-list {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  gap: 16px 64px;
}
.location .container .address-btn {
  width: fit-content;
  padding: 6px;
  text-align: left;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
}
.location .container .address-btn:hover,
.location .container .address-btn.active {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 5px;
}
.location .container .address-card {
  background-color: #ffffff54;
  color: #ffffff;
  line-height: 25px;
  letter-spacing: 1px;
  text-align: left;
  margin: auto;
  padding: 24px;
  border-radius: 20px;
  max-width: 449px;
  margin-top: 150px;
}
.location .container .address-card:not(.active) {
  display: none;
}
.location .container .address-card p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}
.location .container .address-card .name {
  text-transform: uppercase;
}
.location .container .address-card .card-item {
  display: flex;
  column-gap: 8px;
}
.location .container .address-card .card-item span,
.location .container .address-card .card-item i {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.location .container .address-card iframe {
  border-radius: 10px;
  background-color: #d9d9d9;
}
/* Animation */
.location .container .section-title {
  animation: fadeInUp 1s both 0.2s;
}
.location .container .title {
  animation: fadeInUp 1s both 0.2s;
}
.location .container .text {
  animation: fadeInUp 1s both 0.4s;
}
.location .container .address-card {
  animation: fadeIn 1 linear 0.2s;
}
/*===========================
	End Location Area CSS
=============================*/

/*===========================
	Start Contact Area CSS
=============================*/
.contact {
  min-height: 353px;
  padding: 77px 0 64px;
  background: #f3faff url("img/wave-2.png") no-repeat center;
  background-size: cover;
}
.contact .container .title {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 1px;
  text-align: center;
  color: #061d3f;
  margin-bottom: 24px;
}
.contact .container .text {
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 2px;
  text-align: center;
  color: #000;
  margin-bottom: 34px;
}
.contact .container .button {
  text-align: center;
}
.contact .container .button .btn {
  border-radius: 24px;
  padding: 16px;
  text-transform: uppercase;
  color: #fff !important;
}
/*===========================
	End Contact Area CSS
=============================*/

/*===========================
	Start See more Area CSS
=============================*/
.see-more {
  min-height: 183px;
  padding: 44px 0;
}
.see-more .container .title {
  font-size: 36px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 1px;
  text-align: center;
  color: #08244f;
  margin-bottom: 26px;
}
.see-more .container .button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.see-more .container .button .btn {
  text-transform: capitalize;
  color: #08244f;
  font-size: 24px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1px;
  text-align: left;
  border: none;
}
/*===========================
	End See more Area CSS
=============================*/

/*===========================
	Start Got an idea Area CSS
=============================*/
.got-idea {
  min-height: 277px;
  padding: 40px 0;
  background: url(img/got-an-idea.png) no-repeat center center;
  background-size: cover;
}
.got-idea .container .title {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}
.got-idea .container .text {
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  margin-bottom: 34px;
}
.got-idea .container .button {
  text-align: center;
}
.got-idea .container .button .btn {
  border-radius: 24px;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: #383838 !important;
}
/*===========================
	End Got an idea Area CSS
=============================*/
