@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --montserrat: "Montserrat", sans-serif;
  --poppins: "Poppins", sans-serif;
  --josefin: "Josefin Sans", sans-serif;
  --bebas: "Bebas Neue", sans-serif;

  --background-color-1: linear-gradient(145deg, #2f3fcc 0, #3ad9ff 96%);

  --light-blue: #43b7ff;
  --dark-blue: #0383ce;
  --orange: #ff7300;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--montserrat);
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

body h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3em;
}

h1,
h2,
h2 span,
h3,
h4,
h5,
h6 {
  font-family: var(--bebas);
  margin: 0;
  color: #1d2124;
}

a,
ul,
li,
p {
  font-family: var(--poppins);
}

p {
  line-height: 1.7em;
  font-size: 1.1em;
}

.container {
  width: 95%;
  margin: auto;
  padding: 20px 30px;
  /* max-width: 1100px */
}

/* ===== Header - Navbar ====== */
header {
  position: relative;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
}

.logo {
  transition: 0.5s;
}

.logo h3 {
  color: #fff;
  font-family: var(--bebas);
  font-size: 36px;
  letter-spacing: 2px;
}

.logo h4 {
  color: #f1f1f1;
  letter-spacing: 2px;
  font-size: 16px;
}

.logo:hover {
  transform: scale(1.07);
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: -1;
}

.navbar ul {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  list-style: none;
}

.navbar ul li {
  padding: 0.5rem 0.6rem;
  transition: 0.3s;
  margin: 0 10px 0 0;
}

.navbar ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--montserrat);
  line-height: 27px;
  padding-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  transition: 0.5s;
}

.navbar ul li a::after,
.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  transition: 0.5s;
  background-color: var(--dark-blue);
  bottom: 3px;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after,
.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a.active::after {
  width: 60%;
}

.navbar ul li a.active {
  color: var(--dark-blue);
}

.navbar.scroll-on,
.navbar.responsive-navbar.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.3);
  transition: all 0.15s ease-in-out 0s;
  /* padding: 7px 30px; */
  background-color: #f6fbffde;
  backdrop-filter: blur(10px);
  z-index: 1000;
  animation: headerSlideDown 0.5s ease forwards;
}

.navbar.scroll-on ul li a,
.navbar.scroll-on .logo h3,
.navbar.scroll-on .logo h4,
.navbar.scroll-on #bar {
  color: #1b1b1b !important;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
    opacity: 0;
  }

  30% {
    margin-top: -50px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/* ===== Mobile Navbar ===== */
#bar {
  display: none;
  color: #fff;
  font-size: 26px;
}

.popup-mobilemenu {
  z-index: 1000000;
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(6, 40, 81, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out;
}

.popup-mobilemenu.menu-open {
  visibility: visible;
  opacity: 1;
}

.popup-mobilemenu .menu-inner {
  padding: 25px 40px;
  width: 375px;
  z-index: 999;
  position: absolute;
  background: #f5f5f5;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 70%);
  opacity: 0;
  right: -150px;
  transition: all 0.5s ease-out;
}

.popup-mobilemenu.menu-open .menu-inner {
  opacity: 1;
  right: 0;
  overflow-y: auto;
}

.popup-mobilemenu .menu-inner .menu-top {
  border-bottom: 1px solid rgba(21, 126, 255, 0.3);
  padding: 0 0 10px 0;
  display: flex;
  justify-content: flex-end;
}

.menu-top i {
  color: #1b1b1b;
  font-size: 29px;
}

.popup-mobilemenu .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-top: 20px;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  margin-top: 20px;
  text-align: right;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li {
  display: inherit;
  margin: 12px 0px !important;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a {
  color: #1b1b1b;
  position: relative;
  transition: 0.4s;
  font-size: 24px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-family: var(--poppins);
  margin: 0;
  display: block;
  font-weight: 500;
  padding: 0;
  padding-bottom: 10px;
  opacity: 1;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a.active {
  color: var(--light-blue);
}

/* ====== Landing Page ===== */
.landing {
  height: 100vh;
  width: 100%;
  display: table;
  margin-bottom: 80px;
  /* position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("/images/landing-img.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 55%; */
}

.tag-pad {
  display: table-cell;
  vertical-align: bottom;
  width: 50%;
}

.tag-line {
  display: table-cell;
  padding: 50px;
  vertical-align: bottom;
  text-align: left;
}

.tag-line h1 {
  line-height: 1;
  color: #fff;
  font-weight: 500;
  font-size: 50px;
  font-family: var(--bebas);
}

.fullscreen-bg {
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

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

@media (min-aspect-ratio: 16 / 9) {
  .fullscreen-bg_video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16 / 9) {
  .fullscreen-bg_video {
    width: 300%;
    left: -100%;
  }
}

/* ===== About Section ===== */
.section {
  background: #f5f4f4;
  height: auto;
  width: 100%;
}

#about-us {
  margin-bottom: 80px;
}

.section-flex {
  display: flex;
}

.section-content {
  padding: 50px 30px 50px 0;
  width: 60%;
}

.section-content h2 {
  line-height: 20px;
  font-size: 42px;
}

.section-content p {
  font-size: 14px;
  margin-bottom: 7px;
}

.section-content p strong {
  color: var(--dark-blue);
}

.section-img {
  width: 40%;
  overflow: hidden;
  height: auto;
  transition: all 0.5s ease-in-out;
}

.section-img:hover {
  transform: scale(1.02);
}

.section-img img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

/* ===== Services Section ===== */
#services {
  background: #e1e1e1;
}

#services .section-content,
#contact-us .section-content {
  width: 100%;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}

#services .section-content p {
  font-size: 18px;
  line-height: 26px;
  padding: 20px 50px 0 50px;
}

