/* Conutway 2026 - offshore, marine and oil & gas brand site */
:root {
  --cw-blue: #183070;
  --cw-blue-2: #10265e;
  --cw-navy: #07183e;
  --cw-orange: #c07018;
  --cw-orange-2: #e28a22;
  --cw-white: #ffffff;
  --cw-ice: #eef4ff;
  --cw-soft: rgba(255,255,255,0.1);
  --cw-line: rgba(255,255,255,0.18);
  --cw-ink: #14213f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Calibri, Arial, Helvetica, sans-serif;
  color: var(--cw-white);
  background: var(--cw-blue);
  font-size: 16px;
  line-height: 1.65;
}
a, button { transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; }
a { color: inherit; }
a:hover, a:focus { color: var(--cw-orange-2); text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1180px; }
.cw-navbar .container { width: 100%; max-width: 1720px; }

.cw-navbar,
.navbar-default {
  min-height: 96px;
  margin: 0;
  background: rgba(255,255,255,0.98);
  border: none;
  box-shadow: 0 18px 45px rgba(7,24,62,0.22);
}
.cw-brand {
  display: inline-flex;
  align-items: center;
  height: 96px;
}
.logo {
  display: block;
  margin: 0;
  width: 245px;
  max-width: 245px;
  max-height: 76px;
  object-fit: contain;
}
.cw-navwrap { float: right; }
.cw-nav > li > a,
.navbar-default .navbar-nav > li > a {
  position: relative;
  padding: 37px 18px 34px;
  color: var(--cw-blue);
  font-size: 17px;
  line-height: 25px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.cw-nav > li > a:hover,
.cw-nav > li > a:focus,
.cw-nav > li > a.cur,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a.cur {
  color: var(--cw-orange);
  background: transparent;
}
.cw-nav > li > a:after,
.navbar-default .navbar-nav > li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cw-orange);
  box-shadow: 15px 0 0 var(--cw-orange), -15px 0 0 var(--cw-orange);
  transform: translateX(-50%) scale(0);
  transform-origin: center;
}
.cw-nav > li > a:hover:after,
.cw-nav > li > a.cur:after,
.navbar-default .navbar-nav > li > a:hover:after,
.navbar-default .navbar-nav > li > a.cur:after {
  transform: translateX(-50%) scale(1);
}
.cw-nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cw-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  background: #f2f6ff;
  border: 1px solid rgba(24,48,112,0.16);
  border-radius: 999px;
}
.cw-lang-switch button {
  min-height: 30px;
  padding: 0 10px;
  color: var(--cw-blue);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  line-height: 30px;
  font-weight: 900;
  letter-spacing: 0;
}
.cw-lang-switch button.is-active {
  color: var(--cw-white);
  background: var(--cw-orange);
}
.cw-teza-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--cw-white);
  background: var(--cw-orange);
  border: 2px solid var(--cw-orange);
  border-radius: 3px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.cw-teza-link:hover,
.cw-teza-link:focus {
  color: var(--cw-white);
  background: var(--cw-orange-2);
  border-color: var(--cw-orange-2);
}
.cw-workspace-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 132px;
  padding: 0 18px;
  color: var(--cw-white) !important;
  background: var(--cw-blue);
  border: 2px solid var(--cw-blue);
  border-radius: 3px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(24,48,112,0.22), inset 0 -3px 0 rgba(255,255,255,0.12);
}
.cw-workspace-link:hover,
.cw-workspace-link:focus {
  color: var(--cw-white);
  background: var(--cw-blue-2);
  border-color: var(--cw-blue-2);
  transform: translateY(-1px);
}
#app_menudown { display: none; }
.navbar-toggle { margin-top: 30px; border: none; }
.navbar-default .navbar-toggle .icon-bar { background: var(--cw-blue); }

@media screen and (min-width: 769px) {
  .cw-navbar .container {
    display: flex;
    align-items: center;
  }
  .cw-navbar .navbar-header {
    flex: 0 0 auto;
    float: none;
  }
  .cw-navwrap.collapse {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    float: none;
    margin-left: 56px;
  }
  .cw-nav {
    display: flex;
    align-items: center;
    float: none;
  }
  .cw-nav > li {
    float: none;
  }
}

