@import url(https://fonts.googleapis.com/css?family=Bebas+Neue:400&display=swap);
@import url(https://fonts.googleapis.com/css?family=Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Bebas Neue', display;
  font-size: 2.6rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 {
  font-family: 'Bebas Neue', display;
  font-size: 1.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Bebas Neue', display;
  font-size: 1.4rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- 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: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((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: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #073b4c !important;
}
.bg-info {
  background-color: #003061 !important;
}
.bg-warning {
  background-color: #282124 !important;
}
.bg-danger {
  background-color: #004694 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-info,
.btn-info:active {
  background-color: #003061 !important;
  border-color: #003061 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0056ae !important;
  border-color: #0056ae !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0056ae !important;
  border-color: #0056ae !important;
}
.btn-success,
.btn-success:active {
  background-color: #073b4c !important;
  border-color: #073b4c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0d7192 !important;
  border-color: #0d7192 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0d7192 !important;
  border-color: #0d7192 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #282124 !important;
  border-color: #282124 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #52444a !important;
  border-color: #52444a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #52444a !important;
  border-color: #52444a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #004694 !important;
  border-color: #004694 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #006ae1 !important;
  border-color: #006ae1 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #006ae1 !important;
  border-color: #006ae1 !important;
}
.btn-white {
  color: #222222 !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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #003061;
  border-color: #003061;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #003061 !important;
  border-color: #003061 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #073b4c;
  border-color: #073b4c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #073b4c !important;
  border-color: #073b4c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #282124;
  border-color: #282124;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #282124 !important;
  border-color: #282124 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #00162e;
  color: #00162e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #004694;
  border-color: #004694;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #004694 !important;
  border-color: #004694 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !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: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #073b4c !important;
}
.text-info {
  color: #003061 !important;
}
.text-warning {
  color: #282124 !important;
}
.text-danger {
  color: #004694 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #57c8ef !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff99b3 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1084a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #0062c7 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #604f56 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #0076fa !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #003061;
}
.alert-warning {
  background-color: #282124;
}
.alert-danger {
  background-color: #004694;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4ac6ee;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #006fe1;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #dbd3d6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #1583ff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !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: #ff3366 !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='%23149dcc' %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-soPaFKWocz {
  background-image: url("../../../assets/images/parts2bw-1-2000x503.jpeg");
}
.cid-soPaFKWocz .mbr-arrow {
  background: #767676 !important;
  opacity: .7;
}
.cid-soPaFKWocz .mbr-arrow i {
  color: #ffffff !important;
}
.cid-soPaFKWocz .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-soPaFKWocz .animated-element,
.cid-soPaFKWocz .typed-cursor {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-soPaFKWocz .typed-text {
    text-align: center;
  }
}
.cid-soPaFKWocz .mbr-section-title {
  color: #282124;
}
.cid-soPaFKWocz .mbr-text,
.cid-soPaFKWocz .typed-text,
.cid-soPaFKWocz .mbr-section-btn {
  color: #282124;
}
.cid-soPaFLCbeX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soPaFLCbeX img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-soPaFLCbeX img:hover {
  transform: scale(1.1);
}
.cid-soPaFLCbeX .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-soPaFLCbeX h2 {
  padding: 0;
  margin: 0;
}
.cid-soPaFLCbeX .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soPaFLCbeX .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-soPaFLCbeX .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-soPaFLCbeX .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-soPaFLCbeX .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-soPaFLCbeX .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-soPaFLCbeX .mbr-iconfont {
  margin: 0!important;
}
.cid-soPaFLCbeX .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-soPaFLCbeX .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-soPaFLCbeX .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-soPaFLCbeX .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-soPaFLCbeX .text-col {
    padding: 2rem 1rem;
  }
}
.cid-soPaFLCbeX H2 {
  color: #333333;
}
.cid-soPaFLCbeX .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-soPaFLRYeQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soPaFLRYeQ img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-soPaFLRYeQ img:hover {
  transform: scale(1.1);
}
.cid-soPaFLRYeQ .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-soPaFLRYeQ h2 {
  padding: 0;
  margin: 0;
}
.cid-soPaFLRYeQ .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soPaFLRYeQ .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-soPaFLRYeQ .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-soPaFLRYeQ .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
}
.cid-soPaFLRYeQ .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-soPaFLRYeQ .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-soPaFLRYeQ .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-soPaFLRYeQ .text-col {
    padding: 2rem 1rem;
  }
}
.cid-soPaFLRYeQ H2 {
  color: #333333;
}
.cid-soPaFLRYeQ .mbr-text {
  color: #767676;
}
.cid-soPaFM5k2H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soPaFM5k2H img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-soPaFM5k2H img:hover {
  transform: scale(1.1);
}
.cid-soPaFM5k2H .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-soPaFM5k2H h2 {
  padding: 0;
  margin: 0;
}
.cid-soPaFM5k2H .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soPaFM5k2H .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-soPaFM5k2H .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-soPaFM5k2H .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-soPaFM5k2H .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-soPaFM5k2H .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-soPaFM5k2H .mbr-iconfont {
  margin: 0!important;
}
.cid-soPaFM5k2H .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-soPaFM5k2H .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-soPaFM5k2H .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-soPaFM5k2H .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-soPaFM5k2H .text-col {
    padding: 2rem 1rem;
  }
}
.cid-soPaFM5k2H H2 {
  color: #333333;
}
.cid-soPaFM5k2H .mbr-text {
  color: #767676;
}
.cid-soPaFMlUys {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-soPaFMlUys .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-soPaFMlUys .mbr-section-title {
  margin: 0;
}
.cid-soPaFMlUys .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-soPaFMlUys .card-img span {
  color: #073b4c;
}
.cid-soPaFMlUys .row-item {
  margin-bottom: 2rem;
}
.cid-soPaFMlUys .row-item:hover .wrapper {
  background: linear-gradient(90deg, #0f7699, #073b4c);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-soPaFMlUys .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-soPaFMlUys .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-soPaFMlUys .wrapper {
  padding: 2.5rem 1rem;
  background: #efeeee;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-soPaFMNPY6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-soPaFMNPY6 .carousel-control {
  background: #000;
}
.cid-soPaFMNPY6 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soPaFMNPY6 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-soPaFMNPY6 .carousel-item .wrap-img {
  text-align: center;
}
.cid-soPaFMNPY6 .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-soPaFMNPY6 .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soPaFMNPY6 .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-soPaFMNPY6 .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-soPaFMNPY6 .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-soPaFMNPY6 .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-soPaFMNPY6 .cloneditem-1,
.cid-soPaFMNPY6 .cloneditem-2,
.cid-soPaFMNPY6 .cloneditem-3,
.cid-soPaFMNPY6 .cloneditem-4,
.cid-soPaFMNPY6 .cloneditem-5 {
  display: none;
}
.cid-soPaFMNPY6 .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-soPaFMNPY6 .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-soPaFMNPY6 .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides2 .cloneditem-1,
  .cid-soPaFMNPY6 .carousel-inner.slides2 .cloneditem-2,
  .cid-soPaFMNPY6 .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-soPaFMNPY6 .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides3 .cloneditem-1,
  .cid-soPaFMNPY6 .carousel-inner.slides3 .cloneditem-2,
  .cid-soPaFMNPY6 .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-soPaFMNPY6 .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides4 .cloneditem-1,
  .cid-soPaFMNPY6 .carousel-inner.slides4 .cloneditem-2,
  .cid-soPaFMNPY6 .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-soPaFMNPY6 .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides5 .cloneditem-1,
  .cid-soPaFMNPY6 .carousel-inner.slides5 .cloneditem-2,
  .cid-soPaFMNPY6 .carousel-inner.slides5 .cloneditem-3,
  .cid-soPaFMNPY6 .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-soPaFMNPY6 .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-soPaFMNPY6 .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-soPaFMNPY6 .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-soPaFMNPY6 .carousel-inner.slides6 .cloneditem-1,
  .cid-soPaFMNPY6 .carousel-inner.slides6 .cloneditem-2,
  .cid-soPaFMNPY6 .carousel-inner.slides6 .cloneditem-3,
  .cid-soPaFMNPY6 .carousel-inner.slides6 .cloneditem-4,
  .cid-soPaFMNPY6 .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-soPaFNNrOn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/vaillante-rebellion-world-champion-2017-lmp2-fia-wec-1000x550.jpg");
}
.cid-soPaFNNrOn .card-box {
  padding: 0rem;
}
.cid-soPaFNNrOn .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-soPaFNNrOn .big {
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-soPaFNNrOn .big h4 {
  margin: 0;
}
.cid-soPaFNNrOn .card {
  padding: 0;
  min-height: 300px;
}
.cid-soPaFNNrOn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-soPaFNNrOn .card-img {
  min-height: 400px;
  height: 100%;
}
.cid-soPaFNNrOn .card-wrapper {
  padding: 4rem 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-soPaFNNrOn .card-wrapper {
    padding: 4rem;
  }
}
.cid-soPaFNNrOn .cardbg1 {
  background: #000000;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-soPaFNNrOn .cardbg2 {
  background: #f6f6f6;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-soPaFNNrOn .main-title {
  color: #ffffff;
  text-align: left;
}
.cid-soPaFNNrOn .card-title,
.cid-soPaFNNrOn .mbr-section-btn {
  color: #e4d295;
}
.cid-soPaFNNrOn .card-title,
.cid-soPaFNNrOn .mbr-section-btn DIV {
  text-align: left;
}
.cid-soPaFO8bvb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #465052;
}
.cid-soPaFO8bvb img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-soPaFO8bvb img:hover {
  transform: scale(1.1);
}
.cid-soPaFO8bvb .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-soPaFO8bvb h2 {
  padding: 0;
  margin: 0;
}
.cid-soPaFO8bvb .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soPaFO8bvb .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-soPaFO8bvb .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-soPaFO8bvb .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-soPaFO8bvb .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-soPaFO8bvb .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-soPaFO8bvb .mbr-iconfont {
  margin: 0!important;
}
.cid-soPaFO8bvb .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-soPaFO8bvb .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-soPaFO8bvb .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-soPaFO8bvb .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-soPaFO8bvb .text-col {
    padding: 2rem 1rem;
  }
}
.cid-soPaFO8bvb H2 {
  color: #333333;
}
.cid-soPaFO8bvb .mbr-text {
  color: #ffffff;
}
.cid-soPaFOpgCs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-soPaFOpgCs .mbr-section-subtitle {
  color: #282124;
}
.cid-soPaFOpgCs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-soPaFOpgCs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-soPaFOpgCs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-soPaFOpgCs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-soPaFOpgCs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #465052;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-soPaFOpgCs .icon-focus,
.cid-soPaFOpgCs .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-soPaFOpgCs .icon-focus:before,
.cid-soPaFOpgCs .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soPaFOpgCs .icon-video {
  font-size: 1.5rem !important;
}
.cid-soPaFOpgCs .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-soPaFOpgCs ul {
  font-size: 0;
}
.cid-soPaFOpgCs .mbr-gallery-filter ul {
  text-align: left;
}
.cid-soPaFOpgCs .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-soPaFOpgCs .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #e96188 !important;
}
.cid-soPaFOpgCs .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-soPaFOpgCs .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-soPaFOpgCs .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-soPaFOpgCs .mbr-gallery-filter ul li.active .btn.active:after,
.cid-soPaFOpgCs .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #e96188;
}
.cid-soPaFOpgCs .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-soPaFOpgCs .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-soPaFOpgCs .mbr-gallery-filter ul li:first-child,
.cid-soPaFOpgCs .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-soPaFOpgCs .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #e96188;
}
.cid-soPaFOpgCs .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-soPaFOpgCs .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-soPaFPC4H1 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-soPaFPC4H1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-soPaFPC4H1 input,
.cid-soPaFPC4H1 textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 0;
  min-height: 3rem;
  padding: 0rem!important;
  font-size: 1rem;
}
.cid-soPaFPC4H1 input:focus,
.cid-soPaFPC4H1 textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-soPaFPC4H1 .form-control,
.cid-soPaFPC4H1 .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #282124;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-soPaFPC4H1 .form-control:hover,
.cid-soPaFPC4H1 .field-input:hover,
.cid-soPaFPC4H1 .form-control:focus,
.cid-soPaFPC4H1 .field-input:focus {
  background-color: #efeeee;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-soPaFPC4H1 input::-webkit-input-placeholder,
.cid-soPaFPC4H1 textarea::-webkit-input-placeholder {
  color: #879a9f;
}
.cid-soPaFPC4H1 input:-moz-placeholder,
.cid-soPaFPC4H1 textarea:-moz-placeholder {
  color: #879a9f;
}
.cid-soPaFPC4H1 .jq-selectbox li,
.cid-soPaFPC4H1 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-soPaFPC4H1 .jq-selectbox li:hover,
.cid-soPaFPC4H1 .jq-selectbox li.selected {
  background-color: #efeeee;
  color: #000000;
}
.cid-soPaFPC4H1 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-soPaFPC4H1 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #efeeee;
}
.cid-soPaFPC4H1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-soPaFPC4H1 .mbr-form {
  max-width: 450px;
}
.cid-soPaFPC4H1 textarea {
  min-height: 150px;
}
.cid-soPaFPC4H1 .mbr-text {
  color: #333333;
}
.cid-soPaFPC4H1 .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-soPaFPC4H1 .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-soPaFPC4H1 H2 {
  color: #282124;
}
.cid-soPaFPXWOh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-soPaFPXWOh .google-map {
  height: 25rem;
  position: relative;
}
.cid-soPaFPXWOh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-soPaFPXWOh .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-soPaFPXWOh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-soPaFPXWOh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-soPaFPXWOh .container-fluid {
  padding: 0;
}
.cid-soPaFPXWOh .relative {
  position: relative;
  width: 100%;
}
.cid-soPaFPXWOh .mbr-section-title {
  color: #656565;
}
.cid-soPaFPXWOh .block {
  background: rgba(50, 50, 50, 0.8);
  position: absolute;
  padding: 2rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  width: 400px;
  height: 100%;
  top: 0;
  right: 0;
}
.cid-soPaFPXWOh .line {
  height: 3px;
  width: 60px;
  background: #ffffff;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.cid-soPaFPXWOh .title {
  text-align: center;
  color: #ffffff;
}
.cid-soPaFPXWOh .text {
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .cid-soPaFPXWOh .block {
    position: relative;
    width: 100%;
    height: auto;
    padding: 6rem 2rem;
  }
}
.cid-soPaFQLTbX {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-soPaFQLTbX .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-soPaFR3ZNF .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-soPaFR3ZNF .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-soPaFR3ZNF a {
  font-style: normal;
}
.cid-soPaFR3ZNF .show {
  overflow: visible;
}
.cid-soPaFR3ZNF .dropdown-menu {
  max-height: 400px;
}
.cid-soPaFR3ZNF .dropdown-item:active {
  background-color: transparent;
}
.cid-soPaFR3ZNF .nav-link {
  font-weight: 600!important;
}
.cid-soPaFR3ZNF .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-soPaFR3ZNF .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-soPaFR3ZNF .nav-item:focus,
.cid-soPaFR3ZNF .nav-link:focus {
  outline: none;
}
.cid-soPaFR3ZNF .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-soPaFR3ZNF .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-soPaFR3ZNF .menu-logo {
  margin-right: auto;
}
.cid-soPaFR3ZNF .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-soPaFR3ZNF .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-soPaFR3ZNF .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-soPaFR3ZNF .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-soPaFR3ZNF .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-soPaFR3ZNF .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-soPaFR3ZNF .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-soPaFR3ZNF .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-soPaFR3ZNF .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-soPaFR3ZNF .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPaFR3ZNF .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-soPaFR3ZNF .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-soPaFR3ZNF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #004694 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-soPaFR3ZNF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soPaFR3ZNF .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-soPaFR3ZNF .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPaFR3ZNF .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-soPaFR3ZNF .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-soPaFR3ZNF .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-soPaFR3ZNF .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-soPaFR3ZNF .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-soPaFR3ZNF .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-soPaFR3ZNF .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-soPaFR3ZNF button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-soPaFR3ZNF button.navbar-toggler:focus {
  outline: none;
}
.cid-soPaFR3ZNF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282124;
}
.cid-soPaFR3ZNF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-soPaFR3ZNF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-soPaFR3ZNF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-soPaFR3ZNF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-soPaFR3ZNF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soPaFR3ZNF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-soPaFR3ZNF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-soPaFR3ZNF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soPaFR3ZNF .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-soPaFR3ZNF .collapsed .btn {
  display: -webkit-flex;
}
.cid-soPaFR3ZNF .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-soPaFR3ZNF .collapsed .navbar-collapse.collapsing,
.cid-soPaFR3ZNF .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-soPaFR3ZNF .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-soPaFR3ZNF .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-soPaFR3ZNF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-soPaFR3ZNF .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-soPaFR3ZNF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-soPaFR3ZNF .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-soPaFR3ZNF .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-soPaFR3ZNF .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-soPaFR3ZNF .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-soPaFR3ZNF .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-soPaFR3ZNF .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-soPaFR3ZNF .collapsed button.navbar-toggler {
  display: block;
}
.cid-soPaFR3ZNF .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-soPaFR3ZNF .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-soPaFR3ZNF .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-soPaFR3ZNF .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-soPaFR3ZNF .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-soPaFR3ZNF .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-soPaFR3ZNF.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-soPaFR3ZNF img {
    height: 3.8rem !important;
  }
  .cid-soPaFR3ZNF .btn {
    display: -webkit-flex;
  }
  .cid-soPaFR3ZNF button.navbar-toggler {
    display: block;
  }
  .cid-soPaFR3ZNF .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-soPaFR3ZNF .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-soPaFR3ZNF .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-soPaFR3ZNF .navbar-collapse.collapsing,
  .cid-soPaFR3ZNF .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-soPaFR3ZNF .navbar-collapse.collapsing .navbar-nav,
  .cid-soPaFR3ZNF .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-soPaFR3ZNF .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-soPaFR3ZNF .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-soPaFR3ZNF .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-soPaFR3ZNF .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-soPaFR3ZNF .navbar-collapse.collapsing .navbar-buttons,
  .cid-soPaFR3ZNF .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-soPaFR3ZNF .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-soPaFR3ZNF .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-soPaFR3ZNF .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-soPaFR3ZNF .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-soPaFR3ZNF .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-soPaFR3ZNF .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-soPaFR3ZNF .nav-link {
    justify-content: start!important;
  }
  .cid-soPaFR3ZNF .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-soPaFR3ZNF .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-soPaFR3ZNF .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-soPaFR3ZNF .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-soPaFR3ZNF .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-soPaFR3ZNF .nav-link:hover,