.vessel-types {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 100px;
  padding-bottom: 80px;
}

.img-wrapper {
  width: 33.333%;
  padding-right: 30px;
  transition: 0.5s;
  border-radius: 10px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0.125rem 0.75rem 0 rgb(0, 0, 0, 0.3);
}

.img-wrapper:hover {
  transform: scale(1.04);
}

.img-wrapper p {
  padding: 10px 20px;
  background: #f1f1f1;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
}

/* =================================================
    Contact SECTION
==================================================== */
#contact-us {
  background: none;
}

#contact-us .section-content h2 {
  color: #fff !important;
  letter-spacing: 1px;
}

.contact-form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 10px auto 10px auto;
  padding-top: 0;
  height: auto;
  overflow: visible;
  position: relative;
  z-index: 10;
}

.form-wrapper {
  width: 80%;
  padding-right: 40px;
}

#contact {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 20;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 0 29px 0 rgb(0 0 0 / 20%);
  margin-bottom: 50px;
}

#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="text"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font: 400 14px/16px var(--poppins);
  border-radius: 5px;
}

#contact input[name=email] {
  display: none;
}

#contact .checkbox {
  margin: 0 0 15px 0;
  display: flex;
  font-family: var(--poppins);
}

.checkbox input {
  margin-right: 10px;
}

label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

#contact input:focus {
  outline-color: #e1e1e1;
}

#contact input[type="file"] {
}

#contact button {
  cursor: pointer;
  color: #fff;
  display: block;
  height: auto;
  width: 100%;
  background: linear-gradient(90deg, #0383ce 0, #00ddf6 100%);
  margin-bottom: 60px;
  font: 500 12px/16px var(--montserrat);
  border-radius: 5px;
  font-size: 1em;
  margin: 30px 0 10px 0;
  padding: 15px 30px;
  border: 2px solid #fff;
  transition: 0.4s;
}

#contact button:hover {
  transform: translateY(-3px);
  background: #fff;
  color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.right-box {
  padding: 30px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 29px 0 rgb(0 0 0 / 20%);
  position: relative;
  z-index: 20;
  width: 25%;
}

.right-box h3 {
  font-size: 22px;
  padding-bottom: 10px;
}

.right-box p {
  font-weight: 500;
}

.right-box a {
  color: #1b1b1b;
  font-size: 1.1em;
  font-weight: 500;
}

.contact_form .empty_notice {
  color: #f52225;
  margin-bottom: 15px;
  display: none;
  text-align: left;
  font-weight: 500;
}
.contact_form .contact_error {
  color: #f52225;
  text-align: left;
  font-weight: 500;
}
.contact_form .returnmessage {
  color: green;
  text-align: left;
  font-weight: 500;
  margin-bottom: 15px;
}