.cw-hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: var(--cw-navy);
}
.cw-hero-media,
.cw-hero-media .bx-wrapper,
.cw-hero-media .bx-viewport,
.cw-hero-slider,
.cw-hero-slider li {
  height: 740px !important;
}
.cw-hero-media img {
  width: 100%;
  height: 740px;
  object-fit: cover;
  display: block;
}
.cw-hero-media .bx-wrapper { margin: 0; border: 0; box-shadow: none; }
.cw-hero-media .bx-pager { bottom: 34px; z-index: 5; }
.cw-hero-media .bx-pager.bx-default-pager a { background: rgba(255,255,255,0.5); }
.cw-hero-media .bx-pager.bx-default-pager a.active { background: var(--cw-orange); }
.cw-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7,24,62,0.84) 0%, rgba(24,48,112,0.62) 42%, rgba(7,24,62,0.08) 100%),
    linear-gradient(180deg, rgba(7,24,62,0.08) 0%, rgba(7,24,62,0.66) 100%);
}
.cw-hero-content {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 4.5vw, 86px);
  top: 50%;
  width: min(860px, calc(100vw - 56px));
  transform: translateY(-40%);
}
.cw-kicker,
.cw-section-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cw-orange-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.cw-kicker:before,
.cw-section-label:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cw-orange);
  box-shadow: 14px 0 0 var(--cw-orange), 28px 0 0 var(--cw-orange);
  margin-right: 30px;
}
.cw-hero h1 {
  margin: 24px 0 24px;
  color: var(--cw-white);
  font-size: 68px;
  line-height: 1.04;
  font-weight: 900;
}
.cw-hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  line-height: 1.65;
}
.cw-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.cw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 25px;
  border: 2px solid transparent;
  border-radius: 3px;
  color: var(--cw-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.cw-btn-primary { background: var(--cw-orange); }
.cw-btn-primary:hover, .cw-btn-primary:focus { background: var(--cw-orange-2); color: var(--cw-white); transform: translateY(-1px); }
.cw-btn-outline { border-color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.04); }
.cw-btn-outline:hover, .cw-btn-outline:focus { border-color: var(--cw-orange); color: var(--cw-orange-2); }

.cw-main,
.cw-page-main {
  background:
    radial-gradient(circle at 8% 15%, rgba(192,112,24,0.2), transparent 23%),
    linear-gradient(180deg, var(--cw-navy) 0%, var(--cw-blue) 48%, var(--cw-blue-2) 100%);
}
.cw-band { padding: 92px 0; }
.cw-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.cw-split h2,
.cw-section-head h2,
.cw-feature-copy h2,
.cw-cta h2,
.cw-bottom-cta h2 {
  margin: 16px 0 0;
  color: var(--cw-white);
  font-size: 43px;
  line-height: 1.15;
  font-weight: 900;
}
.cw-split p,
.cw-feature-copy p {
  color: rgba(255,255,255,0.84);
  font-size: 18px;
}
.cw-section-head { max-width: 840px; margin-bottom: 40px; }
.cw-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cw-card {
  min-height: 296px;
  padding: 30px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--cw-line);
  border-radius: 5px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.2);
}
.cw-card:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-bottom: 19px;
  border-radius: 50%;
  background: var(--cw-orange);
  box-shadow: 14px 0 0 var(--cw-orange), 28px 0 0 var(--cw-orange);
}
.cw-card span { color: var(--cw-orange-2); font-weight: 900; font-size: 13px; }
.cw-card h3 {
  margin: 18px 0 12px;
  color: var(--cw-white);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}
.cw-card p { margin: 0; color: rgba(255,255,255,0.78); }

