@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Montserrat:wght@700;900&display=swap");
* {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.shadow-theme {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.151) !important;
}

.btn {
  background-color: #fff;
  color: #097396;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 0.25rem;
}

.btn-primary {
  background-color: #097396;
  border-color: #097396;
  color: #fff;
}
.btn-primary a {
  color: #fff;
}
.btn-primary:hover {
  background-color: #0a85ae;
  border-color: #0a85ae;
}

.container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 576px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

header {
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid #ececec;
}
header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 80px;
}
header .logo a {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 60px;
}
header .logo .text {
  font-size: 1.3rem;
  margin-left: 10px;
  margin-top: 1px;
  font-weight: 800;
  color: #0a0839;
}
header .burger {
  padding: 5px 0 5px 5px;
  margin-left: auto;
  display: none;
}
header .burger .line {
  width: 2rem;
  height: 3px;
  margin-bottom: 6px;
  background-color: #0a0839;
}
header .burger .line:nth-last-child(1) {
  margin-bottom: 0;
}
header .menu {
  margin-left: auto;
  margin-top: 3px;
}
header .menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .menu ul li {
  font-size: 1rem;
  font-weight: 400;
  padding: 7px 15px;
  text-transform: capitalize;
}
header .menu ul li:nth-last-child(1) {
  padding-right: 0;
}
header .menu ul li a {
  color: #0a0839;
}
header .menu ul li a:hover {
  color: #097396;
}
header .menu ul li a.active {
  color: #097396;
}
header .menu ul a.btn-primary {
  color: #fff;
  margin-top: -5px;
  font-weight: 600;
  padding: 5px 12px 4px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
header .menu ul a.btn-primary:hover {
  color: #fff;
}
header .close-menu {
  display: none;
}
@media screen and (max-width: 576px) {
  header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.349);
    height: 100vh;
    width: 100vw;
    display: none;
  }
  header .burger {
    display: block;
  }
  header .close-menu {
    display: block;
    position: absolute;
    right: 10px;
    top: -10px;
    font-size: 3rem;
    font-weight: 200;
    transform: rotate(45deg);
  }
  header .menu {
    position: absolute;
    left: 0;
    top: -5px;
    background-color: #fff;
    width: 250px;
    height: 100vh;
    z-index: 2;
    padding: 30px;
    transform: translateX(-100%);
    transition: all 0.2s ease-in-out;
  }
  header .menu ul {
    flex-direction: column;
  }
  header .menu ul li {
    padding: 0 0 15px;
  }
  header .menu a.btn-primary {
    margin-top: 8px !important;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .menu.show {
    transform: translateX(0%);
  }
}

a {
  text-decoration: none;
}

.intro.about .wrapper-fluid {
  background-image: url("../images/intro2.jpg");
}
.intro.about .wrapper-fluid .overlay-intro {
  background: rgb(5, 134, 139);
  background: linear-gradient(56deg, rgba(5, 134, 139, 0.843662465) 47%, rgba(16, 139, 154, 0) 100%);
}

.intro .wrapper-fluid {
  padding: 0;
  display: flex;
  width: 100%;
  align-items: center;
  background-image: url("../images/intro-new.jpg");
  background-position: center;
  background-size: cover;
  min-height: calc(100vh - 80px);
  position: relative;
}
.intro .wrapper-fluid .overlay-intro {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.135);
  z-index: 0;
}
.intro .part-1,
.intro .part-2 {
  z-index: 1;
}
.intro .part-1 {
  padding-left: 80px;
  padding-right: 40px;
}
.intro img {
  width: 100%;
}
.intro h4 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
}
.intro h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 576px) {
  .intro h1 {
    font-size: 2.2rem;
  }
}
.intro p {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.intro .btn-g button {
  margin-bottom: 15px;
}
.intro .btn-g button:first-child {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .intro .part-1,
  .intro .part-2 {
    width: 100%;
  }
  .intro .part-1 {
    padding: 60px 30px;
  }
  .intro p {
    font-size: 1rem;
  }
}

.section-ttl {
  margin-bottom: 1.5rem;
}
.section-ttl h2 {
  color: #097396;
  font-weight: 600;
  font-size: 1.5rem;
}

.service {
  display: flex;
  flex-direction: column;
  border-radius: 0.4rem;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
  min-height: 600px;
}
@media screen and (max-width: 576px) {
  .service {
    min-height: 500px;
  }
}
.service p {
  color: #fff !important;
}

.f14 {
  font-size: 0.875rem;
}

.service.oil {
  background-image: url("../images/trading-oil.jpeg");
}

.service.fin {
  background-image: url("../images/trade-finance.jpeg");
}

.service.logi {
  background-image: url("../images/logi.jpeg");
}

.service.f-oil {
  background-image: url("../images/petrol.jpeg");
}

.service.d-gas {
  background-image: url("../images/diesel.jpeg");
}

.service.gasoline {
  background-image: url("../images/gasoline.png");
}

.service.jet {
  background-image: url("../images/jet.jpeg");
}

.service.lpg {
  background-image: url("../images/lgp.jpeg");
}

.service.map {
  background-image: url("../images/map.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #f4f4f4;
  border: 1px solid #e7e7e7;
  color: #0a0839 !important;
}
.service.map .card-header span.material-icons-outlined {
  color: #0a0839;
}
.service.map h3 {
  color: #0a0839;
}
.service.map p {
  color: #0a0839 !important;
}

.services .card {
  border: none;
  background-color: transparent;
  padding: 1.5rem;
}
@media screen and (max-width: 576px) {
  .services .card {
    padding: 1rem;
  }
}
.services .card-header {
  padding-bottom: 0;
  border: none;
  background-color: transparent;
}
.services .card-header span.material-icons-outlined {
  font-size: 3rem;
  font-weight: 100;
  color: #fff;
}
.services .card-header span.material-icons {
  font-size: 4rem;
  color: #fff;
  margin-bottom: -5px;
}
.services h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}
.services p {
  color: #0a0839;
}

p {
  font-weight: 400;
}

.map-bg {
  background-image: url("../images/map.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #f7f7f7;
}

.form .form-control,
.form .form-select {
  height: 42px;
}
.form textarea.form-control {
  height: auto;
}
.form .btn-primary {
  height: 42px;
  display: flex;
  align-items: center;
}

.its-phone input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.blurb ._header {
  margin-bottom: 12px;
}
.blurb ._header span {
  font-size: 1.5rem;
  color: #097396;
  margin-right: 0.5rem;
}
.blurb ._header h4 {
  color: #097396;
  font-size: 1rem;
  position: relative;
  top: 3px;
  margin-bottom: 0;
  font-weight: 500;
}

footer {
  background-color: #eee;
  padding: 60px 0 30px;
}
footer p {
  font-size: 0.875rem;
}
footer a {
  color: #097396;
}
footer img[alt=logo] {
  height: 80px;
  margin-bottom: 1.5rem;
}
footer .title {
  font-weight: 500;
  margin-bottom: 1.5rem;
}
footer .links {
  color: inherit;
}
footer .links div {
  margin-bottom: 0.8rem;
  font-size: 0.875rem;
}
footer .copyright {
  color: #0a0839;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.form-alert {
  padding: 0.5rem;
  color: #0a0839;
  background-color: #f5f5fe;
}

.form-alert.success {
  background-color: #dbfeef;
  color: #06ba6c;
}