.cid-soPaFR3ZNF .dropdown-item:hover {
  color: #333333 !important;
}
@media (min-width: 1500px) {
  .cid-soPaFR3ZNF .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-soPaFR3ZNF .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-soPmehtxOV {
  padding-top: 120px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/background-1800x825.png");
}
.cid-soPmehtxOV .row {
  justify-content: flex-end;
}
.cid-soPmehtxOV .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #ffffff;
}
.cid-soPmehtxOV .block {
  background-color: #003061;
}
.cid-soPmehtxOV img {
  width: 100%;
}
.cid-soPmehtxOV .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-soPmehtxOV .content {
  max-width: 600px;
}
.cid-soPmehtxOV h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-soPmehtxOV .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-soPmehtxOV h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-soPmehtxOV .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-soPmehtxOV h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-soPmehtxOV H1 {
  color: #ffffff;
}
.cid-soPmehtxOV .mbr-text,
.cid-soPmehtxOV .mbr-section-btn {
  color: #ffffff;
}
.cid-soPmehtxOV H4 {
  color: #ffffff;
}
.cid-soPmehtxOV H3 {
  color: #ffffff;
}
.cid-soPn2KKeJo {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soPn2KKeJo .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-soPn2KKeJo .container {
  max-width: 1500px;
}
.cid-soPn2KKeJo .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-soPn2KKeJo .container {
    padding: 0 4rem;
  }
}
.cid-soPn2KKeJo .mbr-text,
.cid-soPn2KKeJo .mbr-section-btn {
  color: #efeeee;
}
.cid-soPn2KKeJo .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
}
.cid-soPn2KKeJo .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-soPn2KKeJo .align-left {
    text-align: center;
  }
  .cid-soPn2KKeJo .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-soPn2KKeJo H1 {
  color: #003061;
  text-align: left;
}
.cid-soPngt19CI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soPngt19CI .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-soPngt19CI .container {
  max-width: 1500px;
}
.cid-soPngt19CI .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-soPngt19CI .container {
    padding: 0 4rem;
  }
}
.cid-soPngt19CI .mbr-text,
.cid-soPngt19CI .mbr-section-btn {
  color: #efeeee;
}
.cid-soPngt19CI .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
}
.cid-soPngt19CI .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-soPngt19CI .align-left {
    text-align: center;
  }
  .cid-soPngt19CI .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-soPngt19CI H1 {
  color: #004694;
  text-align: left;
}
.cid-soPp453b31 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-soPp453b31 .container {
    max-width: 1400px;
  }
}
.cid-soPp453b31 img {
  width: 100%;
  height: auto;
  margin: auto;
}
.cid-soPp453b31 .content {
  max-width: 450px;
  margin: auto;
}
.cid-soPp453b31 .mbr-text,
.cid-soPp453b31 .mbr-section-btn {
  color: #282124;
}
@media (max-width: 992px) {
  .cid-soPp453b31 .img-col {
    padding-bottom: 3rem;
  }
  .cid-soPp453b31 .content {
    max-width: 100%;
  }
}
.cid-soPp5qd7lK {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soPp5qd7lK .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-soPp5qd7lK .container {
  max-width: 1500px;
}
.cid-soPp5qd7lK .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-soPp5qd7lK .container {
    padding: 0 4rem;
  }
}
.cid-soPp5qd7lK .mbr-text,
.cid-soPp5qd7lK .mbr-section-btn {
  color: #efeeee;
}
.cid-soPp5qd7lK .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
}
.cid-soPp5qd7lK .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-soPp5qd7lK .align-left {
    text-align: center;
  }
  .cid-soPp5qd7lK .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-soPp5qd7lK H1 {
  color: #004694;
  text-align: left;
}
.cid-soPoxwoWBZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-soPoxwoWBZ .container {
    max-width: 1400px;
  }
}
.cid-soPoxwoWBZ img {
  width: 100%;
  height: auto;
  margin: auto;
}
.cid-soPoxwoWBZ .content {
  max-width: 450px;
  margin: auto;
}
.cid-soPoxwoWBZ .mbr-text,
.cid-soPoxwoWBZ .mbr-section-btn {
  color: #282124;
}
@media (max-width: 992px) {
  .cid-soPoxwoWBZ .img-col {
    padding-bottom: 3rem;
  }
  .cid-soPoxwoWBZ .content {
    max-width: 100%;
  }
}
.cid-s8Fyfrf0jz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #003061;
}
.cid-s8Fyfrf0jz img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-s8Fyfrf0jz img:hover {
  transform: scale(1.1);
}
.cid-s8Fyfrf0jz .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-s8Fyfrf0jz h2 {
  padding: 0;
  margin: 0;
}
.cid-s8Fyfrf0jz .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s8Fyfrf0jz .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-s8Fyfrf0jz .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-s8Fyfrf0jz .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-s8Fyfrf0jz .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-s8Fyfrf0jz .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-s8Fyfrf0jz .mbr-iconfont {
  margin: 0!important;
}
.cid-s8Fyfrf0jz .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-s8Fyfrf0jz .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-s8Fyfrf0jz .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-s8Fyfrf0jz .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-s8Fyfrf0jz .text-col {
    padding: 2rem 1rem;
  }
}
.cid-s8Fyfrf0jz H2 {
  color: #333333;
}
.cid-s8Fyfrf0jz .mbr-text {
  color: #ffffff;
}
.cid-sp6I7WJ2EI {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-sp6I7WJ2EI section {
  position: relative;
}
.cid-sp6I7WJ2EI h4 {
  margin: 0;
}
.cid-sp6I7WJ2EI img {
  height: 100px;
  padding-right: 8px;
  width: auto;
}
.cid-sp6I7WJ2EI a {
  font-weight: 300;
}
.cid-sp6I7WJ2EI .img1 {
  color: #e20404;
}
.cid-sp6I7WJ2EI .img2 {
  color: #e20404;
}
.cid-sp6I7WJ2EI .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #e20404;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sp6I7WJ2EI .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-sp6I7WJ2EI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sp6I7WJ2EI .item,
.cid-sp6I7WJ2EI .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-sp6I7WJ2EI .item h4,
.cid-sp6I7WJ2EI .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sp6I7WJ2EI .card-img {
  width: auto;
}
.cid-sp6I7WJ2EI .link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .cid-sp6I7WJ2EI .item {
    justify-content: center;
  }
}
.cid-sp6I7WJ2EI .item-title {
  color: #ffffff;
}
.cid-rpSfRqtWyh {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-rpSfRqtWyh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rwG46vRkNS .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rwG46vRkNS .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rwG46vRkNS a {
  font-style: normal;
}
.cid-rwG46vRkNS .show {
  overflow: visible;
}
.cid-rwG46vRkNS .dropdown-menu {
  max-height: 400px;
}
.cid-rwG46vRkNS .dropdown-item:active {
  background-color: transparent;
}
.cid-rwG46vRkNS .nav-link {
  font-weight: 600!important;
}
.cid-rwG46vRkNS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rwG46vRkNS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-rwG46vRkNS .nav-item:focus,
.cid-rwG46vRkNS .nav-link:focus {
  outline: none;
}
.cid-rwG46vRkNS .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rwG46vRkNS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rwG46vRkNS .menu-logo {
  margin-right: auto;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #004694 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rwG46vRkNS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rwG46vRkNS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rwG46vRkNS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rwG46vRkNS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rwG46vRkNS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rwG46vRkNS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rwG46vRkNS button.navbar-toggler:focus {
  outline: none;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282124;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rwG46vRkNS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rwG46vRkNS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwG46vRkNS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwG46vRkNS .collapsed .btn {
  display: -webkit-flex;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rwG46vRkNS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rwG46vRkNS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rwG46vRkNS .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-rwG46vRkNS .collapsed button.navbar-toggler {
  display: block;
}
.cid-rwG46vRkNS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rwG46vRkNS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwG46vRkNS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rwG46vRkNS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rwG46vRkNS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rwG46vRkNS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rwG46vRkNS.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwG46vRkNS img {
    height: 3.8rem !important;
  }
  .cid-rwG46vRkNS .btn {
    display: -webkit-flex;
  }
  .cid-rwG46vRkNS button.navbar-toggler {
    display: block;
  }
  .cid-rwG46vRkNS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rwG46vRkNS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwG46vRkNS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing,
  .cid-rwG46vRkNS .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-buttons,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rwG46vRkNS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rwG46vRkNS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwG46vRkNS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rwG46vRkNS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rwG46vRkNS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rwG46vRkNS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-rwG46vRkNS .nav-link {
    justify-content: start!important;
  }
  .cid-rwG46vRkNS .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-rwG46vRkNS .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-rwG46vRkNS .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-rwG46vRkNS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rwG46vRkNS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rwG46vRkNS .nav-link:hover,
.cid-rwG46vRkNS .dropdown-item:hover {
  color: #333333 !important;
}
@media (min-width: 1500px) {
  .cid-rwG46vRkNS .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-rwG46vRkNS .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sp1B0wzxo9 {
  padding-top: 120px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/vm-motori-diesel-sebah-sal-distributor-parts-1600x600.jpg");
}
.cid-sp1B0wzxo9 .row {
  justify-content: flex-end;
}
.cid-sp1B0wzxo9 .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #ffffff;
}
.cid-sp1B0wzxo9 .block {
  background-color: #003061;
}
.cid-sp1B0wzxo9 img {
  width: 100%;
}
.cid-sp1B0wzxo9 .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sp1B0wzxo9 .content {
  max-width: 600px;
}
.cid-sp1B0wzxo9 h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sp1B0wzxo9 .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sp1B0wzxo9 h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-sp1B0wzxo9 .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sp1B0wzxo9 h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sp1B0wzxo9 H1 {
  color: #ffffff;
}
.cid-sp1B0wzxo9 .mbr-text,
.cid-sp1B0wzxo9 .mbr-section-btn {
  color: #ffffff;
}
.cid-sp1B0wzxo9 H4 {
  color: #ffffff;
}
.cid-sp1B0wzxo9 H3 {
  color: #ffffff;
}
.cid-sp5f6gmNu6 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sp5f6gmNu6 .card {
  padding: 1rem 1rem 10rem 1rem;
}
.cid-sp5f6gmNu6 .card-img {
  padding-bottom: 2rem;
}
.cid-sp5f6gmNu6 .mbr-text {
  color: #767676;
}
.cid-sp5f6gmNu6 span {
  font-size: 14px;
  color: #ffffff;
}
.cid-sp5f6gmNu6 .date span {
  display: inline-block;
  background-color: #ff3366;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 467px) {
  .cid-sp5f6gmNu6 .card-title {
    text-align: center;
  }
  .cid-sp5f6gmNu6 p.mbr-text,
  .cid-sp5f6gmNu6 p.date {
    text-align: center;
  }
}
.cid-sp5f6gmNu6 H2 {
  color: #003061;
}
.cid-sp5f6gmNu6 .mbr-text,
.cid-sp5f6gmNu6 .mbr-section-btn {
  text-align: center;
  color: #003061;
}
.cid-sp1B0y6UO9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #003061;
}
.cid-sp1B0y6UO9 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sp1B0y6UO9 img:hover {
  transform: scale(1.1);
}
.cid-sp1B0y6UO9 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sp1B0y6UO9 h2 {
  padding: 0;
  margin: 0;
}
.cid-sp1B0y6UO9 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sp1B0y6UO9 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sp1B0y6UO9 .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-sp1B0y6UO9 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-sp1B0y6UO9 .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-sp1B0y6UO9 .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sp1B0y6UO9 .mbr-iconfont {
  margin: 0!important;
}
.cid-sp1B0y6UO9 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sp1B0y6UO9 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sp1B0y6UO9 .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sp1B0y6UO9 .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sp1B0y6UO9 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sp1B0y6UO9 H2 {
  color: #333333;
}
.cid-sp1B0y6UO9 .mbr-text {
  color: #ffffff;
}
.cid-sp1BUghgZn {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-sp1BUghgZn section {
  position: relative;
}
.cid-sp1BUghgZn h4 {
  margin: 0;
}
.cid-sp1BUghgZn img {
  height: 100px;
  padding-right: 8px;
  width: auto;
}
.cid-sp1BUghgZn a {
  font-weight: 300;
}
.cid-sp1BUghgZn .img1 {
  color: #e20404;
}
.cid-sp1BUghgZn .img2 {
  color: #e20404;
}
.cid-sp1BUghgZn .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #e20404;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sp1BUghgZn .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-sp1BUghgZn .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sp1BUghgZn .item,
.cid-sp1BUghgZn .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-sp1BUghgZn .item h4,
.cid-sp1BUghgZn .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sp1BUghgZn .card-img {
  width: auto;
}
.cid-sp1BUghgZn .link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .cid-sp1BUghgZn .item {
    justify-content: center;
  }
}
.cid-sp1BUghgZn .item-title {
  color: #ffffff;
}
.cid-sp1B0yTlJd {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-sp1B0yTlJd .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sp1B0z6NXs .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sp1B0z6NXs .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sp1B0z6NXs a {
  font-style: normal;
}
.cid-sp1B0z6NXs .show {
  overflow: visible;
}
.cid-sp1B0z6NXs .dropdown-menu {
  max-height: 400px;
}
.cid-sp1B0z6NXs .dropdown-item:active {
  background-color: transparent;
}
.cid-sp1B0z6NXs .nav-link {
  font-weight: 600!important;
}
.cid-sp1B0z6NXs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sp1B0z6NXs .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-sp1B0z6NXs .nav-item:focus,
.cid-sp1B0z6NXs .nav-link:focus {
  outline: none;
}
.cid-sp1B0z6NXs .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sp1B0z6NXs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sp1B0z6NXs .menu-logo {
  margin-right: auto;
}
.cid-sp1B0z6NXs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sp1B0z6NXs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sp1B0z6NXs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-sp1B0z6NXs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sp1B0z6NXs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sp1B0z6NXs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sp1B0z6NXs .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sp1B0z6NXs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sp1B0z6NXs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sp1B0z6NXs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sp1B0z6NXs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sp1B0z6NXs .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sp1B0z6NXs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #004694 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-sp1B0z6NXs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sp1B0z6NXs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sp1B0z6NXs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sp1B0z6NXs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sp1B0z6NXs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sp1B0z6NXs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sp1B0z6NXs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sp1B0z6NXs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sp1B0z6NXs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sp1B0z6NXs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sp1B0z6NXs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sp1B0z6NXs button.navbar-toggler:focus {
  outline: none;
}
.cid-sp1B0z6NXs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282124;
}
.cid-sp1B0z6NXs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sp1B0z6NXs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sp1B0z6NXs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sp1B0z6NXs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sp1B0z6NXs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sp1B0z6NXs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sp1B0z6NXs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sp1B0z6NXs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sp1B0z6NXs .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sp1B0z6NXs .collapsed .btn {
  display: -webkit-flex;
}
.cid-sp1B0z6NXs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sp1B0z6NXs .collapsed .navbar-collapse.collapsing,
.cid-sp1B0z6NXs .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sp1B0z6NXs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sp1B0z6NXs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sp1B0z6NXs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sp1B0z6NXs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sp1B0z6NXs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sp1B0z6NXs .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sp1B0z6NXs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sp1B0z6NXs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sp1B0z6NXs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sp1B0z6NXs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sp1B0z6NXs .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-sp1B0z6NXs .collapsed button.navbar-toggler {
  display: block;
}
.cid-sp1B0z6NXs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sp1B0z6NXs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sp1B0z6NXs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sp1B0z6NXs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sp1B0z6NXs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sp1B0z6NXs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sp1B0z6NXs.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sp1B0z6NXs img {
    height: 3.8rem !important;
  }
  .cid-sp1B0z6NXs .btn {
    display: -webkit-flex;
  }
  .cid-sp1B0z6NXs button.navbar-toggler {
    display: block;
  }
  .cid-sp1B0z6NXs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sp1B0z6NXs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sp1B0z6NXs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sp1B0z6NXs .navbar-collapse.collapsing,
  .cid-sp1B0z6NXs .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sp1B0z6NXs .navbar-collapse.collapsing .navbar-nav,
  .cid-sp1B0z6NXs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sp1B0z6NXs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sp1B0z6NXs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sp1B0z6NXs .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sp1B0z6NXs .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sp1B0z6NXs .navbar-collapse.collapsing .navbar-buttons,
  .cid-sp1B0z6NXs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sp1B0z6NXs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sp1B0z6NXs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sp1B0z6NXs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sp1B0z6NXs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sp1B0z6NXs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sp1B0z6NXs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-sp1B0z6NXs .nav-link {
    justify-content: start!important;
  }
  .cid-sp1B0z6NXs .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sp1B0z6NXs .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-sp1B0z6NXs .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sp1B0z6NXs .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sp1B0z6NXs .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sp1B0z6NXs .nav-link:hover,
.cid-sp1B0z6NXs .dropdown-item:hover {
  color: #333333 !important;
}
@media (min-width: 1500px) {
  .cid-sp1B0z6NXs .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-sp1B0z6NXs .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sp1AVXw15Z {
  padding-top: 120px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/vm-motori-diesel-sebah-sal-distributor-parts-1600x600.jpg");
}
.cid-sp1AVXw15Z .row {
  justify-content: flex-end;
}
.cid-sp1AVXw15Z .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #ffffff;
}
.cid-sp1AVXw15Z .block {
  background-color: #003061;
}
.cid-sp1AVXw15Z img {
  width: 100%;
}
.cid-sp1AVXw15Z .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sp1AVXw15Z .content {
  max-width: 600px;
}
.cid-sp1AVXw15Z h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sp1AVXw15Z .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sp1AVXw15Z h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-sp1AVXw15Z .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sp1AVXw15Z h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sp1AVXw15Z H1 {
  color: #ffffff;
}
.cid-sp1AVXw15Z .mbr-text,
.cid-sp1AVXw15Z .mbr-section-btn {
  color: #ffffff;
}
.cid-sp1AVXw15Z H4 {
  color: #ffffff;
}
.cid-sp1AVXw15Z H3 {
  color: #ffffff;
}
.cid-sp5LVhSH8k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sp5LVhSH8k .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sp5LVhSH8k input,
.cid-sp5LVhSH8k textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 0;
  min-height: 3rem;
  padding: 0rem!important;
  font-size: 1rem;
}
.cid-sp5LVhSH8k input:focus,
.cid-sp5LVhSH8k textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-sp5LVhSH8k .form-control,
.cid-sp5LVhSH8k .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #282124;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sp5LVhSH8k .form-control:hover,
.cid-sp5LVhSH8k .field-input:hover,
.cid-sp5LVhSH8k .form-control:focus,
.cid-sp5LVhSH8k .field-input:focus {
  background-color: #efeeee;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sp5LVhSH8k input::-webkit-input-placeholder,
.cid-sp5LVhSH8k textarea::-webkit-input-placeholder {
  color: #879a9f;
}
.cid-sp5LVhSH8k input:-moz-placeholder,
.cid-sp5LVhSH8k textarea:-moz-placeholder {
  color: #879a9f;
}
.cid-sp5LVhSH8k .jq-selectbox li,
.cid-sp5LVhSH8k .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sp5LVhSH8k .jq-selectbox li:hover,
.cid-sp5LVhSH8k .jq-selectbox li.selected {
  background-color: #efeeee;
  color: #000000;
}
.cid-sp5LVhSH8k .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sp5LVhSH8k .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #efeeee;
}
.cid-sp5LVhSH8k img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sp5LVhSH8k .mbr-form {
  max-width: 450px;
}
.cid-sp5LVhSH8k textarea {
  min-height: 150px;
}
.cid-sp5LVhSH8k .mbr-text {
  color: #333333;
}
.cid-sp5LVhSH8k .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-sp5LVhSH8k .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-sp5LVhSH8k H2 {
  color: #003061;
}
.cid-sp6InLKHdL {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-sp6InLKHdL section {
  position: relative;
}
.cid-sp6InLKHdL h4 {
  margin: 0;
}
.cid-sp6InLKHdL img {
  height: 100px;
  padding-right: 8px;
  width: auto;
}
.cid-sp6InLKHdL a {
  font-weight: 300;
}
.cid-sp6InLKHdL .img1 {
  color: #e20404;
}
.cid-sp6InLKHdL .img2 {
  color: #e20404;
}
.cid-sp6InLKHdL .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #e20404;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sp6InLKHdL .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-sp6InLKHdL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sp6InLKHdL .item,
.cid-sp6InLKHdL .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-sp6InLKHdL .item h4,
.cid-sp6InLKHdL .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sp6InLKHdL .card-img {
  width: auto;
}
.cid-sp6InLKHdL .link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .cid-sp6InLKHdL .item {
    justify-content: center;
  }
}
.cid-sp6InLKHdL .item-title {
  color: #ffffff;
}
.cid-sp1AW0fjZi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-sp1AW0fjZi .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sp1AW0JZHR .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sp1AW0JZHR .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sp1AW0JZHR a {
  font-style: normal;
}
.cid-sp1AW0JZHR .show {
  overflow: visible;
}
.cid-sp1AW0JZHR .dropdown-menu {
  max-height: 400px;
}
.cid-sp1AW0JZHR .dropdown-item:active {
  background-color: transparent;
}
.cid-sp1AW0JZHR .nav-link {
  font-weight: 600!important;
}
.cid-sp1AW0JZHR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sp1AW0JZHR .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-sp1AW0JZHR .nav-item:focus,
.cid-sp1AW0JZHR .nav-link:focus {
  outline: none;
}
.cid-sp1AW0JZHR .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sp1AW0JZHR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sp1AW0JZHR .menu-logo {
  margin-right: auto;
}
.cid-sp1AW0JZHR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sp1AW0JZHR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sp1AW0JZHR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-sp1AW0JZHR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sp1AW0JZHR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sp1AW0JZHR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sp1AW0JZHR .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sp1AW0JZHR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sp1AW0JZHR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sp1AW0JZHR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sp1AW0JZHR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sp1AW0JZHR .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sp1AW0JZHR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #004694 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-sp1AW0JZHR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sp1AW0JZHR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sp1AW0JZHR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sp1AW0JZHR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sp1AW0JZHR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sp1AW0JZHR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sp1AW0JZHR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sp1AW0JZHR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sp1AW0JZHR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sp1AW0JZHR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sp1AW0JZHR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sp1AW0JZHR button.navbar-toggler:focus {
  outline: none;
}
.cid-sp1AW0JZHR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282124;
}
.cid-sp1AW0JZHR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sp1AW0JZHR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sp1AW0JZHR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sp1AW0JZHR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sp1AW0JZHR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sp1AW0JZHR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sp1AW0JZHR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sp1AW0JZHR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sp1AW0JZHR .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sp1AW0JZHR .collapsed .btn {
  display: -webkit-flex;
}
.cid-sp1AW0JZHR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sp1AW0JZHR .collapsed .navbar-collapse.collapsing,
.cid-sp1AW0JZHR .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sp1AW0JZHR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sp1AW0JZHR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sp1AW0JZHR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sp1AW0JZHR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sp1AW0JZHR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sp1AW0JZHR .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sp1AW0JZHR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sp1AW0JZHR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sp1AW0JZHR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sp1AW0JZHR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sp1AW0JZHR .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-sp1AW0JZHR .collapsed button.navbar-toggler {
  display: block;
}
.cid-sp1AW0JZHR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sp1AW0JZHR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sp1AW0JZHR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sp1AW0JZHR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sp1AW0JZHR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sp1AW0JZHR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sp1AW0JZHR.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sp1AW0JZHR img {
    height: 3.8rem !important;
  }
  .cid-sp1AW0JZHR .btn {
    display: -webkit-flex;
  }
  .cid-sp1AW0JZHR button.navbar-toggler {
    display: block;
  }
  .cid-sp1AW0JZHR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sp1AW0JZHR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sp1AW0JZHR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sp1AW0JZHR .navbar-collapse.collapsing,
  .cid-sp1AW0JZHR .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sp1AW0JZHR .navbar-collapse.collapsing .navbar-nav,
  .cid-sp1AW0JZHR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sp1AW0JZHR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sp1AW0JZHR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sp1AW0JZHR .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sp1AW0JZHR .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sp1AW0JZHR .navbar-collapse.collapsing .navbar-buttons,
  .cid-sp1AW0JZHR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sp1AW0JZHR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sp1AW0JZHR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sp1AW0JZHR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sp1AW0JZHR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sp1AW0JZHR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sp1AW0JZHR .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-sp1AW0JZHR .nav-link {
    justify-content: start!important;
  }
  .cid-sp1AW0JZHR .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sp1AW0JZHR .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-sp1AW0JZHR .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sp1AW0JZHR .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sp1AW0JZHR .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sp1AW0JZHR .nav-link:hover,
