/*-- FONTS --*/
@font-face {
  font-family: "PFDinTextCondPro-Regular";
  font-style: normal;
  font-weight: normal;
  src: local("PFDinTextCondPro-Regular"), url("../fonts/PFDinTextCondPro-Regular.woff") format("woff");
}
@font-face {
  font-family: "PFDinTextCondPro-Bold";
  font-style: normal;
  font-weight: normal;
  src: local("PFDinTextCondPro-Bold"), url("../fonts/PFDinTextCondPro-Bold.woff") format("woff");
}
/*-- VARIABLES --*/
:root {
  --theme-font: "Open Sans", sans-serif;
  --Regular-font: "PFDinTextCondPro";
  --bold-font: "PFDinTextCondPro";
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #282828;
  --theme-color: #083a3c;
  --secondary-color: #a13b1d;
  --light-color: #c6ccd4;
  --color-gray: #696969;
}

section,
header,
footer,
main {
  height: auto;
  clear: both;
}

section,
header,
footer,
main {
  width: 100%;
  position: relative;
}

/*-- MIXIN --*/
/*-- MEDIA QUERIES --*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
  margin: 0 !important;
}

body {
  margin: auto;
  font-family: var(--theme-font);
  color: var(--color-black);
  background-color: var(--color-white);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  position: relative;
  z-index: 1;
  width: 100%;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-white);
  outline: 1px solid var(--color-white);
}

ul {
  margin: 0;
  padding: 0;
  display: block;
}

li {
  list-style: none;
  font-family: var(--theme-font);
}

a,
a:hover,
a:focus,
button,
button:focus {
  outline: none !important;
  text-decoration: none;
  color: inherit;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

button,
input,
optgroup,
select,
textarea,
:focus,
:focus-visible {
  margin: 0;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

h1,
h2,
h3 {
  font-family: var(--bold-font);
  color: var(--theme-color) !important;
  padding: 0;
}

p {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  margin: inherit;
}

img {
  vertical-align: middle;
  height: auto;
  border-style: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

svg {
  vertical-align: middle;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.is_relative {
  position: relative;
}

section,
div,
footer {
  scroll-margin-top: 150px;
}

.o-hidden {
  overflow: hidden;
}

section,
header,
footer,
main {
  position: relative;
}

.container {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

.mainContent {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .mainContent {
    padding: 50px 0;
  }
}
@media (min-width: 1700px) {
  .mainContent {
    padding: 80px 0;
  }
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Header */
header {
  background: -webkit-gradient(linear, left top, right top, from(rgb(160, 39, 21)), color-stop(50%, rgb(255, 255, 255)), to(rgb(8, 58, 60)));
  background: linear-gradient(to right, rgb(160, 39, 21) 0%, rgb(255, 255, 255) 50%, rgb(8, 58, 60) 100%);
  position: relative;
  border: none;
}
header::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--color-white);
  max-width: 70%;
  margin: 0 auto;
  -webkit-transform: skewX(30deg);
          transform: skewX(30deg);
}
@media (max-width: 1279px) {
  header::before {
    display: none;
  }
}
header .navbar .navbar-brand img {
  max-width: 80px;
}
@media (max-width: 991px) {
  header .navbar .navbar-brand img {
    max-width: 50px;
  }
}
header .navbar .navbar-toggler {
  border-radius: 0;
  width: 50px;
  height: 50px;
}
header .navbar .navbar-toggler .navbar-toggler-icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 991px) {
  header .navbar .navbar-nav {
    margin-top: 16px;
  }
}
header .navbar .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  color: var(--color-black);
  text-transform: uppercase;
  font-family: var(--theme-font);
  padding: 16px 16px;
}
@media (max-width: 1279px) {
  header .navbar .navbar-nav .nav-item .nav-link {
    color: var(--color-white);
  }
}
@media (max-width: 991px) {
  header .navbar .navbar-nav .nav-item .nav-link {
    padding: 5px 0;
  }
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  display: none;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle::before {
  position: absolute;
  content: "";
  right: 0;
  top: 20px;
  width: 14px;
  height: 14px;
  background-image: url(../images/arrow-down.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  header .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle::before {
    top: 6px;
  }
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  padding: 0;
  border-radius: 0px;
  overflow: hidden;
  margin: 0;
  min-width: 240px;
  border: 0;
}
@media (min-width: 992px) {
  header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    display: block !important;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.05);
  }
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li:before {
  display: none;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item {
  background-color: #fefdfb;
  color: var(--color-black);
  font-size: 14px;
  line-height: 28px;
  font-family: var(--theme-font);
  padding: 10px 15px;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item.active {
  background-color: var(--theme-color);
  color: var(--color-white);
}
@media (max-width: 991px) {
  header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item {
    padding: 10px 10px;
    background-color: rgba(8, 58, 60, 0.05);
    border-bottom: 1px solid rgba(8, 58, 60, 0.15);
  }
}
header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
header .navbar .login-btn {
  padding: 12px 30px;
  background: var(--secondary-color);
  line-height: normal;
  border-radius: 5px;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 16px;
}
header .navbar .login-btn:hover {
  background: var(--theme-color);
}
@media (max-width: 991px) {
  header .navbar .login-btn {
    display: none;
  }
}
header.sticky-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  -webkit-box-shadow: 1px 15px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 15px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
@media (max-width: 1279px) {
  header {
    background: -webkit-gradient(linear, left top, right top, from(rgb(160, 39, 21)), to(rgb(8, 58, 60)));
    background: linear-gradient(to right, rgb(160, 39, 21) 0%, rgb(8, 58, 60) 100%);
    position: relative;
    border: none;
  }
}

/* Footer */
footer {
  background-color: var(--theme-color);
  background: linear-gradient(10deg, rgb(160, 39, 21) 0%, rgb(8, 58, 60) 100%);
}
footer .footer-top {
  padding: 80px 0;
}
@media (max-width: 991px) {
  footer .footer-top {
    padding-bottom: 30px;
  }
}
footer .footer-about .footer-logo {
  margin-bottom: 30px;
}
footer .footer-about .footer-logo img {
  max-width: 80px;
}
@media (max-width: 991px) {
  footer .footer-about .footer-logo {
    text-align: center;
  }
}
footer .footer-links h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-white);
  font-family: var(--bold-font);
  margin-bottom: 16px;
  letter-spacing: 1.2px;
}
footer .footer-links ul li {
  margin-bottom: 10px;
}
footer .footer-links ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}
footer .footer-links ul li a:hover {
  color: var(--color-white);
}
@media (max-width: 991px) {
  footer .footer-links {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
footer .footr-contact h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-white);
  font-family: var(--bold-font);
  margin-bottom: 16px;
  letter-spacing: 1.2px;
}
footer .footr-contact ul li {
  margin-bottom: 15px;
}
footer .footr-contact ul li .contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footr-contact ul li .contact-box .icon {
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-top: 7px;
}
footer .footr-contact ul li .contact-box .icon img {
  width: 18px;
  height: 18px;
}
@media (max-width: 991px) {
  footer .footr-contact ul li .contact-box .icon {
    margin: 0 auto;
    margin-bottom: 16px;
  }
}
footer .footr-contact ul li .contact-box .text {
  margin-left: 15px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 991px) {
  footer .footr-contact ul li .contact-box .text {
    margin: 0 auto;
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  footer .footr-contact ul li .contact-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footr-contact ul li:hover .contact-box .text {
  color: var(--color-white);
}
@media (max-width: 991px) {
  footer .footr-contact {
    text-align: center;
  }
}
footer .copy-right {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 0;
}
footer .copy-right .copy-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .copy-right .copy-links ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  margin-right: 20px;
}
footer .copy-right .copy-links ul li:last-child {
  border: none;
  padding-right: 0;
  margin-right: 0;
}
@media (max-width: 991px) {
  footer .copy-right .copy-links ul li {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) {
  footer .copy-right .copy-links ul {
    text-align: center;
    display: block;
  }
}
footer .copy-right .social-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
}
footer .copy-right .social-links ul li a {
  color: var(--color-white);
  font-size: 20px;
}
@media (max-width: 991px) {
  footer .copy-right .social-links ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 15px;
  }
}

