body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Text Me One', sans-serif;
  font-size: 1rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'Spartan', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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))));
  }
}
/* 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: #384657 !important;
}
.bg-success {
  background-color: #ff5c02 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #384657 !important;
}
.bg-danger {
  background-color: #ffb01e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #384657 !important;
  border-color: #384657 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #566b86 !important;
  border-color: #566b86 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #566b86 !important;
  border-color: #566b86 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e1083e !important;
  border-color: #e1083e !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #f83d6c !important;
  border-color: #f83d6c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #f83d6c !important;
  border-color: #f83d6c !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: #ff5c02 !important;
  border-color: #ff5c02 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ff8d4f !important;
  border-color: #ff8d4f !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ff8d4f !important;
  border-color: #ff8d4f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #384657 !important;
  border-color: #384657 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #566b86 !important;
  border-color: #566b86 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #566b86 !important;
  border-color: #566b86 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb01e !important;
  border-color: #ffb01e !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ffcb6b !important;
  border-color: #ffcb6b !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ffcb6b !important;
  border-color: #ffcb6b !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: #101419;
  color: #101419;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #384657;
  border-color: #384657;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #384657 !important;
  border-color: #384657 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #7f0423;
  color: #7f0423;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #e1083e;
  border-color: #e1083e;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e1083e !important;
  border-color: #e1083e !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: #9b3700;
  color: #9b3700;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #ff5c02;
  border-color: #ff5c02;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff5c02 !important;
  border-color: #ff5c02 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #101419;
  color: #101419;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #384657;
  border-color: #384657;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #384657 !important;
  border-color: #384657 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #b77700;
  color: #b77700;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ffb01e;
  border-color: #ffb01e;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb01e !important;
  border-color: #ffb01e !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: #384657 !important;
}
.text-secondary {
  color: #e1083e !important;
}
.text-success {
  color: #ff5c02 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #384657 !important;
}
.text-danger {
  color: #ffb01e !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #607895 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #f9567f !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ff9e68 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #607895 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ffd484 !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: #384657;
}
.alert-danger {
  background-color: #ffb01e;
}
.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: #384657;
  border-color: #384657;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #384657;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6d85a1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffdfce;
}
.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: #6d85a1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff8ea;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #384657;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #384657;
  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: #384657;
  border-bottom-color: #384657;
}
.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: #384657 !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: #e1083e !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='%23384657' %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-ss7Rc8Jg4b .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffb01e;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ss7Rc8Jg4b .navbar-buttons {
  flex-wrap: wrap;
}
.cid-ss7Rc8Jg4b .nav-item,
.cid-ss7Rc8Jg4b .nav-link,
.cid-ss7Rc8Jg4b .navbar-caption {
  font-weight: normal;
}
.cid-ss7Rc8Jg4b .nav-item:focus,
.cid-ss7Rc8Jg4b .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ss7Rc8Jg4b .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-ss7Rc8Jg4b .nav-item .nav-link {
    position: relative;
  }
  .cid-ss7Rc8Jg4b .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffb01e;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-ss7Rc8Jg4b .nav-item:hover .nav-link:before,
  .cid-ss7Rc8Jg4b .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ss7Rc8Jg4b .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #efeeee;
}
.cid-ss7Rc8Jg4b .navbar.opened {
  transition: all 0.3s;
  background: #efeeee !important;
}
.cid-ss7Rc8Jg4b .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-ss7Rc8Jg4b .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ss7Rc8Jg4b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ss7Rc8Jg4b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-ss7Rc8Jg4b .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-ss7Rc8Jg4b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ss7Rc8Jg4b .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ss7Rc8Jg4b .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ss7Rc8Jg4b .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ss7Rc8Jg4b .navbar.navbar-short {
  background: #efeeee !important;
  min-height: 60px;
}
.cid-ss7Rc8Jg4b .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-ss7Rc8Jg4b .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ss7Rc8Jg4b .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ss7Rc8Jg4b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ss7Rc8Jg4b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ss7Rc8Jg4b .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-ss7Rc8Jg4b .dropdown-item.active,
.cid-ss7Rc8Jg4b .dropdown-item:active {
  background-color: transparent;
}
.cid-ss7Rc8Jg4b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ss7Rc8Jg4b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ss7Rc8Jg4b .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ss7Rc8Jg4b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efeeee;
  z-index: 2;
}
.cid-ss7Rc8Jg4b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ss7Rc8Jg4b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ss7Rc8Jg4b ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ss7Rc8Jg4b .navbar-buttons {
  text-align: center;
}
.cid-ss7Rc8Jg4b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ss7Rc8Jg4b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ss7Rc8Jg4b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ss7Rc8Jg4b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ss7Rc8Jg4b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ss7Rc8Jg4b .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-ss7Rc8Jg4b a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ss7Rc8Jg4b .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e1083e;
  display: inline-flex;
}
.cid-ss7Rc8Jg4b .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-ss7Rc8Jg4b .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-ss7Rc8Jg4b .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ss7Rc8Jg4b a.nav-link .mbr-iconfont-btn,
.cid-ss7Rc8Jg4b a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-ss7Rc8Jg4b a.nav-link:hover .mbr-iconfont-btn,
.cid-ss7Rc8Jg4b a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-ss7Rc8Jg4b a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ss7Rc8Jg4b .navbar {
    height: 77px;
  }
  .cid-ss7Rc8Jg4b .navbar.opened {
    height: auto;
  }
  .cid-ss7Rc8Jg4b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sszr8kt9jV {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #e1083e;
}
.cid-sszr8kt9jV .row {
  position: relative;
}
.cid-sszr8kt9jV .container {
  max-width: 1500px;
}
.cid-sszr8kt9jV h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-sszr8kt9jV .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sszr8kt9jV .container {
    padding: 0 4rem;
  }
}
.cid-sszwo8gIfh {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/who-we-are-1920x1080.jpeg");
}
@media (max-width: 767px) {
  .cid-sszwo8gIfh .card-box {
    padding: 1rem;
  }
  .cid-sszwo8gIfh .mbr-section-btn,
  .cid-sszwo8gIfh .price {
    text-align: center;
  }
  .cid-sszwo8gIfh .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cid-sszwo8gIfh .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sszwo8gIfh .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sszwo8gIfh .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-sszwo8gIfh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sszwo8gIfh .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sszwo8gIfh .mbr-text {
  color: #ffffff;
}
.cid-sszRbBaRT1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #384657;
}
.cid-sszRbBaRT1 .row {
  position: relative;
}
.cid-sszRbBaRT1 .container {
  max-width: 1500px;
}
.cid-sszRbBaRT1 h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-sszRbBaRT1 .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sszRbBaRT1 .container {
    padding: 0 4rem;
  }
}
.cid-ttimnJtqi4 {
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/rm-talleres-del-amo-1024x562.jpeg");
}
.cid-ttimnJtqi4 .team-card .image-wrap {
  overflow: hidden;
}
.cid-ttimnJtqi4 .team-card .image-wrap img {
  transition: all 0.5s;
}
.cid-ttimnJtqi4 .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-ttimnJtqi4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffb01e;
  display: inline-block;
}
.cid-ttimnJtqi4 .team-card {
  margin-bottom: 2rem;
}
.cid-ttimnJtqi4 .card-wrap {
  background: #cccccc;
}
.cid-ttimnJtqi4 .card-wrap .image-wrap img {
  width: 100%;
}
.cid-ttimnJtqi4 .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-ttimnJtqi4 .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-ttimnJtqi4 .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-ttimnJtqi4 .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ttimnJtqi4 .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-ttimnJtqi4 .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-ttimnJtqi4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttimnJtqi4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttimnJtqi4 .main-subtitle,
.cid-ttimnJtqi4 .underline {
  text-align: left;
}
.cid-sszJlkatOt {
  padding-top: 50px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/preparation-area-mwp-2000x1331.jpg");
}
.cid-sszJlkatOt .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #384657;
}
.cid-sszJlkatOt .text-block {
  position: relative;
  z-index: 0;
}
.cid-sszJlkatOt .box {
  width: 25%;
  height: 40%;
  background: #ffb01e;
  position: absolute;
  top: 4%;
}
.cid-sszJlkatOt .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sszJlkatOt .box {
  right: 20%;
}
.cid-sszJlkatOt .text-box {
  right: 0;
}
.cid-sszJlkatOt .mbr-section-title,
.cid-sszJlkatOt .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-sszJlkatOt .text-box {
    display: none;
  }
  .cid-sszJlkatOt .mbr-section-title,
  .cid-sszJlkatOt .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sszJlkatOt .box {
    display: none;
  }
  .cid-sszJlkatOt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sszJlkatOt .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sszJlkatOt .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sszJlkatOt .mbr-section-text {
  color: #000000;
  text-align: left;
}
.cid-sszJlkatOt .mbr-section-title {
  color: #000000;
}
.cid-ss8uRpiWI1 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-ss8uRpiWI1 .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-ss8uRpiWI1 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #efeeee;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-ss8uRpiWI1 .image-block:hover:before {
  opacity: 0.7;
}
.cid-ss8uRpiWI1 .image-block:hover .wrap {
  opacity: 1;
}
.cid-ss8uRpiWI1 .image-block:hover img {
  transform: scale(1.05);
}
.cid-ss8uRpiWI1 h4 {
  letter-spacing: 2px;
}
.cid-ss8uRpiWI1 figcaption {
  position: relative;
}
.cid-ss8uRpiWI1 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-ss8uRpiWI1 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ss8uRpiWI1 .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-ss8uRpiWI1 .wrap {
    opacity: 1!important;
  }
  .cid-ss8uRpiWI1 .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-ss8uRpiWI1 H4 {
  color: #384657;
}
.cid-sszQeVMXOM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #384657;
}
.cid-sszQeVMXOM .row {
  position: relative;
}
.cid-sszQeVMXOM .container {
  max-width: 1500px;
}
.cid-sszQeVMXOM h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-sszQeVMXOM .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sszQeVMXOM .container {
    padding: 0 4rem;
  }
}
.cid-tttc3Xsiam {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/62481085-2350752611838822-2473828487354384384-n-copia-1848x1224.jpeg");
}
.cid-tttc3Xsiam .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tttc3Xsiam .card-title {
  margin-bottom: 26px;
  color: #e1083e;
}
.cid-tttc3Xsiam .mbr-text {
  margin-bottom: 30px;
}
.cid-tttc3Xsiam .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(125deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-tttc3Xsiam .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tttc3Xsiam .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tttc3Xsiam .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tttc3Xsiam .btn_link:hover {
  cursor: pointer;
}
.cid-tttc3Xsiam .btn_link:hover a {
  color: #384657 !important;
}
.cid-tttc3Xsiam .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tttc3Xsiam .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tttc3Xsiam .text-wrapper {
    text-align: center;
  }
  .cid-tttc3Xsiam .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tttc3Xsiam .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tttc3Xsiam .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tttc3Xsiam .mbr-text,
.cid-tttc3Xsiam .btn_link {
  color: #ffb01e;
}
.cid-tttc3Xsiam .card-title,
.cid-tttc3Xsiam .icon_block {
  color: #ffb01e;
}
.cid-ss8wMR4AOK {
  padding-top: 200px;
  padding-bottom: 50px;
  background-image: url("../../../assets/images/03-1506x877.jpeg");
}
.cid-ss8wMR4AOK .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #ffb01e;
}
.cid-ss8wMR4AOK .text-block {
  position: relative;
  z-index: 0;
}
.cid-ss8wMR4AOK .box {
  width: 25%;
  height: 40%;
  background: #ffb01e;
  position: absolute;
  top: 4%;
}
.cid-ss8wMR4AOK .box {
  left: 20%;
}
.cid-ss8wMR4AOK .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ss8wMR4AOK .mbr-section-text,
.cid-ss8wMR4AOK .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-ss8wMR4AOK .text-box {
    display: none;
  }
  .cid-ss8wMR4AOK .mbr-section-title,
  .cid-ss8wMR4AOK .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ss8wMR4AOK .box {
    display: none;
  }
  .cid-ss8wMR4AOK .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ss8wMR4AOK .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ss8wMR4AOK .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ss8wMR4AOK .mbr-section-text {
  color: #ffffff;
  text-align: left;
}
.cid-ss8wMR4AOK .mbr-section-title {
  color: #000000;
}
.cid-tttadwXOJb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/empleado-pintando-carroceria-207949-648-626x417.jpeg");
}
.cid-tttadwXOJb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tttadwXOJb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tttadwXOJb .text-wrap {
  width: 100%;
}
.cid-tttadwXOJb .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-tttadwXOJb .mbr-text {
  padding-top: 10px;
  color: #ffffff;
}
.cid-tttadwXOJb .comment-text {
  margin-top: 40px;
  color: #ffb01e;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-ss8ytibXNw {
  background: #ffb01e;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ss8ytibXNw .image-block {
  margin: auto;
  height: 450px;
  overflow: hidden;
  position: relative;
}
.cid-ss8ytibXNw .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffb01e;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-ss8ytibXNw .image-block:hover:before {
  opacity: 0.2;
}
.cid-ss8ytibXNw .image-block:hover .wrap {
  opacity: 1;
}
.cid-ss8ytibXNw .image-block:hover img {
  transform: scale(1.05);
}
.cid-ss8ytibXNw h4 {
  letter-spacing: 2px;
}
.cid-ss8ytibXNw figcaption {
  position: relative;
}
.cid-ss8ytibXNw figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-ss8ytibXNw img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ss8ytibXNw .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-ss8ytibXNw .wrap {
    opacity: 1!important;
  }
  .cid-ss8ytibXNw .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-ss8ytibXNw H4 {
  color: #384657;
}
.cid-sszVlywIJu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #384657;
}
.cid-sszVlywIJu .row {
  position: relative;
}
.cid-sszVlywIJu .container {
  max-width: 1500px;
}
.cid-sszVlywIJu h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-sszVlywIJu .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sszVlywIJu .container {
    padding: 0 4rem;
  }
}
.cid-ttvExtU96J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/01-1024x538.jpg");
}
.cid-ttvExtU96J img {
  width: 100%;
}
.cid-ttvExtU96J .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #384657;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-ttvExtU96J .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ttvExtU96J .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
  margin-bottom: 21px;
}
.cid-ttvExtU96J .mbr-section-title {
  margin: 0;
  font-weight: 500;
}
.cid-ttvExtU96J .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-ttvExtU96J .contents {
  margin-top: 36px;
}
.cid-ttvExtU96J .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-ttvExtU96J .mbr-section-btn {
  margin-top: 8px;
}
.cid-ttvExtU96J .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-ttvExtU96J .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ttvExtU96J .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ttvExtU96J .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-ttvExtU96J .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-ttvExtU96J .mbr-list .list li {
  line-height: 1.75;
}
.cid-ttvExtU96J .mbr-list .list li:before {
  font-weight: 900;
  color: #5ca7db;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-sszW3rexfa {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #384657;
}
.cid-sszW3rexfa .row {
  position: relative;
}
.cid-sszW3rexfa .container {
  max-width: 1500px;
}
.cid-sszW3rexfa h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-sszW3rexfa .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sszW3rexfa .container {
    padding: 0 4rem;
  }
}
.cid-ttNyW0Z62r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/180620-esense-partners-page-1920x1080.jpg");
}
.cid-ttNyW0Z62r .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-ttNyW0Z62r .team-card:hover {
  transform: translateY(-10px);
}
.cid-ttNyW0Z62r .container-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 77%;
}
.cid-ttNyW0Z62r .card-content {
  margin: -80% 0 0 0;
}
.cid-ttNyW0Z62r .card-wrap {
  background: #ffffff;
  height: 100%;
  display: flex;
  border-radius: 20px;
  position: relative;
}
.cid-ttNyW0Z62r .card-wrap__content {
  margin: 0 0 -6vw 0;
  padding: 3rem 1.3rem;
}
.cid-ttNyW0Z62r .card-wrap .image-wrap img {
  width: 100%;
}
.cid-ttNyW0Z62r .card-wrap .image-wrap {
  margin: 1rem 2rem;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-ttNyW0Z62r .card-wrap .content-wrap {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ttNyW0Z62r .card-wrap {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttNyW0Z62r .profile-container .pdd-top:not(:first-child) {
    margin-bottom: 4rem;
  }
}
.cid-ttNyW0Z62r .social-row {
  text-align: center;
}
.cid-ttNyW0Z62r .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ttNyW0Z62r .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-ttNyW0Z62r .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ttNyW0Z62r .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-ttNyW0Z62r .mbr-role,
.cid-ttNyW0Z62r .social-row {
  color: #282124;
}
.cid-ttNyW0Z62r .card-text,
.cid-ttNyW0Z62r .mbr-section-btn,
.cid-ttNyW0Z62r .social-row {
  text-align: left;
}
.cid-ttNzTC118K {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #334256;
}
.cid-ttNzTC118K .mbr-text,
.cid-ttNzTC118K .mbr-section-btn {
  color: #000000;
}
.cid-ttNzTC118K .container {
  max-width: 1000px;
}
.cid-ttNzTC118K .mbr-section-title {
  border-bottom: 1px solid currentColor;
  color: #a6a6a6;
  padding-bottom: 1rem;
}
.cid-ssdYbmEnGN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/ext-2000x1500.jpg");
}
.cid-ssdYbmEnGN .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ssdYbmEnGN .main-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ssdYbmEnGN .form-group {
  margin-bottom: 1rem;
}
.cid-ssdYbmEnGN .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-ssdYbmEnGN textarea.form-control {
  min-height: 96px;
}
.cid-ssdYbmEnGN .input-group-btn {
  width: 100%;
}
.cid-ssdYbmEnGN .input-group-btn .btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-ssdYbmEnGN .form-control-label {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 100 !important;
}
.cid-ssdYbmEnGN .google-map {
  width: 100%;
  height: 25rem;
  height: 100%;
}
.cid-ssdYbmEnGN .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-ssdYbmEnGN .info-row ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.cid-ssdYbmEnGN .info-row ol li {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  padding: 10px;
}
.cid-ssdYbmEnGN .info-value {
  color: #efefef;
}
@media (max-width: 991px), (max-width: 767px) {
  .cid-ssdYbmEnGN .form-wrapper {
    padding-bottom: 2rem;
  }
  .cid-ssdYbmEnGN .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ssdYbmEnGN .form-wrapper {
    padding-bottom: 0;
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ssdYbmEnGN .form-subtitle {
    text-align: center;
  }
}
.cid-sse7JhZ7kV {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffb01e;
}
@media (max-width: 767px) {
  .cid-sse7JhZ7kV .content {
    text-align: center;
  }
  .cid-sse7JhZ7kV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sse7JhZ7kV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sse7JhZ7kV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sse7JhZ7kV .media-wrap img {
  height: 6rem;
}
.cid-sse7JhZ7kV .mbr-text {
  color: #8d97ad;
}
.cid-sse7JhZ7kV .p-title {
  font-size: 17px;
}
.cid-sse7JhZ7kV .p-title span {
  color: #111111;
}
.cid-sse7JhZ7kV .title-card {
  font-size: 1.3rem;
}
.cid-sse7JhZ7kV .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sse7JhZ7kV .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sse7JhZ7kV .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-sse7JhZ7kV .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sse7JhZ7kV .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sse7JhZ7kV .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sse7JhZ7kV .copyright img {
  margin-right: 10px;
}
.cid-sse7JhZ7kV .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sse7JhZ7kV .icon-transition span:hover {
  background-color: #e1083e;
}
@media (max-width: 767px) {
  .cid-sse7JhZ7kV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sse7JhZ7kV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sse7JhZ7kV .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sse7JhZ7kV H5 {
  color: #384657;
}
.cid-sse7JhZ7kV .copyright > p {
  color: #000000;
}
.cid-sse7JhZ7kV SPAN {
  color: #384657;
}
.cid-sse7JhZ7kV .p-title,
.cid-sse7JhZ7kV .social-media {
  color: #000000;
}
.cid-sse7JhZ7kV P {
  color: #000000;
}
.cid-rpSfRqtWyh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #384657;
}
.cid-rpSfRqtWyh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ss7Rc8Jg4b .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffb01e;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ss7Rc8Jg4b .navbar-buttons {
  flex-wrap: wrap;
}
.cid-ss7Rc8Jg4b .nav-item,
.cid-ss7Rc8Jg4b .nav-link,
.cid-ss7Rc8Jg4b .navbar-caption {
  font-weight: normal;
}
.cid-ss7Rc8Jg4b .nav-item:focus,
.cid-ss7Rc8Jg4b .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ss7Rc8Jg4b .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-ss7Rc8Jg4b .nav-item .nav-link {
    position: relative;
  }
  .cid-ss7Rc8Jg4b .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffb01e;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-ss7Rc8Jg4b .nav-item:hover .nav-link:before,
  .cid-ss7Rc8Jg4b .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ss7Rc8Jg4b .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ss7Rc8Jg4b .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #efeeee;
}
.cid-ss7Rc8Jg4b .navbar.opened {
  transition: all 0.3s;
  background: #efeeee !important;
}
.cid-ss7Rc8Jg4b .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-ss7Rc8Jg4b .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ss7Rc8Jg4b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ss7Rc8Jg4b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-ss7Rc8Jg4b .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-ss7Rc8Jg4b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ss7Rc8Jg4b .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ss7Rc8Jg4b .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ss7Rc8Jg4b .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ss7Rc8Jg4b .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ss7Rc8Jg4b .navbar.navbar-short {
  background: #efeeee !important;
  min-height: 60px;
}
.cid-ss7Rc8Jg4b .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-ss7Rc8Jg4b .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ss7Rc8Jg4b .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ss7Rc8Jg4b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ss7Rc8Jg4b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ss7Rc8Jg4b .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-ss7Rc8Jg4b .dropdown-item.active,
.cid-ss7Rc8Jg4b .dropdown-item:active {
  background-color: transparent;
}
.cid-ss7Rc8Jg4b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ss7Rc8Jg4b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ss7Rc8Jg4b .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ss7Rc8Jg4b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efeeee;
  z-index: 2;
}
.cid-ss7Rc8Jg4b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ss7Rc8Jg4b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ss7Rc8Jg4b ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ss7Rc8Jg4b .navbar-buttons {
  text-align: center;
}
.cid-ss7Rc8Jg4b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ss7Rc8Jg4b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ss7Rc8Jg4b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ss7Rc8Jg4b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ss7Rc8Jg4b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ss7Rc8Jg4b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ss7Rc8Jg4b .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-ss7Rc8Jg4b a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ss7Rc8Jg4b .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e1083e;
  display: inline-flex;
}
.cid-ss7Rc8Jg4b .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-ss7Rc8Jg4b .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-ss7Rc8Jg4b .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ss7Rc8Jg4b a.nav-link .mbr-iconfont-btn,
.cid-ss7Rc8Jg4b a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-ss7Rc8Jg4b a.nav-link:hover .mbr-iconfont-btn,
.cid-ss7Rc8Jg4b a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-ss7Rc8Jg4b a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ss7Rc8Jg4b .navbar {
    height: 77px;
  }
  .cid-ss7Rc8Jg4b .navbar.opened {
    height: auto;
  }
  .cid-ss7Rc8Jg4b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rpSfRqtWyh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #384657;
}
.cid-rpSfRqtWyh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttBXIZ7514 {
  background-color: #fbfbfb;
}
.cid-ttBXIZ7514 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttBXIZ7514 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttBXIZ7514 .row {
  justify-content: flex-start;
}
.cid-ttBXIZ7514 .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-ttBXIZ7514 .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ttBXIZ7514 .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ttBXIZ7514 .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-ttC0F92t2h {
  background-color: #fbfbfb;
}
.cid-ttC0F92t2h .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttC0F92t2h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttC0F92t2h .row {
  justify-content: flex-start;
}
.cid-ttC0F92t2h .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-ttC0F92t2h .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ttC0F92t2h .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ttC0F92t2h .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-ttC37O5Pas {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fbfbfb;
}
.cid-ttC37O5Pas .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttC37O5Pas .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttC37O5Pas .row {
  justify-content: flex-start;
}
.cid-ttC37O5Pas .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-ttC37O5Pas .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ttC37O5Pas .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ttC37O5Pas .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-ttNwxu37vK .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffb01e;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ttNwxu37vK .navbar-buttons {
  flex-wrap: wrap;
}
.cid-ttNwxu37vK .nav-item,
.cid-ttNwxu37vK .nav-link,
.cid-ttNwxu37vK .navbar-caption {
  font-weight: normal;
}
.cid-ttNwxu37vK .nav-item:focus,
.cid-ttNwxu37vK .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ttNwxu37vK .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-ttNwxu37vK .nav-item .nav-link {
    position: relative;
  }
  .cid-ttNwxu37vK .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffb01e;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-ttNwxu37vK .nav-item:hover .nav-link:before,
  .cid-ttNwxu37vK .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-ttNwxu37vK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-ttNwxu37vK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttNwxu37vK .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-ttNwxu37vK .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-ttNwxu37vK .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ttNwxu37vK .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ttNwxu37vK .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #efeeee;
}
.cid-ttNwxu37vK .navbar.opened {
  transition: all 0.3s;
  background: #efeeee !important;
}
.cid-ttNwxu37vK .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-ttNwxu37vK .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ttNwxu37vK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttNwxu37vK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttNwxu37vK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ttNwxu37vK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttNwxu37vK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttNwxu37vK .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-ttNwxu37vK .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-ttNwxu37vK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttNwxu37vK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttNwxu37vK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ttNwxu37vK .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ttNwxu37vK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ttNwxu37vK .navbar.navbar-short {
  background: #efeeee !important;
  min-height: 60px;
}
.cid-ttNwxu37vK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-ttNwxu37vK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ttNwxu37vK .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttNwxu37vK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttNwxu37vK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttNwxu37vK .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-ttNwxu37vK .dropdown-item.active,
.cid-ttNwxu37vK .dropdown-item:active {
  background-color: transparent;
}
.cid-ttNwxu37vK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttNwxu37vK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttNwxu37vK .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttNwxu37vK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efeeee;
  z-index: 2;
}
.cid-ttNwxu37vK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttNwxu37vK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttNwxu37vK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ttNwxu37vK .navbar-buttons {
  text-align: center;
}
.cid-ttNwxu37vK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ttNwxu37vK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-ttNwxu37vK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttNwxu37vK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttNwxu37vK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttNwxu37vK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttNwxu37vK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttNwxu37vK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttNwxu37vK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttNwxu37vK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttNwxu37vK .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-ttNwxu37vK a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ttNwxu37vK .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e1083e;
  display: inline-flex;
}
.cid-ttNwxu37vK .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-ttNwxu37vK .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-ttNwxu37vK .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ttNwxu37vK a.nav-link .mbr-iconfont-btn,
.cid-ttNwxu37vK a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-ttNwxu37vK a.nav-link:hover .mbr-iconfont-btn,
.cid-ttNwxu37vK a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-ttNwxu37vK a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttNwxu37vK .navbar {
    height: 77px;
  }
  .cid-ttNwxu37vK .navbar.opened {
    height: auto;
  }
  .cid-ttNwxu37vK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttNwxw7LqB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #384657;
}
.cid-ttNwxw7LqB .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tug6RPHsCn {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #aab3b6;
}
.cid-tug6RPHsCn .mbr-text {
  position: relative;
  text-align: left;
  color: #ffffff;
}
.cid-tug6RPHsCn .mbr-text:before {
  color: #ffffff;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-tug6RPHsCn img {
  object-fit: contain;
}
.cid-tug6RPHsCn .mbr-text:after {
  color: #ffffff;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-tug6RPHsCn .mbr-text:after,
  .cid-tug6RPHsCn .mbr-text:before {
    display: none;
  }
}
.cid-tug6TQ1m17 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/1-whoweare3-1680x900.jpg");
}
.cid-tug6TQ1m17 .animate__fadeInUp:before {
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tug6TQ1m17 .container-fluid {
    padding: 0;
  }
  .cid-tug6TQ1m17 .text-wrapper {
    max-width: 1400px;
    padding: 0 6rem;
  }
  .cid-tug6TQ1m17 .mbr-section-title {
    margin-left: -3rem;
  }
}
.cid-tug6TQ1m17 .row {
  align-items: center;
}
.cid-tug6TQ1m17 .animate__fadeInUp:before {
  background: "file:///E:/@-EN%20PROCESO/RM%2030-11-22/!%2000/@--%20publica%2031-01-23/PUBLICA%20TALLERES/BK%20SITIOS/delamo/assets/images/1-whoweare3-1680x900.jpg";
}
.cid-tug6TQ1m17 .mbr-text,
.cid-tug6TQ1m17 .mbr-section-btn {
  color: #161734;
  text-align: left;
}
.cid-tug6TQ1m17 .mbr-section-title {
  color: #e1083e;
}
.cid-tug7CWLHx3 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e4e8e9;
}
@media (min-width: 992px) {
  .cid-tug7CWLHx3 .container-fluid {
    padding: 0;
  }
  .cid-tug7CWLHx3 .text-wrapper {
    max-width: 1400px;
    padding: 0 6rem;
  }
  .cid-tug7CWLHx3 .mbr-section-title {
    margin-left: -3rem;
  }
}
.cid-tug7CWLHx3 .row {
  flex-direction: row-reverse;
}
.cid-tug7CWLHx3 .row {
  align-items: center;
}
.cid-tug7CWLHx3 .animate__fadeInUp:before {
  background: #e4e8e9;
}
.cid-tug7CWLHx3 .mbr-text,
.cid-tug7CWLHx3 .mbr-section-btn {
  color: #161734;
  text-align: left;
}
.cid-tug7CWLHx3 .mbr-section-title {
  color: #e1083e;
}
.cid-tug83RoZSC {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e4e8e9;
}
@media (min-width: 992px) {
  .cid-tug83RoZSC .container-fluid {
    padding: 0;
  }
  .cid-tug83RoZSC .text-wrapper {
    max-width: 1400px;
    padding: 0 6rem;
  }
  .cid-tug83RoZSC .mbr-section-title {
    margin-left: -3rem;
  }
}
.cid-tug83RoZSC .row {
  align-items: center;
}
.cid-tug83RoZSC .animate__fadeInUp:before {
  background: #e4e8e9;
}
.cid-tug83RoZSC .mbr-text,
.cid-tug83RoZSC .mbr-section-btn {
  color: #161734;
  text-align: left;
}
.cid-tug83RoZSC .mbr-section-title {
  color: #e1083e;
}
.cid-tug8lFcEWw {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e4e8e9;
}
@media (min-width: 992px) {
  .cid-tug8lFcEWw .container-fluid {
    padding: 0;
  }
  .cid-tug8lFcEWw .text-wrapper {
    max-width: 1400px;
    padding: 0 6rem;
  }
  .cid-tug8lFcEWw .mbr-section-title {
    margin-left: -3rem;
  }
}
.cid-tug8lFcEWw .row {
  flex-direction: row-reverse;
}
.cid-tug8lFcEWw .row {
  align-items: center;
}
.cid-tug8lFcEWw .animate__fadeInUp:before {
  background: #e4e8e9;
}
.cid-tug8lFcEWw .mbr-text,
.cid-tug8lFcEWw .mbr-section-btn {
  color: #161734;
  text-align: left;
}
.cid-tug8lFcEWw .mbr-section-title {
  color: #e1083e;
}
.cid-tug8GZqlta {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e4e8e9;
}
@media (min-width: 992px) {
  .cid-tug8GZqlta .container-fluid {
    padding: 0;
  }
  .cid-tug8GZqlta .text-wrapper {
    max-width: 1400px;
    padding: 0 6rem;
  }
  .cid-tug8GZqlta .mbr-section-title {
    margin-left: -3rem;
  }
}
.cid-tug8GZqlta .row {
  align-items: center;
}
.cid-tug8GZqlta .animate__fadeInUp:before {
  background: #e4e8e9;
}
.cid-tug8GZqlta .mbr-text,
.cid-tug8GZqlta .mbr-section-btn {
  color: #161734;
  text-align: left;
}
.cid-tug8GZqlta .mbr-section-title {
  color: #e1083e;
}
.cid-ttNBGYtS5h {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffb01e;
}
@media (max-width: 767px) {
  .cid-ttNBGYtS5h .content {
    text-align: center;
  }
  .cid-ttNBGYtS5h .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ttNBGYtS5h .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ttNBGYtS5h .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ttNBGYtS5h .media-wrap img {
  height: 6rem;
}
.cid-ttNBGYtS5h .mbr-text {
  color: #8d97ad;
}
.cid-ttNBGYtS5h .p-title {
  font-size: 17px;
}
.cid-ttNBGYtS5h .p-title span {
  color: #111111;
}
.cid-ttNBGYtS5h .title-card {
  font-size: 1.3rem;
}
.cid-ttNBGYtS5h .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-ttNBGYtS5h .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-ttNBGYtS5h .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-ttNBGYtS5h .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-ttNBGYtS5h .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-ttNBGYtS5h .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ttNBGYtS5h .copyright img {
  margin-right: 10px;
}
.cid-ttNBGYtS5h .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-ttNBGYtS5h .icon-transition span:hover {
  background-color: #e1083e;
}
@media (max-width: 767px) {
  .cid-ttNBGYtS5h .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ttNBGYtS5h .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-ttNBGYtS5h .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ttNBGYtS5h H5 {
  color: #384657;
}
.cid-ttNBGYtS5h .copyright > p {
  color: #000000;
}
.cid-ttNBGYtS5h SPAN {
  color: #384657;
}
.cid-ttNBGYtS5h .p-title,
.cid-ttNBGYtS5h .social-media {
  color: #000000;
}
.cid-ttNBGYtS5h P {
  color: #000000;
}
.cid-ttNAOtaSH3 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffb01e;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ttNAOtaSH3 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-ttNAOtaSH3 .nav-item,
.cid-ttNAOtaSH3 .nav-link,
.cid-ttNAOtaSH3 .navbar-caption {
  font-weight: normal;
}
.cid-ttNAOtaSH3 .nav-item:focus,
.cid-ttNAOtaSH3 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ttNAOtaSH3 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-ttNAOtaSH3 .nav-item .nav-link {
    position: relative;
  }
  .cid-ttNAOtaSH3 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffb01e;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-ttNAOtaSH3 .nav-item:hover .nav-link:before,
  .cid-ttNAOtaSH3 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-ttNAOtaSH3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-ttNAOtaSH3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttNAOtaSH3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-ttNAOtaSH3 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-ttNAOtaSH3 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ttNAOtaSH3 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ttNAOtaSH3 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #efeeee;
}
.cid-ttNAOtaSH3 .navbar.opened {
  transition: all 0.3s;
  background: #efeeee !important;
}
.cid-ttNAOtaSH3 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-ttNAOtaSH3 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ttNAOtaSH3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttNAOtaSH3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttNAOtaSH3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ttNAOtaSH3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttNAOtaSH3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttNAOtaSH3 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-ttNAOtaSH3 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-ttNAOtaSH3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttNAOtaSH3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttNAOtaSH3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ttNAOtaSH3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ttNAOtaSH3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ttNAOtaSH3 .navbar.navbar-short {
  background: #efeeee !important;
  min-height: 60px;
}
.cid-ttNAOtaSH3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-ttNAOtaSH3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ttNAOtaSH3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttNAOtaSH3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttNAOtaSH3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttNAOtaSH3 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-ttNAOtaSH3 .dropdown-item.active,
.cid-ttNAOtaSH3 .dropdown-item:active {
  background-color: transparent;
}
.cid-ttNAOtaSH3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttNAOtaSH3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttNAOtaSH3 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttNAOtaSH3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efeeee;
  z-index: 2;
}
.cid-ttNAOtaSH3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttNAOtaSH3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttNAOtaSH3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ttNAOtaSH3 .navbar-buttons {
  text-align: center;
}
.cid-ttNAOtaSH3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ttNAOtaSH3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-ttNAOtaSH3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttNAOtaSH3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttNAOtaSH3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttNAOtaSH3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttNAOtaSH3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttNAOtaSH3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttNAOtaSH3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttNAOtaSH3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttNAOtaSH3 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-ttNAOtaSH3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ttNAOtaSH3 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e1083e;
  display: inline-flex;
}
.cid-ttNAOtaSH3 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-ttNAOtaSH3 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-ttNAOtaSH3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ttNAOtaSH3 a.nav-link .mbr-iconfont-btn,
.cid-ttNAOtaSH3 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-ttNAOtaSH3 a.nav-link:hover .mbr-iconfont-btn,
.cid-ttNAOtaSH3 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-ttNAOtaSH3 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttNAOtaSH3 .navbar {
    height: 77px;
  }
  .cid-ttNAOtaSH3 .navbar.opened {
    height: auto;
  }
  .cid-ttNAOtaSH3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttNAOtEJbK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #384657;
}
.cid-ttNAOtEJbK .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttNC7ZnONp {
  padding-top: 320px;
  padding-bottom: 200px;
  background-image: url("../../../assets/images/baum-spray-1986x807.jpg");
}
.cid-ttNC7ZnONp img {
  width: 90%;
}
@media (max-width: 992px) {
  .cid-ttNC7ZnONp img {
    width: 100%;
  }
  .cid-ttNC7ZnONp .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-ttNC7ZnONp ul {
  padding-left: 2rem;
  margin-bottom: 0;
}
.cid-ttNC7ZnONp ul li {
  margin-bottom: 0.4rem;
  list-style: none;
  position: relative;
}
.cid-ttNC7ZnONp ul li:before {
  position: absolute;
  left: -2.6rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 10px 14px;
  line-height: 20px;
  transition: all 0.2s;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b69b74;
}
.cid-ttNC7ZnONp .text2 {
  text-align: left;
}
.cid-ttNCjRs0nH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
}
.cid-ttNCjRs0nH .mbr-section-title {
  margin-bottom: 18px;
  color: #202020;
}
.cid-ttNCjRs0nH .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-ttNCjRs0nH .card_box {
  margin-bottom: 65px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ttNCjRs0nH .card_info {
  margin-bottom: 12px;
}
.cid-ttNCjRs0nH .card_date {
  color: #555555;
}
.cid-ttNCjRs0nH .card_title {
  line-height: 1.1em;
  margin-bottom: 18px;
  color: #202020;
}
.cid-ttNCjRs0nH .card_text {
  margin-top: 4px;
}
.cid-ttNCjRs0nH .item-img {
  margin-bottom: 30px;
}
.cid-ttNCjRs0nH .item-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-height: 450px;
}
.cid-ttNCjRs0nH .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-ttNCjRs0nH .linkBtn a:after,
.cid-ttNCjRs0nH .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-ttNCjRs0nH .linkBtn a:before {
  left: 0;
}
.cid-ttNCjRs0nH .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-ttNCjRs0nH .linkBtn a:hover:before,
.cid-ttNCjRs0nH .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-ttNEk3jXHt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-ttNEk3jXHt .container,
.cid-ttNEk3jXHt .container-fluid {
  display: flex;
  justify-content: center;
}
.cid-ttNEk3jXHt .row {
  align-items: center;
  max-width: 870px;
  width: 870px;
}
.cid-ttNEk3jXHt .image-wrapper {
  padding: 0 1rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ttNEk3jXHt .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-ttNEk3jXHt .img-item {
  overflow: hidden;
}
.cid-ttNEk3jXHt .img-item img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  transition: 1s;
}
.cid-ttNEk3jXHt .img-item:hover img {
  transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}
.cid-ttNEk3jXHt .text-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-ttNEk3jXHt .text-container {
  display: flex;
  flex-direction: column;
}
.cid-ttNEk3jXHt .mbr-text {
  color: #111111;
  width: 100%;
  margin-bottom: 32px;
}
.cid-ttNEk3jXHt .mbr-text a:not(.btn):hover {
  color: #384657 !important;
  background-image: none !important;
}
.cid-ttNEk3jXHt .mbr-section-title {
  margin-bottom: 12px;
}
.cid-ttNEk3jXHt .mbr-section-subtitle {
  color: #555555;
  margin-bottom: 24px;
}
.cid-ttNEk3jXHt .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-ttNEk3jXHt .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-ttNEk3jXHt .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-ttNEoz3fOO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-ttNEoz3fOO .container,
.cid-ttNEoz3fOO .container-fluid {
  display: flex;
  justify-content: center;
}
.cid-ttNEoz3fOO .row {
  align-items: center;
  max-width: 870px;
  width: 870px;
}
.cid-ttNEoz3fOO .image-wrapper {
  padding: 0 1rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ttNEoz3fOO .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-ttNEoz3fOO .img-item {
  overflow: hidden;
}
.cid-ttNEoz3fOO .img-item img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  transition: 1s;
}
.cid-ttNEoz3fOO .img-item:hover img {
  transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}
.cid-ttNEoz3fOO .text-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-ttNEoz3fOO .text-container {
  display: flex;
  flex-direction: column;
}
.cid-ttNEoz3fOO .mbr-text {
  color: #111111;
  width: 100%;
  margin-bottom: 32px;
}
.cid-ttNEoz3fOO .mbr-text a:not(.btn):hover {
  color: #384657 !important;
  background-image: none !important;
}
.cid-ttNEoz3fOO .mbr-section-title {
  margin-bottom: 12px;
}
.cid-ttNEoz3fOO .mbr-section-subtitle {
  color: #555555;
  margin-bottom: 24px;
}
.cid-ttNEoz3fOO .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-ttNEoz3fOO .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-ttNEoz3fOO .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-ttNEqdtAHb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-ttNEqdtAHb .container,
.cid-ttNEqdtAHb .container-fluid {
  display: flex;
  justify-content: center;
}
.cid-ttNEqdtAHb .row {
  align-items: center;
  max-width: 870px;
  width: 870px;
}
.cid-ttNEqdtAHb .image-wrapper {
  padding: 0 1rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ttNEqdtAHb .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-ttNEqdtAHb .img-item {
  overflow: hidden;
}
.cid-ttNEqdtAHb .img-item img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  transition: 1s;
}
.cid-ttNEqdtAHb .img-item:hover img {
  transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}
.cid-ttNEqdtAHb .text-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-ttNEqdtAHb .text-container {
  display: flex;
  flex-direction: column;
}
.cid-ttNEqdtAHb .mbr-text {
  color: #111111;
  width: 100%;
  margin-bottom: 32px;
}
.cid-ttNEqdtAHb .mbr-text a:not(.btn):hover {
  color: #384657 !important;
  background-image: none !important;
}
.cid-ttNEqdtAHb .mbr-section-title {
  margin-bottom: 12px;
}
.cid-ttNEqdtAHb .mbr-section-subtitle {
  color: #555555;
  margin-bottom: 24px;
}
.cid-ttNEqdtAHb .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-ttNEqdtAHb .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-ttNEqdtAHb .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-ttNEsgvul0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-ttNEsgvul0 .container,
.cid-ttNEsgvul0 .container-fluid {
  display: flex;
  justify-content: center;
}
.cid-ttNEsgvul0 .row {
  align-items: center;
  max-width: 870px;
  width: 870px;
}
.cid-ttNEsgvul0 .image-wrapper {
  padding: 0 1rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ttNEsgvul0 .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-ttNEsgvul0 .img-item {
  overflow: hidden;
}
.cid-ttNEsgvul0 .img-item img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  transition: 1s;
}
.cid-ttNEsgvul0 .img-item:hover img {
  transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}
.cid-ttNEsgvul0 .text-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-ttNEsgvul0 .text-container {
  display: flex;
  flex-direction: column;
}
.cid-ttNEsgvul0 .mbr-text {
  color: #111111;
  width: 100%;
  margin-bottom: 32px;
}
.cid-ttNEsgvul0 .mbr-text a:not(.btn):hover {
  color: #384657 !important;
  background-image: none !important;
}
.cid-ttNEsgvul0 .mbr-section-title {
  margin-bottom: 12px;
  color: #ffffff;
}
.cid-ttNEsgvul0 .mbr-section-subtitle {
  color: #555555;
  margin-bottom: 24px;
}
.cid-ttNEsgvul0 .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-ttNEsgvul0 .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-ttNEsgvul0 .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-ttNEtY3i5q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-ttNEtY3i5q .container,
.cid-ttNEtY3i5q .container-fluid {
  display: flex;
  justify-content: center;
}
.cid-ttNEtY3i5q .row {
  align-items: center;
  max-width: 870px;
  width: 870px;
}
.cid-ttNEtY3i5q .image-wrapper {
  padding: 0 1rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ttNEtY3i5q .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-ttNEtY3i5q .img-item {
  overflow: hidden;
}
.cid-ttNEtY3i5q .img-item img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  transition: 1s;
}
.cid-ttNEtY3i5q .img-item:hover img {
  transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}
.cid-ttNEtY3i5q .text-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-ttNEtY3i5q .text-container {
  display: flex;
  flex-direction: column;
}
.cid-ttNEtY3i5q .mbr-text {
  color: #111111;
  width: 100%;
  margin-bottom: 32px;
}
.cid-ttNEtY3i5q .mbr-text a:not(.btn):hover {
  color: #384657 !important;
  background-image: none !important;
}
.cid-ttNEtY3i5q .mbr-section-title {
  margin-bottom: 12px;
  color: #ffffff;
}
.cid-ttNEtY3i5q .mbr-section-subtitle {
  color: #555555;
  margin-bottom: 24px;
}
.cid-ttNEtY3i5q .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-ttNEtY3i5q .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-ttNEtY3i5q .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-ttNEvCKKfz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-ttNEvCKKfz .container,
.cid-ttNEvCKKfz .container-fluid {
  display: flex;
  justify-content: center;
}
.cid-ttNEvCKKfz .row {
  align-items: center;
  max-width: 870px;
  width: 870px;
}
.cid-ttNEvCKKfz .image-wrapper {
  padding: 0 1rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ttNEvCKKfz .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-ttNEvCKKfz .img-item {
  overflow: hidden;
}
.cid-ttNEvCKKfz .img-item img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  transition: 1s;
}
.cid-ttNEvCKKfz .img-item:hover img {
  transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}
.cid-ttNEvCKKfz .text-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-ttNEvCKKfz .text-container {
  display: flex;
  flex-direction: column;
}
.cid-ttNEvCKKfz .mbr-text {
  color: #111111;
  width: 100%;
  margin-bottom: 32px;
}
.cid-ttNEvCKKfz .mbr-text a:not(.btn):hover {
  color: #384657 !important;
  background-image: none !important;
}
.cid-ttNEvCKKfz .mbr-section-title {
  margin-bottom: 12px;
  color: #ffffff;
}
.cid-ttNEvCKKfz .mbr-section-subtitle {
  color: #555555;
  margin-bottom: 24px;
}
.cid-ttNEvCKKfz .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-ttNEvCKKfz .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-ttNEvCKKfz .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-ttNEx8Iym3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #88d8fb;
}
.cid-ttNEx8Iym3 .container,
.cid-ttNEx8Iym3 .container-fluid {
  display: flex;
  justify-content: center;
}
.cid-ttNEx8Iym3 .row {
  align-items: center;
  max-width: 870px;
  width: 870px;
}
.cid-ttNEx8Iym3 .image-wrapper {
  padding: 0 1rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ttNEx8Iym3 .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-ttNEx8Iym3 .img-item {
  overflow: hidden;
}
.cid-ttNEx8Iym3 .img-item img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  transition: 1s;
}
.cid-ttNEx8Iym3 .img-item:hover img {
  transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}
.cid-ttNEx8Iym3 .text-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-ttNEx8Iym3 .text-container {
  display: flex;
  flex-direction: column;
}
.cid-ttNEx8Iym3 .mbr-text {
  color: #111111;
  width: 100%;
  margin-bottom: 32px;
}
.cid-ttNEx8Iym3 .mbr-text a:not(.btn):hover {
  color: #384657 !important;
  background-image: none !important;
}
.cid-ttNEx8Iym3 .mbr-section-title {
  margin-bottom: 12px;
  color: #282124;
}
.cid-ttNEx8Iym3 .mbr-section-subtitle {
  color: #555555;
  margin-bottom: 24px;
}
.cid-ttNEx8Iym3 .mbr-section-btn .btn {
  padding: 0;
  transition: all 0.3s ease 0s;
}
.cid-ttNEx8Iym3 .mbr-section-btn .btn span {
  margin-left: 0;
  padding-left: 0.5rem;
  transition: all 0.3s ease 0s;
}
.cid-ttNEx8Iym3 .mbr-section-btn .btn:hover span {
  padding-left: 1.25rem;
}
.cid-ttNEynKBo0 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #88d8fb;
}
.cid-ttNEynKBo0 .mbr-text,
.cid-ttNEynKBo0 .mbr-section-btn {
  color: #232323;
}
.cid-ttNEynKBo0 .card-title,
.cid-ttNEynKBo0 .card-box {
  color: #ffffff;
}
.cid-ttNEynKBo0 .mbr-text,
.cid-ttNEynKBo0 .link-wrap {
  color: #ffffff;
}
.cid-ttNBNgGsYF {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffb01e;
}
@media (max-width: 767px) {
  .cid-ttNBNgGsYF .content {
    text-align: center;
  }
  .cid-ttNBNgGsYF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ttNBNgGsYF .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ttNBNgGsYF .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ttNBNgGsYF .media-wrap img {
  height: 6rem;
}
.cid-ttNBNgGsYF .mbr-text {
  color: #8d97ad;
}
.cid-ttNBNgGsYF .p-title {
  font-size: 17px;
}
.cid-ttNBNgGsYF .p-title span {
  color: #111111;
}
.cid-ttNBNgGsYF .title-card {
  font-size: 1.3rem;
}
.cid-ttNBNgGsYF .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-ttNBNgGsYF .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-ttNBNgGsYF .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-ttNBNgGsYF .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-ttNBNgGsYF .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-ttNBNgGsYF .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ttNBNgGsYF .copyright img {
  margin-right: 10px;
}
.cid-ttNBNgGsYF .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-ttNBNgGsYF .icon-transition span:hover {
  background-color: #e1083e;
}
@media (max-width: 767px) {
  .cid-ttNBNgGsYF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ttNBNgGsYF .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-ttNBNgGsYF .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ttNBNgGsYF H5 {
  color: #384657;
}
.cid-ttNBNgGsYF .copyright > p {
  color: #000000;
}
.cid-ttNBNgGsYF SPAN {
  color: #384657;
}
.cid-ttNBNgGsYF .p-title,
.cid-ttNBNgGsYF .social-media {
  color: #000000;
}
.cid-ttNBNgGsYF P {
  color: #000000;
}
