body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 4.2rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 6.72rem;
}
.display-2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.8rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-7 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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: #ff0f02 !important;
}
.bg-success {
  background-color: #ffda00 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #767676 !important;
}
.bg-danger {
  background-color: #020202 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff0f02 !important;
  border-color: #ff0f02 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ff584f !important;
  border-color: #ff584f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff584f !important;
  border-color: #ff584f !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: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #020202 !important;
  border-color: #020202 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #282828 !important;
  border-color: #282828 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #282828 !important;
  border-color: #282828 !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: #9b0800;
  color: #9b0800;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff0f02;
  border-color: #ff0f02;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0f02 !important;
  border-color: #ff0f02 !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: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #998300;
  color: #998300;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #ffda00;
  border-color: #ffda00;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #020202;
  border-color: #020202;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #020202 !important;
  border-color: #020202 !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: #ff0f02 !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #ffda00 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #767676 !important;
}
.text-danger {
  color: #020202 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff7068 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff99b3 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffe966 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a9a9a9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #353535 !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: #82786e;
}
.alert-warning {
  background-color: #767676;
}
.alert-danger {
  background-color: #020202;
}
.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: #ff0f02;
  border-color: #ff0f02;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff0f02;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffd1ce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff8cc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b4b4b4;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #ff0f02;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff0f02;
  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: #ff0f02;
  border-bottom-color: #ff0f02;
}
.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: #ff0f02 !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='%23ff0f02' %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-uI2zSlllLK {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-dropdown {
  background-color: #f9f295 !important;
  padding: 0;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f9f295 !important;
  background: #f9f295;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI2zSlllLK .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uI2zSlllLK .menu_box .navbar.opened,
  .cid-uI2zSlllLK .menu_box .navbar-collapse {
    background-color: #f9f295 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uI2zSlllLK .navbar-dropdown {
  position: relative !important;
}
.cid-uI2zSlllLK .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uI2zSlllLK .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uI2zSlllLK .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uI2zSlllLK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uI2zSlllLK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-body .mbr-text,
  .cid-uI2zSlllLK .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uI2zSlllLK .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uI2zSlllLK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uI2zSlllLK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uI2zSlllLK .lg_brand {
    margin: 0 1rem;
  }
  .cid-uI2zSlllLK .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uI2zSlllLK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 0 !important;
  }
}
.cid-uI2zSlllLK .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uI2zSlllLK .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uI2zSlllLK .nav-item .nav-link:hover::before,
.cid-uI2zSlllLK .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uI2zSlllLK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uI2zSlllLK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uI2zSlllLK .offcanvas_box {
    display: none;
  }
}
.cid-uI2zSlllLK .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uI2zSlllLK .container {
  display: flex;
  margin: auto;
}
.cid-uI2zSlllLK .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uI2zSlllLK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uI2zSlllLK .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uI2zSlllLK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .navbar-nav {
    margin: 0;
  }
}
.cid-uI2zSlllLK .dropdown-menu,
.cid-uI2zSlllLK .navbar.opened {
  background-color: false !important;
}
.cid-uI2zSlllLK .nav-item:focus,
.cid-uI2zSlllLK .nav-link:focus {
  outline: none;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI2zSlllLK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI2zSlllLK .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uI2zSlllLK .navbar.opened {
  transition: all 0.3s;
}
.cid-uI2zSlllLK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uI2zSlllLK .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uI2zSlllLK .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar.collapsed {
  justify-content: center;
}
.cid-uI2zSlllLK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI2zSlllLK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI2zSlllLK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uI2zSlllLK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uI2zSlllLK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uI2zSlllLK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI2zSlllLK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uI2zSlllLK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uI2zSlllLK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uI2zSlllLK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI2zSlllLK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uI2zSlllLK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uI2zSlllLK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI2zSlllLK .dropdown-item.active,
.cid-uI2zSlllLK .dropdown-item:active {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI2zSlllLK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI2zSlllLK ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI2zSlllLK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f295;
  background: #ffffff;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uI2zSlllLK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uI2zSlllLK .navbar {
    height: 70px;
  }
  .cid-uI2zSlllLK .navbar.opened {
    height: auto;
  }
  .cid-uI2zSlllLK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI2zSlllLK .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uI2zSlllLK .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uI2zSlllLK .navbar-caption:hover {
  color: #ff0f02;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uI2zSlllLK .text_widget {
  margin-bottom: 32px;
}
.cid-uI2zSlllLK .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uI2zSlllLK .text_widget a:hover,
.cid-uI2zSlllLK .text_widget a:focus {
  opacity: .8;
}
.cid-uI2zSlllLK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .navbar-caption {
  color: #202020;
}
.cid-uI2zSlllLK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .mbr-section-subtitle,
.cid-uI2zSlllLK .text_widget,
.cid-uI2zSlllLK .mbr-section-btn {
  text-align: center;
}
.cid-uI2zSlllLK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-rpRmAXo0RI {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/jamie-kripke-gasstations-22-1500x1000.jpg");
}
.cid-rpRmAXo0RI .row {
  justify-content: flex-end;
}
.cid-rpRmAXo0RI .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #efeeee;
}
.cid-rpRmAXo0RI .block {
  background-color: #f9f295;
}
.cid-rpRmAXo0RI img {
  width: 100%;
}
.cid-rpRmAXo0RI .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-rpRmAXo0RI .content {
  max-width: 600px;
}
.cid-rpRmAXo0RI 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-rpRmAXo0RI .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-rpRmAXo0RI h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-rpRmAXo0RI .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-rpRmAXo0RI h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-rpRmAXo0RI H2 {
  color: #020202;
}
.cid-rpRmAXo0RI .mbr-text,
.cid-rpRmAXo0RI .mbr-section-btn {
  color: #020202;
}
.cid-ug7uzpWsEr {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #f9f295;
}
.cid-ug7uzpWsEr .row {
  position: relative;
}
.cid-ug7uzpWsEr .container {
  max-width: 1500px;
}
.cid-ug7uzpWsEr h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-ug7uzpWsEr .content-wrapper {
  max-width: 800px;
}
.cid-ug7uzpWsEr H1 {
  color: #020202;
  text-align: center;
}
.cid-ug7uzpWsEr .mbr-text,
.cid-ug7uzpWsEr .mbr-section-btn {
  color: #020202;
  text-align: center;
}
.cid-ug7uzpWsEr H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-ug7uzpWsEr .container {
    padding: 0 4rem;
  }
}
.cid-ug7uzpWsEr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug7uzpWsEr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHZjLAmxBF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHZjLAmxBF .row {
  justify-content: flex-start;
}
.cid-uHZjLAmxBF .mbr-section-title {
  color: #000000;
}
.cid-uHZjLAmxBF .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uHZjLAmxBF .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uHZjLAmxBF .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uHZjLAmxBF .mbr-text {
  margin-top: 36px;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uHZjLAmxBF .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uHZjLAmxBF .mbr-text {
    margin-top: 20px;
  }
}
.cid-ug7wbQvRsa {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #efeeee;
}
.cid-ug7wbQvRsa .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #f9f295;
}
.cid-ug7wbQvRsa img {
  width: 100%;
}
.cid-ug7wbQvRsa p {
  margin-top: 6rem;
}
.cid-ug7wbQvRsa .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-ug7wbQvRsa .content-wrapper {
  padding-top: 6rem;
}
.cid-ug7wbQvRsa h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-ug7wbQvRsa .content-wrapper {
    padding-top: 0rem;
  }
  .cid-ug7wbQvRsa p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ug7wbQvRsa .back {
    width: 100%;
    height: 75%;
  }
  .cid-ug7wbQvRsa .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-ug7wbQvRsa p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-ug7wbQvRsa .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-ug7wbQvRsa h4 {
    right: 2rem;
  }
}
.cid-ug7wbQvRsa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug7wbQvRsa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug7wbQvRsa H1 {
  color: #020202;
}
.cid-ug7wbQvRsa .mbr-text,
.cid-ug7wbQvRsa .mbr-section-btn {
  color: #020202;
}
.cid-uHZk08jiw4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5fbfb;
}
.cid-uHZk08jiw4 .wrapper {
  background: #f9f295;
}
.cid-uHZk08jiw4 .mbr-text {
  color: #020202;
}
.cid-uHZk08jiw4 .mbr-section-title {
  color: #020202;
}
.cid-rpSfLZlmw9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9f295;
}
.cid-rpSfLZlmw9 .container {
  max-width: 1500px;
}
.cid-rpSfLZlmw9 img {
  width: 100%;
}
.cid-rpSfLZlmw9 h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfLZlmw9 .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-rpSfLZlmw9 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-rpSfLZlmw9 .img-col {
  position: relative;
}
.cid-rpSfLZlmw9 .img2 {
  position: absolute;
  left: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-rpSfLZlmw9 .img2 {
    left: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-rpSfLZlmw9 .img-col {
    margin-bottom: 3rem;
  }
  .cid-rpSfLZlmw9 .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-rpSfLZlmw9 .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-rpSfLZlmw9 .number {
    margin: auto;
  }
}
.cid-rpSfLZlmw9 H2 {
  color: #020202;
}
.cid-rpSfLZlmw9 .mbr-text {
  color: #020202;
}
.cid-uHZk6a9Scu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5fbfb;
}
.cid-uHZk6a9Scu .wrapper {
  background: #f9f295;
}
.cid-uHZk6a9Scu .mbr-text {
  color: #020202;
}
.cid-uHZk6a9Scu .mbr-section-title {
  color: #020202;
}
.cid-rpSfqF8N8V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f295;
}
.cid-rpSfqF8N8V img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfqF8N8V img:hover {
  transform: scale(1.1);
}
.cid-rpSfqF8N8V .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rpSfqF8N8V h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfqF8N8V .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfqF8N8V .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rpSfqF8N8V .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-rpSfqF8N8V .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-rpSfqF8N8V .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-rpSfqF8N8V .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rpSfqF8N8V .mbr-iconfont {
  margin: 0!important;
}
.cid-rpSfqF8N8V .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-rpSfqF8N8V .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfqF8N8V .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rpSfqF8N8V .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rpSfqF8N8V .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rpSfqF8N8V H2 {
  color: #333333;
}
.cid-rpSfqF8N8V .mbr-text {
  color: #020202;
}
.cid-rpSfqF8N8V H1 {
  color: #020202;
}
.cid-uHZmoF8y11 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uHZmoF8y11 .mbr-text {
    text-align: center;
  }
}
.cid-uHZmoF8y11 .mbr-text,
.cid-uHZmoF8y11 .mbr-section-btn {
  color: #000000;
}
.cid-uHZmoF8y11 H1 {
  color: #020202;
}
.cid-rpSfRqtWyh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #020202;
}
.cid-rpSfRqtWyh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uHZoXxRN8e {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/phillips-66-1-1200x675.jpg");
}
.cid-uHZoXxRN8e .row {
  justify-content: flex-end;
}
.cid-uHZoXxRN8e .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #efeeee;
}
.cid-uHZoXxRN8e .block {
  background-color: #f9f295;
}
.cid-uHZoXxRN8e img {
  width: 100%;
}
.cid-uHZoXxRN8e .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-uHZoXxRN8e .content {
  max-width: 600px;
}
.cid-uHZoXxRN8e 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-uHZoXxRN8e .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-uHZoXxRN8e h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-uHZoXxRN8e .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-uHZoXxRN8e h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-uHZoXxRN8e H2 {
  color: #020202;
}
.cid-uHZoXxRN8e .mbr-text,
.cid-uHZoXxRN8e .mbr-section-btn {
  color: #020202;
}
.cid-uHZoXyS3Yy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5fbfb;
}
.cid-uHZoXyS3Yy .wrapper {
  background: #ffffff;
}
.cid-uHZoXyS3Yy .mbr-text {
  color: #020202;
}
.cid-uHZoXyS3Yy .mbr-section-title {
  color: #020202;
}
.cid-uHZoXzLeiY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #020202;
}
.cid-uHZoXzLeiY .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uI2zSlllLK {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-dropdown {
  background-color: #f9f295 !important;
  padding: 0;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f9f295 !important;
  background: #f9f295;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI2zSlllLK .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uI2zSlllLK .menu_box .navbar.opened,
  .cid-uI2zSlllLK .menu_box .navbar-collapse {
    background-color: #f9f295 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uI2zSlllLK .navbar-dropdown {
  position: relative !important;
}
.cid-uI2zSlllLK .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uI2zSlllLK .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uI2zSlllLK .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uI2zSlllLK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uI2zSlllLK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-body .mbr-text,
  .cid-uI2zSlllLK .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uI2zSlllLK .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uI2zSlllLK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uI2zSlllLK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uI2zSlllLK .lg_brand {
    margin: 0 1rem;
  }
  .cid-uI2zSlllLK .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uI2zSlllLK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 0 !important;
  }
}
.cid-uI2zSlllLK .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uI2zSlllLK .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uI2zSlllLK .nav-item .nav-link:hover::before,
.cid-uI2zSlllLK .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uI2zSlllLK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uI2zSlllLK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uI2zSlllLK .offcanvas_box {
    display: none;
  }
}
.cid-uI2zSlllLK .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uI2zSlllLK .container {
  display: flex;
  margin: auto;
}
.cid-uI2zSlllLK .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uI2zSlllLK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uI2zSlllLK .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uI2zSlllLK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .navbar-nav {
    margin: 0;
  }
}
.cid-uI2zSlllLK .dropdown-menu,
.cid-uI2zSlllLK .navbar.opened {
  background-color: false !important;
}
.cid-uI2zSlllLK .nav-item:focus,
.cid-uI2zSlllLK .nav-link:focus {
  outline: none;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI2zSlllLK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI2zSlllLK .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uI2zSlllLK .navbar.opened {
  transition: all 0.3s;
}
.cid-uI2zSlllLK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uI2zSlllLK .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uI2zSlllLK .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar.collapsed {
  justify-content: center;
}
.cid-uI2zSlllLK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI2zSlllLK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI2zSlllLK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uI2zSlllLK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uI2zSlllLK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uI2zSlllLK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI2zSlllLK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uI2zSlllLK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uI2zSlllLK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uI2zSlllLK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI2zSlllLK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uI2zSlllLK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uI2zSlllLK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI2zSlllLK .dropdown-item.active,
.cid-uI2zSlllLK .dropdown-item:active {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI2zSlllLK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI2zSlllLK ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI2zSlllLK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f295;
  background: #ffffff;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uI2zSlllLK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uI2zSlllLK .navbar {
    height: 70px;
  }
  .cid-uI2zSlllLK .navbar.opened {
    height: auto;
  }
  .cid-uI2zSlllLK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI2zSlllLK .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uI2zSlllLK .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uI2zSlllLK .navbar-caption:hover {
  color: #ff0f02;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uI2zSlllLK .text_widget {
  margin-bottom: 32px;
}
.cid-uI2zSlllLK .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uI2zSlllLK .text_widget a:hover,
.cid-uI2zSlllLK .text_widget a:focus {
  opacity: .8;
}
.cid-uI2zSlllLK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .navbar-caption {
  color: #202020;
}
.cid-uI2zSlllLK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .mbr-section-subtitle,
.cid-uI2zSlllLK .text_widget,
.cid-uI2zSlllLK .mbr-section-btn {
  text-align: center;
}
.cid-uI2zSlllLK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uHZpf7r8qg {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/factoring-feat.jpg.optimal-1368x896.jpg");
}
.cid-uHZpf7r8qg .row {
  justify-content: flex-end;
}
.cid-uHZpf7r8qg .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #efeeee;
}
.cid-uHZpf7r8qg .block {
  background-color: #f9f295;
}
.cid-uHZpf7r8qg img {
  width: 100%;
}
.cid-uHZpf7r8qg .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-uHZpf7r8qg .content {
  max-width: 600px;
}
.cid-uHZpf7r8qg 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-uHZpf7r8qg .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-uHZpf7r8qg h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-uHZpf7r8qg .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-uHZpf7r8qg h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-uHZpf7r8qg H2 {
  color: #020202;
}
.cid-uHZpf7r8qg .mbr-text,
.cid-uHZpf7r8qg .mbr-section-btn {
  color: #020202;
}
.cid-uHZpf8q5IE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5fbfb;
}
.cid-uHZpf8q5IE .wrapper {
  background: #ffffff;
}
.cid-uHZpf8q5IE .mbr-text {
  color: #020202;
}
.cid-uHZpf8q5IE .mbr-section-title {
  color: #020202;
}
.cid-uHZpf97chX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #020202;
}
.cid-uHZpf97chX .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uI2zSlllLK {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-dropdown {
  background-color: #f9f295 !important;
  padding: 0;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f9f295 !important;
  background: #f9f295;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI2zSlllLK .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uI2zSlllLK .menu_box .navbar.opened,
  .cid-uI2zSlllLK .menu_box .navbar-collapse {
    background-color: #f9f295 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uI2zSlllLK .navbar-dropdown {
  position: relative !important;
}
.cid-uI2zSlllLK .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uI2zSlllLK .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uI2zSlllLK .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uI2zSlllLK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uI2zSlllLK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-body .mbr-text,
  .cid-uI2zSlllLK .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uI2zSlllLK .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uI2zSlllLK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uI2zSlllLK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uI2zSlllLK .lg_brand {
    margin: 0 1rem;
  }
  .cid-uI2zSlllLK .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uI2zSlllLK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 0 !important;
  }
}
.cid-uI2zSlllLK .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uI2zSlllLK .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uI2zSlllLK .nav-item .nav-link:hover::before,
.cid-uI2zSlllLK .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uI2zSlllLK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uI2zSlllLK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uI2zSlllLK .offcanvas_box {
    display: none;
  }
}
.cid-uI2zSlllLK .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uI2zSlllLK .container {
  display: flex;
  margin: auto;
}
.cid-uI2zSlllLK .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uI2zSlllLK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uI2zSlllLK .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uI2zSlllLK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .navbar-nav {
    margin: 0;
  }
}
.cid-uI2zSlllLK .dropdown-menu,
.cid-uI2zSlllLK .navbar.opened {
  background-color: false !important;
}
.cid-uI2zSlllLK .nav-item:focus,
.cid-uI2zSlllLK .nav-link:focus {
  outline: none;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI2zSlllLK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI2zSlllLK .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uI2zSlllLK .navbar.opened {
  transition: all 0.3s;
}
.cid-uI2zSlllLK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uI2zSlllLK .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uI2zSlllLK .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar.collapsed {
  justify-content: center;
}
.cid-uI2zSlllLK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI2zSlllLK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI2zSlllLK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uI2zSlllLK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uI2zSlllLK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uI2zSlllLK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI2zSlllLK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uI2zSlllLK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uI2zSlllLK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uI2zSlllLK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI2zSlllLK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uI2zSlllLK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uI2zSlllLK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI2zSlllLK .dropdown-item.active,
.cid-uI2zSlllLK .dropdown-item:active {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI2zSlllLK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI2zSlllLK ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI2zSlllLK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f295;
  background: #ffffff;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uI2zSlllLK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uI2zSlllLK .navbar {
    height: 70px;
  }
  .cid-uI2zSlllLK .navbar.opened {
    height: auto;
  }
  .cid-uI2zSlllLK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI2zSlllLK .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uI2zSlllLK .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uI2zSlllLK .navbar-caption:hover {
  color: #ff0f02;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uI2zSlllLK .text_widget {
  margin-bottom: 32px;
}
.cid-uI2zSlllLK .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uI2zSlllLK .text_widget a:hover,
.cid-uI2zSlllLK .text_widget a:focus {
  opacity: .8;
}
.cid-uI2zSlllLK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .navbar-caption {
  color: #202020;
}
.cid-uI2zSlllLK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .mbr-section-subtitle,
.cid-uI2zSlllLK .text_widget,
.cid-uI2zSlllLK .mbr-section-btn {
  text-align: center;
}
.cid-uI2zSlllLK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uHZmQpSjnK {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/fleet-fuel-management-hero-english-uk2x-2000x1125.jpg");
}
.cid-uHZmQpSjnK .row {
  justify-content: flex-end;
}
.cid-uHZmQpSjnK .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #efeeee;
}
.cid-uHZmQpSjnK .block {
  background-color: #f9f295;
}
.cid-uHZmQpSjnK img {
  width: 100%;
}
.cid-uHZmQpSjnK .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-uHZmQpSjnK .content {
  max-width: 600px;
}
.cid-uHZmQpSjnK 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-uHZmQpSjnK .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-uHZmQpSjnK h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-uHZmQpSjnK .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-uHZmQpSjnK h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-uHZmQpSjnK H2 {
  color: #020202;
}
.cid-uHZmQpSjnK .mbr-text,
.cid-uHZmQpSjnK .mbr-section-btn {
  color: #020202;
}
.cid-uHZmQt0Jcq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5fbfb;
}
.cid-uHZmQt0Jcq .wrapper {
  background: #ffffff;
}
.cid-uHZmQt0Jcq .mbr-text {
  color: #020202;
}
.cid-uHZmQt0Jcq .mbr-section-title {
  color: #020202;
}
.cid-uHZmQvMECM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #020202;
}
.cid-uHZmQvMECM .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uI2zSlllLK {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-dropdown {
  background-color: #f9f295 !important;
  padding: 0;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f9f295 !important;
  background: #f9f295;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI2zSlllLK .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uI2zSlllLK .menu_box .navbar.opened,
  .cid-uI2zSlllLK .menu_box .navbar-collapse {
    background-color: #f9f295 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uI2zSlllLK .navbar-dropdown {
  position: relative !important;
}
.cid-uI2zSlllLK .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uI2zSlllLK .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uI2zSlllLK .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uI2zSlllLK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uI2zSlllLK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-body .mbr-text,
  .cid-uI2zSlllLK .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uI2zSlllLK .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uI2zSlllLK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uI2zSlllLK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uI2zSlllLK .lg_brand {
    margin: 0 1rem;
  }
  .cid-uI2zSlllLK .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uI2zSlllLK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 0 !important;
  }
}
.cid-uI2zSlllLK .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uI2zSlllLK .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uI2zSlllLK .nav-item .nav-link:hover::before,
.cid-uI2zSlllLK .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uI2zSlllLK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uI2zSlllLK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uI2zSlllLK .offcanvas_box {
    display: none;
  }
}
.cid-uI2zSlllLK .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uI2zSlllLK .container {
  display: flex;
  margin: auto;
}
.cid-uI2zSlllLK .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uI2zSlllLK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uI2zSlllLK .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uI2zSlllLK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .navbar-nav {
    margin: 0;
  }
}
.cid-uI2zSlllLK .dropdown-menu,
.cid-uI2zSlllLK .navbar.opened {
  background-color: false !important;
}
.cid-uI2zSlllLK .nav-item:focus,
.cid-uI2zSlllLK .nav-link:focus {
  outline: none;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI2zSlllLK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI2zSlllLK .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uI2zSlllLK .navbar.opened {
  transition: all 0.3s;
}
.cid-uI2zSlllLK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uI2zSlllLK .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uI2zSlllLK .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar.collapsed {
  justify-content: center;
}
.cid-uI2zSlllLK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI2zSlllLK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI2zSlllLK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uI2zSlllLK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uI2zSlllLK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uI2zSlllLK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI2zSlllLK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uI2zSlllLK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uI2zSlllLK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uI2zSlllLK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI2zSlllLK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uI2zSlllLK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uI2zSlllLK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI2zSlllLK .dropdown-item.active,
.cid-uI2zSlllLK .dropdown-item:active {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI2zSlllLK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI2zSlllLK ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI2zSlllLK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f295;
  background: #ffffff;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uI2zSlllLK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uI2zSlllLK .navbar {
    height: 70px;
  }
  .cid-uI2zSlllLK .navbar.opened {
    height: auto;
  }
  .cid-uI2zSlllLK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI2zSlllLK .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uI2zSlllLK .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uI2zSlllLK .navbar-caption:hover {
  color: #ff0f02;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uI2zSlllLK .text_widget {
  margin-bottom: 32px;
}
.cid-uI2zSlllLK .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uI2zSlllLK .text_widget a:hover,
.cid-uI2zSlllLK .text_widget a:focus {
  opacity: .8;
}
.cid-uI2zSlllLK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .navbar-caption {
  color: #202020;
}
.cid-uI2zSlllLK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .mbr-section-subtitle,
.cid-uI2zSlllLK .text_widget,
.cid-uI2zSlllLK .mbr-section-btn {
  text-align: center;
}
.cid-uI2zSlllLK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uHZnToo7jo {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/van-at-pump-2400x1256-2000x1047.jpg");
}
.cid-uHZnToo7jo .row {
  justify-content: flex-end;
}
.cid-uHZnToo7jo .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #efeeee;
}
.cid-uHZnToo7jo .block {
  background-color: #f9f295;
}
.cid-uHZnToo7jo img {
  width: 100%;
}
.cid-uHZnToo7jo .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-uHZnToo7jo .content {
  max-width: 600px;
}
.cid-uHZnToo7jo 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-uHZnToo7jo .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-uHZnToo7jo h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-uHZnToo7jo .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-uHZnToo7jo h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-uHZnToo7jo H2 {
  color: #020202;
}
.cid-uHZnToo7jo .mbr-text,
.cid-uHZnToo7jo .mbr-section-btn {
  color: #020202;
}
.cid-uHZnTpkoNg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5fbfb;
}
.cid-uHZnTpkoNg .wrapper {
  background: #ffffff;
}
.cid-uHZnTpkoNg .mbr-text {
  color: #020202;
}
.cid-uHZnTpkoNg .mbr-section-title {
  color: #020202;
}
.cid-uHZnTq3iKK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #020202;
}
.cid-uHZnTq3iKK .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uI2zSlllLK {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-dropdown {
  background-color: #f9f295 !important;
  padding: 0;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f9f295 !important;
  background: #f9f295;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI2zSlllLK .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uI2zSlllLK .menu_box .navbar.opened,
  .cid-uI2zSlllLK .menu_box .navbar-collapse {
    background-color: #f9f295 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uI2zSlllLK .navbar-dropdown {
  position: relative !important;
}
.cid-uI2zSlllLK .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uI2zSlllLK .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uI2zSlllLK .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uI2zSlllLK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uI2zSlllLK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-body .mbr-text,
  .cid-uI2zSlllLK .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uI2zSlllLK .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uI2zSlllLK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uI2zSlllLK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uI2zSlllLK .lg_brand {
    margin: 0 1rem;
  }
  .cid-uI2zSlllLK .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uI2zSlllLK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 0 !important;
  }
}
.cid-uI2zSlllLK .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uI2zSlllLK .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uI2zSlllLK .nav-item .nav-link:hover::before,
.cid-uI2zSlllLK .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uI2zSlllLK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uI2zSlllLK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uI2zSlllLK .offcanvas_box {
    display: none;
  }
}
.cid-uI2zSlllLK .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uI2zSlllLK .container {
  display: flex;
  margin: auto;
}
.cid-uI2zSlllLK .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uI2zSlllLK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uI2zSlllLK .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uI2zSlllLK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .navbar-nav {
    margin: 0;
  }
}
.cid-uI2zSlllLK .dropdown-menu,
.cid-uI2zSlllLK .navbar.opened {
  background-color: false !important;
}
.cid-uI2zSlllLK .nav-item:focus,
.cid-uI2zSlllLK .nav-link:focus {
  outline: none;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI2zSlllLK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI2zSlllLK .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uI2zSlllLK .navbar.opened {
  transition: all 0.3s;
}
.cid-uI2zSlllLK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uI2zSlllLK .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uI2zSlllLK .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar.collapsed {
  justify-content: center;
}
.cid-uI2zSlllLK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI2zSlllLK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI2zSlllLK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uI2zSlllLK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uI2zSlllLK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uI2zSlllLK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI2zSlllLK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uI2zSlllLK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uI2zSlllLK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uI2zSlllLK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI2zSlllLK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uI2zSlllLK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uI2zSlllLK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI2zSlllLK .dropdown-item.active,
.cid-uI2zSlllLK .dropdown-item:active {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI2zSlllLK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI2zSlllLK ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI2zSlllLK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f295;
  background: #ffffff;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uI2zSlllLK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uI2zSlllLK .navbar {
    height: 70px;
  }
  .cid-uI2zSlllLK .navbar.opened {
    height: auto;
  }
  .cid-uI2zSlllLK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI2zSlllLK .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uI2zSlllLK .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uI2zSlllLK .navbar-caption:hover {
  color: #ff0f02;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uI2zSlllLK .text_widget {
  margin-bottom: 32px;
}
.cid-uI2zSlllLK .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uI2zSlllLK .text_widget a:hover,
.cid-uI2zSlllLK .text_widget a:focus {
  opacity: .8;
}
.cid-uI2zSlllLK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .navbar-caption {
  color: #202020;
}
.cid-uI2zSlllLK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .mbr-section-subtitle,
.cid-uI2zSlllLK .text_widget,
.cid-uI2zSlllLK .mbr-section-btn {
  text-align: center;
}
.cid-uI2zSlllLK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uHZothSIj6 {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/screenshot-9-1226x817.png");
}
.cid-uHZothSIj6 .row {
  justify-content: flex-end;
}
.cid-uHZothSIj6 .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #efeeee;
}
.cid-uHZothSIj6 .block {
  background-color: #f9f295;
}
.cid-uHZothSIj6 img {
  width: 100%;
}
.cid-uHZothSIj6 .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-uHZothSIj6 .content {
  max-width: 600px;
}
.cid-uHZothSIj6 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-uHZothSIj6 .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-uHZothSIj6 h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-uHZothSIj6 .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-uHZothSIj6 h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-uHZothSIj6 H2 {
  color: #020202;
}
.cid-uHZothSIj6 .mbr-text,
.cid-uHZothSIj6 .mbr-section-btn {
  color: #020202;
}
.cid-uHZotiN8FX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5fbfb;
}
.cid-uHZotiN8FX .wrapper {
  background: #ffffff;
}
.cid-uHZotiN8FX .mbr-text {
  color: #020202;
}
.cid-uHZotiN8FX .mbr-section-title {
  color: #020202;
}
.cid-uHZotjpiDK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #020202;
}
.cid-uHZotjpiDK .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uI2zSlllLK {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-dropdown {
  background-color: #f9f295 !important;
  padding: 0;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f9f295 !important;
  background: #f9f295;
}
.cid-uI2zSlllLK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI2zSlllLK .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uI2zSlllLK .menu_box .navbar.opened,
  .cid-uI2zSlllLK .menu_box .navbar-collapse {
    background-color: #f9f295 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uI2zSlllLK .navbar-dropdown {
  position: relative !important;
}
.cid-uI2zSlllLK .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uI2zSlllLK .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uI2zSlllLK .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uI2zSlllLK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uI2zSlllLK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uI2zSlllLK .offcanvas-body .mbr-text,
  .cid-uI2zSlllLK .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uI2zSlllLK .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #202020;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uI2zSlllLK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uI2zSlllLK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uI2zSlllLK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uI2zSlllLK .lg_brand {
    margin: 0 1rem;
  }
  .cid-uI2zSlllLK .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uI2zSlllLK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 4px 24px;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .nav-item {
    margin: 0 !important;
  }
}
.cid-uI2zSlllLK .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uI2zSlllLK .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202020;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uI2zSlllLK .nav-item .nav-link:hover::before,
.cid-uI2zSlllLK .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uI2zSlllLK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uI2zSlllLK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uI2zSlllLK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uI2zSlllLK .offcanvas_box {
    display: none;
  }
}
.cid-uI2zSlllLK .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uI2zSlllLK .container {
  display: flex;
  margin: auto;
}
.cid-uI2zSlllLK .iconfont-wrapper {
  color: #202020;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uI2zSlllLK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uI2zSlllLK .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uI2zSlllLK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .navbar-nav {
    margin: 0;
  }
}
.cid-uI2zSlllLK .dropdown-menu,
.cid-uI2zSlllLK .navbar.opened {
  background-color: false !important;
}
.cid-uI2zSlllLK .nav-item:focus,
.cid-uI2zSlllLK .nav-link:focus {
  outline: none;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI2zSlllLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI2zSlllLK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI2zSlllLK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI2zSlllLK .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uI2zSlllLK .navbar.opened {
  transition: all 0.3s;
}
.cid-uI2zSlllLK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uI2zSlllLK .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uI2zSlllLK .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar.collapsed {
  justify-content: center;
}
.cid-uI2zSlllLK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI2zSlllLK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI2zSlllLK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI2zSlllLK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uI2zSlllLK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uI2zSlllLK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uI2zSlllLK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uI2zSlllLK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI2zSlllLK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uI2zSlllLK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uI2zSlllLK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uI2zSlllLK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uI2zSlllLK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uI2zSlllLK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI2zSlllLK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uI2zSlllLK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uI2zSlllLK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uI2zSlllLK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uI2zSlllLK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI2zSlllLK .dropdown-item.active,
.cid-uI2zSlllLK .dropdown-item:active {
  background-color: transparent;
}
.cid-uI2zSlllLK .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI2zSlllLK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI2zSlllLK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI2zSlllLK ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uI2zSlllLK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI2zSlllLK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f295;
  background: #ffffff;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #202020;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI2zSlllLK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI2zSlllLK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI2zSlllLK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uI2zSlllLK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uI2zSlllLK .navbar {
    height: 70px;
  }
  .cid-uI2zSlllLK .navbar.opened {
    height: auto;
  }
  .cid-uI2zSlllLK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI2zSlllLK .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uI2zSlllLK .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uI2zSlllLK .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uI2zSlllLK .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 180px;
  padding: 16px 24px;
}
.cid-uI2zSlllLK .navbar-caption:hover {
  color: #ff0f02;
}
@media (min-width: 992px) {
  .cid-uI2zSlllLK .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uI2zSlllLK .text_widget {
  margin-bottom: 32px;
}
.cid-uI2zSlllLK .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uI2zSlllLK .text_widget a:hover,
.cid-uI2zSlllLK .text_widget a:focus {
  opacity: .8;
}
.cid-uI2zSlllLK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .navbar-caption {
  color: #202020;
}
.cid-uI2zSlllLK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uI2zSlllLK .mbr-section-subtitle,
.cid-uI2zSlllLK .text_widget,
.cid-uI2zSlllLK .mbr-section-btn {
  text-align: center;
}
.cid-uI2zSlllLK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
