@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Jost:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --font-family-dm-sans: "DM Sans", sans-serif;
  --font-family-jost: "Jost", serif;
  --font-family-manrope: "Manrope", sans-serif;
  --font-family-montserrat: "Montserrat", sans-serif;
  --font-family-playfair: "Playfair Display", serif;
  --font-family-plus-jakarta: "Plus Jakarta Sans", sans-serif;
  --font-family-raleway: "Raleway", sans-serif;
  --font-family-urban: "Urbanist", sans-serif;
  --theme-1: #051d40;
  --theme-2: #ffcc29;
  --theme-3: #2885c3;
  --theme-4: #5d8499;
  --theme-5: #f7f7f7;
  --theme-6: #727b89;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-urban);
}

html {
  scroll-behavior: smooth;
}

/* GLOBAL */

a {
  text-decoration: none !important;
}

.text-theme-1 {
  color: var(--theme-1) !important;
}
.text-theme-2 {
  color: var(--theme-2) !important;
}
.text-theme-3 {
  color: var(--theme-3) !important;
}
.text-theme-4 {
  color: var(--theme-4) !important;
}
.text-theme-5 {
  color: var(--theme-5) !important;
}
.bg-theme-1 {
  background: var(--theme-1) !important;
}
.bg-theme-2 {
  background: var(--theme-2) !important;
}
.bg-theme-3 {
  background: var(--theme-3) !important;
}
.bg-theme-4 {
  background: var(--theme-4) !important;
}
.bg-theme-5 {
  background: var(--theme-5) !important;
}

.bright {
  filter: brightness(100);
}

/* HEADER*/

header .nav-link {
  color: var(--theme-1) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

header .nav-link:hover,  header .nav-link.active{
  color: var(--theme-3) !important;
  background-color: transparent !important;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  right: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}


.dropdown-submenu .dropdown-toggle{
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0.5em;
  justify-content: space-between;
}
.dropdown-submenu .dropdown-toggle::after, .nav-link.dropdown-toggle::after{
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../asset/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  border: 0;
  transition: all 0.3s ease;
  transform: rotate(0);
}


.nav-link.dropdown-toggle.active::after, .nav-link.dropdown-toggle:hover::after{
  background-image: url("../asset/arrow-down-bl.svg");
}
.dropdown-submenu:hover .dropdown-toggle::after{
  transform: rotate(90);
}

header .dropdown-item.active,  header .dropdown-toggle.active{
  background-color: var(--theme-1);
}

header .dropdown-submenu .dropdown-toggle.active::after{
  filter: invert(1);
}

/* HERO */
.hero {
  height: 700px;
  position: relative;
}

.hero-content {
  max-width: 850px;
  position: relative;
  color: #ffffff;
  left: 3em;
}

.hero-content p {
  max-width: 500px;
}
.heroSwiper .swiper-slide {
  display: flex;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.heroSwiper .swiper-slide > div {
  position: relative;
}

.heroSwiper .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.842), transparent); */
  background: linear-gradient(to right, rgba(1, 34, 80, 0.84), transparent);
}

.hero-slide-1 {
  background-image: url(../asset/home/cargo.jpg);
}
.hero-slide-2 {
  background-image: url(../asset/home/cargo-1.jpg);
}
.hero-slide-3 {
  background-image: url(../asset/home/cargo-2.jpg);
}
.hero-slide-4 {
  background-image: url(../asset/home/cargo-3.jpg);
}

.hero-card {
  bottom: -8em;
  z-index: 1;
  right: 0;
  margin: 1em;
  max-width: 460px;
}

/* ABOUT */
.about {
  position: relative;
  overflow: hidden;
}

.about:before,
.why-us::before,
.why-us::after,
.contact-section::before,
.contact-section::after {
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
  width: calc(350px * 1.3);
  height: calc(548px * 1.3);
  background-image: url(../asset/home/world-ele.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.4;
}

/* PRODUCTS */
.product-card {
  min-height: 388px !important;
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* STATS */
.stats {
  background-image: url(../asset/home/stat.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.stats-number {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
}

.stats-number::before {
  content: "";
  position: absolute;
  left: 0;
  width: 82%;
  height: 13px;
  background-color: var(--theme-3);
  bottom: 10px;
  z-index: -1;
}

/* WHY US */
.why-us::after,
.contact-section::after {
  transform: translateY(-50%) rotate(180deg);
  right: 0;
  left: auto;
  top: 40%;
}

.testimonial {
  background-image: url(../asset/home/ship.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 700px;
}

.testimonial .swiper-button-next,
.testimonial .swiper-button-prev {
  top: auto;
  bottom: 0;
}

.testimonial .swiper-button-prev {
  right: 4em;
  left: auto;
}

.testimonial .swiper-button-next:after,
.testimonial .swiper-button-prev:after {
  background-color: var(--theme-2);
  color: #000000;
}

/* CONTACT*/
.contact-left-icon,
.contact-social-icon,
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-line {
  background-color: #ffffff;
  width: 30px;
  height: 2px;
}

.contact-social-icon {
  color: #ffffff !important;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.171);
  transition: all 0.3s ease;
}

.contact-social-icon:hover {
  background-color: var(--theme-2);
  color: #000000 !important;
}

.contact-card-icon {
  min-height: 80px !important;
  min-width: 80px !important;
}

#submitBtn {
  background-color: var(--theme-1);
  color: #ffffff !important;

  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
#submitBtn:hover {
  background-color: var(--theme-2);
  color: #000000 !important;
}

.contact-section {
  position: relative;
}

/* FOOTER*/

.footer-links a {
  margin: 0;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--theme-2) !important;
  margin-left: 0.3em;
}

/*--------------- ABOUT PAGE ----------------*/
.about-point-item {
  width: 50%;
}
/* BOOKMARK*/
.bookmark {
  background-image: url(../asset/bookmark-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* .bookmark::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.452);
  top: 0;
  left: 0;
  z-index: 0;

} */

.bookmark>div{
  position: relative;
}

.reveal {
  will-change: transform, opacity;
  transform-origin: center center;
}

/*---------- TMT -------------*/

.accordion-button:not(.collapsed) {
  color: #ffffff !important;
  background-color: var(--theme-1) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(100);
}

.accordion-button:focus {
  box-shadow: none !important;
}
.accordion-button {
  background-color: var(--theme-5) !important;
}

.accordion-item,
.accordion-button {
  border-radius: 1em !important;
  font-size: 1.125rem !important;
}

.accordion-body p {
  font-size: 1rem !important;
  color: rgb(99, 99, 99);
}

.accordion-item {
  margin-bottom: 1.5em;
}

.floating-buttons{
  z-index: 1000;
}