.cid-sp1AW0JZHR .dropdown-item:hover {
  color: #333333 !important;
}
@media (min-width: 1500px) {
  .cid-sp1AW0JZHR .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-sp1AW0JZHR .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sp5IeD2n4j {
  padding-top: 120px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/vm-motori-diesel-sebah-sal-distributor-parts-1600x600.jpg");
}
.cid-sp5IeD2n4j .row {
  justify-content: flex-end;
}
.cid-sp5IeD2n4j .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #ffffff;
}
.cid-sp5IeD2n4j .block {
  background-color: #003061;
}
.cid-sp5IeD2n4j img {
  width: 100%;
}
.cid-sp5IeD2n4j .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sp5IeD2n4j .content {
  max-width: 600px;
}
.cid-sp5IeD2n4j h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sp5IeD2n4j .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sp5IeD2n4j h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-sp5IeD2n4j .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sp5IeD2n4j h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sp5IeD2n4j H1 {
  color: #ffffff;
}
.cid-sp5IeD2n4j .mbr-text,
.cid-sp5IeD2n4j .mbr-section-btn {
  color: #ffffff;
}
.cid-sp5IeD2n4j H4 {
  color: #ffffff;
}
.cid-sp5IeD2n4j H3 {
  color: #ffffff;
}
.cid-sp1AJhv6EM {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sp1AJhv6EM .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sp1AJhv6EM .container {
  max-width: 1500px;
}
.cid-sp1AJhv6EM .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sp1AJhv6EM .container {
    padding: 0 4rem;
  }
}
.cid-sp1AJhv6EM .mbr-text,
.cid-sp1AJhv6EM .mbr-section-btn {
  color: #efeeee;
}
.cid-sp1AJhv6EM .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
}
.cid-sp1AJhv6EM .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-sp1AJhv6EM .align-left {
    text-align: center;
  }
  .cid-sp1AJhv6EM .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sp1AJhv6EM H1 {
  color: #003061;
  text-align: left;
}
.cid-sp5II1cCwH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sp5II1cCwH p {
  color: #767676;
}
.cid-sp5II1cCwH .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sp5II1cCwH .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sp5II1cCwH .row-element,
.cid-sp5II1cCwH .image-element {
  padding: 0;
}
.cid-sp5II1cCwH .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sp5II1cCwH .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sp5II1cCwH .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sp5II1cCwH .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #149dcc, #ff3366);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sp5II1cCwH .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sp5II1cCwH .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sp5II1cCwH .text-content {
    padding: 2rem 1rem;
  }
  .cid-sp5II1cCwH .underline .line {
    height: 2px;
  }
  .cid-sp5II1cCwH .mbr-title,
  .cid-sp5II1cCwH .underline,
  .cid-sp5II1cCwH .mbr-text,
  .cid-sp5II1cCwH .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sp5II1cCwH .mbr-text,