/* .g-recaptcha { display: none; } */

.popup-dialogue {
  z-index: 1000000;
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(6, 40, 81, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out;
}

.popup-dialogue.captcha-open {
  visibility: visible;
  opacity: 1;
}

.popup-dialogue .g-recaptcha {
  padding: 25px 40px;
  z-index: 999;
  position: absolute;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 70%);
  opacity: 0;
  left: -950px;
  transition: all 0.5s ease-out;
}

.popup-dialogue.captcha-open .g-recaptcha {
  opacity: 1;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  overflow-y: auto;
}

/* =========================================================
      External Links Section
  =========================================================*/
#external-links {
  background: #fff;
  text-align: center;
}

.external-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0;
  gap: 40px;
}

#external-links h2 {
  font-size: 28px;
}

.external-links .links:not(:last-child) {
  padding-right: 30px;
}

.external-links .links img {
  width: 100%;
}

/* =========================================================
      FOOTER
  =========================================================*/
footer {
  background: #e1e1e1;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

footer .container {
  padding: 15px;
}

/* =========================================================
      RESPONSIVE DESIGN
   =========================================================*/

@media (max-width: 991px) {
  .navbar {
    padding: 0 3rem;
  }

  .tag-line h1 {
    font-size: 40px;
  }

  .contact-form {
    flex-direction: column;
  }

  .form-wrapper {
    width: 100%;
    padding-right: 0;
  }

  .right-box {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }

  .right-box .content {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .navbar .nav-menu {
    display: none;
  }

  #bar {
    display: block;
  }

  .tag-pad {
    display: none !important;
  }

  .tag-line {
    padding: 20px;
  }

  .tag-line h1 {
    font-size: 55px;
  }

  .section-flex {
    flex-direction: column;
  }

  .section-content,
  .section-img {
    width: 100%;
  }

  .img-wrapper {
    width: 50%;
  }

  #services .section-content p {
    padding-left: 0;
    padding-right: 0;
  }

  .section-content h2 {
    line-height: 1.1;
  }

  .form-wrapper {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .navbar {
    padding: 0 1.5rem;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .fullscreen-bg {
    background: url(/assets/images/bg-img.png) left 35% center / cover no-repeat;
    background-color: rgb(0 0 0 / 30%);
    background-blend-mode: multiply;
  }
  .fullscreen-bg_video {
    display: none;
  }

  .tag-line h1 {
    font-size: 45px;
  }

  .img-wrapper {
    width: 90%;
    padding-right: 0;
  }

  .right-box {
    width: 100%;
  }

  .external-links {
    gap: 0;
  }
}

@media (max-width: 425px) {
  .popup-mobilemenu .menu-inner {
    width: 280px;
  }

  .popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a {
    font-size: 18px;
  }

  .logo h3 {
    font-size: 25px;
  }

  .fullscreen-bg_video {
    width: 330%;
    left: -100%;
    height: auto;
  }
  .tag-line h1 {
    font-size: 45px;
  }

  .section-content h2 {
    font-size: 34px;
  }

  .section-content {
    padding-right: 0;
  }

  #services .section-content,
  #contact-us .section-content {
    padding-left: 0;
    padding-right: 0;
  }

  #services .section-content p {
    font-size: 16px;
  }

  #contact .checkbox {
    flex-wrap: wrap;
    gap: 15px;
  }
  label {
    margin: 0;
  }
  label input {
    margin-right: 25px !important;
  }

  #external-links h2 {
    font-size: 28px;
  }

  .external-links .links:not(:last-child) {
    padding: 10px;
  }
}

@media (max-width: 375px) {
  .fullscreen-bg_video {
    width: 400%;
  }
  .tag-line h1 {
    font-size: 40px;
  }

  #contact {
    padding: 15px;
  }

  #contact .checkbox {
    font-size: 12px;
  }
}


section#about-us::before,
section#contact-us::before,
section#services::before {
  display: block; 
  content: " "; 
  margin-top: -80px; 
  height: 80px; 
  visibility: hidden; 
  pointer-events: none;
}
