body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.8rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 2;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem !important;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #1352ff !important;
}
.bg-success {
  background-color: #fff000 !important;
}
.bg-info {
  background-color: #0a1c44 !important;
}
.bg-warning {
  background-color: #d52b27 !important;
}
.bg-danger {
  background-color: #1352ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-primary:hover {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #282f39 !important;
  border-color: #282f39 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary:hover {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-info,
.btn-info:active {
  background-color: #0a1c44 !important;
  border-color: #0a1c44 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #000101 !important;
  border-color: #000101 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000101 !important;
  border-color: #000101 !important;
}
.btn-info:hover {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff000 !important;
  border-color: #fff000 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success:hover {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning:hover {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger:hover {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-white:hover {
  color: white!important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #1352ff;
  color: #1352ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #1352ff;
  border-color: #1352ff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #282f39;
  color: #282f39;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #282f39;
  border-color: #282f39;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #282f39 !important;
  border-color: #282f39 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #0a1c44;
  color: #0a1c44;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #0a1c44;
  border-color: #0a1c44;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0a1c44 !important;
  border-color: #0a1c44 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #fff000;
  color: #fff000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #fff000;
  border-color: #fff000;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #fff000 !important;
  border-color: #fff000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #d52b27;
  color: #d52b27;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #d52b27;
  border-color: #d52b27;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #1352ff;
  color: #1352ff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #1352ff;
  border-color: #1352ff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.text-primary {
  color: #1352ff !important;
}
.text-secondary {
  color: #282f39 !important;
}
.text-success {
  color: #fff000 !important;
}
.text-info {
  color: #0a1c44 !important;
}
.text-warning {
  color: #d52b27 !important;
}
.text-danger {
  color: #1352ff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #799dff !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #526075 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fff666 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #17419d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e77e7b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #799dff !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0a1c44;
}
.alert-warning {
  background-color: #d52b27;
}
.alert-danger {
  background-color: #1352ff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1352ff;
  border-color: #1352ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #1352ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dfe8ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffccc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4e7de5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f7d2d1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfe8ff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #1352ff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1352ff;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1352ff;
  border-bottom-color: #1352ff;
}
.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: #1352ff !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: #282f39 !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%;
  width: 100%;
  height: auto;
}
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='%231352ff' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sq895mXnwI {
  background-image: url("../../../assets/images/img-20190606-124906-2000x1500.jpg");
}
.cid-sq895mXnwI .slider-text-two {
  background: rgba(233, 233, 233, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
}
.cid-sq895mXnwI .mbr-section-title {
  color: #1352ff;
}
.cid-sq895mXnwI .mbr-text {
  color: #000000;
  letter-spacing: 5px;
  font-weight: 100;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sq895mXnwI .slider-text-two {
    outline: 15px solid rgba(233, 233, 233, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-rZq2QVvhSh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #0e2640;
}
.cid-rZq2QVvhSh .mail {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  width: fit-content;
  display: inline-block;
  color: #ffffff;
  text-align: right;
}
.cid-rZq2QVvhSh .mail:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.1;
  left: 0;
}
.cid-rZq2QVvhSh .mail:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-rZq2QVvhSh .mail:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-rZq2QVvhSh .mbr-text,
.cid-rZq2QVvhSh .mbr-section-btn {
  color: #ffffff;
}
.cid-rZq2QVvhSh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZq2QVvhSh .card .card-wrapper {
  text-align: center;
}
.cid-rZq2QVvhSh .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  width: 100%;
  min-width: 100px;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
}
.cid-rZq2QVvhSh .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #ffffff;
}
.cid-rZq2QVvhSh .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-rZq2QVvhSh .buttons-wrap {
  text-align: center;
}
.cid-rZq2QVvhSh .buttons-wrap .mbr-section-btn {
  display: inline-block;
}
.cid-rZq2QVvhSh .buttons-wrap .mbr-section-btn .btn {
  padding-left: 39px;
  padding-right: 39px;
}
.cid-rZq2QVvhSh .buttons-wrap .mbr-section-btn .btn-success-outline {
  color: #ffffff;
}
.cid-rZq2QVvhSh .buttons-wrap .mbr-section-btn .btn-success-outline:hover {
  color: #000000;
}
.cid-rZq2QVvhSh .buttons-wrap .or {
  text-align: center;
  display: inline-block;
  margin-left: 25px;
  margin-right: 25px;
  vertical-align: sub;
}
@media (max-width: 768px) {
  .cid-rZq2QVvhSh .buttons-wrap .or {
    display: none;
  }
}
.cid-snH3IauCx2 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-snH3IauCx2 .container {
  max-width: 1500px;
}
.cid-snH3IauCx2 .row {
  background: #ffffff;
}
.cid-snH3IauCx2 .img-col {
  padding: 0;
}
.cid-snH3IauCx2 .title-col {
  padding: 4rem 8rem;
}
.cid-snH3IauCx2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-snH3IauCx2 h2 {
  padding: 0;
  margin: 0;
}
.cid-snH3IauCx2 .text-wrap {
  margin: auto;
}
.cid-snH3IauCx2 .mbr-text {
  color: #000000;
}
@media (max-width: 1200px) {
  .cid-snH3IauCx2 .row {
    margin: 2rem;
  }
  .cid-snH3IauCx2 .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-snH3IauCx2 .row {
    margin: 0rem;
  }
  .cid-snH3IauCx2 .title-col {
    padding: 2rem 1rem;
  }
}
.cid-snH3IauCx2 H2 {
  color: #0a1c44;
}
.cid-rZq2Re8t6T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rZq2Re8t6T .mbr-section-title {
  color: #06182d;
}
.cid-rZq2Re8t6T .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZq2Re8t6T .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZq2Re8t6T .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZq2Re8t6T .card:nth-child(even) {
  margin-top: 70px;
}
.cid-rZq2Re8t6T .card .card-wrapper {
  height: 100%;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-img {
  position: relative;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-img:hover img {
  transform: rotateY(180deg);
}
.cid-rZq2Re8t6T .card .card-wrapper .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-box {
  padding-top: 1rem;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-box .card-title {
  margin-bottom: 0;
  color: #06182d;
  text-align: center;
  font-weight: 700;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-box .mbr-text {
  text-align: center;
  color: #030f1c;
}
.cid-rZq2Re8t6T .mbr-section-title,
.cid-rZq2Re8t6T .col {
  color: #0a1c44;
}
.cid-snH5aRJ9el {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-snH5aRJ9el .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-snH5aRJ9el .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-snH5aRJ9el .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snH5aRJ9el .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-snH5aRJ9el .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-snH5aRJ9el .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-snH5aRJ9el .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-snH5aRJ9el .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-snH5aRJ9el .card .wrapper .mbr-section-title,
.cid-snH5aRJ9el .mbr-section-btn {
  text-align: center;
}
.cid-snH5aRJ9el .card .wrapper .mbr-section-subtitle,
.cid-snH5aRJ9el .mbr-section-btn {
  text-align: center;
  color: #0a1c44;
}
.cid-snH5aRJ9el .card .wrapper .mbr-text,
.cid-snH5aRJ9el .mbr-section-btn {
  text-align: center;
}
.cid-sF0AGNhtGm {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sF0AGNhtGm .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.cid-sF0AGNhtGm .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sF0AGNhtGm .image-block:hover:before {
  opacity: 0.4;
}
.cid-sF0AGNhtGm .image-block:hover .wrap {
  opacity: 0;
}
.cid-sF0AGNhtGm .image-block:hover img {
  transform: scale(1.05);
}
.cid-sF0AGNhtGm h4 {
  letter-spacing: 2px;
}
.cid-sF0AGNhtGm figcaption {
  position: relative;
}
.cid-sF0AGNhtGm figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sF0AGNhtGm img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sF0AGNhtGm .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sF0AGNhtGm .wrap {
    opacity: 0!important;
  }
  .cid-sF0AGNhtGm .image-block:before {
    opacity: 0!important;
  }
}
.cid-sF0Bsf9YDQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sF0Bsf9YDQ .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sF0Bsf9YDQ .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sF0Bsf9YDQ .card-img span {
  font-size: 100px;
}
.cid-sF0Bsf9YDQ .mbr-text,
.cid-sF0Bsf9YDQ .mbr-section-btn {
  color: #efefef;
}
.cid-sF0Bsf9YDQ .mbr-section-title,
.cid-sF0Bsf9YDQ .card-img {
  color: #0a1c44;
}
.cid-sq86CUtczZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/img-20200606-123310-2000x1500.jpg");
}
.cid-sq86CUtczZ .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sq86CUtczZ .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sq86CUtczZ .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sq86CUtczZ .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sq86CUtczZ .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sq86CUtczZ .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sq86CUtczZ .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sq86CUtczZ .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sq86CUtczZ .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sq86CUtczZ .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sq70pFCrDr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sq70pFCrDr .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-sq70pFCrDr .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sq70pFCrDr .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sq70pFCrDr .btn-primary {
  border: 1px solid #1352ff !important;
}
.cid-sq70pFCrDr .btn-primary:hover {
  border: 1px solid #1352ff !important;
}
.cid-sq70pFCrDr .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sq70pFCrDr .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-sq70pFCrDr .input-group-btn {
  padding-left: 0;
}
.cid-sq70pFCrDr .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sq70pFCrDr .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sq70pFCrDr .mbr-text {
  color: #444;
}
.cid-sq70pFCrDr h5 {
  margin-bottom: 0;
}
.cid-sq70pFCrDr .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sq70pFCrDr .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sq70pFCrDr .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sq70pFCrDr .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sq70pFCrDr .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sq70pFCrDr .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sq70pFCrDr .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sq70pFCrDr .social-list a:hover {
  opacity: 0.4;
}
.cid-sq70pFCrDr .media-container-row > div {
  padding: 0px;
}
.cid-sq70pFCrDr .text2 {
  color: #000000;
  text-align: left;
}
.cid-sq70pFCrDr .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sq70pFCrDr .links {
  color: #000000;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sq70pFCrDr .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sq70pFCrDr .social-list,
  .cid-sq70pFCrDr .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sq70pFCrDr h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sq70pFCrDr .form-group {
    max-width: 180px;
  }
}
.cid-sq70pFCrDr .links span {
  color: #9e9e9e;
}
.cid-sq70pFCrDr .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sq70pFCrDr .logo-title {
  text-align: center;
}
.cid-sq70pFCrDr .logo-title,
.cid-sq70pFCrDr .logo {
  color: #000000;
}
.cid-sq70pFCrDr .group-title DIV {
  text-align: center;
}
.cid-rZq2XSdQ54 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #06182d;
}
.cid-rZq2XSdQ54 .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZq2XSdQ54 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZq2XSdQ54 .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-rZq2XSdQ54 .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-rZq2XSdQ54 .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sq6Vj7l1C2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .nav-item,
.cid-sq6Vj7l1C2 .nav-link,
.cid-sq6Vj7l1C2 .navbar-caption {
  font-weight: normal;
}
.cid-sq6Vj7l1C2 .nav-item:focus,
.cid-sq6Vj7l1C2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sq6Vj7l1C2 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sq6Vj7l1C2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sq6Vj7l1C2 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sq6Vj7l1C2 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sq6Vj7l1C2 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sq6Vj7l1C2 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sq6Vj7l1C2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sq6Vj7l1C2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sq6Vj7l1C2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .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-sq6Vj7l1C2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sq6Vj7l1C2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sq6Vj7l1C2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sq6Vj7l1C2 .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-sq6Vj7l1C2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sq6Vj7l1C2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sq6Vj7l1C2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sq6Vj7l1C2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sq6Vj7l1C2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sq6Vj7l1C2 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sq6Vj7l1C2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sq6Vj7l1C2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sq6Vj7l1C2 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sq6Vj7l1C2 .dropdown-item.active,
.cid-sq6Vj7l1C2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sq6Vj7l1C2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sq6Vj7l1C2 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sq6Vj7l1C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sq6Vj7l1C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sq6Vj7l1C2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sq6Vj7l1C2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sq6Vj7l1C2 .navbar-buttons {
  text-align: center;
}
.cid-sq6Vj7l1C2 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sq6Vj7l1C2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sq6Vj7l1C2 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sq6Vj7l1C2 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sq6Vj7l1C2 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sq6Vj7l1C2 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sq6Vj7l1C2 .navbar {
    height: 77px;
  }
  .cid-sq6Vj7l1C2 .navbar.opened {
    height: auto;
  }
  .cid-sq6Vj7l1C2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snH7u35Xbh {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/autofficina-2000x1335.jpg");
}
.cid-snH7u35Xbh .mbr-section-title {
  letter-spacing: .1em;
}
.cid-snH7u35Xbh .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-snH7u35Xbh .card-img span {
  font-size: 100px;
}
.cid-snH7u35Xbh .mbr-text,
.cid-snH7u35Xbh .mbr-section-btn {
  color: #efefef;
}
.cid-rZq2XSdQ54 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #06182d;
}
.cid-rZq2XSdQ54 .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZq2XSdQ54 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZq2XSdQ54 .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-rZq2XSdQ54 .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-rZq2XSdQ54 .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sq6Vj7l1C2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .nav-item,
.cid-sq6Vj7l1C2 .nav-link,
.cid-sq6Vj7l1C2 .navbar-caption {
  font-weight: normal;
}
.cid-sq6Vj7l1C2 .nav-item:focus,
.cid-sq6Vj7l1C2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sq6Vj7l1C2 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sq6Vj7l1C2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sq6Vj7l1C2 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sq6Vj7l1C2 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sq6Vj7l1C2 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sq6Vj7l1C2 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sq6Vj7l1C2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sq6Vj7l1C2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sq6Vj7l1C2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .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-sq6Vj7l1C2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sq6Vj7l1C2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sq6Vj7l1C2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sq6Vj7l1C2 .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-sq6Vj7l1C2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sq6Vj7l1C2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sq6Vj7l1C2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sq6Vj7l1C2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sq6Vj7l1C2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sq6Vj7l1C2 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sq6Vj7l1C2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sq6Vj7l1C2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sq6Vj7l1C2 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sq6Vj7l1C2 .dropdown-item.active,
.cid-sq6Vj7l1C2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sq6Vj7l1C2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sq6Vj7l1C2 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sq6Vj7l1C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sq6Vj7l1C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sq6Vj7l1C2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sq6Vj7l1C2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sq6Vj7l1C2 .navbar-buttons {
  text-align: center;
}
.cid-sq6Vj7l1C2 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sq6Vj7l1C2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sq6Vj7l1C2 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sq6Vj7l1C2 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sq6Vj7l1C2 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sq6Vj7l1C2 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sq6Vj7l1C2 .navbar {
    height: 77px;
  }
  .cid-sq6Vj7l1C2 .navbar.opened {
    height: auto;
  }
  .cid-sq6Vj7l1C2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snH8N6BwKY {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/officina-rimni.autoofficina-rimni.-..rn-2000x1335.jpg");
}
.cid-snH8N6BwKY .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-snH8N6BwKY .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-snH8N6BwKY .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-snH8N6BwKY .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-snH8N6BwKY .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snH8N6BwKY .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-snH8N6BwKY .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-snH8N6BwKY .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-snH8N6BwKY .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-snH8N6BwKY .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-snH8N6BwKY .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-snH8N6BwKY .card .wrapper .mbr-section-title,
.cid-snH8N6BwKY .mbr-section-btn,
.cid-snH8N6BwKY .mbr-list .list {
  text-align: center;
  color: #fff000;
}
.cid-snH8N6BwKY .card .wrapper .mbr-section-subtitle,
.cid-snH8N6BwKY .mbr-section-btn,
.cid-snH8N6BwKY .mbr-list .list DIV {
  text-align: center;
}
.cid-snH8N6BwKY .card .wrapper .mbr-text,
.cid-snH8N6BwKY .mbr-section-btn,
.cid-snH8N6BwKY .mbr-list .list {
  text-align: center;
}
.cid-snH8N6BwKY .card .wrapper .mbr-list .list,
.cid-snH8N6BwKY .card .wrapper .mbr-section-btn DIV {
  text-align: center;
}
.cid-snH8N8zmjw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-snH8N8zmjw .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-snH8N8zmjw .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-snH8N8zmjw .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snH8N8zmjw .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-snH8N8zmjw .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-snH8N8zmjw .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-snH8N8zmjw .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-snH8N8zmjw .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-snH8N8zmjw .card .wrapper .mbr-section-title,
.cid-snH8N8zmjw .mbr-section-btn {
  text-align: center;
}
.cid-snH8N8zmjw .card .wrapper .mbr-section-subtitle,
.cid-snH8N8zmjw .mbr-section-btn {
  text-align: center;
}
.cid-snH8N8zmjw .card .wrapper .mbr-text,
.cid-snH8N8zmjw .mbr-section-btn {
  text-align: center;
}
.cid-snH8N7Nnsv {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #0e2640;
}
.cid-snH8N7Nnsv .container {
  max-width: 1500px;
}
.cid-snH8N7Nnsv .row {
  background: #ffffff;
}
.cid-snH8N7Nnsv .img-col {
  padding: 0;
}
.cid-snH8N7Nnsv .title-col {
  padding: 4rem 8rem;
}
.cid-snH8N7Nnsv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-snH8N7Nnsv h2 {
  padding: 0;
  margin: 0;
}
.cid-snH8N7Nnsv .text-wrap {
  margin: auto;
}
.cid-snH8N7Nnsv .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-snH8N7Nnsv .row {
    margin: 2rem;
  }
  .cid-snH8N7Nnsv .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-snH8N7Nnsv .row {
    margin: 0rem;
  }
  .cid-snH8N7Nnsv .title-col {
    padding: 2rem 1rem;
  }
}
.cid-snH8N7Nnsv H2 {
  color: #0a1c44;
}
.cid-sF0zWGRrOH {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sF0zWGRrOH .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.cid-sF0zWGRrOH .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sF0zWGRrOH .image-block:hover:before {
  opacity: 0.4;
}
.cid-sF0zWGRrOH .image-block:hover .wrap {
  opacity: 0;
}
.cid-sF0zWGRrOH .image-block:hover img {
  transform: scale(1.05);
}
.cid-sF0zWGRrOH h4 {
  letter-spacing: 2px;
}
.cid-sF0zWGRrOH figcaption {
  position: relative;
}
.cid-sF0zWGRrOH figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sF0zWGRrOH img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sF0zWGRrOH .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sF0zWGRrOH .wrap {
    opacity: 1!important;
  }
  .cid-sF0zWGRrOH .image-block:before {
    opacity: 0!important;
  }
}
.cid-tu4wB25PSX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #0e2640;
}
.cid-tu4wB25PSX .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tu4wB25PSX .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-tu4wB25PSX .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tu4wB25PSX .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tu4wB25PSX .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-tu4wB25PSX .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-tu4wB25PSX .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-tu4wB25PSX .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-tu4wB25PSX .card .wrapper .mbr-section-title,
.cid-tu4wB25PSX .mbr-section-btn {
  text-align: center;
  color: #fff000;
}
.cid-tu4wB25PSX .card .wrapper .mbr-section-subtitle,
.cid-tu4wB25PSX .mbr-section-btn {
  text-align: center;
}
.cid-tu4wB25PSX .card .wrapper .mbr-text,
.cid-tu4wB25PSX .mbr-section-btn {
  text-align: center;
}
.cid-snH9EjkTTZ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/screenshot-2021-02-26-google-maps-1920x966.png");
}
.cid-snH9EjkTTZ .mbr-section-title {
  letter-spacing: .1em;
}
.cid-snH9EjkTTZ .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-snH9EjkTTZ .card-img span {
  font-size: 100px;
}
.cid-snH9EjkTTZ .mbr-text,
.cid-snH9EjkTTZ .mbr-section-btn {
  color: #efefef;
}
.cid-tu4vHcRAm6 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-tu4vHcRAm6 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tu4vHcRAm6 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-tu4vHcRAm6 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tu4vHcRAm6 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tu4vHcRAm6 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-tu4vHcRAm6 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-tu4vHcRAm6 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-tu4vHcRAm6 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-tu4vHcRAm6 .card .wrapper .mbr-section-title,
.cid-tu4vHcRAm6 .mbr-section-btn {
  text-align: center;
  color: #fff000;
}
.cid-tu4vHcRAm6 .card .wrapper .mbr-section-subtitle,
.cid-tu4vHcRAm6 .mbr-section-btn {
  text-align: center;
}
.cid-tu4vHcRAm6 .card .wrapper .mbr-text,
.cid-tu4vHcRAm6 .mbr-section-btn {
  text-align: center;
}
.cid-tu8hOxZgIU {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu8hOxZgIU .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-tu8hOxZgIU .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tu8hOxZgIU .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-tu8hOxZgIU .btn-primary {
  border: 1px solid #1352ff !important;
}
.cid-tu8hOxZgIU .btn-primary:hover {
  border: 1px solid #1352ff !important;
}
.cid-tu8hOxZgIU .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tu8hOxZgIU .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-tu8hOxZgIU .input-group-btn {
  padding-left: 0;
}
.cid-tu8hOxZgIU .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tu8hOxZgIU .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-tu8hOxZgIU .mbr-text {
  color: #444;
}
.cid-tu8hOxZgIU h5 {
  margin-bottom: 0;
}
.cid-tu8hOxZgIU .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tu8hOxZgIU .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tu8hOxZgIU .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tu8hOxZgIU .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tu8hOxZgIU .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tu8hOxZgIU .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tu8hOxZgIU .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tu8hOxZgIU .social-list a:hover {
  opacity: 0.4;
}
.cid-tu8hOxZgIU .media-container-row > div {
  padding: 0px;
}
.cid-tu8hOxZgIU .text2 {
  color: #000000;
  text-align: left;
}
.cid-tu8hOxZgIU .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-tu8hOxZgIU .links {
  color: #000000;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tu8hOxZgIU .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tu8hOxZgIU .social-list,
  .cid-tu8hOxZgIU .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tu8hOxZgIU h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tu8hOxZgIU .form-group {
    max-width: 180px;
  }
}
.cid-tu8hOxZgIU .links span {
  color: #9e9e9e;
}
.cid-tu8hOxZgIU .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-tu8hOxZgIU .logo-title {
  text-align: center;
}
.cid-tu8hOxZgIU .logo-title,
.cid-tu8hOxZgIU .logo {
  color: #000000;
}
.cid-tu8hOxZgIU .group-title DIV {
  text-align: center;
}
.cid-snH8N9CT2q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #06182d;
}
.cid-snH8N9CT2q .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-snH8N9CT2q .copyright {
    margin-bottom: 1rem;
  }
}
.cid-snH8N9CT2q .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-snH8N9CT2q .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-snH8N9CT2q .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-snH8N9CT2q .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-snH8N9CT2q .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-snH8N9CT2q .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-snH8N9CT2q .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-snH8N9CT2q .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-snH8N9CT2q .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sq6Vj7l1C2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .nav-item,
.cid-sq6Vj7l1C2 .nav-link,
.cid-sq6Vj7l1C2 .navbar-caption {
  font-weight: normal;
}
.cid-sq6Vj7l1C2 .nav-item:focus,
.cid-sq6Vj7l1C2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sq6Vj7l1C2 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sq6Vj7l1C2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sq6Vj7l1C2 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sq6Vj7l1C2 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sq6Vj7l1C2 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sq6Vj7l1C2 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sq6Vj7l1C2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sq6Vj7l1C2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sq6Vj7l1C2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .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-sq6Vj7l1C2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sq6Vj7l1C2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sq6Vj7l1C2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sq6Vj7l1C2 .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-sq6Vj7l1C2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sq6Vj7l1C2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sq6Vj7l1C2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sq6Vj7l1C2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sq6Vj7l1C2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sq6Vj7l1C2 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sq6Vj7l1C2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sq6Vj7l1C2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sq6Vj7l1C2 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sq6Vj7l1C2 .dropdown-item.active,
.cid-sq6Vj7l1C2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sq6Vj7l1C2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sq6Vj7l1C2 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sq6Vj7l1C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sq6Vj7l1C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sq6Vj7l1C2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sq6Vj7l1C2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sq6Vj7l1C2 .navbar-buttons {
  text-align: center;
}
.cid-sq6Vj7l1C2 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sq6Vj7l1C2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sq6Vj7l1C2 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sq6Vj7l1C2 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sq6Vj7l1C2 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sq6Vj7l1C2 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sq6Vj7l1C2 .navbar {
    height: 77px;
  }
  .cid-sq6Vj7l1C2 .navbar.opened {
    height: auto;
  }
  .cid-sq6Vj7l1C2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sq7iny2DHw {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/officina-rimni.autoofficina-rimni.-2000x1335.jpg");
}
.cid-sq7iny2DHw .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sq7iny2DHw .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sq7iny2DHw .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sq7iny2DHw .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sq7iny2DHw .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sq7iny2DHw .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sq7iny2DHw .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sq7iny2DHw .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-snH7V6LxZu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #0e2640;
}
.cid-snH7V6LxZu .mail {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  width: fit-content;
  display: inline-block;
  color: #fff000;
  text-align: right;
}
.cid-snH7V6LxZu .mail:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.1;
  left: 0;
}
.cid-snH7V6LxZu .mail:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-snH7V6LxZu .mail:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-snH7V6LxZu .mbr-text,
.cid-snH7V6LxZu .mbr-section-btn {
  color: #ffffff;
}
.cid-snH7V6LxZu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snH7V6LxZu .card .card-wrapper {
  text-align: center;
}
.cid-snH7V6LxZu .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  width: 100%;
  min-width: 100px;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
}
.cid-snH7V6LxZu .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #ffffff;
}
.cid-snH7V6LxZu .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-snH7V6LxZu .buttons-wrap {
  text-align: center;
}
.cid-snH7V6LxZu .buttons-wrap .mbr-section-btn {
  display: inline-block;
}
.cid-snH7V6LxZu .buttons-wrap .mbr-section-btn .btn {
  padding-left: 39px;
  padding-right: 39px;
}
.cid-snH7V6LxZu .buttons-wrap .mbr-section-btn .btn-success-outline {
  color: #ffffff;
}
.cid-snH7V6LxZu .buttons-wrap .mbr-section-btn .btn-success-outline:hover {
  color: #000000;
}
.cid-snH7V6LxZu .buttons-wrap .or {
  text-align: center;
  display: inline-block;
  margin-left: 25px;
  margin-right: 25px;
  vertical-align: sub;
}
@media (max-width: 768px) {
  .cid-snH7V6LxZu .buttons-wrap .or {
    display: none;
  }
}
.cid-snH7V7mvpx {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #0e2640;
}
.cid-snH7V7mvpx .container {
  max-width: 1500px;
}
.cid-snH7V7mvpx .row {
  background: #ffffff;
}
.cid-snH7V7mvpx .img-col {
  padding: 0;
}
.cid-snH7V7mvpx .title-col {
  padding: 4rem 8rem;
}
.cid-snH7V7mvpx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-snH7V7mvpx h2 {
  padding: 0;
  margin: 0;
}
.cid-snH7V7mvpx .text-wrap {
  margin: auto;
}
.cid-snH7V7mvpx .mbr-text {
  color: #000000;
}
@media (max-width: 1200px) {
  .cid-snH7V7mvpx .row {
    margin: 2rem;
  }
  .cid-snH7V7mvpx .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-snH7V7mvpx .row {
    margin: 0rem;
  }
  .cid-snH7V7mvpx .title-col {
    padding: 2rem 1rem;
  }
}
.cid-snH7V7mvpx H2 {
  color: #0a1c44;
}
.cid-snH8khCcCw {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-snH8khCcCw H1 {
  color: #0a1c44;
  text-align: center;
}
.cid-snH8khCcCw .mbr-text,
.cid-snH8khCcCw .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-snH8khCcCw img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-snH8khCcCw .col-lg-6 {
    padding: 0 2rem;
  }
}
.cid-sq8j9hS8qw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sq8j9hS8qw .container {
  max-width: 1500px;
}
.cid-sq8j9hS8qw .row {
  background: #0e2640;
}
.cid-sq8j9hS8qw .img-col {
  padding: 0;
}
.cid-sq8j9hS8qw .title-col {
  padding: 4rem 8rem;
}
.cid-sq8j9hS8qw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sq8j9hS8qw h2 {
  padding: 0;
  margin: 0;
}
.cid-sq8j9hS8qw .text-wrap {
  margin: auto;
}
.cid-sq8j9hS8qw .mbr-text {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-sq8j9hS8qw .row {
    margin: 2rem;
  }
  .cid-sq8j9hS8qw .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sq8j9hS8qw .row {
    margin: 0rem;
  }
  .cid-sq8j9hS8qw .title-col {
    padding: 2rem 1rem;
  }
}
.cid-sq8j9hS8qw H2 {
  color: #ffffff;
}
.cid-sF0yHbKoyj {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sF0yHbKoyj .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.cid-sF0yHbKoyj .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sF0yHbKoyj .image-block:hover:before {
  opacity: 0;
}
.cid-sF0yHbKoyj .image-block:hover .wrap {
  opacity: 0;
}
.cid-sF0yHbKoyj .image-block:hover img {
  transform: scale(1.05);
}
.cid-sF0yHbKoyj h4 {
  letter-spacing: 2px;
}
.cid-sF0yHbKoyj figcaption {
  position: relative;
}
.cid-sF0yHbKoyj figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sF0yHbKoyj img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sF0yHbKoyj .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sF0yHbKoyj .wrap {
    opacity: 1!important;
  }
  .cid-sF0yHbKoyj .image-block:before {
    opacity: 0!important;
  }
}
.cid-sq8lENhjr9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sq8lENhjr9 .card-wrapper {
  z-index: 3;
}
.cid-sq8lENhjr9 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sq8lENhjr9:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sq8lENhjr9 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sq8lENhjr9 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-sq8lENhjr9 DIV {
  text-align: center;
}
.cid-sq8lENhjr9 H2 {
  color: #0a1c44;
}
.cid-sF0zlgYtQh {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sF0zlgYtQh .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.cid-sF0zlgYtQh .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sF0zlgYtQh .image-block:hover:before {
  opacity: 0.2;
}
.cid-sF0zlgYtQh .image-block:hover .wrap {
  opacity: 0;
}
.cid-sF0zlgYtQh .image-block:hover img {
  transform: scale(1.05);
}
.cid-sF0zlgYtQh h4 {
  letter-spacing: 2px;
}
.cid-sF0zlgYtQh figcaption {
  position: relative;
}
.cid-sF0zlgYtQh figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sF0zlgYtQh img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sF0zlgYtQh .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sF0zlgYtQh .wrap {
    opacity: 1!important;
  }
  .cid-sF0zlgYtQh .image-block:before {
    opacity: 0!important;
  }
}
.cid-snH7V7ICEv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-snH7V7ICEv .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-snH7V7ICEv .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-snH7V7ICEv .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snH7V7ICEv .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-snH7V7ICEv .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-snH7V7ICEv .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-snH7V7ICEv .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-snH7V7ICEv .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-snH7V7ICEv .card .wrapper .mbr-section-title,
.cid-snH7V7ICEv .mbr-section-btn {
  text-align: center;
}
.cid-snH7V7ICEv .card .wrapper .mbr-section-subtitle,
.cid-snH7V7ICEv .mbr-section-btn {
  text-align: center;
  color: #0a1c44;
}
.cid-snH7V7ICEv .card .wrapper .mbr-text,
.cid-snH7V7ICEv .mbr-section-btn {
  text-align: center;
}
.cid-sF0CONcXSJ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/img-20190613-121003-2000x1500.jpg");
}
.cid-sF0CONcXSJ .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sF0CONcXSJ .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sF0CONcXSJ .card-img span {
  font-size: 100px;
}
.cid-sF0CONcXSJ .mbr-text,
.cid-sF0CONcXSJ .mbr-section-btn {
  color: #efefef;
}
.cid-tu8hKIfWt1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu8hKIfWt1 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-tu8hKIfWt1 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tu8hKIfWt1 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-tu8hKIfWt1 .btn-primary {
  border: 1px solid #1352ff !important;
}
.cid-tu8hKIfWt1 .btn-primary:hover {
  border: 1px solid #1352ff !important;
}
.cid-tu8hKIfWt1 .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tu8hKIfWt1 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-tu8hKIfWt1 .input-group-btn {
  padding-left: 0;
}
.cid-tu8hKIfWt1 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tu8hKIfWt1 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-tu8hKIfWt1 .mbr-text {
  color: #444;
}
.cid-tu8hKIfWt1 h5 {
  margin-bottom: 0;
}
.cid-tu8hKIfWt1 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tu8hKIfWt1 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tu8hKIfWt1 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tu8hKIfWt1 .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tu8hKIfWt1 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tu8hKIfWt1 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tu8hKIfWt1 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tu8hKIfWt1 .social-list a:hover {
  opacity: 0.4;
}
.cid-tu8hKIfWt1 .media-container-row > div {
  padding: 0px;
}
.cid-tu8hKIfWt1 .text2 {
  color: #000000;
  text-align: left;
}
.cid-tu8hKIfWt1 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-tu8hKIfWt1 .links {
  color: #000000;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tu8hKIfWt1 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tu8hKIfWt1 .social-list,
  .cid-tu8hKIfWt1 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tu8hKIfWt1 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tu8hKIfWt1 .form-group {
    max-width: 180px;
  }
}
.cid-tu8hKIfWt1 .links span {
  color: #9e9e9e;
}
.cid-tu8hKIfWt1 .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-tu8hKIfWt1 .logo-title {
  text-align: center;
}
.cid-tu8hKIfWt1 .logo-title,
.cid-tu8hKIfWt1 .logo {
  color: #000000;
}
.cid-tu8hKIfWt1 .group-title DIV {
  text-align: center;
}
.cid-snH7Va0OvH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #06182d;
}
.cid-snH7Va0OvH .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-snH7Va0OvH .copyright {
    margin-bottom: 1rem;
  }
}
.cid-snH7Va0OvH .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-snH7Va0OvH .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-snH7Va0OvH .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-snH7Va0OvH .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-snH7Va0OvH .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-snH7Va0OvH .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-snH7Va0OvH .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-snH7Va0OvH .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-snH7Va0OvH .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sq6Vj7l1C2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .nav-item,
.cid-sq6Vj7l1C2 .nav-link,
.cid-sq6Vj7l1C2 .navbar-caption {
  font-weight: normal;
}
.cid-sq6Vj7l1C2 .nav-item:focus,
.cid-sq6Vj7l1C2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sq6Vj7l1C2 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sq6Vj7l1C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sq6Vj7l1C2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sq6Vj7l1C2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sq6Vj7l1C2 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sq6Vj7l1C2 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sq6Vj7l1C2 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sq6Vj7l1C2 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sq6Vj7l1C2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sq6Vj7l1C2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sq6Vj7l1C2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .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-sq6Vj7l1C2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sq6Vj7l1C2 .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sq6Vj7l1C2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sq6Vj7l1C2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sq6Vj7l1C2 .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-sq6Vj7l1C2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sq6Vj7l1C2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sq6Vj7l1C2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sq6Vj7l1C2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sq6Vj7l1C2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sq6Vj7l1C2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sq6Vj7l1C2 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sq6Vj7l1C2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sq6Vj7l1C2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sq6Vj7l1C2 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sq6Vj7l1C2 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sq6Vj7l1C2 .dropdown-item.active,
.cid-sq6Vj7l1C2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sq6Vj7l1C2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sq6Vj7l1C2 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sq6Vj7l1C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sq6Vj7l1C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sq6Vj7l1C2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sq6Vj7l1C2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sq6Vj7l1C2 .navbar-buttons {
  text-align: center;
}
.cid-sq6Vj7l1C2 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sq6Vj7l1C2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq6Vj7l1C2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sq6Vj7l1C2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq6Vj7l1C2 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sq6Vj7l1C2 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sq6Vj7l1C2 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sq6Vj7l1C2 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sq6Vj7l1C2 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sq6Vj7l1C2 .navbar {
    height: 77px;
  }
  .cid-sq6Vj7l1C2 .navbar.opened {
    height: auto;
  }
  .cid-sq6Vj7l1C2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sqd0ldXggh {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/officina-rimni.autoofficina-rimni.-..rn-2000x1335.jpg");
}
.cid-sqd0ldXggh .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sqd0ldXggh .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sqd0ldXggh .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sqd0ldXggh .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sqd0ldXggh .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sqd0ldXggh .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sqd0ldXggh .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sqd0ldXggh .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sqd0ldXggh .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sqd0ldXggh .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sqd0ldXggh .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sqd0ldXggh .card .wrapper .mbr-section-title,
.cid-sqd0ldXggh .mbr-section-btn,
.cid-sqd0ldXggh .mbr-list .list {
  text-align: center;
  color: #fff000;
}
.cid-sqd0ldXggh .card .wrapper .mbr-section-subtitle,
.cid-sqd0ldXggh .mbr-section-btn,
.cid-sqd0ldXggh .mbr-list .list DIV {
  text-align: center;
}
.cid-sqd0ldXggh .card .wrapper .mbr-text,
.cid-sqd0ldXggh .mbr-section-btn,
.cid-sqd0ldXggh .mbr-list .list {
  text-align: center;
}
.cid-sqd0ldXggh .card .wrapper .mbr-list .list,
.cid-sqd0ldXggh .card .wrapper .mbr-section-btn DIV {
  text-align: center;
}
.cid-sqd0leEm9K {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-sqd0leEm9K .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sqd0leEm9K .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sqd0leEm9K .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sqd0leEm9K .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sqd0leEm9K .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sqd0leEm9K .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sqd0leEm9K .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sqd0leEm9K .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sqd0leEm9K .card .wrapper .mbr-section-title,
.cid-sqd0leEm9K .mbr-section-btn {
  text-align: center;
}
.cid-sqd0leEm9K .card .wrapper .mbr-section-subtitle,
.cid-sqd0leEm9K .mbr-section-btn {
  text-align: center;
}
.cid-sqd0leEm9K .card .wrapper .mbr-text,
.cid-sqd0leEm9K .mbr-section-btn {
  text-align: center;
}
.cid-sqd0lenj3z {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #0e2640;
}
.cid-sqd0lenj3z .container {
  max-width: 1500px;
}
.cid-sqd0lenj3z .row {
  background: #ffffff;
}
.cid-sqd0lenj3z .img-col {
  padding: 0;
}
.cid-sqd0lenj3z .title-col {
  padding: 4rem 8rem;
}
.cid-sqd0lenj3z img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sqd0lenj3z h2 {
  padding: 0;
  margin: 0;
}
.cid-sqd0lenj3z .text-wrap {
  margin: auto;
}
.cid-sqd0lenj3z .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-sqd0lenj3z .row {
    margin: 2rem;
  }
  .cid-sqd0lenj3z .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sqd0lenj3z .row {
    margin: 0rem;
  }
  .cid-sqd0lenj3z .title-col {
    padding: 2rem 1rem;
  }
}
.cid-sqd0lenj3z H2 {
  color: #0a1c44;
}
.cid-sF0DlMuAbv {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sF0DlMuAbv .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.cid-sF0DlMuAbv .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sF0DlMuAbv .image-block:hover:before {
  opacity: 0.4;
}
.cid-sF0DlMuAbv .image-block:hover .wrap {
  opacity: 0;
}
.cid-sF0DlMuAbv .image-block:hover img {
  transform: scale(1.05);
}
.cid-sF0DlMuAbv h4 {
  letter-spacing: 2px;
}
.cid-sF0DlMuAbv figcaption {
  position: relative;
}
.cid-sF0DlMuAbv figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sF0DlMuAbv img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sF0DlMuAbv .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sF0DlMuAbv .wrap {
    opacity: 1!important;
  }
  .cid-sF0DlMuAbv .image-block:before {
    opacity: 0!important;
  }
}
.cid-tu4yC7YjH9 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #0e2640;
}
.cid-tu4yC7YjH9 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tu4yC7YjH9 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-tu4yC7YjH9 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tu4yC7YjH9 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tu4yC7YjH9 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-tu4yC7YjH9 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-tu4yC7YjH9 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-tu4yC7YjH9 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-tu4yC7YjH9 .card .wrapper .mbr-section-title,
.cid-tu4yC7YjH9 .mbr-section-btn {
  text-align: center;
  color: #fff000;
}
.cid-tu4yC7YjH9 .card .wrapper .mbr-section-subtitle,
.cid-tu4yC7YjH9 .mbr-section-btn {
  text-align: center;
}
.cid-tu4yC7YjH9 .card .wrapper .mbr-text,
.cid-tu4yC7YjH9 .mbr-section-btn {
  text-align: center;
}
.cid-sqd0lfk8aR {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/screenshot-2021-02-26-google-maps-1920x966.png");
}
.cid-sqd0lfk8aR .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sqd0lfk8aR .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sqd0lfk8aR .card-img span {
  font-size: 100px;
}
.cid-sqd0lfk8aR .mbr-text,
.cid-sqd0lfk8aR .mbr-section-btn {
  color: #efefef;
}
.cid-tu4yBFy2dX {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-tu4yBFy2dX .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tu4yBFy2dX .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-tu4yBFy2dX .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tu4yBFy2dX .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tu4yBFy2dX .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-tu4yBFy2dX .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-tu4yBFy2dX .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-tu4yBFy2dX .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-tu4yBFy2dX .card .wrapper .mbr-section-title,
.cid-tu4yBFy2dX .mbr-section-btn {
  text-align: center;
  color: #fff000;
}
.cid-tu4yBFy2dX .card .wrapper .mbr-section-subtitle,
.cid-tu4yBFy2dX .mbr-section-btn {
  text-align: center;
}
.cid-tu4yBFy2dX .card .wrapper .mbr-text,
.cid-tu4yBFy2dX .mbr-section-btn {
  text-align: center;
}
.cid-tu8hSdnNTs {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu8hSdnNTs .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-tu8hSdnNTs .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tu8hSdnNTs .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-tu8hSdnNTs .btn-primary {
  border: 1px solid #1352ff !important;
}
.cid-tu8hSdnNTs .btn-primary:hover {
  border: 1px solid #1352ff !important;
}
.cid-tu8hSdnNTs .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tu8hSdnNTs .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-tu8hSdnNTs .input-group-btn {
  padding-left: 0;
}
.cid-tu8hSdnNTs .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tu8hSdnNTs .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-tu8hSdnNTs .mbr-text {
  color: #444;
}
.cid-tu8hSdnNTs h5 {
  margin-bottom: 0;
}
.cid-tu8hSdnNTs .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tu8hSdnNTs .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tu8hSdnNTs .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tu8hSdnNTs .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tu8hSdnNTs .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tu8hSdnNTs .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tu8hSdnNTs .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tu8hSdnNTs .social-list a:hover {
  opacity: 0.4;
}
.cid-tu8hSdnNTs .media-container-row > div {
  padding: 0px;
}
.cid-tu8hSdnNTs .text2 {
  color: #000000;
  text-align: left;
}
.cid-tu8hSdnNTs .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-tu8hSdnNTs .links {
  color: #000000;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tu8hSdnNTs .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tu8hSdnNTs .social-list,
  .cid-tu8hSdnNTs .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tu8hSdnNTs h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tu8hSdnNTs .form-group {
    max-width: 180px;
  }
}
.cid-tu8hSdnNTs .links span {
  color: #9e9e9e;
}
.cid-tu8hSdnNTs .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-tu8hSdnNTs .logo-title {
  text-align: center;
}
.cid-tu8hSdnNTs .logo-title,
.cid-tu8hSdnNTs .logo {
  color: #000000;
}
.cid-tu8hSdnNTs .group-title DIV {
  text-align: center;
}
.cid-sqd0lgwC3t .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sqd0lgwC3t .nav-item,
.cid-sqd0lgwC3t .nav-link,
.cid-sqd0lgwC3t .navbar-caption {
  font-weight: normal;
}
.cid-sqd0lgwC3t .nav-item:focus,
.cid-sqd0lgwC3t .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sqd0lgwC3t .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sqd0lgwC3t .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sqd0lgwC3t .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sqd0lgwC3t .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sqd0lgwC3t .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sqd0lgwC3t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqd0lgwC3t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sqd0lgwC3t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqd0lgwC3t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqd0lgwC3t .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sqd0lgwC3t .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sqd0lgwC3t .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sqd0lgwC3t .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sqd0lgwC3t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sqd0lgwC3t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqd0lgwC3t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sqd0lgwC3t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-sqd0lgwC3t .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqd0lgwC3t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqd0lgwC3t .navbar.collapsed .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-sqd0lgwC3t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqd0lgwC3t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sqd0lgwC3t .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sqd0lgwC3t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqd0lgwC3t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqd0lgwC3t .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqd0lgwC3t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqd0lgwC3t .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-sqd0lgwC3t .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sqd0lgwC3t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqd0lgwC3t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sqd0lgwC3t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqd0lgwC3t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sqd0lgwC3t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sqd0lgwC3t .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sqd0lgwC3t .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sqd0lgwC3t .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqd0lgwC3t .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqd0lgwC3t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqd0lgwC3t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqd0lgwC3t .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sqd0lgwC3t .dropdown-item.active,
.cid-sqd0lgwC3t .dropdown-item:active {
  background-color: transparent;
}
.cid-sqd0lgwC3t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqd0lgwC3t .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqd0lgwC3t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sqd0lgwC3t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqd0lgwC3t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqd0lgwC3t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sqd0lgwC3t .navbar-buttons {
  text-align: center;
}
.cid-sqd0lgwC3t .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sqd0lgwC3t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sqd0lgwC3t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sqd0lgwC3t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sqd0lgwC3t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqd0lgwC3t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqd0lgwC3t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sqd0lgwC3t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqd0lgwC3t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sqd0lgwC3t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sqd0lgwC3t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqd0lgwC3t .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sqd0lgwC3t a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sqd0lgwC3t .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sqd0lgwC3t .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sqd0lgwC3t .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqd0lgwC3t .navbar {
    height: 77px;
  }
  .cid-sqd0lgwC3t .navbar.opened {
    height: auto;
  }
  .cid-sqd0lgwC3t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
