@charset "UTF-8";
@font-face {
  font-family: "Helvetica Neue LT35";
  src: url(../fonts/HelveticaNeueLT45LightRegular.ttf) format("truetype");
}
@font-face {
  font-family: "Helvetica Neue Standard";
  src: url(../fonts/HelveticaNeueLTStd-Lt.otf) format("truetype");
}
@font-face {
  font-family: "Helvetica Neue LT25";
  src: url(../fonts/HelveticaNeueLT25UltLightItalic.ttf) format("truetype");
}
@font-face {
  font-family: "Helvetica Neue LT Standard UltLT";
  src: url(../fonts/HelveticaNeueLTStd-UltLt.otf) format("truetype");
}
/**
 *  SETTINGS
 */
/**
 *  COMPONENTS
 */
/**
 * Reset
 */
html, body, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/**
 *  MAIN RULES
 */
*,
*::after,
*::before {
  box-sizing: border-box;
  outline: none;
}

body {
  background-color: #fff;
  min-height: 100%;
  overflow-x: hidden;
  position: relative;
}

p {
  font-weight: normal;
  margin-bottom: 1.5em;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 600;
}

ul {
  margin-bottom: 1em;
}

li {
  list-style: none;
  margin-bottom: 0.5em;
}

/**
 *  BACKGROUND
 */
.bg-primary {
  background-color: #09606B;
}
.bg-dark {
  background-color: #18232f;
}
.bg-secondary {
  background-color: #e91e63;
}
.bg-white {
  background-color: #fff;
}
.bg-success {
  background-color: #49894F;
}
.bg-info {
  background-color: #5bc0de;
}
.bg-warning {
  background-color: #f0ad4e;
}
.bg-error {
  background-color: #77160b;
}
.bg-gray {
  background-color: #969da6;
}
.bg-gray-light {
  background-color: #eceff1;
}

/**
 *  BORDER
 */
.border {
  border: 1px solid #d5d9db;
}

.border-bottom {
  border-bottom: 1px solid #d5d9db;
}

.border-left {
  border-left: 1px solid #d5d9db;
}

.border-right {
  border-right: 1px solid #d5d9db;
}

.border-top {
  border-top: 1px solid #d5d9db;
}

/**
 *  ALIGNERS
 */
.aligner {
  display: flex;
}
.aligner--spaceBetween {
  justify-content: space-between;
  width: 100%;
}
.aligner--spaceAround {
  justify-content: space-around;
  width: 100%;
}
.aligner--centerVertical {
  align-items: center;
}
.aligner--centerHoritzontal {
  justify-content: center;
}
.aligner--contentStart {
  justify-content: flex-start;
}
.aligner--contentEnd {
  justify-content: flex-end;
}

.aligner--itemTop {
  align-self: flex-start;
}

.aligner--itemBottom {
  align-self: flex-end;
}

.flex-grow,
.aligner--grow {
  flex-grow: 1;
}

/**
 *  FLOATS
 */
.fleft {
  float: left;
}

.fright {
  float: right;
}

.clearfix ::after {
  clear: both;
  content: "";
  display: table;
}

/**
 *  MARGINS
 */
.m-xsmall {
  margin: 4px;
}

.mb-xsmall {
  margin-bottom: 4px;
}

.m-small {
  margin: 8px;
}

.mb-small {
  margin-bottom: 8px;
}

.m-medium {
  margin: 16px;
}

.mb-medium {
  margin-bottom: 16px;
}

.m-big {
  margin: 36px;
}

.mb-big {
  margin-bottom: 36px;
}

.m-huge {
  margin: 48px;
}

.mb-huge {
  margin-bottom: 48px;
}

.m-none {
  margin: 0 !important;
}

.mt-big {
  margin-top: 36px;
}

.mt-huge {
  margin-top: 48px;
}

/**
 *  PADDINGS
 */
.p-small {
  padding: 4px;
}

.pb-small {
  padding-bottom: 4px;
}

.p-medium {
  padding: 8px;
}

.pb-medium {
  padding-bottom: 8px;
}

.p-big {
  padding: 16px;
}

.pb-big {
  padding-bottom: 16px;
}

.p-huge {
  padding: 36px;
}

.pb-huge {
  padding-bottom: 36px;
}

/**
 *  OTHERS
 */