.career-home {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.career-home::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.career-home .text-block {
  text-align: center;
}
.career-home .text-block h1 {
  color: #ffffff !important;
}
.career-home .text-block #breadcrumbs {
  padding: 0;
}
.career-home .text-block #breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.fleet_and_technology {
  background-color: var(--color-white);
  padding: 80px 0;
}
.fleet_and_technology .fleet-listing-wrapper .text-wrapper {
  padding: 0;
  width: 100%;
  margin-bottom: 30px;
}
.fleet_and_technology .fleet-listing-wrapper .text-wrapper h2 {
  color: var(--theme-color);
}
.fleet_and_technology .fleet__item .item__images {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .fleet_and_technology {
    padding: 50px 0;
  }
}
@media screen and (max-width: 567px) {
  .fleet_and_technology {
    padding: 30px 0;
  }
}

.rollover {
  background-color: var(--theme-color);
}

.tabs-stage .tab-stage {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.tabs-stage .tab-stage .title-inline {
  text-align: center;
}
.tabs-stage .tab-stage .title-inline .small-title {
  text-align: center;
  border: none;
}
.tabs-stage .tab-stage .jobs-items {
  padding: 0;
}
.tabs-stage .tab-stage .jobs-items .jobs-item {
  border-bottom: solid 1px #e1e1e1;
  position: relative;
  margin-bottom: 16px;
  border: none;
}
.tabs-stage .tab-stage .jobs-items .jobs-item:last-child {
  margin: 0;
}
.tabs-stage .tab-stage .jobs-items .jobs-item a {
  padding: 18px 15px;
  font-weight: 700;
  display: block;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid var(--theme-color);
}
.tabs-stage .tab-stage .jobs-items .jobs-item a::after {
  right: 15px;
  background: url(../images/right.svg) no-repeat center;
}
.tabs-stage .tab-stage .jobs-items .jobs-item:hover a {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.main-banner {
  padding: 50px 0;
  background: #f7f7f7;
}
@media screen and (max-width: 567px) {
  .main-banner {
    padding: 30px 0;
  }
}
.main-banner .text-block {
  text-align: center;
}
.main-banner .text-block #breadcrumbs {
  padding: 0;
}
.main-banner .text-block #breadcrumbs a {
  text-decoration: none;
  color: var(--secondary-color);
}
.main-banner .text-block h1 {
  letter-spacing: 0;
}

