body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'SLBSans-Regular';
  font-size: 3.8rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-2 {
  font-family: 'SLBSans-Regular';
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'SLBSans-Medium';
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'SLBSans-Regular';
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'SLBSans-Book';
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #0014dc !important;
}
.bg-success {
  background-color: #bfceff !important;
}
.bg-info {
  background-color: #57468b !important;
}
.bg-warning {
  background-color: #dce1e1 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0014dc !important;
  border-color: #0014dc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000d90 !important;
  border-color: #000d90 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000d90 !important;
  border-color: #000d90 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #051464 !important;
  border-color: #051464 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #01051b !important;
  border-color: #01051b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #01051b !important;
  border-color: #01051b !important;
}
.btn-info,
.btn-info:active {
  background-color: #57468b !important;
  border-color: #57468b !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-success,
.btn-success:active {
  background-color: #bfceff !important;
  border-color: #bfceff !important;
  color: #002dbf !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #002dbf !important;
  background-color: #7293ff !important;
  border-color: #7293ff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #002dbf !important;
  background-color: #7293ff !important;
  border-color: #7293ff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #dce1e1 !important;
  border-color: #dce1e1 !important;
  color: #586666 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #586666 !important;
  background-color: #b3bebe !important;
  border-color: #b3bebe !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #586666 !important;
  background-color: #b3bebe !important;
  border-color: #b3bebe !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0014dc;
  color: #0014dc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: white;
  background-color: #0014dc;
  border-color: #0014dc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: white !important;
  background-color: #0014dc !important;
  border-color: #0014dc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0014dc;
  color: #0014dc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: white;
  background-color: #051464;
  border-color: #051464;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: white !important;
  background-color: #051464 !important;
  border-color: #051464 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #0014dc;
  color: #0014dc;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: white;
  background-color: #57468b;
  border-color: #57468b;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: white !important;
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #0014dc;
  color: #0014dc;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: white;
  background-color: #bfceff;
  border-color: #bfceff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: white !important;
  background-color: #bfceff !important;
  border-color: #bfceff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #0014dc;
  color: #0014dc;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: white;
  background-color: #dce1e1;
  border-color: #dce1e1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: white !important;
  background-color: #dce1e1 !important;
  border-color: #dce1e1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #0014dc;
  color: #0014dc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: white;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: white !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #0014dc;
  color: #0014dc;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: white;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: white !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #0014dc !important;
}
.text-secondary {
  color: #051464 !important;
}
.text-success {
  color: #bfceff !important;
}
.text-info {
  color: #57468b !important;
}
.text-warning {
  color: #dce1e1 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000b76 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000103 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5980ff !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #2d2447 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a5b2b2 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #57468b;
}
.alert-warning {
  background-color: #dce1e1;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0014dc;
  border-color: #0014dc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0014dc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a9b1ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9a8cc5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'SLBSans-Medium';
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
blockquote {
  border-color: #0014dc;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0014dc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0014dc;
  border-bottom-color: #0014dc;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #0014dc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #051464 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230014dc' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-tstm7GKgUJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tstm7GKgUJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tstm7GKgUJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tstm7GKgUJ .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tstm7GKgUJ .card {
    margin-bottom: 2rem!important;
  }
  .cid-tstm7GKgUJ .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tstm7GKgUJ .link-wrap {
    align-items: center;
  }
}
.cid-tstm7GKgUJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tstm7GKgUJ .card-title,
.cid-tstm7GKgUJ .card-box {
  color: #0014dc;
}
.cid-tstm7GKgUJ .mbr-text,
.cid-tstm7GKgUJ .link-wrap,
.cid-tstm7GKgUJ .mbr-section-btn {
  color: #6c6969;
}
.cid-sleDHxe09k {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sleDHxe09k .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sleDHxe09k .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sleDHxe09k .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sleDHxe09k .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sleDHxe09k .process-icon,
.cid-sleDHxe09k .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-sleDHxe09k .wrapper,
.cid-sleDHxe09k .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-sleDHxe09k .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-sleDHxe09k .icon-container a {
  display: inherit;
}
.cid-sleDHxe09k .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #051464 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-sleDHxe09k .icon-main {
  margin: 0rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-sleDHxe09k .icon-main:hover .icon-wrapper {
  background-color: #051464 !important;
}
.cid-sleDHxe09k .icon-main:hover .icon-number {
  background-color: #0014dc !important;
  color: #ffffff !important;
}
.cid-sleDHxe09k .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-sleDHxe09k .main-wrapper {
  padding: 3rem 0 0 0;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-sleDHxe09k .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sleDHxe09k .third-elem .wrapper:before {
    display: none;
  }
}
.cid-sleDHxe09k .mbr-section-title {
  margin: 0;
}
.cid-sleDHxe09k .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-sleDHxe09k .mbr-section-title,
.cid-sleDHxe09k .underline {
  color: #000000;
}
.cid-sleDHxe09k h2 {
  font-weight: 400 !important;
}
.cid-slkfbt3LE8 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slkfbt3LE8 h4 {
  margin-bottom: 0;
}
.cid-slkfbt3LE8 p {
  color: #767676;
  font-size: 16px;
}
.cid-slkfbt3LE8 .cardcenter {
  background-color: #0014dc;
  transition: all 0.3s;
  padding: 1.5rem;
  height: fit-content;
  min-height: 453px;
  position: relative;
  margin-bottom: 20px;
}
.cid-slkfbt3LE8 .cardcenter:hover {
  background-color: #051464;
}
.cid-slkfbt3LE8 .ico2 {
  position: absolute;
  bottom: 1rem;
  right: 0;
  font-size: 8rem;
  opacity: 0.3;
}
.cid-slkfbt3LE8 .card {
  height: fit-content;
  margin-top: -1.5rem;
}
.cid-slkfbt3LE8 .btn-info-outline {
  border: none;
  color: #0014dc !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-slkfbt3LE8 .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-slkfbt3LE8 .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-slkfbt3LE8 .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0014dc !important;
  box-shadow: none!important;
}
.cid-slkfbt3LE8 .btn-info-outline:active,
.cid-slkfbt3LE8 .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-slkfbt3LE8 .card-box {
  padding-top: 2rem;
}
.cid-slkfbt3LE8 .mbr-iconfont {
  padding-left: 25px;
  margin-right: 0 !important;
}
.cid-slkfbt3LE8 img {
  transition: all 0.3s;
}
.cid-slkfbt3LE8 .card-title {
  color: #00386a;
  text-align: left;
}
.cid-slkfbt3LE8 .main-title {
  color: #57468b;
}
.cid-slkfbt3LE8 .text {
  color: #ffffff;
  text-align: left;
}
.cid-slkfbt3LE8 .card-subtitle {
  color: #716c80;
}
@media (max-width: 992px) {
  .cid-slkfbt3LE8 .cards {
    margin-top: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-slkfbt3LE8 .link {
    margin: auto;
  }
}
.cid-slkfbt3LE8 .card-img {
  width: auto;
}
.cid-slkfbt3LE8 .vote {
  font-size: 28px !important;
  margin-bottom: 10px !important;
}
.cid-slkfbt3LE8 .mbr-section-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-slkfbt3LE8 .btn-md {
  padding: 10px 20px !important;
}
.cid-soQqnYWEyM {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-soQqnYWEyM H1 {
  color: #57468b;
}
.cid-soQqnYWEyM .mbr-text,
.cid-soQqnYWEyM .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-u4RebjNffX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u4RebjNffX h4 {
  margin-bottom: 0;
}
.cid-u4RebjNffX p {
  color: #767676;
  font-size: 16px;
}
.cid-u4RebjNffX .cardcenter {
  background-color: #0014dc;
  transition: all 0.3s;
  padding: 1.5rem;
  height: fit-content;
  min-height: 453px;
  position: relative;
  margin-bottom: 20px;
}
.cid-u4RebjNffX .cardcenter:hover {
  background-color: #051464;
}
.cid-u4RebjNffX .ico2 {
  position: absolute;
  bottom: 1rem;
  right: 0;
  font-size: 8rem;
  opacity: 0.3;
}
.cid-u4RebjNffX .card {
  height: fit-content;
  margin-top: -1.5rem;
}
.cid-u4RebjNffX .btn-info-outline {
  border: none;
  color: #0014dc !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-u4RebjNffX .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-u4RebjNffX .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-u4RebjNffX .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0014dc !important;
  box-shadow: none!important;
}
.cid-u4RebjNffX .btn-info-outline:active,
.cid-u4RebjNffX .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-u4RebjNffX .card-box {
  padding-top: 2rem;
}
.cid-u4RebjNffX .mbr-iconfont {
  padding-left: 25px;
  margin-right: 0 !important;
}
.cid-u4RebjNffX img {
  transition: all 0.3s;
}
.cid-u4RebjNffX .card-title {
  color: #00386a;
  text-align: center;
}
.cid-u4RebjNffX .main-title {
  color: #57468b;
}
.cid-u4RebjNffX .text {
  color: #ffffff;
  text-align: left;
}
.cid-u4RebjNffX .card-subtitle {
  color: #716c80;
}
@media (max-width: 992px) {
  .cid-u4RebjNffX .cards {
    margin-top: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-u4RebjNffX .link {
    margin: auto;
  }
}
.cid-u4RebjNffX .card-img {
  width: auto;
}
.cid-u4RebjNffX .vote {
  font-size: 28px !important;
  margin-bottom: 10px !important;
}
.cid-u4RebjNffX .mbr-section-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u4RebjNffX .btn-md {
  padding: 10px 20px !important;
}
.cid-u4RebjNffX .mbr-text,
.cid-u4RebjNffX .mbr-section-btn {
  text-align: center;
}
.cid-rx3DuVTvT8 {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  background-color: #0014dc;
}
.cid-rx3DuVTvT8 .mbr-text {
  color: #ffffff;
}
.cid-rx3DuVTvT8 .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-rx3DuVTvT8 p {
  margin: 0;
}
.cid-rx3DuVTvT8 .card-img .img1 {
  background-color: #f2f6ff;
}
.cid-rx3DuVTvT8 .cardcolor:hover {
  background-color: #051464;
}
.cid-rx3DuVTvT8 .mbr-iconfont {
  transition: all 0.3s;
  color: #00386a !important;
  font-size: 1.5rem !important;
}
.cid-rx3DuVTvT8 .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-rx3DuVTvT8 .card:hover {
  box-shadow: none;
  transform: translateY(-1rem);
}
.cid-rx3DuVTvT8 .card-title,
.cid-rx3DuVTvT8 .card-img {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-rx3DuVTvT8 .card {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-rx3DuVTvT8 .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-rx3DuVTvT8 .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-rx3DuVTvT8 .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-rx3DuVTvT8 .card-img span {
    margin-right: 0rem;
  }
  .cid-rx3DuVTvT8 .cardcolor:hover {
    background-color: transparent;
  }
}
.cid-rx3DuVTvT8 .card-title {
  color: #ffffff;
}
.cid-rx3DuVTvT8 .container {
  max-width: 1300px !important;
}
.cid-rx3DuVTvT8 .card8 {
  transform: none !important;
  background-color: #00386a !important;
}
.cid-rx3DuVTvT8 .row {
  flex-wrap: wrap;
}
.cid-rx3DuVTvT8 H2 {
  text-align: center;
}
.cid-rx3DuVTvT8 .mbr-text,
.cid-rx3DuVTvT8 .mbr-section-btn {
  text-align: left;
}
.cid-rx3DuVTvT8 .align-center {
  padding-bottom: 40px !important;
}
.cid-soJZANibSm {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soJZANibSm .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-soJZANibSm .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-soJZANibSm .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-soJZANibSm .card-title {
  color: #000000;
  margin: 0;
  text-align: left;
}
.cid-soJZANibSm .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 0px;
}
.cid-soJZANibSm .card-box {
  padding: 1rem;
}
.cid-soJZANibSm .mbr-section-title,
.cid-soJZANibSm .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-soJZANibSm .card-box > p,
.cid-soJZANibSm .mbr-section-btn {
  text-align: left;
  color: #00386a;
}
.cid-soJZANibSm .container {
  max-width: 1300px !important;
}
.cid-soJZANibSm .row {
  flex-wrap: wrap;
}
.cid-slwkuvJJk9 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slwkuvJJk9 H2 {
  color: #00386a;
  text-align: center;
}
.cid-slwkuvJJk9 .mbr-text,
.cid-slwkuvJJk9 .mbr-section-btn {
  color: #716c80;
}
.cid-slwkuvJJk9 H3 {
  color: #716c80;
}
.cid-slwDN5CPcM {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dce1e1;
}
.cid-slwDN5CPcM .card-box {
  background: linear-gradient(0deg, #0014dc 49.9%, white 50%);
  animation: background-swipe-reverse 0.5s ease forwards;
  background-size: 200% 200%;
  padding: 4rem 2rem;
  width: 100%;
  height: 100%;
}
.cid-slwDN5CPcM .card-box:hover {
  animation: background-swipe 0.3s ease forwards;
  padding: 4rem 2rem;
  width: 100%;
  height: 100%;
}
.cid-slwDN5CPcM .card-box:hover h3,
.cid-slwDN5CPcM .card-box:hover h4,
.cid-slwDN5CPcM .card-box:hover p {
  color: white !important;
}
.cid-slwDN5CPcM h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-slwDN5CPcM p {
  color: #767676;
  text-align: left;
}
.cid-slwDN5CPcM .card-wrapper {
  border-top: 6px solid #0014dc;
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-slwDN5CPcM .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-slwDN5CPcM .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-slwDN5CPcM P {
  text-align: center;
  color: #000000;
}
.cid-slwDN5CPcM .card-title {
  text-align: center;
  color: #0014dc;
}
.cid-slwDN5CPcM .number {
  text-align: center;
}
.cid-slwDN5CPcM H1 {
  text-align: center;
}
.cid-slwDN5CPcM .container {
  max-width: 1300px !important;
}
@keyframes background-swipe {
  from {
    background-position: top;
  }
  to {
    background-position: bottom;
  }
}
@keyframes background-swipe-reverse {
  from {
    background-position: bottom;
  }
  to {
    background-position: top;
  }
}
.cid-slwF3YZ7YE {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #dce1e1;
}
.cid-slwF3YZ7YE .google-map {
  height: 30rem;
  position: relative;
}
.cid-slwF3YZ7YE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-slwF3YZ7YE .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-slwF3YZ7YE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-slwF3YZ7YE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-slwF3YZ7YE .container {
  max-width: 1300px !important;
}
.cid-tww4y5fzOR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tww4y5fzOR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tww4y5fzOR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tww4y5fzOR .row {
  flex-direction: row-reverse;
}
.cid-tww4y5fzOR .video-wrapper iframe {
  width: 100%;
  margin-bottom: -7px;
}
.cid-tww4y5fzOR .mbr-section-title,
.cid-tww4y5fzOR .mbr-description {
  text-align: center;
}
.cid-tww4y5fzOR .text-wrapper {
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-tww4y5fzOR .text-wrapper {
    padding: 2rem;
    padding-left: 4rem;
  }
}
.cid-tww4y5fzOR .col-12 {
  padding-left: 0;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-soKDkjshnt {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soKDkjshnt .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soKDkjshnt .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soKDkjshnt .card-img span {
  font-size: 100px;
}
.cid-soKDkjshnt .mbr-text,
.cid-soKDkjshnt .mbr-section-btn {
  color: #efefef;
}
.cid-soKDkjshnt .mbr-section-title,
.cid-soKDkjshnt .card-img {
  color: #00386a;
  text-align: left;
}
.cid-soKDkjshnt .container {
  max-width: 1525px !important;
}
.cid-soKDkjshnt h1 {
  letter-spacing: 0px !important;
}
.cid-soKoJLaekj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soKoJLaekj .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-soKoJLaekj .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soKoJLaekj .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soKoJLaekj .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-soKoJLaekj .mbr-text,
.cid-soKoJLaekj .mbr-section-btn {
  color: #000000;
}
.cid-soKoJLaekj .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-soKoJLaekj .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-soKoJLaekj .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-soKoJLaekj .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-soKoJLaekj .main-row {
    margin: 0;
  }
  .cid-soKoJLaekj .mbr-section-title,
  .cid-soKoJLaekj .mbr-text,
  .cid-soKoJLaekj .list,
  .cid-soKoJLaekj .mbr-section-btn {
    text-align: center !important;
  }
  .cid-soKoJLaekj .text-content {
    padding: 0;
  }
}
.cid-soKoJLaekj .container {
  max-width: 1400px !important;
}
.cid-soKoJLaekj .mbr-figure img,
.cid-soKoJLaekj .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-soOFpnzzsc {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-soOFpnzzsc .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOFpnzzsc .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOFpnzzsc .card-img span {
  font-size: 100px;
}
.cid-soOFpnzzsc .mbr-text,
.cid-soOFpnzzsc .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-soOFpnzzsc .container {
  max-width: 1275px !important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-soOGBvOzKX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOGBvOzKX .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOGBvOzKX .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOGBvOzKX .card-img span {
  font-size: 100px;
}
.cid-soOGBvOzKX .mbr-text,
.cid-soOGBvOzKX .mbr-section-btn {
  color: #efefef;
}
.cid-soOGBvOzKX .mbr-section-title,
.cid-soOGBvOzKX .card-img {
  color: #00386a;
  text-align: left;
}
.cid-soOGBvOzKX .container {
  max-width: 1525px !important;
}
.cid-soOGBvOzKX h1 {
  letter-spacing: 0px !important;
}
.cid-soOGBwiLkd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOGBwiLkd .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-soOGBwiLkd .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soOGBwiLkd .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soOGBwiLkd .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-soOGBwiLkd .mbr-text,
.cid-soOGBwiLkd .mbr-section-btn {
  color: #000000;
}
.cid-soOGBwiLkd .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-soOGBwiLkd .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-soOGBwiLkd .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-soOGBwiLkd .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-soOGBwiLkd .main-row {
    margin: 0;
  }
  .cid-soOGBwiLkd .mbr-section-title,
  .cid-soOGBwiLkd .mbr-text,
  .cid-soOGBwiLkd .list,
  .cid-soOGBwiLkd .mbr-section-btn {
    text-align: center !important;
  }
  .cid-soOGBwiLkd .text-content {
    padding: 0;
  }
}
.cid-soOGBwiLkd .container {
  max-width: 1400px !important;
}
.cid-soOGBwiLkd .mbr-figure img,
.cid-soOGBwiLkd .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-soOGBwPU7d {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-soOGBwPU7d .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOGBwPU7d .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOGBwPU7d .card-img span {
  font-size: 100px;
}
.cid-soOGBwPU7d .mbr-text,
.cid-soOGBwPU7d .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-soOGBwPU7d .container {
  max-width: 1275px !important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-soOHWAmAsn {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOHWAmAsn .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOHWAmAsn .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOHWAmAsn .card-img span {
  font-size: 100px;
}
.cid-soOHWAmAsn .mbr-text,
.cid-soOHWAmAsn .mbr-section-btn {
  color: #efefef;
}
.cid-soOHWAmAsn .mbr-section-title,
.cid-soOHWAmAsn .card-img {
  color: #00386a;
  text-align: left;
}
.cid-soOHWAmAsn .container {
  max-width: 1525px !important;
}
.cid-soOHWAmAsn h1 {
  letter-spacing: 0px !important;
}
.cid-soOHWAPngN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOHWAPngN .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-soOHWAPngN .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soOHWAPngN .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soOHWAPngN .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-soOHWAPngN .mbr-text,
.cid-soOHWAPngN .mbr-section-btn {
  color: #000000;
}
.cid-soOHWAPngN .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-soOHWAPngN .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-soOHWAPngN .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-soOHWAPngN .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-soOHWAPngN .main-row {
    margin: 0;
  }
  .cid-soOHWAPngN .mbr-section-title,
  .cid-soOHWAPngN .mbr-text,
  .cid-soOHWAPngN .list,
  .cid-soOHWAPngN .mbr-section-btn {
    text-align: center !important;
  }
  .cid-soOHWAPngN .text-content {
    padding: 0;
  }
}
.cid-soOHWAPngN .container {
  max-width: 1400px !important;
}
.cid-soOHWAPngN .mbr-figure img,
.cid-soOHWAPngN .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-soOHWBmqde {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-soOHWBmqde .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOHWBmqde .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOHWBmqde .card-img span {
  font-size: 100px;
}
.cid-soOHWBmqde .mbr-text,
.cid-soOHWBmqde .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-soOHWBmqde .container {
  max-width: 1275px !important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-soOKfLsTvo {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOKfLsTvo .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOKfLsTvo .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOKfLsTvo .card-img span {
  font-size: 100px;
}
.cid-soOKfLsTvo .mbr-text,
.cid-soOKfLsTvo .mbr-section-btn {
  color: #efefef;
}
.cid-soOKfLsTvo .mbr-section-title,
.cid-soOKfLsTvo .card-img {
  color: #00386a;
  text-align: left;
}
.cid-soOKfLsTvo .container {
  max-width: 1525px !important;
}
.cid-soOKfLsTvo h1 {
  letter-spacing: 0px !important;
}
.cid-soOKfM1sDj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOKfM1sDj .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-soOKfM1sDj .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soOKfM1sDj .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soOKfM1sDj .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-soOKfM1sDj .mbr-text,
.cid-soOKfM1sDj .mbr-section-btn {
  color: #000000;
}
.cid-soOKfM1sDj .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-soOKfM1sDj .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-soOKfM1sDj .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-soOKfM1sDj .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-soOKfM1sDj .main-row {
    margin: 0;
  }
  .cid-soOKfM1sDj .mbr-section-title,
  .cid-soOKfM1sDj .mbr-text,
  .cid-soOKfM1sDj .list,
  .cid-soOKfM1sDj .mbr-section-btn {
    text-align: center !important;
  }
  .cid-soOKfM1sDj .text-content {
    padding: 0;
  }
}
.cid-soOKfM1sDj .container {
  max-width: 1400px !important;
}
.cid-soOKfM1sDj .mbr-figure img,
.cid-soOKfM1sDj .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-soOKfMDUtQ {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-soOKfMDUtQ .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOKfMDUtQ .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOKfMDUtQ .card-img span {
  font-size: 100px;
}
.cid-soOKfMDUtQ .mbr-text,
.cid-soOKfMDUtQ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-soOKfMDUtQ .container {
  max-width: 1275px !important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-soOLlgMjDC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOLlgMjDC .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOLlgMjDC .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOLlgMjDC .card-img span {
  font-size: 100px;
}
.cid-soOLlgMjDC .mbr-text,
.cid-soOLlgMjDC .mbr-section-btn {
  color: #efefef;
}
.cid-soOLlgMjDC .mbr-section-title,
.cid-soOLlgMjDC .card-img {
  color: #00386a;
  text-align: left;
}
.cid-soOLlgMjDC .container {
  max-width: 1525px !important;
}
.cid-soOLlgMjDC h1 {
  letter-spacing: 0px !important;
}
.cid-soOLlhiIhI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOLlhiIhI .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-soOLlhiIhI .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soOLlhiIhI .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soOLlhiIhI .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-soOLlhiIhI .mbr-text,
.cid-soOLlhiIhI .mbr-section-btn {
  color: #000000;
}
.cid-soOLlhiIhI .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-soOLlhiIhI .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-soOLlhiIhI .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-soOLlhiIhI .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-soOLlhiIhI .main-row {
    margin: 0;
  }
  .cid-soOLlhiIhI .mbr-section-title,
  .cid-soOLlhiIhI .mbr-text,
  .cid-soOLlhiIhI .list,
  .cid-soOLlhiIhI .mbr-section-btn {
    text-align: center !important;
  }
  .cid-soOLlhiIhI .text-content {
    padding: 0;
  }
}
.cid-soOLlhiIhI .container {
  max-width: 1400px !important;
}
.cid-soOLlhiIhI .mbr-figure img,
.cid-soOLlhiIhI .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-soOLlhRsjz {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-soOLlhRsjz .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOLlhRsjz .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOLlhRsjz .card-img span {
  font-size: 100px;
}
.cid-soOLlhRsjz .mbr-text,
.cid-soOLlhRsjz .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-soOLlhRsjz .container {
  max-width: 1275px !important;
}
.cid-soOLlhRsjz .pt-2,
.cid-soOLlhRsjz .py-2 {
  padding-top: 0rem!important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-soOMPl56OW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOMPl56OW .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOMPl56OW .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOMPl56OW .card-img span {
  font-size: 100px;
}
.cid-soOMPl56OW .mbr-text,
.cid-soOMPl56OW .mbr-section-btn {
  color: #efefef;
}
.cid-soOMPl56OW .mbr-section-title,
.cid-soOMPl56OW .card-img {
  color: #00386a;
  text-align: left;
}
.cid-soOMPl56OW .container {
  max-width: 1525px !important;
}
.cid-soOMPl56OW h1 {
  letter-spacing: 0px !important;
}
.cid-soOMPlz1Z0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOMPlz1Z0 .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-soOMPlz1Z0 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soOMPlz1Z0 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soOMPlz1Z0 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-soOMPlz1Z0 .mbr-text,
.cid-soOMPlz1Z0 .mbr-section-btn {
  color: #000000;
}
.cid-soOMPlz1Z0 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-soOMPlz1Z0 .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-soOMPlz1Z0 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-soOMPlz1Z0 .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-soOMPlz1Z0 .main-row {
    margin: 0;
  }
  .cid-soOMPlz1Z0 .mbr-section-title,
  .cid-soOMPlz1Z0 .mbr-text,
  .cid-soOMPlz1Z0 .list,
  .cid-soOMPlz1Z0 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-soOMPlz1Z0 .text-content {
    padding: 0;
  }
}
.cid-soOMPlz1Z0 .container {
  max-width: 1400px !important;
}
.cid-soOMPlz1Z0 .mbr-figure img,
.cid-soOMPlz1Z0 .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-soOMPm9xHP {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-soOMPm9xHP .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOMPm9xHP .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOMPm9xHP .card-img span {
  font-size: 100px;
}
.cid-soOMPm9xHP .mbr-text,
.cid-soOMPm9xHP .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-soOMPm9xHP .container {
  max-width: 1275px !important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-soOO1ZY5sg {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOO1ZY5sg .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOO1ZY5sg .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOO1ZY5sg .card-img span {
  font-size: 100px;
}
.cid-soOO1ZY5sg .mbr-text,
.cid-soOO1ZY5sg .mbr-section-btn {
  color: #efefef;
}
.cid-soOO1ZY5sg .mbr-section-title,
.cid-soOO1ZY5sg .card-img {
  color: #00386a;
  text-align: left;
}
.cid-soOO1ZY5sg .container {
  max-width: 1525px !important;
}
.cid-soOO1ZY5sg h1 {
  letter-spacing: 0px !important;
}
.cid-soOO20u2D5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOO20u2D5 .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-soOO20u2D5 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soOO20u2D5 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soOO20u2D5 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-soOO20u2D5 .mbr-text,
.cid-soOO20u2D5 .mbr-section-btn {
  color: #000000;
}
.cid-soOO20u2D5 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-soOO20u2D5 .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-soOO20u2D5 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-soOO20u2D5 .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-soOO20u2D5 .main-row {
    margin: 0;
  }
  .cid-soOO20u2D5 .mbr-section-title,
  .cid-soOO20u2D5 .mbr-text,
  .cid-soOO20u2D5 .list,
  .cid-soOO20u2D5 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-soOO20u2D5 .text-content {
    padding: 0;
  }
}
.cid-soOO20u2D5 .container {
  max-width: 1400px !important;
}
.cid-soOO20u2D5 .mbr-figure img,
.cid-soOO20u2D5 .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-soOO214Uah {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-soOO214Uah .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOO214Uah .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOO214Uah .card-img span {
  font-size: 100px;
}
.cid-soOO214Uah .mbr-text,
.cid-soOO214Uah .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-soOO214Uah .container {
  max-width: 1275px !important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-soOPBsoxW7 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOPBsoxW7 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOPBsoxW7 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOPBsoxW7 .card-img span {
  font-size: 100px;
}
.cid-soOPBsoxW7 .mbr-text,
.cid-soOPBsoxW7 .mbr-section-btn {
  color: #efefef;
}
.cid-soOPBsoxW7 .mbr-section-title,
.cid-soOPBsoxW7 .card-img {
  color: #00386a;
  text-align: left;
}
.cid-soOPBsoxW7 .container {
  max-width: 1525px !important;
}
.cid-soOPBsoxW7 h1 {
  letter-spacing: 0px !important;
}
.cid-soOPBsYCHl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soOPBsYCHl .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-soOPBsYCHl .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soOPBsYCHl .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soOPBsYCHl .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-soOPBsYCHl .mbr-text,
.cid-soOPBsYCHl .mbr-section-btn {
  color: #000000;
}
.cid-soOPBsYCHl .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-soOPBsYCHl .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-soOPBsYCHl .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-soOPBsYCHl .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-soOPBsYCHl .main-row {
    margin: 0;
  }
  .cid-soOPBsYCHl .mbr-section-title,
  .cid-soOPBsYCHl .mbr-text,
  .cid-soOPBsYCHl .list,
  .cid-soOPBsYCHl .mbr-section-btn {
    text-align: center !important;
  }
  .cid-soOPBsYCHl .text-content {
    padding: 0;
  }
}
.cid-soOPBsYCHl .container {
  max-width: 1400px !important;
}
.cid-soOPBsYCHl .mbr-figure img,
.cid-soOPBsYCHl .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-soOPBtIrQW {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-soOPBtIrQW .mbr-section-title {
  letter-spacing: .1em;
}
.cid-soOPBtIrQW .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-soOPBtIrQW .card-img span {
  font-size: 100px;
}
.cid-soOPBtIrQW .mbr-text,
.cid-soOPBtIrQW .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-soOPBtIrQW .container {
  max-width: 1275px !important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-sYc3UQayxF {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYc3UQayxF .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYc3UQayxF .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYc3UQayxF .card-img span {
  font-size: 100px;
}
.cid-sYc3UQayxF .mbr-text,
.cid-sYc3UQayxF .mbr-section-btn {
  color: #efefef;
}
.cid-sYc3UQayxF .mbr-section-title,
.cid-sYc3UQayxF .card-img {
  color: #00386a;
  text-align: left;
}
.cid-sYc3UQayxF .container {
  max-width: 1525px !important;
}
.cid-sYc3UQayxF h1 {
  letter-spacing: 0px !important;
}
.cid-sYc3UQksQN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYc3UQksQN .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-sYc3UQksQN .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sYc3UQksQN .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sYc3UQksQN .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-sYc3UQksQN .mbr-text,
.cid-sYc3UQksQN .mbr-section-btn {
  color: #000000;
}
.cid-sYc3UQksQN .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-sYc3UQksQN .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-sYc3UQksQN .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sYc3UQksQN .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-sYc3UQksQN .main-row {
    margin: 0;
  }
  .cid-sYc3UQksQN .mbr-section-title,
  .cid-sYc3UQksQN .mbr-text,
  .cid-sYc3UQksQN .list,
  .cid-sYc3UQksQN .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sYc3UQksQN .text-content {
    padding: 0;
  }
}
.cid-sYc3UQksQN .container {
  max-width: 1400px !important;
}
.cid-sYc3UQksQN .mbr-figure img,
.cid-sYc3UQksQN .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-sYc3UQxtw6 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sYc3UQxtw6 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYc3UQxtw6 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYc3UQxtw6 .card-img span {
  font-size: 100px;
}
.cid-sYc3UQxtw6 .mbr-text,
.cid-sYc3UQxtw6 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-sYc3UQxtw6 .container {
  max-width: 1275px !important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-sYcpBybLzV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYcpBybLzV .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYcpBybLzV .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYcpBybLzV .card-img span {
  font-size: 100px;
}
.cid-sYcpBybLzV .mbr-text,
.cid-sYcpBybLzV .mbr-section-btn {
  color: #efefef;
}
.cid-sYcpBybLzV .mbr-section-title,
.cid-sYcpBybLzV .card-img {
  color: #00386a;
  text-align: left;
}
.cid-sYcpBybLzV .container {
  max-width: 1525px !important;
}
.cid-sYcpBybLzV h1 {
  letter-spacing: 0px !important;
}
.cid-sYcpBylooZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYcpBylooZ .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-sYcpBylooZ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sYcpBylooZ .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sYcpBylooZ .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-sYcpBylooZ .mbr-text,
.cid-sYcpBylooZ .mbr-section-btn {
  color: #000000;
}
.cid-sYcpBylooZ .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-sYcpBylooZ .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-sYcpBylooZ .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sYcpBylooZ .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-sYcpBylooZ .main-row {
    margin: 0;
  }
  .cid-sYcpBylooZ .mbr-section-title,
  .cid-sYcpBylooZ .mbr-text,
  .cid-sYcpBylooZ .list,
  .cid-sYcpBylooZ .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sYcpBylooZ .text-content {
    padding: 0;
  }
}
.cid-sYcpBylooZ .container {
  max-width: 1400px !important;
}
.cid-sYcpBylooZ .other {
  margin-top: 1rem !important;
  margin-bottom: 0rem !important;
}
.cid-sYcpBylooZ .mbr-figure img,
.cid-sYcpBylooZ .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-sYcpByzvgb {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sYcpByzvgb .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYcpByzvgb .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYcpByzvgb .card-img span {
  font-size: 100px;
}
.cid-sYcpByzvgb .mbr-text,
.cid-sYcpByzvgb .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-sYcpByzvgb .container {
  max-width: 1275px !important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
.cid-tsrZt6sZKM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tsrZt6sZKM .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tsrZt6sZKM nav.navbar {
  position: fixed;
}
.cid-tsrZt6sZKM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsrZt6sZKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsrZt6sZKM .dropdown-item:hover,
.cid-tsrZt6sZKM .dropdown-item:focus {
  background: #0014dc !important;
  color: white !important;
}
.cid-tsrZt6sZKM .dropdown-item:hover span {
  color: white;
}
.cid-tsrZt6sZKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsrZt6sZKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsrZt6sZKM .nav-dropdown .link {
  padding: 0 0 !important;
  margin: 0.667em 1em !important;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsrZt6sZKM .nav-link {
  position: relative;
}
.cid-tsrZt6sZKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsrZt6sZKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tsrZt6sZKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown-menu,
.cid-tsrZt6sZKM .navbar.opened {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item:focus,
.cid-tsrZt6sZKM .nav-link:focus {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsrZt6sZKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsrZt6sZKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsrZt6sZKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsrZt6sZKM .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid #dce1e1;
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsrZt6sZKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsrZt6sZKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar.collapsed {
  justify-content: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsrZt6sZKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tsrZt6sZKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsrZt6sZKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsrZt6sZKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsrZt6sZKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tsrZt6sZKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsrZt6sZKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsrZt6sZKM .navbar .navbar-toggler {
    flex-basis: auto;
    margin-right: 20px;
  }
  .cid-tsrZt6sZKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsrZt6sZKM .navbar .navbar-brand {
    width: calc(100% - 60px);
  }
}
.cid-tsrZt6sZKM .navbar.navbar-short {
  min-height: 80px;
}
.cid-tsrZt6sZKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsrZt6sZKM .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsrZt6sZKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsrZt6sZKM .dropdown-item.active,
.cid-tsrZt6sZKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsrZt6sZKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsrZt6sZKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsrZt6sZKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsrZt6sZKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsrZt6sZKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsrZt6sZKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsrZt6sZKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsrZt6sZKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsrZt6sZKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsrZt6sZKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cid-tsrZt6sZKM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsrZt6sZKM .navbar {
    height: 70px;
  }
  .cid-tsrZt6sZKM .navbar.opened {
    height: auto;
  }
  .cid-tsrZt6sZKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsrZt6sZKM .nav-item:hover a.nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .nav-item {
  transition: none;
  padding: 21px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.cid-tsrZt6sZKM .nav-item:hover,
.cid-tsrZt6sZKM .nav-item:focus {
  background: white;
}
.cid-tsrZt6sZKM .navbar-dropdown .navbar-logo {
  margin-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar-logo img {
  transition: none;
  background: white;
  padding: 20px;
  border-right: 1px solid #dce1e1;
}
.cid-tsrZt6sZKM .navbar-logo:hover img {
  content: url("../../../assets/images/slb-logo-white.svg");
  background: #0014dc;
}
.cid-tsrZt6sZKM .container-fluid,
.cid-tsrZt6sZKM .navbar-dropdown {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tsrZt6sZKM .navbar .navbar-collapse {
  justify-content: flex-start !important;
}
.cid-tsrZt6sZKM .navbar.opened {
  background: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-link {
  color: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover {
  background: #0014dc !important;
}
.cid-tsrZt6sZKM .navbar.opened .nav-item:hover .nav-link {
  color: white !important;
}
.cid-tsrZt6sZKM .navbar.opened .hamburger span {
  background: #0014dc;
}
.cid-tsrZt6sZKM .navbar.opened .navbar-logo img {
  border-right: transparent;
  content: url("../../../assets/images/slb-logo-blue.svg");
  background: white;
}
@media screen and (max-width: 991px) {
  .cid-tsrZt6sZKM .navbar-logo img {
    min-height: 5rem !important;
    padding: 20px !important;
    width: auto !important;
    margin: 0 !important;
    border-right: transparent;
    content: url("../../../assets/images/slb-logo-white.svg");
    background: #0014dc;
  }
  .cid-tsrZt6sZKM .navbar-logo {
    margin: 0 !important;
    padding: 0 !important;
  }
  .cid-tsrZt6sZKM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tsrZt6sZKM .navbar-nav {
    margin-right: 0 !important;
  }
}
.cid-sYcJQp6cTP {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYcJQp6cTP .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYcJQp6cTP .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYcJQp6cTP .card-img span {
  font-size: 100px;
}
.cid-sYcJQp6cTP .mbr-text,
.cid-sYcJQp6cTP .mbr-section-btn {
  color: #efefef;
}
.cid-sYcJQp6cTP .mbr-section-title,
.cid-sYcJQp6cTP .card-img {
  color: #00386a;
  text-align: left;
}
.cid-sYcJQp6cTP .container {
  max-width: 1525px !important;
}
.cid-sYcJQp6cTP h1 {
  letter-spacing: 0px !important;
}
.cid-sYcJQpfRxZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYcJQpfRxZ .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-sYcJQpfRxZ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sYcJQpfRxZ .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sYcJQpfRxZ .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-sYcJQpfRxZ .mbr-text,
.cid-sYcJQpfRxZ .mbr-section-btn {
  color: #000000;
}
.cid-sYcJQpfRxZ .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  box-shadow: 0px 0px 30px rgba(105, 105, 105, 0.3);
  border-radius: .25rem;
}
.cid-sYcJQpfRxZ .counter-container {
  padding: 0rem 0;
  position: relative;
}
.cid-sYcJQpfRxZ .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sYcJQpfRxZ .counter-container ul li {
  margin-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-sYcJQpfRxZ .main-row {
    margin: 0;
  }
  .cid-sYcJQpfRxZ .mbr-section-title,
  .cid-sYcJQpfRxZ .mbr-text,
  .cid-sYcJQpfRxZ .list,
  .cid-sYcJQpfRxZ .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sYcJQpfRxZ .text-content {
    padding: 0;
  }
}
.cid-sYcJQpfRxZ .container {
  max-width: 1400px !important;
}
.cid-sYcJQpfRxZ .mbr-figure img,
.cid-sYcJQpfRxZ .card-img img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cid-sYcJQpuGej {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sYcJQpuGej .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYcJQpuGej .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYcJQpuGej .card-img span {
  font-size: 100px;
}
.cid-sYcJQpuGej .mbr-text,
.cid-sYcJQpuGej .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-sYcJQpuGej .container {
  max-width: 1275px !important;
}
.cid-sYcJQpuGej .pt-2,
.cid-sYcJQpuGej .py-2 {
  padding-top: 0rem!important;
}
.cid-tsDJVESbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0014dc;
}
.cid-tsDJVESbPp p {
  text-align: center;
}
.cid-tsDJVESbPp .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #ffffff;
}
.cid-tsDJVESbPp .social-list a:focus {
  text-decoration: none;
}
.cid-tsDJVESbPp .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 14px !important;
}
.cid-tsDJVESbPp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tsDJVESbPp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsDJVESbPp .logo-footer {
  line-height: normal;
}
.cid-tsDJVESbPp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsDJVESbPp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsDJVESbPp img {
  display: inline;
  max-width: 100px !important;
}
.cid-tsDJVESbPp .container {
  max-width: 1600px !important;
}
.cid-tsDJVESbPp .px-2 {
  padding-right: 1rem !important;
}