.cw-feature-visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 570px;
  background: var(--cw-navy);
}
.cw-feature-image {
  min-height: 570px;
  background-size: cover;
  background-position: center;
}
.cw-feature-copy {
  padding: 82px 9vw 82px 68px;
  align-self: center;
}
.cw-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
  overflow: hidden;
}
.cw-process div {
  min-height: 216px;
  padding: 32px 24px;
  background: rgba(255,255,255,0.08);
}
.cw-process strong {
  display: block;
  margin-bottom: 12px;
  color: var(--cw-orange-2);
  font-size: 24px;
  font-weight: 900;
}
.cw-process p { color: rgba(255,255,255,0.78); margin: 0; }
.cw-cta,
.cw-bottom-cta {
  padding: 74px 0;
  background: var(--cw-navy);
  border-top: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.cw-cta .container,
.cw-bottom-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cw-page-hero {
  position: relative;
  min-height: 460px;
  height: 460px;
  margin-top: 96px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.cw-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,24,62,0.86) 0%, rgba(24,48,112,0.64) 50%, rgba(7,24,62,0.12) 100%),
    linear-gradient(180deg, rgba(7,24,62,0.08) 0%, rgba(7,24,62,0.68) 100%);
}
.cw-page-hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.cw-page-hero h1 {
  margin: 20px 0 12px;
  color: var(--cw-white);
  font-size: clamp(38px, 3vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  white-space: nowrap;
}
.cw-page-hero p {
  max-width: 780px;
  color: rgba(255,255,255,0.87);
  font-size: 20px;
}
.cw-page-shell {
  position: relative;
  z-index: 3;
  margin: -64px auto 0;
  background: rgba(8,26,67,0.74);
  border: 1px solid var(--cw-line);
  border-radius: 6px;
  box-shadow: 0 34px 95px rgba(0,0,0,0.32);
  overflow: hidden;
}
.cw-page-content { padding: 64px 72px 72px; }
.cw-page-content h1 {
  margin: 0 0 26px;
  color: var(--cw-white);
  font-size: clamp(30px, 2.2vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  white-space: nowrap;
}
.cw-page-content h2 {
  position: relative;
  margin: 50px 0 16px;
  color: var(--cw-white);
  font-size: 31px;
  font-weight: 900;
}
.cw-page-content h2:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--cw-orange);
  box-shadow: 16px 0 0 var(--cw-orange), 32px 0 0 var(--cw-orange);
}
.cw-page-content p {
  color: rgba(255,255,255,0.84);
  font-size: 18px;
  line-height: 1.82;
}
.cw-page-content ul,
.cw-page-content ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 24px 0 0;
  padding: 0;
}
.cw-page-content li {
  position: relative;
  list-style: none;
  min-height: 96px;
  padding: 20px 20px 20px 50px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--cw-line);
  border-left: 0;
  border-radius: 5px;
}
.cw-page-content li:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 30px;
  width: 10px;
  height: 10px;
  background: var(--cw-orange-2);
  border-radius: 50%;
}
.cw-page-content strong { color: var(--cw-white); font-weight: 900; }
.cw-page-content a { color: var(--cw-orange-2); font-weight: 900; }

.cw-list-shell {
  margin-top: -72px;
}
.cw-list-content > .cw-section-label {
  margin-bottom: 10px;
}
.cw-list-tiles,
.cw-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.cw-list-tile,
.cw-contact-item {
  position: relative;
  min-height: 190px;
  padding: 26px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--cw-line);
  border-radius: 6px;
}
.cw-list-tile:before,
.cw-contact-item:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--cw-orange);
  box-shadow: 16px 0 0 var(--cw-orange), 32px 0 0 var(--cw-orange);
}
.cw-list-tile h3,
.cw-contact-item h3 {
  margin: 0 0 12px;
  color: var(--cw-white);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}
.cw-list-tile p,
.cw-contact-item p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.7;
}
.cw-contact-panel {
  margin-top: 34px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(192,112,24,0.26), rgba(255,255,255,0.07)),
    rgba(255,255,255,0.08);
  border: 1px solid var(--cw-line);
  border-radius: 6px;
}
.cw-contact-panel h2 {
  margin-top: 0;
}
.cw-contact-panel .cw-btn {
  margin-top: 12px;
}
.cw-anchor {
  display: block;
  scroll-margin-top: 120px;
}