.cid-sp5II1cCwH .mbr-section-btn {
  text-align: left;
  color: #282124;
}
.cid-sp5II1cCwH .mbr-title,
.cid-sp5II1cCwH .underline {
  text-align: left;
  color: #003061;
}
.cid-sp5JyZA1WE {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sp5JyZA1WE .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
  color: #003061;
}
.cid-sp5JyZA1WE .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-sp5JyZA1WE .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-sp5JyZA1WE .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-sp5JyZA1WE .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-sp5JyZA1WE .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-sp5JyZA1WE .inner-container {
    width: 100% !important;
  }
  .cid-sp5JyZA1WE .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-sp6IfoGLkk {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-sp6IfoGLkk section {
  position: relative;
}
.cid-sp6IfoGLkk h4 {
  margin: 0;
}
.cid-sp6IfoGLkk img {
  height: 100px;
  padding-right: 8px;
  width: auto;
}
.cid-sp6IfoGLkk a {
  font-weight: 300;
}
.cid-sp6IfoGLkk .img1 {
  color: #e20404;
}
.cid-sp6IfoGLkk .img2 {
  color: #e20404;
}
.cid-sp6IfoGLkk .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #e20404;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sp6IfoGLkk .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-sp6IfoGLkk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sp6IfoGLkk .item,
.cid-sp6IfoGLkk .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-sp6IfoGLkk .item h4,
.cid-sp6IfoGLkk .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sp6IfoGLkk .card-img {
  width: auto;
}
.cid-sp6IfoGLkk .link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .cid-sp6IfoGLkk .item {
    justify-content: center;
  }
}
.cid-sp6IfoGLkk .item-title {
  color: #ffffff;
}
.cid-sp1AJjCUPE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-sp1AJjCUPE .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sp1AJjSAGE .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sp1AJjSAGE .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sp1AJjSAGE a {
  font-style: normal;
}
.cid-sp1AJjSAGE .show {
  overflow: visible;
}
.cid-sp1AJjSAGE .dropdown-menu {
  max-height: 400px;
}
.cid-sp1AJjSAGE .dropdown-item:active {
  background-color: transparent;
}
.cid-sp1AJjSAGE .nav-link {
  font-weight: 600!important;
}
.cid-sp1AJjSAGE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sp1AJjSAGE .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-sp1AJjSAGE .nav-item:focus,
.cid-sp1AJjSAGE .nav-link:focus {
  outline: none;
}
.cid-sp1AJjSAGE .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sp1AJjSAGE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sp1AJjSAGE .menu-logo {
  margin-right: auto;
}
.cid-sp1AJjSAGE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sp1AJjSAGE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sp1AJjSAGE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-sp1AJjSAGE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sp1AJjSAGE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sp1AJjSAGE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sp1AJjSAGE .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sp1AJjSAGE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sp1AJjSAGE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sp1AJjSAGE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sp1AJjSAGE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sp1AJjSAGE .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sp1AJjSAGE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #004694 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-sp1AJjSAGE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sp1AJjSAGE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sp1AJjSAGE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sp1AJjSAGE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sp1AJjSAGE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sp1AJjSAGE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sp1AJjSAGE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sp1AJjSAGE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sp1AJjSAGE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sp1AJjSAGE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sp1AJjSAGE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sp1AJjSAGE button.navbar-toggler:focus {
  outline: none;
}
.cid-sp1AJjSAGE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282124;
}
.cid-sp1AJjSAGE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sp1AJjSAGE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sp1AJjSAGE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sp1AJjSAGE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sp1AJjSAGE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sp1AJjSAGE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sp1AJjSAGE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sp1AJjSAGE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sp1AJjSAGE .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sp1AJjSAGE .collapsed .btn {
  display: -webkit-flex;
}
.cid-sp1AJjSAGE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sp1AJjSAGE .collapsed .navbar-collapse.collapsing,
.cid-sp1AJjSAGE .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sp1AJjSAGE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sp1AJjSAGE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sp1AJjSAGE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sp1AJjSAGE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sp1AJjSAGE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sp1AJjSAGE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sp1AJjSAGE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sp1AJjSAGE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sp1AJjSAGE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sp1AJjSAGE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sp1AJjSAGE .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-sp1AJjSAGE .collapsed button.navbar-toggler {
  display: block;
}
.cid-sp1AJjSAGE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sp1AJjSAGE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sp1AJjSAGE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sp1AJjSAGE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sp1AJjSAGE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sp1AJjSAGE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sp1AJjSAGE.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sp1AJjSAGE img {
    height: 3.8rem !important;
  }
  .cid-sp1AJjSAGE .btn {
    display: -webkit-flex;
  }
  .cid-sp1AJjSAGE button.navbar-toggler {
    display: block;
  }
  .cid-sp1AJjSAGE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sp1AJjSAGE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sp1AJjSAGE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sp1AJjSAGE .navbar-collapse.collapsing,
  .cid-sp1AJjSAGE .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sp1AJjSAGE .navbar-collapse.collapsing .navbar-nav,
  .cid-sp1AJjSAGE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sp1AJjSAGE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sp1AJjSAGE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sp1AJjSAGE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sp1AJjSAGE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sp1AJjSAGE .navbar-collapse.collapsing .navbar-buttons,
  .cid-sp1AJjSAGE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sp1AJjSAGE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sp1AJjSAGE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sp1AJjSAGE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sp1AJjSAGE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sp1AJjSAGE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sp1AJjSAGE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-sp1AJjSAGE .nav-link {
    justify-content: start!important;
  }
  .cid-sp1AJjSAGE .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sp1AJjSAGE .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-sp1AJjSAGE .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sp1AJjSAGE .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sp1AJjSAGE .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sp1AJjSAGE .nav-link:hover,