.no-wrap {
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

.opacity-low {
  opacity: 0.5;
}

.rounded-corners {
  border-radius: 5px;
}

.rounded {
  border-radius: 100%;
}

/**
 * LAYOUT
 */
.section {
  padding-bottom: 36px;
  padding-top: 36px;
}
@media (min-width: 768px) {
  .section {
    padding-bottom: 72px;
    padding-top: 72px;
  }
}
.section + .section {
  padding-top: 0;
}

.container {
  background-color: transparent;
  margin: 0 auto;
  max-width: 1400px;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.container-medium {
  margin: 0 auto;
  max-width: 944px;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .container-medium {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.container-small {
  margin: 0 auto;
  max-width: 400px;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .container-small {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/**
 *  TYPOGRAPHY
 */
body {
  color: rgb(111, 126, 151);
  font-family: "Helvetica Neue LT35", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: #09606B;
  text-decoration: none;
}
a:hover {
  color: rgba(9, 96, 107, 0.8);
}
a:focus {
  color: #09606B;
}

.text-huge, .text-big, .text-medium {
  margin-bottom: 1em;
}
.text-huge {
  font-size: 36px;
  line-height: 1.5em;
}
.text-big {
  font-size: 24px;
  line-height: 1.5em;
}
.text-medium {
  font-size: 18px;
  line-height: 1.5em;
}
.text-small {
  font-size: 12px;
  line-height: 1.3em;
}
.text-body {
  font-size: 18px;
  line-height: 1.5em;
}

.text-primary {
  color: #09606B;
}
.text-dark {
  color: #18232f;
}
.text-secondary {
  color: #e91e63;
}
.text-white {
  color: #fff;
}
.text-success {
  color: #49894F;
}
.text-info {
  color: #5bc0de;
}
.text-warning {
  color: #f0ad4e;
}
.text-error {
  color: #77160b;
}
.text-gray {
  color: #969da6;
}
.text-gray-light {
  color: #eceff1;
}

.text-light {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-lineThrough {
  text-decoration: line-through;
}

.text-italic {
  font-style: italic;
}

.text-underline {
  text-decoration: underline;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-withSubtitle {
  margin-bottom: 0 !important;
}
.text-withSubtitle + .text-huge,
.text-withSubtitle + .text-big,
.text-withSubtitle + .text-medium,
.text-withSubtitle + .text-small {
  margin-top: 0.5em;
}

h1,
h2,
h3,
h4 {
  font-weight: 300;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/**
 *  BADGE
 *
 *  Markup:
 *  -------
 *
 *  <ul>
 *    <li class="badge badge--primary">Badge 1</li>
 *    <li class="badge badge--secondary badge--big">Badge 1</li>
 *  </ul>
 *
 */
.badge {
  background-color: #eceff1;
  border-radius: 3px;
  color: rgb(111, 126, 151);
  display: inline-block;
  line-height: 1.2em;
  padding: 8px 16px;
}
.badge--big {
  font-size: 1.3em;
}
.badge--small {
  font-size: 0.7em;
}
.badge--primary {
  background-color: #09606B;
  color: #fff;
}
.badge--secondary {
  background-color: #e91e63;
  color: #fff;
}
.badge--dark {
  background-color: #18232f;
  color: #fff;
}
.badge--light {
  background-color: #969da6;
  color: #fff;
}
.badge--success {
  background-color: #49894F;
  color: #fff;
}
.badge--error {
  background-color: #77160b;
  color: #fff;
}
.badge--warning {
  background-color: #f0ad4e;
  color: #fff;
}

/**
 *  BUTTON
 *
 *  Markup:
 *  -------
 *
 *  <button class="button">Default</button>
 *  <button class="button button--big">Button big</button>
 *  <button class="button button--secondary">Button secondary</button>
 *
 */
button {
  background-color: transparent;
  cursor: pointer;
}

.button {
  background-color: #09606B;
  border: 0;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-family: "Helvetica Neue LT35", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 8px 16px 8px;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease-in-out;
  white-space: nowrap;
}
.button:focus, .button:hover, .button:active {
  color: #fff;
}
.button:hover {
  background-color: rgba(9, 96, 107, 0.8);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
.button:active {
  opacity: 1;
}
.button:first-child {
  margin-left: 0;
}
.button:last-child {
  margin-right: 0;
}
.button--big {
  font-size: 24px;
  padding: 16px 36px;
}
.button--small {
  font-size: 12px;
  padding: 4px 16px;
}
@media (max-width: 991px) {
  .button--mobileFull {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.button--secondary {
  background-color: #e91e63;
  color: #fff;
}
.button--secondary:hover {
  background-color: rgba(233, 30, 99, 0.8);
  color: #fff;
}
.button--white {
  background-color: #fff;
  color: #09606B;
}
.button--white:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgba(9, 96, 107, 0.8);
}
.button--green {
  background-color: #49894F;
  color: #fff;
}
.button--green:hover {
  background-color: rgba(73, 137, 79, 0.8);
  color: #fff;
}
.button--red {
  background-color: #77160b;
  color: #fff;
}
.button--red:hover {
  background-color: rgba(119, 22, 11, 0.8);
  color: #fff;
}
.button--transparent {
  background-color: transparent;
  color: #09606B;
}
.button--transparent:active, .button--transparent:hover, .button--transparent:focus {
  background-color: transparent;
  color: rgba(9, 96, 107, 0.8);
  opacity: 0.8;
}
.button--outlined {
  background-color: transparent;
  border: 1px solid #d5d9db;
  color: #09606B;
}
.button--outlined:active, .button--outlined:hover, .button--outlined:focus {
  background-color: transparent;
  color: rgba(9, 96, 107, 0.8);
  opacity: 0.8;
}

/**
 *  FORMS
 *
 *  Markup:
 *  ---------
 *  <div class="input input-fullWidth">
 *    <input id="#" placeholder="#" type="text">
 *  </div>
 *
 *  <div class="select select-fullWidth">
 *    <select name="#" id="#">
 *      <option>Option 1</option>
 *      <option>Option 2</option>
 *    </select>
 *  </div>
 *
 *  <div class="textarea">
 *    <textarea id="#"></textarea>
 *  </div>
 *
 *  <div class="radio">
 *    <input id="#" name="#" type="radio" value="">
 *    <label for="#">Radio button</label>
 *  </div>
 *
 *  <div class="checkbox">
 *    <input id="#" name="#" type="checkbox" value="">
 *    <label for="#">Checkbox</label>
 *  </div>
 */
input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  display: block;
  font-weight: normal;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #eceff1 inset;
}

.textarea,
.input,
.select {
  border: 1px solid #d5d9db;
  border-radius: 3px;
  box-shadow: none;
  display: inline-block;
  font-weight: normal;
  margin-bottom: 20px;
  overflow: hidden;
}
.textarea :focus,
.input :focus,
.select :focus {
  outline: none;
}
.textarea.has-error,
.input.has-error,
.select.has-error {
  background: #eceff1;
  border: 1px solid #77160b;
  margin-bottom: 0;
}

.select {
  background-color: #eceff1;
  display: inline-block;
  margin-right: 16px;
  position: relative;
}
.select:last-child {
  margin-right: 0;
}
.select-fullWidth {
  display: block;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: rgb(111, 126, 151);
  display: block;
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
  padding: 8px 16px;
  padding-right: 30px;
  transition: background-color 0.2s ease-in-out;
  width: 100%;
}
.select select:active, .select select:focus {
  background-color: rgb(250.6818181818, 251.3636363636, 251.8181818182);
  border: 0;
  outline: none;
}
.select select::-ms-expand {
  display: none;
}
.select::after, .select::before {
  background: #09606B;
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform-origin: 1px;
  width: 10px;
}
.select::after {
  transform: rotate(-135deg);
}
.select::before {
  transform: rotate(-45deg);
}

.textarea {
  background-color: #eceff1;
  padding: 0;
}
.textarea-fullWidth {
  display: block;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.textarea textarea {
  background: transparent;
  border: 0;
  color: rgb(111, 126, 151);
  display: block;
  font-family: "Helvetica Neue LT35", sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
  min-height: 120px;
  padding: 8px 16px;
  transition: background-color 0.2s ease-in-out;
  width: 100%;
}
.textarea textarea::-moz-placeholder {
  color: #969da6;
}
.textarea textarea::placeholder {
  color: #969da6;
}
.textarea textarea:focus, .textarea textarea:active {
  background-color: rgb(250.6818181818, 251.3636363636, 251.8181818182);
  border: 0;
  outline: none;
}

.checkbox {
  margin-bottom: 8px;
  position: relative;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox]:checked + label::after {
  animation: checkboxAndRadioAnimation 0.25s;
  content: "";
  transform: scale(1) rotate(45deg);
}
.checkbox input[type=checkbox] + label {
  display: block;
  overflow: hidden;
  padding-left: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checkbox input[type=checkbox] + label::before {
  background-color: #eceff1;
  border: 1px solid #d5d9db;
  border-radius: 3px;
  content: "";
  display: inline-block;
  height: 20px;
  left: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 20px;
}
.checkbox input[type=checkbox] + label::after {
  border-bottom: 3px solid #09606B;
  border-right: 3px solid #09606B;
  display: block;
  height: 12px;
  left: 11px;
  margin-left: -4px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  width: 7px;
  z-index: 1;
}

.radio {
  margin-bottom: 8px;
  position: relative;
}
.radio input[type=radio] {
  display: none;
}
.radio input[type=radio]:checked + label::after {
  animation: checkboxAndRadioAnimation 0.25s;
  content: "";
  transform: scale(1) rotate(45deg);
}
.radio input[type=radio] + label {
  display: block;
  overflow: hidden;
  padding-left: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.radio input[type=radio] + label::before {
  background-color: #eceff1;
  border: 1px solid #d5d9db;
  border-radius: 20px;
  content: "";
  display: inline-block;
  height: 20px;
  left: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 20px;
}
.radio input[type=radio] + label::after {
  background-color: #09606B;
  border-radius: 20px;
  display: block;
  height: 10px;
  left: 11px;
  margin-left: -6px;
  margin-top: -6px;
  position: absolute;
  top: 13px;
  width: 10px;
  z-index: 1;
}

@keyframes checkboxAndRadioAnimation {
  0% {
    transform: scale(0) rotate(45deg);
  }
  50% {
    transform: scale(1.5) rotate(45deg);
  }
  100% {
    transform: scale(1) rotate(45deg);
  }
}
.input {
  background-color: #eceff1;
  margin-right: 10px;
  padding: 0;
  position: relative;
}
.input :focus,
.input :active {
  background-color: rgb(250.6818181818, 251.3636363636, 251.8181818182);
  border-radius: 3px;
}
.input input {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: rgb(111, 126, 151);
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
  outline: none;
  padding: 8px 16px;
  width: 100%;
}
.input input::-moz-placeholder {
  color: #969da6;
}
.input input::placeholder {
  color: #969da6;
}
.input-withIcon input {
  padding-right: 32px;
}
.input-icon {
  fill: #969da6;
  height: 16px;
  margin-top: -8px;
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
}
.input-fullWidth {
  display: block;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/**
 *  FORM COLLAPSED (items in row without gap between them)
 *
 *  Markup:
 *  -------
 *
 *  <div class="formCollapsed">
 *    <div class="input formCollapsed-item formCollapsed-itemPrimary">
 *      <input id="name" placeholder="Klingon search" type="text" />
 *    </div>
 *    <div class="select formCollapsed-item">
 *      <select name="country-code" id="country-code">
 *        <option value="AO"> Angola</option>
 *      </select>
 *    </div>
 *    <button class="formCollapsed-item button button-primary">
 *      Search
 *    </button>
 *  </div>
 **/
.formCollapsed {
  display: flex;
  margin-bottom: 20px;
}
.formCollapsed-item {
  border-radius: 0 !important;
  margin: 0 !important;
}
.formCollapsed-item:first-child {
  border-bottom-left-radius: 3px !important;
  border-top-left-radius: 3px !important;
}
.formCollapsed-item:last-child {
  border-bottom-right-radius: 3px !important;
  border-top-right-radius: 3px !important;
}
.formCollapsed-item:not(:last-child) {
  border-right: 0;
}
.formCollapsed-itemPrimary {
  flex: 1;
}

/**
 *  LOADING BAR
 *
 *  Markup:
 *  ---------
 *  <div class="loadingBar"></div>
 *
 */
.loadingBar {
  height: 6px;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.loadingBar::before {
  animation: loading 2s linear infinite;
  background-color: #09606B;
  content: "";
  display: block;
  height: 6px;
  left: -300px;
  position: absolute;
  width: 300px;
}

@keyframes loading {
  from {
    left: -300px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
/**
 *  LOADING SPINNER
 *
 *  Markup:
 *  ---------
 *  <div class='loadingSpinner'>
 *    <span class='loadingSpinner-inner'></span>
 *    <span class='loadingSpinner-inner'></span>
 *    <span class='loadingSpinner-inner'></span>
 *    <span class='loadingSpinner-inner'></span>
 *  </div>
 *
 */
.loadingSpinner {
  animation: rotateLoader 4s infinite;
  animation-timing-function: ease-in-out;
  display: block;
  height: 30px;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  position: fixed;
  top: 50%;
  width: 30px;
  z-index: 1000;
}
.loadingSpinner-inner {
  animation-timing-function: ease-in-out;
  background-color: #e91e63;
  border-radius: 100%;
  display: block;
  height: 9px;
  position: absolute;
  width: 9px;
}
.loadingSpinner-inner:nth-child(1) {
  animation: translateBall1 1s infinite;
  left: 0;
  top: 0;
  transform: translate3d(4.5px, 4.5px, 0);
}
.loadingSpinner-inner:nth-child(2) {
  animation: translateBall2 1s infinite;
  right: 0;
  top: 0;
}
.loadingSpinner-inner:nth-child(3) {
  animation: translateBall3 1s infinite;
  bottom: 0;
  right: 0;
}
.loadingSpinner-inner:nth-child(4) {
  animation: translateBall4 1s infinite;
  bottom: 0;
  left: 0;
}

@keyframes rotateLoader {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes translateBall1 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(4.5px, 4.5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes translateBall2 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-4.5px, 4.5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes translateBall3 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-4.5px, -4.5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes translateBall4 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(4.5px, -4.5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
/**
 *  NOTIFICATION
 *
 *  Markup:
 *  -------
 *
 *  <div class="notification notification--sucess">Success notification</div>
 *  <div class="notification notification--info">Success info</div>
 *  <div class="notification notification--error">Success error</div>
 *  <div class="notification notification--warning">Success warning</div>
 *
 */
.notification {
  border-radius: 3px;
  color: #fff;
  margin-bottom: 36px;
  padding: 16px;
}
.notification p:last-child {
  margin-bottom: 0;
}
.notification--primary {
  background-color: #09606B;
}
.notification--dark {
  background-color: #18232f;
}
.notification--secondary {
  background-color: #e91e63;
}
.notification--white {
  background-color: #fff;
}
.notification--success {
  background-color: #49894F;
}
.notification--info {
  background-color: #5bc0de;
}
.notification--warning {
  background-color: #f0ad4e;
}
.notification--error {
  background-color: #77160b;
}
.notification--gray {
  background-color: #969da6;
}
.notification--gray-light {
  background-color: #eceff1;
}

/**
 *  PAGINATOR
 *
 *  Markup:
 *  -------
 *
 *  <ul class="paginator">
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink">< Prev</a>
 *    </li>
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink">1</a>
 *    </li>
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink is-active">2</a>
 *    </li>
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink">3</a>
 *    </li>
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink">Next ></a>
 *    </li>
 *  </ul>
 */
.paginator-item {
  display: inline-block;
  margin-right: 4px;
}
.paginator-itemLink {
  background-color: #eceff1;
  border-radius: 3px;
  display: block;
  padding: 8px 16px;
}
.paginator-itemLink.is-active {
  background-color: #09606B;
  color: #fff;
  cursor: default;
}

/**
 *  TABLE
 *
 *  Markup:
 *  -------
 *
 *  <table class="table">
 *    <tr>
 *      <th>First column</th>
 *      <th>Second column</th>
 *      <th>Third column</th>
 *    </tr>
 *    <tr>
 *      <td="First column">Blue</td>
 *      <td="Second column">One</td>
 *      <td="Third column">My life fades</td>
 *    </tr>
 *  </table>
 *
 */
.table {
  background-color: #eceff1;
  border: 1px solid #d5d9db;
  border-collapse: collapse;
  color: rgb(111, 126, 151);
  max-width: 100%;
  width: 100%;
}
.table th,
.table td {
  border-bottom: 1px solid #d5d9db;
  padding: 8px;
  position: relative;
}
.table thead {
  border-bottom: 1px solid #d5d9db;
}
.table th {
  background-color: #fff;
  color: #969da6;
  font-size: 12px;
  font-weight: normal;
  padding: 8px;
  white-space: nowrap;
}

/**
 *  TABLE RESPONSIVE
 *
 *  Markup:
 *  -------
 *
 *  <table class="table table--responsive">
 *    <tr>
 *      <th>First column</th>
 *      <th>Second column</th>
 *      <th>Third column</th>
 *    </tr>
 *    <tr>
 *      <td data-th="First column">Blue</td>
 *      <td data-th="Second column">One</td>
 *      <td data-th="Third column">My life fades</td>
 *    </tr>
 *    <tr>
 *      <td data-th="First column">Green</td>
 *      <td data-th="Second column">Two</td>
 *      <td data-th="Third column">
 *        when the world was powered by the black fuel... and the desert
 *        sprouted great cities of pipe and steel.
 *      </td>
 *    </tr>
 *    <tr>
 *      <td data-th="First column">Yellow</td>
 *      <td data-th="Second column">Three</td>
 *      <td data-th="Third column">
 *        A whirlwind of looting, a firestorm of fear.
 *      </td>
 *    </tr>
 *  </table>
 *
 */
.table--responsive th {
  display: none;
}
.table--responsive td {
  display: block;
}
@media (max-width: 767px) {
  .table--responsive td {
    border: 0;
  }
}
.table--responsive td::before {
  color: #969da6;
  content: attr(data-th) ": ";
  display: block;
  font-weight: normal;
}
@media (min-width: 576px) {
  .table--responsive td::before {
    display: none;
  }
}
.table--responsive td:first-child {
  border-top: 1px solid #d5d9db;
}
.table--responsive th,
.table--responsive td {
  text-align: left;
}
@media (min-width: 576px) {
  .table--responsive th,
  .table--responsive td {
    border-top: 1px solid #d5d9db;
    display: table-cell;
  }
}

/**
 *  TABS
 *
 *  Markup:
 *  -------
 *
 *  <div class="tabs">
 *    <a href="#" title="#" class="tabs-item">[...]</a>
 *    <a href="#" title="#" class="tabs-item is-selected">[...]</a>
 *  </div>
 *
 */
.tabs {
  border-bottom: 1px solid #d5d9db;
  text-align: center;
}
.tabs-item {
  border-bottom: 3px solid transparent;
  color: #969da6;
  display: inline-block;
  margin: 0 16px 0 0;
  min-width: 70px;
  padding: 16px;
  position: relative;
}
.tabs-item:hover {
  color: #09606B;
  text-decoration: none;
}
.tabs-item.is-selected {
  border-bottom: 3px solid #09606B;
  color: #09606B;
}

/**
 *  TAG
 *
 *  Markup:
 *  -------
 *
 *  <ul>
 *    <li class="tag">Fantasy</li>
 *    <li class="tag">Fiction</li>
 *    <li class="tag">Contemporary</li>
 *  </ul>
 *
 *  <ul>
 *    <li class="tag">
 *      <a href="#">Fantasy</a>
 *    </li>
 *    <li class="tag">
 *      <a href="#">Fiction</a>
 *    </li>
 *    <li class="tag">
 *       <a href="#">Contemporary</a>
 *    </li>
 *  </ul>
 *
 */
.tag {
  background-color: #eceff1;
  border-radius: 3px 0 0 3px;
  color: rgb(111, 126, 151);
  display: inline-block;
  line-height: 16px;
  margin: 0 16px 16px 0;
  padding: 8px;
  position: relative;
}
.tag::before {
  border-bottom: 16px solid transparent;
  border-left: 8px solid #eceff1;
  border-top: 16px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
}
.tag::after {
  background: #fff;
  border-radius: 100%;
  content: "";
  height: 5px;
  margin-top: -2.5px;
  position: absolute;
  right: -2.5px;
  top: 50%;
  width: 5px;
}

.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1300px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 12px;
  padding-left: 12px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.header {
  background-color: #122023;
  position: inherit;
  z-index: 50;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 0.1rem;
}
.header .header-black-bar {
  background-color: rgb(111, 126, 151);
  width: 100%;
  height: 35px;
  padding: 2px;
}
.header .header-black-bar a {
  padding: 10px;
  font-weight: 600;
  color: #e08f2e;
}
.header .logo {
  max-width: 250px;
  padding: 20px;
}
@media (min-width: 1450px) {
  .header hr {
    display: block;
  }
}
.header .menu-list-container {
  background-color: rgba(255, 255, 255, 0.9019607843);
  position: fixed;
  width: 100%;
  top: -600px;
  left: 0;
  z-index: 50;
  transition: top 0.5s ease-in-out;
  max-width: 100%;
}
.header .menu-list-container .menu-list {
  margin-top: 20px;
}
.header .menu-list-container .menu-list,
.header .menu-list-container a {
  color: rgb(111, 126, 151);
  padding: 1rem 1rem;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.header .menu-list-container .menu-list > li {
  margin-bottom: 40px;
}
.header .menu-list-container .menu-list > li :hover {
  text-decoration: underline;
}
.header .menu-list-container .nav-list-title {
  display: block;
  padding: 2rem 1rem 0 2rem;
  margin: 0;
  font-size: 2rem;
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .header hr {
    margin-top: 25px;
  }
  .header .menu-list-container {
    position: relative;
    width: auto;
    background-color: transparent;
    top: 0;
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
  }
  .header .header-nav {
    width: auto;
    max-width: 1400px;
    margin: 10px auto 0 auto;
  }
  .header .header-nav .nav-list-title {
    display: none;
  }
  .header .header-nav .text-white p, .header .header-nav .text-white h1, .header .header-nav .text-white h2, .header .header-nav .text-white h3, .header .header-nav .text-white h4, .header .header-nav .text-white h5 {
    color: #cbcbcb !important;
  }
  .header .header-nav .text-white li > a {
    color: #cbcbcb !important;
  }
  .header .header-nav .menu-list {
    display: flex;
    padding: 1rem;
    text-align: right;
  }
  .header .header-nav .menu-list a {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1.4px;
    padding: 0;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    width: auto;
    padding: 1rem;
  }
  .header .header-nav .menu-list li {
    padding: 0.5rem 0.5rem;
    margin-bottom: 0;
    color: rgb(111, 126, 151);
  }
}
.menu-button {
  position: fixed;
  right: 10px;
  top: 60px;
  margin-top: 0;
  padding: 0;
  font-size: 3rem;
  transition: all 0.5s ease-in-out;
  color: #09606B;
  z-index: 80;
  height: 50px;
  width: 50px;
  cursor: pointer;
}
.menu-button .burger-icon {
  margin-top: 30px;
}
.menu-button .burger-icon,
.menu-button .burger-icon:before,
.menu-button .burger-icon:after {
  display: block;
  background-color: #09606B;
  position: absolute;
  height: 4px;
  width: 40px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
  content: "";
  transition: 0.3s ease-in-out;
}
.menu-button .burger-icon:after {
  top: -0.8rem;
}
.menu-button .burger-icon:before {
  top: 0.8rem;
}

.menu-button:hover .burger-icon,
.menu-button:hover .burger-icon:before,
.menu-button:hover .burger-icon:after {
  background-color: #0098d9;
}
.menu-button:hover .burger-icon:after {
  top: -1rem;
}
.menu-button:hover .burger-icon:before {
  top: 1rem;
}

@media (min-width: 1200px) {
  .menu-button {
    right: 30px;
    width: 60px;
    height: 60px;
  }
  .menu-button .burger-icon {
    margin-top: 30px;
  }
  .menu-button .burger-icon,
  .menu-button .burger-icon:before,
  .menu-button .burger-icon:after {
    width: 60px;
  }
}
.header #nav-menu-checkbox:checked ~ .header-nav > .menu-list-container {
  top: 0 !important;
}
.header #nav-menu-checkbox:checked ~ .header-nav > .menu-list-container .nav-content {
  position: relative;
  height: 320px;
  opacity: 1;
}
.header #nav-menu-checkbox:checked ~ .header-nav > .menu-list-container .nav-content * {
  opacity: 1;
}
.header #nav-menu-checkbox:checked ~ .menu-button .burger-icon {
  background-color: transparent;
}
.header #nav-menu-checkbox:checked ~ .menu-button .burger-icon::before {
  transform: rotate(225deg);
  top: 0;
}
.header #nav-menu-checkbox:checked ~ .menu-button .burger-icon::after {
  transform: rotate(-225deg);
  top: 0;
}
.header #nav-menu-checkbox {
  display: block;
}
@media (min-width: 1200px) {
  .header .menu-button {
    display: none;
  }
}

.footer {
  width: 100%;
  background-color: #eff0f2;
  padding-top: 2rem;
  margin-top: 8rem;
}
.footer .footer-logo {
  max-width: 350px;
}
.footer .footer-inner {
  margin: 0 auto;
  max-width: 1400px;
  padding: 1rem;
}
.footer .socials {
  display: flex;
  margin-top: 2rem;
}
.footer .socials a {
  font-size: 3rem;
  margin-right: 1rem;
  color: #e08f2e;
}
.footer .footer-contact-form {
  background-color: #e08f2e;
  color: #fff;
  padding: 2rem;
  margin: 10px;
}
@media (min-width: 800px) {
  .footer .footer-contact-form {
    transform: translateY(-15%);
  }
}

.child-grid-section {
  margin: 1rem auto;
}

.child-card {
  position: relative;
  margin: 10px;
  border: 1px solid #969da6;
  max-width: 100%;
  width: 360px;
  max-height: 600px;
  box-shadow: 2px 2px 5px lightblue;
}
.child-card .child-card-image {
  height: 320px;
  width: 360px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.child-card .child-card-content {
  margin: 1rem;
}
.child-card .child-card-content-title {
  font-size: 1.8rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

.orange-box {
  background-color: #e08f2e;
  padding: 1rem;
  color: #fff;
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
  transform: translateY(-20%);
  min-height: 330px;
  margin-top: 20px;
}
.orange-box .orange-box-text-container {
  max-width: 400px;
}
.orange-box .orange-box-title {
  font-size: 3.5rem;
  line-height: 3.5rem;
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
  margin-bottom: 1.5rem;
}
.orange-box .orange-box-content {
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (min-width: 800px) {
  .orange-box {
    padding: 3rem;
    margin-right: 100px;
  }
}
.gray-box {
  background-color: #eff0f2;
  margin-top: 30px;
}
.gray-box .container {
  max-width: 1200px;
  margin-top: 50px;
}
.gray-box .text-big {
  font-size: 2.5rem;
}
.gray-box ul {
  margin-left: 30px;
  list-style: none; /* Remove default bullets */
}
.gray-box ul li::before {
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #e08f2e; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}
.gray-box .float-image {
  margin-top: 40px;
  text-align: right;
}
.gray-box .float-image img {
  position: relative;
  max-width: 600px;
  transform: translateY(30px);
  z-index: 50;
}

.speach-mark {
  max-width: 40px;
  margin-top: 50px;
}

.speach-mark-end {
  margin-top: 0;
  transform: scaleX(-1);
}

.chevron {
  max-width: 50px;
  transform: translateY(-80%);
}

.gray-testimonial {
  background-color: #4e555b;
  max-width: 1200px;
  color: #fff;
  padding: 1rem;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
.gray-testimonial .gray-testimonial-content {
  padding: 0 1rem;
}
.gray-testimonial .symbol {
  color: #e08f2e;
  font-size: 6rem;
  transform: translateY(-50%);
}
.gray-testimonial .symbol .end {
  float: right;
}

@media (min-width: 600px) {
  .gray-testimonial {
    font-size: 1.8rem;
    padding: 3rem;
  }
  .gray-testimonial .gray-testimonial-content {
    padding: 0 2rem;
  }
}
.float-right {
  float: right;
}

.video-player {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 0;
}
.video-player video {
  width: 100%;
  height: auto;
  display: block;
}
.video-player:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.service-description-panel {
  margin: 30px auto;
  transition: max-height 1s ease-in-out;
  max-height: 600px;
  overflow: hidden;
}

.hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}

.news-grid {
  display: grid;
  grid-template-columns: 220px 400px 400px;
  justify-content: center;
  grid-template-rows: 400px;
  gap: 10px;
  max-width: 1200px;
  margin: 25px auto;
}
.news-grid a {
  color: #fff;
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-width: 100%;
    margin: 15px;
    gap: 5px;
  }
}
.news-grid .news-grid-row-title {
  position: relative;
  background-color: #c7cbd7;
  padding: 5px 10px;
  height: 400px;
}
.news-grid .news-grid-row-title h3 {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg) translateX(50%) translateY(-140%);
  position: absolute;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  padding: 0;
  margin: 0;
  width: 100%;
  white-space: nowrap;
}
.news-grid .news-grid-row-title:first-child {
  background-color: #122023;
}
.news-grid .news-cell {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.news-grid .news-cell img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-grid .news-cell .news-grid-text-container {
  position: absolute;
  bottom: 0;
  background: rgba(2, 32, 77, 0.6980392157);
  color: #fff;
  width: 100%;
  padding: 15px 10px;
  padding-bottom: 30px;
  box-sizing: border-box;
}
.news-grid .news-cell .news-grid-text-container h4 {
  margin: 0;
  font-size: 1rem;
  padding: 0 10px;
  padding-top: 10px;
  letter-spacing: 2px;
  line-height: 1.4rem;
  font-weight: 100;
}
.news-grid .news-cell .news-grid-text-container p {
  margin: 0;
  font-size: 0.8rem;
  padding: 0 10px;
}
.news-grid .inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem; /* Adjust the gap as needed */
}
.news-grid .inner-grid .co2-box {
  position: relative;
  height: 192px;
  overflow: hidden;
}
.news-grid .inner-grid .co2-box img {
  -o-object-fit: cover;
     object-fit: cover;
}
.news-grid .inner-grid .co2-box a {
  color: #fff;
}
.news-grid .inner-grid .co2-box .co2-text {
  position: absolute;
  bottom: 55px;
  width: 100%;
  text-align: left;
  color: #fff;
  font-weight: 600;
}
.news-grid .inner-grid .co2-box .co2-text p {
  margin: auto auto;
  max-width: 60%;
}
.news-grid .inner-grid .co2-box .co2-text p:first-child {
  font-size: 1.2rem;
  font-weight: 500;
}
.news-grid .inner-grid .co2-box .co2-text p:last-child {
  padding-top: 12px;
  max-width: 60%;
  font-size: 1.8rem;
  font-weight: 600;
}
.news-grid .inner-grid .orange {
  padding: 1rem 0;
  background-color: #e08f2e;
  font-weight: 500;
  height: 192px;
}
.news-grid .inner-grid .orange .speach-icon {
  width: 100%;
  margin-left: 13px;
  margin-top: 10px;
}
.news-grid .inner-grid .orange .speach-icon .fa-regular {
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  color: white;
}
.news-grid .inner-grid .orange h4 {
  margin-top: 10px;
  color: #fff;
  max-width: 200px;
  line-height: 1.5rem;
  margin-bottom: 15px;
}
.news-grid .inner-grid .orange p {
  color: #fff;
  margin: 0;
  max-width: 200px;
  line-height: 1rem;
  margin-bottom: 15px;
}
.news-grid .inner-grid .orange .phone {
  font-size: 1.7rem;
  font-weight: 600;
  max-width: 100%;
}

.home-hero {
  min-height: 800px;
  background: url("../static/ships(Large).jpg") no-repeat center left;
  margin: 0;
  background-size: cover;
  color: rgb(111, 126, 151);
}
.home-hero .home-hero-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 200px;
  padding-left: 15px;
  padding-right: 15px;
}
.home-hero .hero-text-container {
  position: relative;
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
  max-width: 500px;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 500;
}
.home-hero .hero-text-container p {
  margin-bottom: 0.5rem;
}
.home-hero .hero-text-container .home-hero-title {
  font-family: "Helvetica Neue Standard", sans-serif;
  font-size: 3rem;
  line-height: 3.5rem;
  margin-bottom: 20px;
}
.home-hero .home-neolink-container {
  margin: 0 0;
  padding: 15px;
  background-color: rgba(23, 49, 97, 0.6);
  color: white;
  font-size: 1.2rem;
}
.home-hero .home-neolink-container .home-neolink-logo {
  max-width: 220px;
  margin-bottom: 2rem;
}
.home-hero .home-neolink-container .home-neolink-links {
  text-align: right;
  line-height: 3rem;
}
.home-hero .home-neolink-container .home-neolink-links a {
  color: white;
  text-decoration: underline;
}
@media (min-width: 800px) {
  .home-hero .hero-home .hero-home-inner {
    margin-top: 0;
  }
  .home-hero .hero-home .hero-text-container {
    position: relative;
    top: 200px;
    left: 50px;
    max-width: 500px;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
  }
  .home-hero .hero-home .hero-text-container p {
    margin: 0;
    font-weight: 600;
  }
  .home-hero .hero-home .hero-text-container .home-hero-title {
    font-size: 4rem;
    line-height: 4rem;
    margin: 30px 0 30px 0;
  }
  .home-hero .home-neolink-container {
    margin: 10rem 10px 0 10px;
    position: absolute;
    margin: 0;
    margin-right: 25px;
    top: 0;
    color: #fff;
    padding: 2.5rem;
    max-width: 600px;
    min-height: 420px;
    font-size: 1.8rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-top: 120px;
  }
  .home-hero .home-neolink-container .home-neolink-links {
    text-align: right;
    line-height: 2.4rem;
    font-size: 1.4rem;
  }
  .home-hero .home-neolink-container .home-neolink-links a {
    color: white;
    text-decoration: underline;
  }
  .home-hero .home-neolink-container .home-neolink-logo {
    max-width: 220px;
    margin-bottom: 1rem;
  }
  .home-hero .home-neolink-container .home-neolink-orange {
    color: #e08f2e;
  }
}

.no-image-hero {
  min-height: 100px;
  /*   .home-hero-inner {
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      padding-top: 200px;
      padding-left: 15px;
      padding-right: 15px;
  }
  background-size: cover;
  color: $c-text; */
}
.no-image-hero .hero-text-container {
  margin-top: 200px;
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 500;
}
.no-image-hero .hero-text-container p {
  margin-bottom: 0.5rem;
}
.no-image-hero .hero-text-container .hero-title {
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 40px;
  font-weight: 600;
}

@media (min-width: 800px) {
  .no-image-hero {
    min-height: 300px;
  }
  .no-image-hero .hero-text-container {
    position: relative;
    top: 200px;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
  }
  .no-image-hero .hero-text-container p {
    margin: 0;
  }
  .no-image-hero .hero-text-container .hero-title {
    font-size: 2rem;
    line-height: 2rem;
    margin: 30px 0 30px 0;
  }
}
.home-location {
  margin: 0 auto;
}
.home-location .home-location-our {
  min-height: 400px;
  margin: 0;
  background-color: #e08f2e;
  padding: 2.5rem;
  color: #fff;
}
.home-location .home-location-our .home-location-our-inner {
  max-width: 430px;
  margin-top: 60px;
}
.home-location .home-location-our .home-location-our-inner h2 {
  font-size: 4rem;
  padding: 1rem 0;
  line-height: 4rem;
}
.home-location .home-location-our .home-location-our-inner p {
  padding: 2.5rem 0;
  font-size: 1.6rem;
  line-height: 2rem;
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
}
@media (min-width: 1320px) {
  .home-location .home-location-our .home-location-our-inner {
    margin-left: 120px;
  }
}
.home-location .home-location-offices {
  max-width: 850px;
  padding: 3rem 1rem;
}
.home-location .home-location-offices .home-location-offices-headline {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
}
.home-location .home-location-offices h3 {
  color: #e08f2e;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 20px;
}
@media (min-width: 800px) {
  .home-location .home-location-our {
    transform: translateY(-20%);
    margin: 0;
    margin-right: 20px;
  }
}

.home-worldwide {
  position: relative;
  background-color: #eff0f2;
  max-width: 100%;
  padding: 1rem;
  -moz-columns: auto;
       columns: auto;
}
.home-worldwide .home-worldwide-container {
  max-width: 1500px;
  padding-left: 4rem;
  margin: 2rem 0;
}
.home-worldwide h3 {
  color: #e08f2e;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.home-worldwide h4 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.2rem;
}
.home-worldwide p {
  margin: 0 0;
}
.home-worldwide .home-worldwide-container-finaltext {
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-top: 60px;
}
.home-worldwide .network-image {
  position: absolute;
  top: 0;
  right: -400px;
  max-width: 1200px;
}
@media (min-width: 950px) {
  .home-worldwide .network-image {
    right: -350px;
  }
}
@media (min-width: 1500px) {
  .home-worldwide .network-image {
    right: -100px;
  }
}
@media (min-width: 1600px) {
  .home-worldwide .network-image {
    right: 0;
  }
}

.carousel {
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  padding: 4rem 0;
  overflow: hidden;
}
.carousel .carousel-title {
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
  font-size: 4rem;
  margin-bottom: 3rem;
  padding: 10px;
}

.slide-card {
  max-width: 350px;
  height: 350px;
  padding: 0;
  position: relative;
}
.slide-card img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  margin: 0;
  z-index: 10;
  filter: brightness(70%) hue-rotate(339deg);
}
.slide-card .slide-card-text {
  position: absolute;
  bottom: 20px;
  left: 10px;
  padding: 1.5rem;
  color: #fff;
  font-size: 2.8rem;
  line-height: 2.5rem;
  margin: 0;
  z-index: 30;
  font-weight: 600;
}

.home-final-section {
  position: relative;
}
.home-final-section .home-final-section-image {
  max-height: 700px;
  max-width: 1000px;
  position: absolute;
  right: 0;
  top: -200px;
  z-index: -10;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
@media (min-width: 1500px) {
  .home-final-section .home-final-section-image {
    opacity: 0.9;
  }
}
@media (min-width: 800px) {
  .home-final-section .home-final-section-text {
    padding: 4rem;
  }
  .home-final-section .home-final-section-text h3 {
    font-size: 4rem;
    line-height: 5rem;
  }
}

.home-final-section-text {
  max-width: 600px;
  height: 400px;
  padding: 2rem;
  z-index: 30;
}
.home-final-section-text h3 {
  font-size: 3rem;
  line-height: 4rem;
  z-index: 25;
}
.home-final-section-text .associations {
  margin-top: 30px;
  list-style-type: none;
  display: inline-flex;
}
.home-final-section-text .associations img {
  max-height: 100px;
  padding: 20px;
}
.home-final-section-text .associations li {
  list-style-type: none;
}

.hero-text-container p,
.home-location-offices p {
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 730px;
  padding-top: 200px;
}
.hero .hero-text-container {
  margin-top: 16px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}
.hero .hero-image {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 700px;
}
.hero .hero-title {
  font-size: 2.5rem;
  line-height: 3rem;
}
.hero .hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
  font-weight: 600;
}
@media (min-width: 800px) {
  .hero .hero-text-container {
    margin-top: 36px;
  }
  .hero .hero-title {
    font-size: 3rem;
    line-height: 4rem;
  }
  .hero .hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    line-height: 2.2rem;
    font-family: "Helvetica Neue LT Standard UltLT", sans-serif;
  }
}

.container li::before {
  content: "•";
  color: #e08f2e;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.container h2 {
  margin-bottom: 20px;
}

li {
  font-size: 1.3rem;
}

.hero-box {
  max-width: 1300px;
  margin: auto;
}
.hero-box .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-box .column img {
  max-height: 600px;
  width: auto;
}
.hero-box h2 {
  margin: 2rem 0;
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 2.5rem;
}
.hero-box p {
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.service-list {
  max-width: 1200px;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.box-pallet-container {
  text-align: right;
}

.box-pallet {
  max-width: 500px;
  text-align: right;
}

.child-list {
  margin-bottom: 5rem;
}
.child-list li {
  color: #e08f2e;
  font-weight: 600;
}
.child-list li a {
  color: #e08f2e;
}

@media (min-width: 800px) {
  .child-list {
    -moz-column-count: 3;
         column-count: 3;
  }
}
.services {
  padding: 2rem 0;
}

.service-icon {
  padding: 1rem;
}

.service-text {
  font-size: 1.2rem;
  padding: 10px 0;
  line-height: 25px;
}

@media (min-width: 600px) {
  .service-text {
    font-size: 1.4rem;
    line-height: 25px;
    padding: 10px 0;
  }
}
@media (min-width: 1100px) {
  .service-text {
    font-size: 1.8rem;
    line-height: 40px;
    padding: 40px 0;
  }
}
.container ul {
  padding-left: 20px;
}

.container li {
  list-style-type: none;
  padding-left: 3px;
}
.container li ul > li {
  list-style-type: none;
}

.bonded-table tr {
  height: 110px;
}
.bonded-table img {
  padding: 14px;
}

.associations li:before {
  display: none;
}

.neolink-box {
  background-color: rgba(66, 66, 66, 0.6941176471);
  padding: 2rem;
  max-width: 450px;
  margin-bottom: -250px;
  transform: translateY(-340px);
}
.neolink-box h2 {
  color: #e08f2e;
  font-size: 1.5rem;
}
.neolink-box ul {
  color: #fff;
}
.neolink-box .neolink-logo {
  width: 300px;
  max-width: 100%;
}

h1, h2, h3, h4, h5 {
  font-family: "Helvetica Neue Standard", sans-serif;
  line-height: 1.7em;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.3rem;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.glide * {
  margin: 0 auto;
}

.alert-box {
  position: absolute;
  top: 200px;
  left: 50%;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-50%);
  z-index: 60;
}
.alert-box .notification {
  min-width: 700px;
}

.orange-text {
  color: #e08f2e;
  font-weight: 500;
}/*# sourceMappingURL=main.css.map */