.cw-office-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  margin: 34px 0 12px;
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--cw-line);
  border-radius: 6px;
}
.cw-office-block img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.24);
}
.cw-office-block p { margin-bottom: 0; }

.cw-footer {
  background: var(--cw-navy);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 30px;
  text-align: left;
}
.cw-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.2fr 0.95fr 1fr;
  gap: 36px;
}
.cw-footer h3 {
  margin: 0 0 16px;
  color: var(--cw-white);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.cw-footer p { margin: 0 0 14px; line-height: 1.62; }
.cw-footer a { color: rgba(255,255,255,0.9); }
.cw-footer a:hover { color: var(--cw-orange-2); }
.cw-footer-brand img {
  width: 230px;
  padding: 11px 16px;
  margin-bottom: 18px;
  background: var(--cw-white);
  border-radius: 4px;
}
.cw-footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 0;
  color: rgba(255,255,255,0.66);
}
.cw-footer-bottom:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--cw-orange);
  box-shadow: 14px 0 0 var(--cw-orange), 28px 0 0 var(--cw-orange), 42px 0 0 var(--cw-orange);
}

.footer_nav,
.link_box,
.tags_box,
.left_nav,
.left_news,
.index_contact,
.product_index,
.news_box,
#cmsFloatPanel {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .cw-hero-content { left: 30px; }
  .cw-card-grid { grid-template-columns: repeat(2, 1fr); }
  .cw-navwrap.collapse { margin-left: 36px; }
  .cw-nav > li > a,
  .navbar-default .navbar-nav > li > a {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 13px;
  }
  .cw-teza-link { padding: 0 11px; font-size: 12px; }
  .cw-lang-switch button { padding: 0 8px; }
}

@media screen and (max-width: 768px) {
  .cw-navbar, .navbar-default { min-height: 74px; }
  .cw-brand { height: 74px; padding-left: 10px; }
  .logo { width: 188px; max-width: 188px; max-height: 58px; }
  .navbar-toggle { margin-top: 20px; }
  .cw-navwrap { float: none; background: var(--cw-white); }
  .cw-nav-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 18px;
    border-top: 1px solid rgba(24,48,112,0.12);
  }
  .cw-nav > li > a,
  .navbar-default .navbar-nav > li > a { padding: 14px 20px; font-size: 14px; }
  .cw-hero,
  .cw-hero-media,
  .cw-hero-media .bx-wrapper,
  .cw-hero-media .bx-viewport,
  .cw-hero-slider,
  .cw-hero-slider li,
  .cw-hero-media img {
    height: 680px !important;
    min-height: 680px;
  }
  .cw-hero-content { left: 20px; right: 20px; width: auto; }
  .cw-hero h1 { font-size: 38px; }
  .cw-hero p { font-size: 18px; }
  .cw-split,
  .cw-feature-visual,
  .cw-process,
  .cw-footer-grid,
  .cw-office-block {
    grid-template-columns: 1fr;
  }
  .cw-band { padding: 64px 0; }
  .cw-split { gap: 26px; }
  .cw-split h2,
  .cw-section-head h2,
  .cw-feature-copy h2,
  .cw-cta h2,
  .cw-bottom-cta h2 {
    font-size: 32px;
  }
  .cw-card-grid { grid-template-columns: 1fr; }
  .cw-feature-copy { padding: 50px 24px; }
  .cw-page-hero { margin-top: 74px; min-height: 340px; }
  .cw-page-hero .container { padding-top: 82px; }
  .cw-page-hero h1 { font-size: 38px; }
  .cw-page-hero h1 { white-space: normal; }
  .cw-page-content { padding: 36px 20px 46px; }
  .cw-page-content h1 { font-size: 32px; }
  .cw-page-content h1 { white-space: normal; }
  .cw-page-content h2 { font-size: 26px; }
  .cw-page-content ul,
  .cw-page-content ol { grid-template-columns: 1fr; }
  .cw-list-tiles,
  .cw-contact-grid { grid-template-columns: 1fr; }
  .cw-cta .container,
  .cw-bottom-cta .container { display: block; }
  .cw-cta .cw-btn,
  .cw-bottom-cta .cw-btn { margin-top: 24px; }
}