.cid-sp1AJjSAGE .dropdown-item:hover {
  color: #333333 !important;
}
@media (min-width: 1500px) {
  .cid-sp1AJjSAGE .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-sp1AJjSAGE .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sp1oHtkeCj {
  padding-top: 120px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/vm-motori-diesel-sebah-sal-distributor-parts-1600x600.jpg");
}
.cid-sp1oHtkeCj .row {
  justify-content: flex-end;
}
.cid-sp1oHtkeCj .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #ffffff;
}
.cid-sp1oHtkeCj .block {
  background-color: #003061;
}
.cid-sp1oHtkeCj img {
  width: 100%;
}
.cid-sp1oHtkeCj .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sp1oHtkeCj .content {
  max-width: 600px;
}
.cid-sp1oHtkeCj h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sp1oHtkeCj .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sp1oHtkeCj h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-sp1oHtkeCj .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sp1oHtkeCj h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sp1oHtkeCj H1 {
  color: #ffffff;
}
.cid-sp1oHtkeCj .mbr-text,
.cid-sp1oHtkeCj .mbr-section-btn {
  color: #ffffff;
}
.cid-sp1oHtkeCj H4 {
  color: #ffffff;
}
.cid-sp1oHtkeCj H3 {
  color: #ffffff;
}
.cid-sp5DftDUT0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sp5DftDUT0 p {
  color: #767676;
}
.cid-sp5DftDUT0 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sp5DftDUT0 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sp5DftDUT0 .row-element,
.cid-sp5DftDUT0 .image-element {
  padding: 0;
}
.cid-sp5DftDUT0 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sp5DftDUT0 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sp5DftDUT0 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sp5DftDUT0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #149dcc, #ff3366);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sp5DftDUT0 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sp5DftDUT0 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sp5DftDUT0 .text-content {
    padding: 2rem 1rem;
  }
  .cid-sp5DftDUT0 .underline .line {
    height: 2px;
  }
  .cid-sp5DftDUT0 .mbr-title,
  .cid-sp5DftDUT0 .underline,
  .cid-sp5DftDUT0 .mbr-text,
  .cid-sp5DftDUT0 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sp5DftDUT0 .mbr-text,