.job-details {
  padding: 80px 0;
}
@media screen and (max-width: 992px) {
  .job-details {
    padding: 50px 0;
  }
}
@media screen and (max-width: 567px) {
  .job-details {
    padding: 30px 0;
  }
}
.job-details .text-block article h3 {
  font-family: var(--Regular-font);
  font-size: 24px;
}
.job-details .text-block article h3 strong,
.job-details .text-block article h3 b {
  font-weight: 500;
}
.job-details .text-block article h3:has(+ p, + ul) {
  margin-bottom: 16px;
}
.job-details .text-block article ul li::before {
  color: var(--theme-color);
}
.job-details .text-block article ul:has(+ h3, + p) {
  margin-bottom: 16px;
}
.job-details .text-block article h4 {
  font-family: var(--Regular-font);
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 20px;
  color: var(--theme-color);
}
.job-details .text-block article h4 strong,
.job-details .text-block article h4 b {
  font-weight: 500;
}
.job-details .text-block article h4:has(+ p, + ul) {
  margin-bottom: 16px;
}

.actions-wrapper {
  padding: 0;
  padding-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 50px;
}

.blue_btn {
  background-color: var(--theme-color);
}
.blue_btn:hover {
  background-color: var(--secondary-color);
  color: var(--color-white);
}

.job-forms {
  padding: 80px 0;
}
@media screen and (max-width: 992px) {
  .job-forms {
    padding: 50px 0;
  }
}
@media screen and (max-width: 567px) {
  .job-forms {
    padding: 30px 0;
  }
}
.job-forms .form-wrapper .wrapper-form .details {
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.job-forms .form-wrapper .wrapper-form .details .title-inline {
  padding: 10px 10px;
  background-color: #ededed;
  margin-bottom: 16px;
  text-align: center;
}
.job-forms .form-wrapper .wrapper-form .details .title-inline h2 {
  letter-spacing: 0;
  font-size: 24px;
  color: var(--theme-color);
  padding: 0;
}

input,
.button.upload-files,
button.wpcf7-field-group-add,
.select2-container--default .select2-selection--single,
input[type=radio],
.codedropz-upload-handler,
textarea,
input[type=checkbox] + span:before {
  border-color: var(--theme-color);
}

.button.upload-files a,
.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn,
button.wpcf7-field-group-add {
  color: var(--theme-color);
}

#breadcrumbs a {
  color: var(--secondary-color);
}

.text .details.vessel.your p {
  text-align: center;
}

.details .columns.line-bottom {
  border-bottom-width: 1px;
  border-style: solid;
  -o-border-image: linear-gradient(to right, #083a3c, rgba(208, 228, 239, 0));
     border-image: -webkit-gradient(linear, left top, right top, from(#083a3c), to(rgba(208, 228, 239, 0)));
     border-image: linear-gradient(to right, #083a3c, rgba(208, 228, 239, 0));
  border-image-slice: 1;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 10px 20px 10px;
}

input {
  height: 46px;
  padding: 12px 18px;
  line-height: normal;
}