.cid-sp5DftDUT0 .mbr-section-btn {
  text-align: left;
  color: #282124;
}
.cid-sp5DftDUT0 .mbr-title,
.cid-sp5DftDUT0 .underline {
  text-align: left;
}
.cid-sp5Dg8vTe2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #003061;
}
.cid-sp5Dg8vTe2 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sp5Dg8vTe2 .row-element,
.cid-sp5Dg8vTe2 .image-element {
  padding: 0;
}
.cid-sp5Dg8vTe2 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sp5Dg8vTe2 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sp5Dg8vTe2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sp5Dg8vTe2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #149dcc, #ff3366);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sp5Dg8vTe2 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sp5Dg8vTe2 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sp5Dg8vTe2 .text-content {
    padding: 2rem 1rem;
  }
  .cid-sp5Dg8vTe2 .underline .line {
    height: 2px;
  }
  .cid-sp5Dg8vTe2 .mbr-title,
  .cid-sp5Dg8vTe2 .underline,
  .cid-sp5Dg8vTe2 .mbr-text,
  .cid-sp5Dg8vTe2 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sp6HEKhUU2 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-sp6HEKhUU2 section {
  position: relative;
}
.cid-sp6HEKhUU2 h4 {
  margin: 0;
}
.cid-sp6HEKhUU2 img {
  height: 100px;
  padding-right: 8px;
  width: auto;
}
.cid-sp6HEKhUU2 a {
  font-weight: 300;
}
.cid-sp6HEKhUU2 .img1 {
  color: #e20404;
}
.cid-sp6HEKhUU2 .img2 {
  color: #e20404;
}
.cid-sp6HEKhUU2 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #e20404;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sp6HEKhUU2 .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-sp6HEKhUU2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sp6HEKhUU2 .item,
.cid-sp6HEKhUU2 .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-sp6HEKhUU2 .item h4,
.cid-sp6HEKhUU2 .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sp6HEKhUU2 .card-img {
  width: auto;
}
.cid-sp6HEKhUU2 .link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .cid-sp6HEKhUU2 .item {
    justify-content: center;
  }
}
.cid-sp6HEKhUU2 .item-title {
  color: #ffffff;
}
.cid-sp1oHwwn0X {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #003061;
}
.cid-sp1oHwwn0X .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sp1oHx7fOE .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sp1oHx7fOE .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sp1oHx7fOE a {
  font-style: normal;
}
.cid-sp1oHx7fOE .show {
  overflow: visible;
}
.cid-sp1oHx7fOE .dropdown-menu {
  max-height: 400px;
}
.cid-sp1oHx7fOE .dropdown-item:active {
  background-color: transparent;
}
.cid-sp1oHx7fOE .nav-link {
  font-weight: 600!important;
}
.cid-sp1oHx7fOE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sp1oHx7fOE .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-sp1oHx7fOE .nav-item:focus,
.cid-sp1oHx7fOE .nav-link:focus {
  outline: none;
}
.cid-sp1oHx7fOE .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sp1oHx7fOE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sp1oHx7fOE .menu-logo {
  margin-right: auto;
}
.cid-sp1oHx7fOE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sp1oHx7fOE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sp1oHx7fOE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600!important;
  padding-right: 2rem;
}
.cid-sp1oHx7fOE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sp1oHx7fOE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sp1oHx7fOE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sp1oHx7fOE .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sp1oHx7fOE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sp1oHx7fOE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sp1oHx7fOE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sp1oHx7fOE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sp1oHx7fOE .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sp1oHx7fOE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #004694 !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-sp1oHx7fOE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sp1oHx7fOE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sp1oHx7fOE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sp1oHx7fOE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sp1oHx7fOE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sp1oHx7fOE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sp1oHx7fOE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sp1oHx7fOE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sp1oHx7fOE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sp1oHx7fOE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sp1oHx7fOE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sp1oHx7fOE button.navbar-toggler:focus {
  outline: none;
}
.cid-sp1oHx7fOE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282124;
}
.cid-sp1oHx7fOE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sp1oHx7fOE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sp1oHx7fOE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sp1oHx7fOE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sp1oHx7fOE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sp1oHx7fOE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sp1oHx7fOE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sp1oHx7fOE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sp1oHx7fOE .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sp1oHx7fOE .collapsed .btn {
  display: -webkit-flex;
}
.cid-sp1oHx7fOE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sp1oHx7fOE .collapsed .navbar-collapse.collapsing,
.cid-sp1oHx7fOE .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sp1oHx7fOE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sp1oHx7fOE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sp1oHx7fOE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sp1oHx7fOE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sp1oHx7fOE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sp1oHx7fOE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sp1oHx7fOE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sp1oHx7fOE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sp1oHx7fOE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sp1oHx7fOE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sp1oHx7fOE .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-sp1oHx7fOE .collapsed button.navbar-toggler {
  display: block;
}
.cid-sp1oHx7fOE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sp1oHx7fOE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sp1oHx7fOE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sp1oHx7fOE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sp1oHx7fOE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sp1oHx7fOE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sp1oHx7fOE.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sp1oHx7fOE img {
    height: 3.8rem !important;
  }
  .cid-sp1oHx7fOE .btn {
    display: -webkit-flex;
  }
  .cid-sp1oHx7fOE button.navbar-toggler {
    display: block;
  }
  .cid-sp1oHx7fOE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sp1oHx7fOE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sp1oHx7fOE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sp1oHx7fOE .navbar-collapse.collapsing,
  .cid-sp1oHx7fOE .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sp1oHx7fOE .navbar-collapse.collapsing .navbar-nav,
  .cid-sp1oHx7fOE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sp1oHx7fOE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sp1oHx7fOE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sp1oHx7fOE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sp1oHx7fOE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sp1oHx7fOE .navbar-collapse.collapsing .navbar-buttons,
  .cid-sp1oHx7fOE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sp1oHx7fOE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sp1oHx7fOE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sp1oHx7fOE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sp1oHx7fOE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sp1oHx7fOE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sp1oHx7fOE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-sp1oHx7fOE .nav-link {
    justify-content: start!important;
  }
  .cid-sp1oHx7fOE .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sp1oHx7fOE .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-sp1oHx7fOE .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sp1oHx7fOE .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sp1oHx7fOE .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sp1oHx7fOE .nav-link:hover,
.cid-sp1oHx7fOE .dropdown-item:hover {
  color: #333333 !important;
}
@media (min-width: 1500px) {
  .cid-sp1oHx7fOE .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-sp1oHx7fOE .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
