body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.0625rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #e43f3f !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #e43f3f !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a61717 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e43f3f;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%236592e6' %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-tPaSE4LCtp .navbar-dropdown {
  position: relative !important;
  padding: 0 0;
}
.cid-tPaSE4LCtp .dropdown-item:before {
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-menu {
  padding: 0;
  border-radius: 0px !important;
  width: auto !important;
  padding-bottom: 10px !important;
  transition: all 0.3s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-item {
  border-top: 1px solid #DBEEFD !important;
  border-bottom: 1px solid #e43f3f;
  padding: 0.5rem 1.8rem;
}
.cid-tPaSE4LCtp .dropdown-item:hover,
.cid-tPaSE4LCtp .dropdown-item:focus {
  background: #f5f5f5 !important;
  color: #e43f3f !important;
  padding-top: 10px !important;
  border-radius: 0 !important;
}
.cid-tPaSE4LCtp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPaSE4LCtp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPaSE4LCtp .nav-dropdown .link {
  padding: 0 0.4em !important;
  margin: 0.667em 1em !important;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPaSE4LCtp .nav-link {
  position: relative;
}
.cid-tPaSE4LCtp .container {
  display: flex;
  margin: auto;
}
.cid-tPaSE4LCtp .dropdown-menu,
.cid-tPaSE4LCtp .navbar.opened {
  background: #f5f5f5 !important;
}
.cid-tPaSE4LCtp .nav-item:focus,
.cid-tPaSE4LCtp .nav-link:focus {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item {
  transition: all 0.25s ease-in-out;
  width: auto;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPaSE4LCtp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPaSE4LCtp .navbar {
  border-bottom: 1px solid #e43f3f;
  min-height: 70px;
  transition: all 0.3s;
  z-index: 9999;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.cid-tPaSE4LCtp.opened {
  transition: all 0.3s;
}
.cid-tPaSE4LCtp .navbar-logo img {
  width: auto;
}
.cid-tPaSE4LCtp .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  padding-bottom: 10px;
  padding-top: 10px;
}
.cid-tPaSE4LCtp.collapsed {
  justify-content: center;
}
.cid-tPaSE4LCtp.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPaSE4LCtp.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPaSE4LCtp.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPaSE4LCtp.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPaSE4LCtp.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPaSE4LCtp .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPaSE4LCtp.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPaSE4LCtp .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPaSE4LCtp ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPaSE4LCtp .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPaSE4LCtp .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPaSE4LCtp .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPaSE4LCtp.navbar-short {
  min-height: 60px;
}
.cid-tPaSE4LCtp.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPaSE4LCtp.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPaSE4LCtp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown-item.active,
.cid-tPaSE4LCtp .dropdown-item:active {
  background-color: transparent;
}
.cid-tPaSE4LCtp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f5f5f5;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPaSE4LCtp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPaSE4LCtp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPaSE4LCtp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPaSE4LCtp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #11429b;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPaSE4LCtp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPaSE4LCtp .navbar {
    height: 70px;
  }
  .cid-tPaSE4LCtp .navbar.opened {
    height: auto;
  }
  .cid-tPaSE4LCtp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPaSE4LCtp .bgtop {
  transition: none;
  min-height: 77px;
  background: #f5f5f5;
  background-image: url("../../../assets/images/menubgg.jpeg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.7%;
  padding-bottom: 1.7%;
  padding: auto !important;
}
.cid-tPaSE4LCtp P {
  color: #ffffff;
}
.cid-tPaSE4LCtp .mbr-section-title {
  text-decoration: none;
  color: #ffffff;
}
.cid-tPaSE4LCtp .bouton {
  padding: 9px 14px;
  margin-top: -5px;
  margin-bottom: -5px;
}
@media only screen and (max-width: 600px) {
  .cid-tPaSE4LCtp .bouton {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .cid-tPaSE4LCtp .bouton .dtop-social-icons {
    text-align: center !important;
  }
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .dtop ul li {
    display: inline-block;
    margin: 1px 8px 1px 8px;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
.cid-tPaSE4LCtp .dtop {
  position: relative;
  overflow: hidden;
}
.cid-tPaSE4LCtp .dtop ul li {
  display: inline-block;
  margin-right: 35px;
}
.cid-tPaSE4LCtp .dtop ul li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}
.cid-tPaSE4LCtp .dtop .fas,
.cid-tPaSE4LCtp .dtop .far {
  margin: 0 5px 0 0;
  font-size: 15px;
}
.cid-tPaSE4LCtp .dtop-social-icons {
  text-align: right;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li {
  display: inline-block;
  text-align: center;
  margin: 0 0px;
  padding: 0;
  width: 25px;
  height: 22px;
  transition: .5s;
  cursor: pointer;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li:hover {
  background-color: #e43f3f;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li a .fab {
  padding-top: 4px;
  font-size: 15px;
}
.cid-tPaSE4LCtp ul li {
  list-style: none;
}
.cid-tPaSE4LCtp ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
@media only screen and (max-width: 767px) {
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
.cid-tPaSE4LCtp .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tPaSE4LCtp UL {
  color: #ffffff;
}
.cid-tP7x5CJkr4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tP7x5CJkr4 .carousel-caption {
  padding-top: 3.5rem;
  opacity: 1;
  bottom: 7rem;
  border-radius: 0px 90px 11px 90px;
  padding-left: 45px;
  padding-right: 45px;
  width: 70%;
}
.cid-tP7x5CJkr4 .carousel {
  height: 43.7rem;
}
.cid-tP7x5CJkr4 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tP7x5CJkr4 .carousel-item,
.cid-tP7x5CJkr4 .carousel-inner {
  height: 100%;
}
.cid-tP7x5CJkr4 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tP7x5CJkr4 .carousel-item img {
  object-fit: cover;
}
.cid-tP7x5CJkr4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tP7x5CJkr4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tP7x5CJkr4 .carousel-control:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.cid-tP7x5CJkr4 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tP7x5CJkr4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tP7x5CJkr4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tP7x5CJkr4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tP7x5CJkr4 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tP7x5CJkr4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tP7x5CJkr4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tP7x5CJkr4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tP7x5CJkr4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tP7x5CJkr4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tP7x5CJkr4 .carousel-indicators li.active,
.cid-tP7x5CJkr4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tP7x5CJkr4 .carousel-indicators li::after,
.cid-tP7x5CJkr4 .carousel-indicators li::before {
  content: none;
}
.cid-tP7x5CJkr4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tP7x5CJkr4 .carousel-indicators {
    display: none !important;
  }
}
.cid-tP7x5CJkr4 H5 {
  text-align: left;
  line-height: 1.5;
}
.cid-tP7x5CJkr4 P {
  color: #ffffff;
  text-align: left;
}
.cid-tP7x5CJkr4 .sectionsubtitle {
  color: #ffe161;
  text-align: left;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tP7x5CJkr4 .fadeIn {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tP7x5CJkr4 .fadeInLeft {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tP7x5CJkr4 .fadeInRight {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tP7x5CJkr4 .fadeInDown {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tP7x5CJkr4 .fadeInUp {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px);
    transform: perspective(100px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px);
    transform: perspective(100px);
  }
}
.cid-tP7x5CJkr4 .flipInX {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}
.cid-tP7x5CJkr4 .flipInY {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes fadeDistortion {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-8deg) skewY(-8deg);
    transform: skewX(-8deg) skewY(-8deg);
  }
  25% {
    -webkit-transform: skewX(6deg) skewY(6deg);
    transform: skewX(6deg) skewY(6deg);
  }
  50% {
    -webkit-transform: skewX(-4deg) skewY(-4deg);
    transform: skewX(-4deg) skewY(-4deg);
  }
  75% {
    -webkit-transform: skewX(2deg) skewY(2deg);
    transform: skewX(2deg) skewY(2deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeDistortion {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-8deg) skewY(-8deg);
    transform: skewX(-8deg) skewY(-8deg);
  }
  25% {
    -webkit-transform: skewX(6deg) skewY(6deg);
    transform: skewX(6deg) skewY(6deg);
  }
  50% {
    -webkit-transform: skewX(-4deg) skewY(-4deg);
    transform: skewX(-4deg) skewY(-4deg);
  }
  75% {
    -webkit-transform: skewX(2deg) skewY(2deg);
    transform: skewX(2deg) skewY(2deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tP7x5CJkr4 .fadeDistortion {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation-name: fadeDistortion;
  animation-name: fadeDistortion;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tP7x5CJkr4 .zoomIn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@media only screen and (max-width: 600px) {
  .cid-tP7x5CJkr4 .carousel-caption {
    width: 85%;
    margin-left: -20px;
  }
  .cid-tP7x5CJkr4 .carousel-control {
    top: 50%;
    width: 30px;
    height: 30px;
    font-size: 100%;
    border-radius: 50%;
    transition: all 0.3s;
  }
}
.cid-tPaZkHaLsT {
  padding-top: 3rem;
  padding-bottom: 0.5rem;
  background-color: #ffffff;
}
.cid-tPaZkHaLsT .mbr-section-title {
  text-align: center;
}
.cid-tPaZkHaLsT .mbr-section-text {
  text-align: center;
}
.cid-tPaZkHaLsT a[type="submit"],
.cid-tPaZkHaLsT button[type="submit"] {
  margin-top: 0;
}
.cid-tPaZkHaLsT .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-tPaZkHaLsT mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-tPaZkHaLsT .row .spinner-border,
.cid-tPaZkHaLsT .row .spinner-grow {
  width: 32px;
  color: #e43f3f;
}
.cid-tPaZkHaLsT .gdpr-block {
  display: none;
}
.cid-wy063jvd87 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-wy063jvd87 .hXQgjp {
  background-color: #fafafa;
}
.cid-wy063jvd87 .hXQgjp .content {
  padding: 20px;
}
.cid-wy063jvd87 .fQsatj.align-right {
  justify-content: center;
}
.cid-wy063jvd87 .fQsatj {
  justify-content: flex-start;
  background-color: #ffffff;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 8px 10px;
}
.cid-wy063jvd87 .fQkkzS {
  line-height: normal;
  margin: 16px 0px 24px;
  padding: 0px;
}
.cid-wy063jvd87 .bTIjTR {
  flex: 1 1 0%;
  padding: 32px 50px;
}
.cid-wy063jvd87 P {
  text-align: center;
}
.cid-s9ambnxC2z {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f3f3f3;
}
.cid-s9ambnxC2z .d-st3 {
  position: relative;
}
.cid-s9ambnxC2z .d-st3 .upper-box .title-inner {
  position: relative;
  display: block;
  max-width: 900px;
  width: 100%;
}
.cid-s9ambnxC2z .d-st3 .upper-box .title-inner .sec-title {
  width: 50%;
}
.cid-s9ambnxC2z .d-st3 .upper-box .title-inner .text {
  position: relative;
  padding-left: 30px;
  margin-top: 4px;
  width: 50%;
}
.cid-s9ambnxC2z .d-st3 .upper-box .title-inner .text:before {
  position: absolute;
  content: '';
  background: #ffffff;
  width: 1px;
  height: 75px;
  left: -40px;
  top: 3px;
}
.cid-s9ambnxC2z .sec-title.left.style-three h5 {
  padding-right: 35px;
}
.cid-s9ambnxC2z .d-st3 .upper-box .btn-box {
  position: absolute;
  top: 25px;
  right: 0px;
}
.cid-s9ambnxC2z .d-st3 .upper-box .btn-box .theme-btn i {
  font-size: 12px;
  margin-left: 10px;
}
.cid-s9ambnxC2z .d-st3 .upper-box .btn-box .theme-btn {
  padding: 13px 38px;
}
.cid-s9ambnxC2z .d-st3 .upper-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
}
.cid-s9ambnxC2z .dahoservice .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 30px;
  transition: all 500ms ease;
}
.cid-s9ambnxC2z .dahoservice .inner-box:hover {
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.cid-s9ambnxC2z .dahoservice .inner-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transform: scale(0, 0);
  transition: all 500ms ease;
  background: #da2c46;
}
.cid-s9ambnxC2z .dahoservice .inner-box:hover:before {
  transform: scale(1, 1);
}
.cid-s9ambnxC2z .dahoservice .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}
.cid-s9ambnxC2z .dahoservice .inner-box .image-box img {
  width: 100%;
}
.cid-s9ambnxC2z .dahoservice .inner-box .image-box .overlay-box-1 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  z-index: 1;
  transition: all 500ms ease;
  background: #da2c46;
}
.cid-s9ambnxC2z .dahoservice .inner-box .image-box .overlay-box-2 {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  z-index: 1;
  transition: all 500ms ease;
  background: #da2c46;
}
.cid-s9ambnxC2z .dahoservice .inner-box:hover .image-box .overlay-box-1,
.cid-s9ambnxC2z .dahoservice .inner-box:hover .image-box .overlay-box-2 {
  width: 50%;
}
.cid-s9ambnxC2z .dahoservice .inner-box .image-box a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}
.cid-s9ambnxC2z .dahoservice .inner-box:hover .image-box a {
  opacity: 1;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content {
  position: relative;
  padding: 37px 25px 38px 25px;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content h3 {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content h3 a {
  display: inline-block;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content h3 a:hover {
  color: #da2c46;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content p {
  margin-bottom: 29px;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content .link {
  position: relative;
  display: block;
  padding-top: 16px;
  border-top: 1px solid #da2c46;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content .link a {
  position: relative;
  display: inline-block;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content .link a span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  border-bottom: 1px solid #222;
  transition: all 500ms ease;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content .link a:hover span {
  color: #da2c46;
  border-color: #da2c46;
}
.cid-s9ambnxC2z .dahoservice .inner-box .lower-content .link a i {
  font-size: 12px;
  margin-right: 10px;
  color: #da2c46;
}
.cid-s9ambnxC2z .d-st3 .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 15px;
}
.cid-s9ambnxC2z .d-st3 .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  background: #dddddd;
  width: 20px;
  height: 4px;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}
.cid-s9ambnxC2z .d-st3 .owl-theme .owl-dots .owl-dot.active span,
.cid-s9ambnxC2z .d-st3 .owl-theme .owl-dots .owl-dot span:hover {
  background: #da2c46;
}
.cid-s9ambnxC2z P {
  line-height: 30px;
  color: #353535;
  text-align: left;
}
.cid-s9ambnxC2z .pstyle {
  text-align: center;
}
.cid-s9ambnxC2z H3 {
  text-align: left;
  color: #232323;
}
.cid-tP7EsufLjh {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tP7EsufLjh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP7EsufLjh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tP7EsufLjh .container {
    max-width: 1200px;
  }
}
.cid-tP7EsufLjh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tP7EsufLjh .card-wrapper {
  margin-top: 3rem;
}
.cid-tP7EsufLjh .row {
  justify-content: center;
}
.cid-tP7EsufLjh .card-text {
  color: #340101;
}
.cid-tP7EsufLjh .card-title,
.cid-tP7EsufLjh .iconfont-wrapper {
  color: #000000;
}
.cid-tP7TaLwkkm {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #161616;
}
.cid-tP7TaLwkkm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP7TaLwkkm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP7TaLwkkm .row {
  flex-direction: row-reverse;
}
.cid-tP7TaLwkkm .video-wrapper iframe {
  width: 100%;
}
.cid-tP7TaLwkkm .mbr-section-title,
.cid-tP7TaLwkkm .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tP7TaLwkkm .text-wrapper {
    padding: 2rem;
  }
}
.cid-tP7TaLwkkm .mbr-section-title {
  text-align: left;
}
.cid-tP7TaLwkkm .mbr-text {
  color: #ffffff;
}
.cid-tP7TaLwkkm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-EcF5TMfpzx {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-EcF5TMfpzx .delt.deb .eib {
  border-width: 3px;
  border-style: solid;
  border-color: #ffffff;
}
.cid-EcF5TMfpzx .delt.deb:hover .eib {
  border-color: #000000;
}
.cid-EcF5TMfpzx .delt.deb .ibox .header img {
  opacity: 1;
}
.cid-EcF5TMfpzx .delt.deb .ibox:hover .header img {
  opacity: 1;
  transform: scale(1.1);
}
.cid-EcF5TMfpzx .delt.deb .ibox .box {
  background-color: #fafafa;
  padding: 41px 40px 20px 0;
}
.cid-EcF5TMfpzx .delt.deb .ibox .content :is(.content,
.content a ) {
  font-size: 23px;
  line-height: 26px;
  letter-spacing: -0.1px;
}
.cid-EcF5TMfpzx .delt.deb .ibox .style-content {
  font-size: 16px;
}
.cid-EcF5TMfpzx .delt.deb .ibox .btn {
  padding: 12px 30px;
  font-size: 15px;
  line-height: 24px;
  border-style: solid;
  border-width: 2px;
}
.cid-EcF5TMfpzx .delt.deb:hover .btn {
  background-color: #000000 !important;
}
.cid-EcF5TMfpzx .delt.deb.ibox .content h3:hover .title {
  color: #000000 !important;
}
.cid-EcF5TMfpzx .delt.deb .ibox .content h3:hover a {
  color: #000000;
}
.cid-EcF5TMfpzx .delt.deb .ibox .content h3:hover {
  color: #000000;
}
.cid-EcF5TMfpzx .delt.deb .ibox .btn:hover {
  background-color: #000000 !important;
  box-shadow: 0 10px 30px 0 rgba(255, 144, 65, 0.32);
  stroke: #fff;
  fill: #ffffff;
  border-color: #000000 !important;
}
.cid-EcF5TMfpzx .delt.deb:hover .e-c {
  box-shadow: -30px 30px 60px 0 rgba(0, 0, 0, 0.18);
}
@media (max-width: 1024px) {
  .cid-EcF5TMfpzx .deb .ibox .box {
    padding: 31px 20px 30px 0px;
  }
  .cid-EcF5TMfpzx .delt.deb .ibox .box {
    padding: 31px 20px 30px 0;
  }
}
@media (max-width: 767px) {
  .cid-EcF5TMfpzx .delt.deb .ibox .box {
    padding: 31px 30px 30px 0;
  }
}
.cid-EcF5TMfpzx .ewc .ibox .content .content {
  font-size: 18px;
  margin-bottom: 20px;
  display: block;
}
.cid-EcF5TMfpzx .ewc .content {
  font-size: 23px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  margin-top: 0;
}
.cid-EcF5TMfpzx .ewc .ibox .efoot {
  line-height: 1;
  margin-top: 20px;
}
.cid-EcF5TMfpzx .ewc .ibox .header img {
  display: block;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cid-EcF5TMfpzx .ewc .img-left img {
  margin-right: auto;
}
.cid-EcF5TMfpzx .ewc img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  max-width: 100%;
}
.cid-EcF5TMfpzx .ewc .ibox .header {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.cid-EcF5TMfpzx .ibox.side:not(.text-right) .eib {
  border-right-width: 0 !important;
}
.cid-EcF5TMfpzx .ibox.side .eib {
  padding-left: 40px;
  padding-right: 40px;
  border-style: solid;
  border-color: #ffe161;
  border-top-width: 0 !important;
  border-bottom-width: 0 !important;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.cid-EcF5TMfpzx .ewc .ibox.side .box .efoot {
  padding-left: 40px;
  padding-right: 40px;
}
.cid-EcF5TMfpzx H3 {
  color: #e43f3f;
  text-align: left;
}
.cid-EcF5TMfpzx DIV {
  text-align: left;
}
.cid-tPb4q98YwH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tPb4q98YwH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb4q98YwH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb4q98YwH .mbr-text,
.cid-tPb4q98YwH .mbr-section-btn {
  color: #232323;
}
.cid-tPb4q98YwH .card-title,
.cid-tPb4q98YwH .card-box {
  color: #ffffff;
}
.cid-tPb4q98YwH .mbr-text,
.cid-tPb4q98YwH .link-wrap {
  color: #ffffff;
}
.cid-tPb4q98YwH .card-box .mbr-text,
.cid-tPb4q98YwH .mbr-section-btn {
  color: #ffffff;
}
.cid-tP84tp5LJf {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tP84tp5LJf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP84tp5LJf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP84tp5LJf .item {
  padding-bottom: 2rem;
}
.cid-tP84tp5LJf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tP84tp5LJf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tP84tp5LJf .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tP84tp5LJf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tP84tp5LJf .carousel-control,
.cid-tP84tp5LJf .close {
  background: #1b1b1b;
}
.cid-tP84tp5LJf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tP84tp5LJf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tP84tp5LJf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tP84tp5LJf .carousel-control-next span {
  margin-left: 5px;
}
.cid-tP84tp5LJf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tP84tp5LJf .close::before {
  content: '\e91a';
}
.cid-tP84tp5LJf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tP84tp5LJf .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tP84tp5LJf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tP84tp5LJf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tP84tp5LJf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tP84tp5LJf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tP84tp5LJf .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tP84tp5LJf .carousel-indicators li.active,
.cid-tP84tp5LJf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tP84tp5LJf .carousel-indicators li::after,
.cid-tP84tp5LJf .carousel-indicators li::before {
  content: none;
}
.cid-tP84tp5LJf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tP84tp5LJf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tP84tp5LJf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tP84tp5LJf .carousel-indicators {
    display: none;
  }
}
.cid-tP84tp5LJf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tP84tp5LJf .carousel-inner > .active {
  display: block;
}
.cid-tP84tp5LJf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tP84tp5LJf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tP84tp5LJf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tP84tp5LJf .carousel-control,
  .cid-tP84tp5LJf .carousel-indicators,
  .cid-tP84tp5LJf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tP84tp5LJf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tP84tp5LJf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tP84tp5LJf .carousel-indicators .active,
.cid-tP84tp5LJf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tP84tp5LJf .carousel-indicators .active {
  background: #fff;
}
.cid-tP84tp5LJf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tP84tp5LJf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tP84tp5LJf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tP84tp5LJf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tP84tp5LJf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tP84tp5LJf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tP84tp5LJf .carousel {
  width: 100%;
}
.cid-tP84tp5LJf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tP84tp5LJf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tP84tp5LJf .modal.fade .modal-dialog,
.cid-tP84tp5LJf .modal.in .modal-dialog {
  transform: none;
}
.cid-tP84tp5LJf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tP84tp5LJf H6 {
  text-align: center;
}
.cid-tP84tp5LJf H3 {
  color: #ffffff;
}
.cid-tPb5xRaxQI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tPb5xRaxQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb5xRaxQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb5xRaxQI .mbr-text,
.cid-tPb5xRaxQI .mbr-section-btn {
  color: #232323;
}
.cid-tPb5xRaxQI .card-title,
.cid-tPb5xRaxQI .card-box {
  color: #000000;
}
.cid-tPb5xRaxQI .mbr-text,
.cid-tPb5xRaxQI .link-wrap {
  color: #ffffff;
}
.cid-tPb5xRaxQI .card-box .mbr-text,
.cid-tPb5xRaxQI .mbr-section-btn {
  color: #e43f3f;
}
.cid-tPd2Rupijo {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #ffffff;
}
.cid-tPd2Rupijo hr {
  border: 0;
  clear: both;
  display: block;
  margin: 0.4rem auto;
  text-align: center;
  width: 6%;
}
.cid-tPd2Rupijo .progress {
  background: #e43f3f;
  opacity: 0.2;
  height: 2px;
  overflow: hidden;
  position: relative;
}
.cid-tPd2Rupijo .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #e43f3f;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 177px;
  }
  to {
    margin-left: 100%;
    width: 177px;
  }
}
.cid-tPb26Jhh3x {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tPb26Jhh3x img {
  width: 150px;
  margin: auto;
}
.cid-tPb26Jhh3x .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.95;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tPb26Jhh3x .card {
    max-width: 20.5%;
  }
}
.cid-tPjatTaWCZ {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #e9e9e9;
}
.cid-tPjatTaWCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPjatTaWCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPjatTaWCZ .google-map {
  height: 350px;
  position: relative;
}
.cid-tPjatTaWCZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tPjatTaWCZ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  margin-bottom: 70px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tPjatTaWCZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tPjatTaWCZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tPjatTaWCZ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
  padding: 20px;
}
.cid-tPjaybcWK5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tPjaybcWK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPjaybcWK5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPjaybcWK5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tPjaybcWK5 .row {
    text-align: center;
  }
  .cid-tPjaybcWK5 .row > div {
    margin: auto;
  }
  .cid-tPjaybcWK5 .social-row {
    justify-content: center;
  }
}
.cid-tPjaybcWK5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPjaybcWK5 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 0rem;
  }
}
.cid-tPjaybcWK5 .mbr-text {
  color: #bbbbbb;
}
.cid-tPjaybcWK5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPjaybcWK5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPjaybcWK5 .copyright {
  text-align: center;
}
.cid-tPaSE4LCtp .navbar-dropdown {
  position: relative !important;
  padding: 0 0;
}
.cid-tPaSE4LCtp .dropdown-item:before {
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-menu {
  padding: 0;
  border-radius: 0px !important;
  width: auto !important;
  padding-bottom: 10px !important;
  transition: all 0.3s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-item {
  border-top: 1px solid #DBEEFD !important;
  border-bottom: 1px solid #e43f3f;
  padding: 0.5rem 1.8rem;
}
.cid-tPaSE4LCtp .dropdown-item:hover,
.cid-tPaSE4LCtp .dropdown-item:focus {
  background: #f5f5f5 !important;
  color: #e43f3f !important;
  padding-top: 10px !important;
  border-radius: 0 !important;
}
.cid-tPaSE4LCtp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPaSE4LCtp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPaSE4LCtp .nav-dropdown .link {
  padding: 0 0.4em !important;
  margin: 0.667em 1em !important;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPaSE4LCtp .nav-link {
  position: relative;
}
.cid-tPaSE4LCtp .container {
  display: flex;
  margin: auto;
}
.cid-tPaSE4LCtp .dropdown-menu,
.cid-tPaSE4LCtp .navbar.opened {
  background: #f5f5f5 !important;
}
.cid-tPaSE4LCtp .nav-item:focus,
.cid-tPaSE4LCtp .nav-link:focus {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item {
  transition: all 0.25s ease-in-out;
  width: auto;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPaSE4LCtp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPaSE4LCtp .navbar {
  border-bottom: 1px solid #e43f3f;
  min-height: 70px;
  transition: all 0.3s;
  z-index: 9999;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.cid-tPaSE4LCtp.opened {
  transition: all 0.3s;
}
.cid-tPaSE4LCtp .navbar-logo img {
  width: auto;
}
.cid-tPaSE4LCtp .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  padding-bottom: 10px;
  padding-top: 10px;
}
.cid-tPaSE4LCtp.collapsed {
  justify-content: center;
}
.cid-tPaSE4LCtp.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPaSE4LCtp.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPaSE4LCtp.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPaSE4LCtp.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPaSE4LCtp.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPaSE4LCtp .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPaSE4LCtp.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPaSE4LCtp .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPaSE4LCtp ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPaSE4LCtp .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPaSE4LCtp .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPaSE4LCtp .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPaSE4LCtp.navbar-short {
  min-height: 60px;
}
.cid-tPaSE4LCtp.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPaSE4LCtp.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPaSE4LCtp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown-item.active,
.cid-tPaSE4LCtp .dropdown-item:active {
  background-color: transparent;
}
.cid-tPaSE4LCtp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f5f5f5;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPaSE4LCtp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPaSE4LCtp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPaSE4LCtp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPaSE4LCtp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #11429b;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPaSE4LCtp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPaSE4LCtp .navbar {
    height: 70px;
  }
  .cid-tPaSE4LCtp .navbar.opened {
    height: auto;
  }
  .cid-tPaSE4LCtp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPaSE4LCtp .bgtop {
  transition: none;
  min-height: 77px;
  background: #f5f5f5;
  background-image: url("../../../assets/images/menubgg.jpeg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.7%;
  padding-bottom: 1.7%;
  padding: auto !important;
}
.cid-tPaSE4LCtp P {
  color: #ffffff;
}
.cid-tPaSE4LCtp .mbr-section-title {
  text-decoration: none;
  color: #ffffff;
}
.cid-tPaSE4LCtp .bouton {
  padding: 9px 14px;
  margin-top: -5px;
  margin-bottom: -5px;
}
@media only screen and (max-width: 600px) {
  .cid-tPaSE4LCtp .bouton {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .cid-tPaSE4LCtp .bouton .dtop-social-icons {
    text-align: center !important;
  }
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .dtop ul li {
    display: inline-block;
    margin: 1px 8px 1px 8px;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
.cid-tPaSE4LCtp .dtop {
  position: relative;
  overflow: hidden;
}
.cid-tPaSE4LCtp .dtop ul li {
  display: inline-block;
  margin-right: 35px;
}
.cid-tPaSE4LCtp .dtop ul li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}
.cid-tPaSE4LCtp .dtop .fas,
.cid-tPaSE4LCtp .dtop .far {
  margin: 0 5px 0 0;
  font-size: 15px;
}
.cid-tPaSE4LCtp .dtop-social-icons {
  text-align: right;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li {
  display: inline-block;
  text-align: center;
  margin: 0 0px;
  padding: 0;
  width: 25px;
  height: 22px;
  transition: .5s;
  cursor: pointer;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li:hover {
  background-color: #e43f3f;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li a .fab {
  padding-top: 4px;
  font-size: 15px;
}
.cid-tPaSE4LCtp ul li {
  list-style: none;
}
.cid-tPaSE4LCtp ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
@media only screen and (max-width: 767px) {
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
.cid-tPaSE4LCtp .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tPaSE4LCtp UL {
  color: #ffffff;
}
.cid-tQ7ZJWICMf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tQ7ZJWICMf .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tQ7ZJWICMf .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tQ7ZJWICMf .mbr-text {
    text-align: center;
  }
}
.cid-tQ7ZJWICMf .appstore {
  width: 200px;
  height: 60px;
  margin-right: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
}
.cid-tQ7ZJWICMf .android-btn {
  background-color: #232323;
}
.cid-tQ7ZJWICMf .ios-btn {
  background-color: #232323;
}
.cid-tQ7ZJWICMf .mbr-text,
.cid-tQ7ZJWICMf .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-tQ7ZJWICMf H1 {
  color: #000000;
}
.cid-k7RzFLu1uS {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-k7RzFLu1uS .info {
  padding: 35px 25px 35px 20px;
  border-style: solid;
  border-width: 0px 0px 0px 30px;
  border-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px 5px 5px 5px;
  margin-bottom: 10px;
}
.cid-k7RzFLu1uS .color1 {
  background-color: #232323;
}
.cid-k7RzFLu1uS .color1:hover {
  background-color: #ad0707;
}
.cid-k7RzFLu1uS .color2 {
  background-color: #ff0000;
}
.cid-k7RzFLu1uS .color2:hover {
  background-color: #353535;
}
.cid-k7RzFLu1uS .color3 {
  background-color: #1a9655;
}
.cid-k7RzFLu1uS .color3:hover {
  background-color: #167e24;
}
.cid-k7RzFLu1uS .color4 {
  background-color: #e6c63b;
}
.cid-k7RzFLu1uS .color4:hover {
  background-color: #8e7717;
}
.cid-k7RzFLu1uS .title {
  padding: 0px 0px 0px 0px;
}
.cid-k7RzFLu1uS .iconbox {
  display: flex;
  padding-right: 15px;
  padding-top: 10px;
}
.cid-k7RzFLu1uS H3 {
  color: #ffffff;
}
.cid-k7RzFLu1uS P {
  color: #ffffff;
}
.cid-tQPtLZqByW {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-tQPtLZqByW .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tQPtLZqByW .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tQPtLZqByW .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tQPtLZqByW .mbr-text {
    text-align: center;
  }
}
.cid-tQPtLZqByW .appstore {
  width: 200px;
  height: 60px;
  margin-right: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
}
.cid-tQPtLZqByW .android-btn {
  background-color: #232323;
}
.cid-tQPtLZqByW .ios-btn {
  background-color: #232323;
}
.cid-tQPtLZqByW .mbr-text,
.cid-tQPtLZqByW .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-tQPtLZqByW H1 {
  color: #000000;
}
.cid-6kV93lNHyr {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-6kV93lNHyr .dahomy-section .daho-title {
  padding-bottom: 40px;
}
.cid-6kV93lNHyr .dahomy-section .daho-title h2 {
  font-size: large;
  padding-bottom: 0;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-button:not(.collapsed),
.cid-6kV93lNHyr .dahomy-accord .accordion-item:first-of-type .accordion-button {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-item:first-of-type {
  border-radius: 0;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-item {
  margin-bottom: 25px;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-item .accordion-button {
  font-size: 16px;
  font-weight: 600;
  padding: 18px 20px 17px;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-item .accordion-button:hover,
.cid-6kV93lNHyr .dahomy-accord .accordion-item .accordion-button:focus {
  outline: none;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-item .accordion-button:not(.collapsed) {
  color: #ea1e00;
  background-color: transparent;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-button::after {
  right: 15px;
  color: #003440;
  content: "+";
  font-weight: 900;
  font-size: 20px;
  position: absolute;
  background-image: none;
  font-family: FontAwesome;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-button:not(.collapsed)::after {
  content: "+";
  color: #ea1e00;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-body {
  padding-top: 5px;
}
.cid-6kV93lNHyr .dahomy-accord .accordion-button:focus {
  border: none;
}
.cid-6kV93lNHyr .ft-why-choose-content-2 {
  padding-left: 5px;
}
@keyframes icon-bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
.cid-6kV93lNHyr .dahomy-feature {
  padding: 25px 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #232323;
  -webkit-box-shadow: 1.91px 10.833px 50px 0px rgba(38, 38, 38, 0.15);
  box-shadow: 1.91px 10.833px 50px 0px rgba(38, 38, 38, 0.15);
}
.cid-6kV93lNHyr .dahomy-feature .content-icon {
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  padding-bottom: 2%;
}
.cid-6kV93lNHyr .dahomy-feature .content-icon i {
  font-size: 25px;
  color: #ea1e00;
}
.cid-6kV93lNHyr .dahomy-feature .content-text h3 {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
}
.cid-6kV93lNHyr .dahomy-feature:hover .content-icon {
  -webkit-animation: icon-bounce 0.8s ease-out infinite;
  animation: icon-bounce 0.8s ease-out infinite;
}
.cid-6kV93lNHyr .accordion-header button {
  font-size: 20px;
  font-weight: 700;
  color: #14132B;
}
.cid-6kV93lNHyr .accordion-body {
  padding: 0px 30px 30px;
  background-color: #fafafa;
  color: #353535;
}
.cid-6kV93lNHyr .accordion-header span {
  width: 48px;
  height: 48px;
  margin-right: 20px;
  border-radius: 100%;
  background-color: #ffffff;
  background: linear-gradient(99.89deg, rgba(76, 64, 247, 0.05) 0%, rgba(255, 0, 161, 0.05) 106.22%);
}
.cid-6kV93lNHyr .accordion-header span i {
  line-height: 0.5;
  font-size: 25px;
  color: #ea1e00;
}
.cid-6kV93lNHyr .accordion-button:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.cid-6kV93lNHyr .accordion-item {
  border: none;
  margin-bottom: 25px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 16px 50px 0px #97979733;
  box-shadow: 0px 16px 50px 0px #97979733;
}
.cid-6kV93lNHyr .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}
.cid-6kV93lNHyr .accordion-button::after {
  right: 15px;
  height: auto;
  width: auto;
  font-size: 15px;
  content: "";
  font-weight: 900;
  position: absolute;
  background-image: none;
}
.cid-6kV93lNHyr .accordion-button:not(.collapsed)::after {
  content: "+";
}
.cid-6kV93lNHyr .accordion-button {
  background-color: #ffffff;
}
.cid-6kV93lNHyr DIV {
  color: #0d1093;
}
.cid-6kV93lNHyr H2 {
  color: #ffffff;
}
.cid-6kV93lNHyr .title {
  color: #000000;
  text-align: center;
}
.cid-6kV93lNHyr .title2 {
  color: #ff0000;
  text-align: center;
}
.cid-6kV93lNHyr .subtitle2 {
  color: #0d1093;
}
.cid-6kV93lNHyr H3 {
  color: #ffffff;
}
.cid-6kV93lNHyr P {
  color: #ffffff;
}
.cid-epks5rGSyW {
  padding-top: 60px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #fafafa, #ffffff);
}
.cid-epks5rGSyW p {
  color: #767676;
}
.cid-epks5rGSyW .fondcolor {
  margin-top: 0px;
  border-radius: 0px;
  border: 0px solid #1d1b1b;
  background: #232323;
}
.cid-epks5rGSyW .card {
  border-radius: 0px;
  margin-bottom: 9px;
}
.cid-epks5rGSyW .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-epks5rGSyW .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-epks5rGSyW .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-epks5rGSyW .card .card-header a.panel-title h4 {
  padding: 0.3rem 2rem;
  border: 0px solid #1d1b1b;
  margin-bottom: 0;
  border-radius: 0px;
  background-color: #ff0000;
  display: -webkit-flex;
}
.cid-epks5rGSyW .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-epks5rGSyW H2 {
  color: #000000;
}
.cid-epks5rGSyW .panel-text {
  color: #ffffff;
}
.cid-epks5rGSyW .mbr-section-subtitle {
  color: #1d1b1b;
}
.cid-epks5rGSyW .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-epks5rGSyW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-epks5rGSyW .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-epks5rGSyW H4 {
  color: #ffffff;
}
.cid-tQ7VG7R5wA {
  padding-top: 0px;
  padding-bottom: 60px;
  position: relative;
  background: linear-gradient(0deg, #fafafa, #fafafa);
}
.cid-tQ7VG7R5wA p {
  color: #767676;
}
.cid-tQ7VG7R5wA .fondcolor {
  margin-top: 0px;
  border-radius: 0px;
  border: 0px solid #232323;
  background: #232323;
}
.cid-tQ7VG7R5wA .card {
  border-radius: 0px;
  margin-bottom: 9px;
}
.cid-tQ7VG7R5wA .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tQ7VG7R5wA .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tQ7VG7R5wA .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tQ7VG7R5wA .card .card-header a.panel-title h4 {
  padding: 0.2rem 2rem;
  border: 0px solid #232323;
  margin-bottom: 0;
  border-radius: 0px;
  background-color: #ff0000;
  display: -webkit-flex;
}
.cid-tQ7VG7R5wA .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-tQ7VG7R5wA H2 {
  color: #ffffff;
}
.cid-tQ7VG7R5wA .panel-text {
  color: #ffffff;
}
.cid-tQ7VG7R5wA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQ7VG7R5wA .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-tQ7VG7R5wA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tQ7VG7R5wA .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tQ7VG7R5wA H4 {
  color: #ffffff;
}
.cid-tQ9wZTKH5O {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #1d1b1b;
}
.cid-tQ9wZTKH5O .team {
  position: relative;
  width: 100%;
}
.cid-tQ9wZTKH5O .team .team-item {
  position: relative;
  margin-bottom: 30px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-tQ9wZTKH5O .team .team-img {
  position: relative;
  overflow: hidden;
}
.cid-tQ9wZTKH5O .team .team-img img {
  position: relative;
  width: 100%;
}
.cid-tQ9wZTKH5O .team .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}
.cid-tQ9wZTKH5O .team .team-social a {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 16px;
  background: #343148;
  opacity: 0;
}
.cid-tQ9wZTKH5O .team .team-social a:hover {
  color: #343148;
  background: #F7CAC9;
}
.cid-tQ9wZTKH5O .team .team-item:hover .team-social {
  background: rgba(255, 255, 255, 0.5);
}
.cid-tQ9wZTKH5O .team .team-item:hover .team-social a:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0s;
}
.cid-tQ9wZTKH5O .team .team-item:hover .team-social a:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}
.cid-tQ9wZTKH5O .team .team-item:hover .team-social a:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .2s;
}
.cid-tQ9wZTKH5O .team .team-item:hover .team-social a:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .3s;
}
.cid-tQ9wZTKH5O .team .team-text {
  position: relative;
  padding: 25px 15px 10px 15px;
  text-align: center;
  background: #ffffff;
}
.cid-tQ9wZTKH5O .team .team-text h2 {
  font-size: 18px;
  font-weight: 600;
}
.cid-tQ9wZTKH5O .team .team-text p {
  margin: 0;
}
.cid-tQ9wZTKH5O .mbr-auth4 {
  color: #1b1717;
}
.cid-tQ9wZTKH5O .mbr-title4 {
  color: #ff0000;
}
.cid-tQ9wZTKH5O .mbr-subtitle4 {
  color: #ffffff;
}
.cid-ZRBQ13tSOQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ZRBQ13tSOQ .mbr-section-subtitle {
  color: #767676;
}
.cid-ZRBQ13tSOQ .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ZRBQ13tSOQ .mbr-text {
  color: #767676;
}
.cid-ZRBQ13tSOQ .mbr-author-desc {
  display: block;
  color: #000000;
}
.cid-ZRBQ13tSOQ .mbr-author-name {
  color: #000000;
}
.cid-ZRBQ13tSOQ .list > li {
  display: flex;
}
.cid-ZRBQ13tSOQ .mbr-testimonial .panel-item {
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 3px #ffffff;
}
.cid-ZRBQ13tSOQ .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-ZRBQ13tSOQ .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 180px;
  height: 180px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-ZRBQ13tSOQ .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-ZRBQ13tSOQ .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-ZRBQ13tSOQ .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-essUY4vrJx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-essUY4vrJx .feature43 {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}
.cid-essUY4vrJx .feature43:hover {
  background: #ff0000;
  border-radius: 25px;
  box-shadow: 0 1rem 3rem #ff0000;
}
.cid-essUY4vrJx .feature43:hover .feature43-image {
  color: #ffffff !important;
  transform: scale(0.75);
}
.cid-essUY4vrJx .feature43-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
  max-width: 96px;
  max-height: 96px;
}
.cid-essUY4vrJx .feature43:hover .feature43-text {
  color: #ffffff !important;
  margin-top: 0;
}
.cid-essUY4vrJx .feature43-text {
  margin-top: 20px;
  transition: all 0.5s;
}
.cid-essUY4vrJx img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1600px) {
  .cid-essUY4vrJx .feature43 {
    min-height: inherit;
  }
}
.cid-essUY4vrJx P {
  color: #1d1b1b;
}
.cid-tPjaybcWK5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tPjaybcWK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPjaybcWK5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPjaybcWK5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tPjaybcWK5 .row {
    text-align: center;
  }
  .cid-tPjaybcWK5 .row > div {
    margin: auto;
  }
  .cid-tPjaybcWK5 .social-row {
    justify-content: center;
  }
}
.cid-tPjaybcWK5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPjaybcWK5 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 0rem;
  }
}
.cid-tPjaybcWK5 .mbr-text {
  color: #bbbbbb;
}
.cid-tPjaybcWK5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPjaybcWK5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPjaybcWK5 .copyright {
  text-align: center;
}
.cid-tPaSE4LCtp .navbar-dropdown {
  position: relative !important;
  padding: 0 0;
}
.cid-tPaSE4LCtp .dropdown-item:before {
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-menu {
  padding: 0;
  border-radius: 0px !important;
  width: auto !important;
  padding-bottom: 10px !important;
  transition: all 0.3s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-item {
  border-top: 1px solid #DBEEFD !important;
  border-bottom: 1px solid #e43f3f;
  padding: 0.5rem 1.8rem;
}
.cid-tPaSE4LCtp .dropdown-item:hover,
.cid-tPaSE4LCtp .dropdown-item:focus {
  background: #f5f5f5 !important;
  color: #e43f3f !important;
  padding-top: 10px !important;
  border-radius: 0 !important;
}
.cid-tPaSE4LCtp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPaSE4LCtp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPaSE4LCtp .nav-dropdown .link {
  padding: 0 0.4em !important;
  margin: 0.667em 1em !important;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPaSE4LCtp .nav-link {
  position: relative;
}
.cid-tPaSE4LCtp .container {
  display: flex;
  margin: auto;
}
.cid-tPaSE4LCtp .dropdown-menu,
.cid-tPaSE4LCtp .navbar.opened {
  background: #f5f5f5 !important;
}
.cid-tPaSE4LCtp .nav-item:focus,
.cid-tPaSE4LCtp .nav-link:focus {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item {
  transition: all 0.25s ease-in-out;
  width: auto;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPaSE4LCtp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPaSE4LCtp .navbar {
  border-bottom: 1px solid #e43f3f;
  min-height: 70px;
  transition: all 0.3s;
  z-index: 9999;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.cid-tPaSE4LCtp.opened {
  transition: all 0.3s;
}
.cid-tPaSE4LCtp .navbar-logo img {
  width: auto;
}
.cid-tPaSE4LCtp .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  padding-bottom: 10px;
  padding-top: 10px;
}
.cid-tPaSE4LCtp.collapsed {
  justify-content: center;
}
.cid-tPaSE4LCtp.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPaSE4LCtp.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPaSE4LCtp.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPaSE4LCtp.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPaSE4LCtp.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPaSE4LCtp .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPaSE4LCtp.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPaSE4LCtp .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPaSE4LCtp ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPaSE4LCtp .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPaSE4LCtp .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPaSE4LCtp .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPaSE4LCtp.navbar-short {
  min-height: 60px;
}
.cid-tPaSE4LCtp.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPaSE4LCtp.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPaSE4LCtp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown-item.active,
.cid-tPaSE4LCtp .dropdown-item:active {
  background-color: transparent;
}
.cid-tPaSE4LCtp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f5f5f5;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPaSE4LCtp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPaSE4LCtp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPaSE4LCtp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPaSE4LCtp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #11429b;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPaSE4LCtp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPaSE4LCtp .navbar {
    height: 70px;
  }
  .cid-tPaSE4LCtp .navbar.opened {
    height: auto;
  }
  .cid-tPaSE4LCtp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPaSE4LCtp .bgtop {
  transition: none;
  min-height: 77px;
  background: #f5f5f5;
  background-image: url("../../../assets/images/menubgg.jpeg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.7%;
  padding-bottom: 1.7%;
  padding: auto !important;
}
.cid-tPaSE4LCtp P {
  color: #ffffff;
}
.cid-tPaSE4LCtp .mbr-section-title {
  text-decoration: none;
  color: #ffffff;
}
.cid-tPaSE4LCtp .bouton {
  padding: 9px 14px;
  margin-top: -5px;
  margin-bottom: -5px;
}
@media only screen and (max-width: 600px) {
  .cid-tPaSE4LCtp .bouton {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .cid-tPaSE4LCtp .bouton .dtop-social-icons {
    text-align: center !important;
  }
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .dtop ul li {
    display: inline-block;
    margin: 1px 8px 1px 8px;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
.cid-tPaSE4LCtp .dtop {
  position: relative;
  overflow: hidden;
}
.cid-tPaSE4LCtp .dtop ul li {
  display: inline-block;
  margin-right: 35px;
}
.cid-tPaSE4LCtp .dtop ul li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}
.cid-tPaSE4LCtp .dtop .fas,
.cid-tPaSE4LCtp .dtop .far {
  margin: 0 5px 0 0;
  font-size: 15px;
}
.cid-tPaSE4LCtp .dtop-social-icons {
  text-align: right;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li {
  display: inline-block;
  text-align: center;
  margin: 0 0px;
  padding: 0;
  width: 25px;
  height: 22px;
  transition: .5s;
  cursor: pointer;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li:hover {
  background-color: #e43f3f;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li a .fab {
  padding-top: 4px;
  font-size: 15px;
}
.cid-tPaSE4LCtp ul li {
  list-style: none;
}
.cid-tPaSE4LCtp ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
@media only screen and (max-width: 767px) {
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
.cid-tPaSE4LCtp .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tPaSE4LCtp UL {
  color: #ffffff;
}
.cid-IaCL7dbrgk {
  padding-top: 105px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-IaCL7dbrgk .panel-body {
  background-color: #232323;
}
.cid-IaCL7dbrgk .stp {
  color: #232323;
}
.cid-IaCL7dbrgk .card {
  border-radius: 0px;
  margin-bottom: 0px;
}
.cid-IaCL7dbrgk .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-IaCL7dbrgk .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-IaCL7dbrgk .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-IaCL7dbrgk .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  border-radius: 0px;
  margin-bottom: 0;
  background-color: #ff0000;
}
.cid-IaCL7dbrgk .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-IaCL7dbrgk .card .panel-body {
  color: #767676;
  border-radius: 0px;
}
.cid-IaCL7dbrgk H4 {
  color: #ffffff;
  text-align: left;
}
.cid-IaCL7dbrgk H2 {
  color: #ff0000;
  text-align: center;
}
.cid-IaCL7dbrgk .panel-text {
  color: #ffffff;
  text-align: left;
}
.cid-IaCL7dbrgk .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0px;
}
.cid-IaCL7dbrgk H5 {
  color: #000000;
}
.cid-IaCL7dbrgk H1 {
  color: #000000;
}
.cid-tPjaybcWK5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tPjaybcWK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPjaybcWK5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPjaybcWK5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tPjaybcWK5 .row {
    text-align: center;
  }
  .cid-tPjaybcWK5 .row > div {
    margin: auto;
  }
  .cid-tPjaybcWK5 .social-row {
    justify-content: center;
  }
}
.cid-tPjaybcWK5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPjaybcWK5 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 0rem;
  }
}
.cid-tPjaybcWK5 .mbr-text {
  color: #bbbbbb;
}
.cid-tPjaybcWK5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPjaybcWK5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPjaybcWK5 .copyright {
  text-align: center;
}
.cid-tPaSE4LCtp .navbar-dropdown {
  position: relative !important;
  padding: 0 0;
}
.cid-tPaSE4LCtp .dropdown-item:before {
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-menu {
  padding: 0;
  border-radius: 0px !important;
  width: auto !important;
  padding-bottom: 10px !important;
  transition: all 0.3s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-item {
  border-top: 1px solid #DBEEFD !important;
  border-bottom: 1px solid #e43f3f;
  padding: 0.5rem 1.8rem;
}
.cid-tPaSE4LCtp .dropdown-item:hover,
.cid-tPaSE4LCtp .dropdown-item:focus {
  background: #f5f5f5 !important;
  color: #e43f3f !important;
  padding-top: 10px !important;
  border-radius: 0 !important;
}
.cid-tPaSE4LCtp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPaSE4LCtp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPaSE4LCtp .nav-dropdown .link {
  padding: 0 0.4em !important;
  margin: 0.667em 1em !important;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPaSE4LCtp .nav-link {
  position: relative;
}
.cid-tPaSE4LCtp .container {
  display: flex;
  margin: auto;
}
.cid-tPaSE4LCtp .dropdown-menu,
.cid-tPaSE4LCtp .navbar.opened {
  background: #f5f5f5 !important;
}
.cid-tPaSE4LCtp .nav-item:focus,
.cid-tPaSE4LCtp .nav-link:focus {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item {
  transition: all 0.25s ease-in-out;
  width: auto;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPaSE4LCtp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPaSE4LCtp .navbar {
  border-bottom: 1px solid #e43f3f;
  min-height: 70px;
  transition: all 0.3s;
  z-index: 9999;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.cid-tPaSE4LCtp.opened {
  transition: all 0.3s;
}
.cid-tPaSE4LCtp .navbar-logo img {
  width: auto;
}
.cid-tPaSE4LCtp .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  padding-bottom: 10px;
  padding-top: 10px;
}
.cid-tPaSE4LCtp.collapsed {
  justify-content: center;
}
.cid-tPaSE4LCtp.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPaSE4LCtp.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPaSE4LCtp.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPaSE4LCtp.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPaSE4LCtp.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPaSE4LCtp .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPaSE4LCtp.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPaSE4LCtp .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPaSE4LCtp ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPaSE4LCtp .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPaSE4LCtp .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPaSE4LCtp .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPaSE4LCtp.navbar-short {
  min-height: 60px;
}
.cid-tPaSE4LCtp.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPaSE4LCtp.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPaSE4LCtp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown-item.active,
.cid-tPaSE4LCtp .dropdown-item:active {
  background-color: transparent;
}
.cid-tPaSE4LCtp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f5f5f5;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPaSE4LCtp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPaSE4LCtp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPaSE4LCtp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPaSE4LCtp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #11429b;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPaSE4LCtp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPaSE4LCtp .navbar {
    height: 70px;
  }
  .cid-tPaSE4LCtp .navbar.opened {
    height: auto;
  }
  .cid-tPaSE4LCtp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPaSE4LCtp .bgtop {
  transition: none;
  min-height: 77px;
  background: #f5f5f5;
  background-image: url("../../../assets/images/menubgg.jpeg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.7%;
  padding-bottom: 1.7%;
  padding: auto !important;
}
.cid-tPaSE4LCtp P {
  color: #ffffff;
}
.cid-tPaSE4LCtp .mbr-section-title {
  text-decoration: none;
  color: #ffffff;
}
.cid-tPaSE4LCtp .bouton {
  padding: 9px 14px;
  margin-top: -5px;
  margin-bottom: -5px;
}
@media only screen and (max-width: 600px) {
  .cid-tPaSE4LCtp .bouton {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .cid-tPaSE4LCtp .bouton .dtop-social-icons {
    text-align: center !important;
  }
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .dtop ul li {
    display: inline-block;
    margin: 1px 8px 1px 8px;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
.cid-tPaSE4LCtp .dtop {
  position: relative;
  overflow: hidden;
}
.cid-tPaSE4LCtp .dtop ul li {
  display: inline-block;
  margin-right: 35px;
}
.cid-tPaSE4LCtp .dtop ul li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}
.cid-tPaSE4LCtp .dtop .fas,
.cid-tPaSE4LCtp .dtop .far {
  margin: 0 5px 0 0;
  font-size: 15px;
}
.cid-tPaSE4LCtp .dtop-social-icons {
  text-align: right;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li {
  display: inline-block;
  text-align: center;
  margin: 0 0px;
  padding: 0;
  width: 25px;
  height: 22px;
  transition: .5s;
  cursor: pointer;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li:hover {
  background-color: #e43f3f;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li a .fab {
  padding-top: 4px;
  font-size: 15px;
}
.cid-tPaSE4LCtp ul li {
  list-style: none;
}
.cid-tPaSE4LCtp ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
@media only screen and (max-width: 767px) {
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
.cid-tPaSE4LCtp .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tPaSE4LCtp UL {
  color: #ffffff;
}
.cid-tPMTP2WRji {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f3f3f3;
}
.cid-tPMTP2WRji .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPMTP2WRji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPMTP2WRji .mbr-text,
.cid-tPMTP2WRji .mbr-section-btn {
  color: #232323;
}
.cid-tPMTP2WRji .card-title,
.cid-tPMTP2WRji .card-box {
  color: #232323;
}
.cid-tPMTP2WRji .mbr-text,
.cid-tPMTP2WRji .link-wrap {
  color: #ffffff;
}
.cid-tPMTP2WRji .card-box .mbr-text,
.cid-tPMTP2WRji .mbr-section-btn {
  color: #232323;
}
.cid-tPMLgYMwwg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f3f3f3;
}
.cid-tPMLgYMwwg .d-st3 {
  position: relative;
}
.cid-tPMLgYMwwg .d-st3 .upper-box .title-inner {
  position: relative;
  display: block;
  max-width: 900px;
  width: 100%;
}
.cid-tPMLgYMwwg .d-st3 .upper-box .title-inner .sec-title {
  width: 50%;
}
.cid-tPMLgYMwwg .d-st3 .upper-box .title-inner .text {
  position: relative;
  padding-left: 30px;
  margin-top: 4px;
  width: 50%;
}
.cid-tPMLgYMwwg .d-st3 .upper-box .title-inner .text:before {
  position: absolute;
  content: '';
  background: #ffffff;
  width: 1px;
  height: 75px;
  left: -40px;
  top: 3px;
}
.cid-tPMLgYMwwg .sec-title.left.style-three h5 {
  padding-right: 35px;
}
.cid-tPMLgYMwwg .d-st3 .upper-box .btn-box {
  position: absolute;
  top: 25px;
  right: 0px;
}
.cid-tPMLgYMwwg .d-st3 .upper-box .btn-box .theme-btn i {
  font-size: 12px;
  margin-left: 10px;
}
.cid-tPMLgYMwwg .d-st3 .upper-box .btn-box .theme-btn {
  padding: 13px 38px;
}
.cid-tPMLgYMwwg .d-st3 .upper-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
}
.cid-tPMLgYMwwg .dahoservice .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 30px;
  transition: all 500ms ease;
}
.cid-tPMLgYMwwg .dahoservice .inner-box:hover {
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.cid-tPMLgYMwwg .dahoservice .inner-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transform: scale(0, 0);
  transition: all 500ms ease;
  background: #da2c46;
}
.cid-tPMLgYMwwg .dahoservice .inner-box:hover:before {
  transform: scale(1, 1);
}
.cid-tPMLgYMwwg .dahoservice .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .image-box img {
  width: 100%;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .image-box .overlay-box-1 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  z-index: 1;
  transition: all 500ms ease;
  background: #da2c46;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .image-box .overlay-box-2 {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  z-index: 1;
  transition: all 500ms ease;
  background: #da2c46;
}
.cid-tPMLgYMwwg .dahoservice .inner-box:hover .image-box .overlay-box-1,
.cid-tPMLgYMwwg .dahoservice .inner-box:hover .image-box .overlay-box-2 {
  width: 50%;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .image-box a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}
.cid-tPMLgYMwwg .dahoservice .inner-box:hover .image-box a {
  opacity: 1;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content {
  position: relative;
  padding: 37px 25px 38px 25px;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content h3 {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content h3 a {
  display: inline-block;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content h3 a:hover {
  color: #da2c46;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content p {
  margin-bottom: 29px;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content .link {
  position: relative;
  display: block;
  padding-top: 16px;
  border-top: 1px solid #da2c46;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content .link a {
  position: relative;
  display: inline-block;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content .link a span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  border-bottom: 1px solid #222;
  transition: all 500ms ease;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content .link a:hover span {
  color: #da2c46;
  border-color: #da2c46;
}
.cid-tPMLgYMwwg .dahoservice .inner-box .lower-content .link a i {
  font-size: 12px;
  margin-right: 10px;
  color: #da2c46;
}
.cid-tPMLgYMwwg .d-st3 .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 15px;
}
.cid-tPMLgYMwwg .d-st3 .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  background: #dddddd;
  width: 20px;
  height: 4px;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}
.cid-tPMLgYMwwg .d-st3 .owl-theme .owl-dots .owl-dot.active span,
.cid-tPMLgYMwwg .d-st3 .owl-theme .owl-dots .owl-dot span:hover {
  background: #da2c46;
}
.cid-tPMLgYMwwg P {
  line-height: 30px;
  color: #353535;
  text-align: left;
}
.cid-tPMLgYMwwg .pstyle {
  text-align: center;
}
.cid-tPMLgYMwwg H3 {
  text-align: left;
  color: #232323;
}
.cid-tPMLyGG3Rj {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f3f3f3;
}
.cid-tPMLyGG3Rj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPMLyGG3Rj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPMLyGG3Rj .mbr-text,
.cid-tPMLyGG3Rj .mbr-section-btn {
  color: #232323;
}
.cid-tPMLyGG3Rj .card-title,
.cid-tPMLyGG3Rj .card-box {
  color: #ffffff;
}
.cid-tPMLyGG3Rj .mbr-text,
.cid-tPMLyGG3Rj .link-wrap {
  color: #ffffff;
}
.cid-tPMRz5WS2T {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tPMRz5WS2T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPMRz5WS2T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPMRz5WS2T .mbr-text,
.cid-tPMRz5WS2T .mbr-section-btn {
  color: #232323;
}
.cid-tPMRz5WS2T .card-title,
.cid-tPMRz5WS2T .card-box {
  color: #232323;
}
.cid-tPMRz5WS2T .mbr-text,
.cid-tPMRz5WS2T .link-wrap {
  color: #ffffff;
}
.cid-pOq28gxmnz {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-pOq28gxmnz .service12 .title-part h1,
.cid-pOq28gxmnz .service12 .title-part span {
  display: inline-block;
  font-size: 11.1em;
  letter-spacing: -5px;
  line-height: 0.9em;
  background: linear-gradient(180deg, #066ae5, #066ae5 38);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.cid-pOq28gxmnz .badge {
  color: #ffffff !important;
}
.cid-pOq28gxmnz ul li {
  display: inline-block;
}
.cid-pOq28gxmnz .service12 .title-part {
  text-align: center;
}
@media (max-width: 991.98px) {
  .cid-pOq28gxmnz .service12 .title-part h1,
  .cid-pOq28gxmnz .service12 .title-part span {
    font-size: 90px;
  }
}
.cid-pOq28gxmnz .service12 .subtitle {
  margin-bottom: 30px;
  text-align: center;
}
.cid-pOq28gxmnz .service12 .subtitle h3 {
  font-family: "Poppins", sans-serif;
  margin-top: -10px;
}
.cid-pOq28gxmnz .dahomy-content .dahomy-col:hover .thumb-container {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
.cid-pOq28gxmnz .dahomy-content .dahomy-col:hover .thumb-title h4::after {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-pOq28gxmnz .dahomy-content .thumb-container {
  position: relative;
  -webkit-box-shadow: 0px 0px 40px #ddd;
  box-shadow: 0px 0px 40px #ddd;
  margin-bottom: 40px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}
.cid-pOq28gxmnz .dahomy-content .thumb-container:before {
  top: 0;
  left: 0;
  width: 100%;
  content: '';
  height: 100%;
  opacity: 0;
  position: absolute;
  background-color: #232323;
  transition: 500ms all ease;
}
.cid-pOq28gxmnz .dahomy-content .thumb-container:hover:before {
  opacity: .7;
}
.cid-pOq28gxmnz .dahomy-content .thumb-container:hover .thumb-btn-group {
  visibility: visible;
  opacity: 1;
  top: 50%;
}
.cid-pOq28gxmnz .dahomy-content .thumb-container img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.cid-pOq28gxmnz .dahomy-content .thumb-container .badge {
  width: 150px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  background-color: #e43f3f;
  position: absolute;
  top: 22px;
  right: -35px;
  text-transform: uppercase;
  border-radius: 0;
  z-index: 99999;
  padding: 0;
  display: inline-block;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-pOq28gxmnz .dahomy-content .thumb-container .thumb-btn-group {
  position: absolute;
  top: 40%;
  left: 0px;
  width: 100%;
  height: auto;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(-50%);
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.cid-pOq28gxmnz .dahomy-content .thumb-container .thumb-btn-group .thumb-btns a {
  padding: 8px 0px;
  width: 156px;
  text-align: center;
  background-color: #e43f3f;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  font-size: 14px;
  border-radius: 30px;
  margin: 0px 5px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.cid-pOq28gxmnz .dahomy-content .thumb-container .thumb-btn-group .thumb-btns a:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  background-color: #e43f3f;
}
.cid-pOq28gxmnz .dahomy-content .thumb-container .thumb-btn-group .thumb-btns a + a {
  margin-left: 15px;
}
.cid-pOq28gxmnz .dahomy-content .thumb-title h4 {
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  font-size: 20px;
}
.cid-pOq28gxmnz .dahomy-content .thumb-title h4:after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 3px;
  border-radius: 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: #e43f3f;
}
.cid-J5Nmyl60gY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-J5Nmyl60gY .cta-section {
  position: relative;
  overflow: hidden;
}
.cid-J5Nmyl60gY .cta-section::before {
  content: "";
  background-color: #e6c63b;
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 200px;
  height: 200px;
}
.cid-J5Nmyl60gY .cta-section::after {
  content: "";
  border: 20px solid #e43f3f;
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: 0;
  left: 0;
  margin: auto;
  width: 150px;
  height: 150px;
}
.cid-J5Nmyl60gY .section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
.cid-J5Nmyl60gY .section-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.cid-J5Nmyl60gY .section-overlay + .container {
  position: relative;
}
@media screen and (max-width: 991px) {
  .cid-J5Nmyl60gY .btn {
    border-radius: 100px;
    padding: 15px 25px;
    margin: auto;
  }
  .cid-J5Nmyl60gY .cta-section::before {
    width: 150px;
    height: 150px;
  }
  .cid-J5Nmyl60gY .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }
  .cid-J5Nmyl60gY .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cid-J5Nmyl60gY .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-J5Nmyl60gY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPN0jrBfwW {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tPN0jrBfwW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPN0jrBfwW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPN0jrBfwW .mbr-text,
.cid-tPN0jrBfwW .mbr-section-btn {
  color: #232323;
}
.cid-tPN0jrBfwW .card-title,
.cid-tPN0jrBfwW .card-box {
  color: #232323;
}
.cid-tPN0jrBfwW .mbr-text,
.cid-tPN0jrBfwW .link-wrap {
  color: #ffffff;
}
.cid-tPN0jrBfwW .card-box .mbr-text,
.cid-tPN0jrBfwW .mbr-section-btn {
  color: #ff0000;
}
.cid-tPN0ngFpv4 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPN0ngFpv4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPN0ngFpv4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPN0ngFpv4 .item {
  padding-bottom: 2rem;
}
.cid-tPN0ngFpv4 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tPN0ngFpv4 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tPN0ngFpv4 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tPN0ngFpv4 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tPN0ngFpv4 .carousel-control,
.cid-tPN0ngFpv4 .close {
  background: #1b1b1b;
}
.cid-tPN0ngFpv4 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tPN0ngFpv4 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tPN0ngFpv4 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tPN0ngFpv4 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tPN0ngFpv4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tPN0ngFpv4 .close::before {
  content: '\e91a';
}
.cid-tPN0ngFpv4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tPN0ngFpv4 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tPN0ngFpv4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tPN0ngFpv4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tPN0ngFpv4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tPN0ngFpv4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tPN0ngFpv4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tPN0ngFpv4 .carousel-indicators li.active,
.cid-tPN0ngFpv4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tPN0ngFpv4 .carousel-indicators li::after,
.cid-tPN0ngFpv4 .carousel-indicators li::before {
  content: none;
}
.cid-tPN0ngFpv4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tPN0ngFpv4 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tPN0ngFpv4 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tPN0ngFpv4 .carousel-indicators {
    display: none;
  }
}
.cid-tPN0ngFpv4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tPN0ngFpv4 .carousel-inner > .active {
  display: block;
}
.cid-tPN0ngFpv4 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tPN0ngFpv4 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tPN0ngFpv4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tPN0ngFpv4 .carousel-control,
  .cid-tPN0ngFpv4 .carousel-indicators,
  .cid-tPN0ngFpv4 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tPN0ngFpv4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tPN0ngFpv4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tPN0ngFpv4 .carousel-indicators .active,
.cid-tPN0ngFpv4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tPN0ngFpv4 .carousel-indicators .active {
  background: #fff;
}
.cid-tPN0ngFpv4 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tPN0ngFpv4 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tPN0ngFpv4 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tPN0ngFpv4 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tPN0ngFpv4 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tPN0ngFpv4 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tPN0ngFpv4 .carousel {
  width: 100%;
}
.cid-tPN0ngFpv4 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tPN0ngFpv4 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tPN0ngFpv4 .modal.fade .modal-dialog,
.cid-tPN0ngFpv4 .modal.in .modal-dialog {
  transform: none;
}
.cid-tPN0ngFpv4 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tPN0ngFpv4 H6 {
  text-align: center;
}
.cid-tPN0ngFpv4 H3 {
  color: #ffffff;
}
.cid-tPjaybcWK5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tPjaybcWK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPjaybcWK5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPjaybcWK5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tPjaybcWK5 .row {
    text-align: center;
  }
  .cid-tPjaybcWK5 .row > div {
    margin: auto;
  }
  .cid-tPjaybcWK5 .social-row {
    justify-content: center;
  }
}
.cid-tPjaybcWK5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPjaybcWK5 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 0rem;
  }
}
.cid-tPjaybcWK5 .mbr-text {
  color: #bbbbbb;
}
.cid-tPjaybcWK5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPjaybcWK5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPjaybcWK5 .copyright {
  text-align: center;
}
.cid-tPaSE4LCtp .navbar-dropdown {
  position: relative !important;
  padding: 0 0;
}
.cid-tPaSE4LCtp .dropdown-item:before {
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-menu {
  padding: 0;
  border-radius: 0px !important;
  width: auto !important;
  padding-bottom: 10px !important;
  transition: all 0.3s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-item {
  border-top: 1px solid #DBEEFD !important;
  border-bottom: 1px solid #e43f3f;
  padding: 0.5rem 1.8rem;
}
.cid-tPaSE4LCtp .dropdown-item:hover,
.cid-tPaSE4LCtp .dropdown-item:focus {
  background: #f5f5f5 !important;
  color: #e43f3f !important;
  padding-top: 10px !important;
  border-radius: 0 !important;
}
.cid-tPaSE4LCtp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPaSE4LCtp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPaSE4LCtp .nav-dropdown .link {
  padding: 0 0.4em !important;
  margin: 0.667em 1em !important;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPaSE4LCtp .nav-link {
  position: relative;
}
.cid-tPaSE4LCtp .container {
  display: flex;
  margin: auto;
}
.cid-tPaSE4LCtp .dropdown-menu,
.cid-tPaSE4LCtp .navbar.opened {
  background: #f5f5f5 !important;
}
.cid-tPaSE4LCtp .nav-item:focus,
.cid-tPaSE4LCtp .nav-link:focus {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item {
  transition: all 0.25s ease-in-out;
  width: auto;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPaSE4LCtp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPaSE4LCtp .navbar {
  border-bottom: 1px solid #e43f3f;
  min-height: 70px;
  transition: all 0.3s;
  z-index: 9999;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.cid-tPaSE4LCtp.opened {
  transition: all 0.3s;
}
.cid-tPaSE4LCtp .navbar-logo img {
  width: auto;
}
.cid-tPaSE4LCtp .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  padding-bottom: 10px;
  padding-top: 10px;
}
.cid-tPaSE4LCtp.collapsed {
  justify-content: center;
}
.cid-tPaSE4LCtp.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPaSE4LCtp.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPaSE4LCtp.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPaSE4LCtp.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPaSE4LCtp.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPaSE4LCtp .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPaSE4LCtp.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPaSE4LCtp .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPaSE4LCtp ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPaSE4LCtp .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPaSE4LCtp .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPaSE4LCtp .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPaSE4LCtp.navbar-short {
  min-height: 60px;
}
.cid-tPaSE4LCtp.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPaSE4LCtp.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPaSE4LCtp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown-item.active,
.cid-tPaSE4LCtp .dropdown-item:active {
  background-color: transparent;
}
.cid-tPaSE4LCtp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f5f5f5;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPaSE4LCtp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPaSE4LCtp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPaSE4LCtp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPaSE4LCtp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #11429b;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPaSE4LCtp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPaSE4LCtp .navbar {
    height: 70px;
  }
  .cid-tPaSE4LCtp .navbar.opened {
    height: auto;
  }
  .cid-tPaSE4LCtp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPaSE4LCtp .bgtop {
  transition: none;
  min-height: 77px;
  background: #f5f5f5;
  background-image: url("../../../assets/images/menubgg.jpeg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.7%;
  padding-bottom: 1.7%;
  padding: auto !important;
}
.cid-tPaSE4LCtp P {
  color: #ffffff;
}
.cid-tPaSE4LCtp .mbr-section-title {
  text-decoration: none;
  color: #ffffff;
}
.cid-tPaSE4LCtp .bouton {
  padding: 9px 14px;
  margin-top: -5px;
  margin-bottom: -5px;
}
@media only screen and (max-width: 600px) {
  .cid-tPaSE4LCtp .bouton {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .cid-tPaSE4LCtp .bouton .dtop-social-icons {
    text-align: center !important;
  }
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .dtop ul li {
    display: inline-block;
    margin: 1px 8px 1px 8px;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
.cid-tPaSE4LCtp .dtop {
  position: relative;
  overflow: hidden;
}
.cid-tPaSE4LCtp .dtop ul li {
  display: inline-block;
  margin-right: 35px;
}
.cid-tPaSE4LCtp .dtop ul li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}
.cid-tPaSE4LCtp .dtop .fas,
.cid-tPaSE4LCtp .dtop .far {
  margin: 0 5px 0 0;
  font-size: 15px;
}
.cid-tPaSE4LCtp .dtop-social-icons {
  text-align: right;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li {
  display: inline-block;
  text-align: center;
  margin: 0 0px;
  padding: 0;
  width: 25px;
  height: 22px;
  transition: .5s;
  cursor: pointer;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li:hover {
  background-color: #e43f3f;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li a .fab {
  padding-top: 4px;
  font-size: 15px;
}
.cid-tPaSE4LCtp ul li {
  list-style: none;
}
.cid-tPaSE4LCtp ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
@media only screen and (max-width: 767px) {
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
.cid-tPaSE4LCtp .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tPaSE4LCtp UL {
  color: #ffffff;
}
.cid-eEVSxJBgJP {
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-eEVSxJBgJP .row .form-wrapper {
    margin-top: 1rem;
  }
}
.cid-eEVSxJBgJP .map-wrapper {
  margin-top: 1rem;
}
.cid-eEVSxJBgJP .form-wrapper {
  margin-top: 0rem;
}
.cid-eEVSxJBgJP .image-wrapper {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
.cid-eEVSxJBgJP .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px !important;
  background: #232323;
}
.cid-eEVSxJBgJP .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-eEVSxJBgJP .card-wrapper {
    padding: 1rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-eEVSxJBgJP .card-wrapper {
    padding: 1rem 1rem;
  }
}
.cid-eEVSxJBgJP .mbr-iconfont {
  font-size: 2rem;
  padding-right: 2rem;
  color: #6592e6;
}
.cid-eEVSxJBgJP .google-map {
  height: 20rem;
  position: relative;
}
.cid-eEVSxJBgJP .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 10px !important;
}
.cid-eEVSxJBgJP .google-map [data-state-details] {
  color: #ff0000;
  height: 1em;
  margin-top: 1em;
  padding-left: 1rem;
  padding-right: 1rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-eEVSxJBgJP .google-map[data-state] {
  background: #ffb300;
}
.cid-eEVSxJBgJP .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-eEVSxJBgJP .showAlerts {
  display: block !important;
}
.cid-eEVSxJBgJP .rowflexrev {
  display: -webkit-flex;
}
.cid-eEVSxJBgJP .ws-form-alerts {
  margin-top: 1rem;
}
.cid-eEVSxJBgJP .title {
  margin-bottom: 2rem;
}
.cid-eEVSxJBgJP .mbr-section-subtitle {
  color: #232323;
}
.cid-eEVSxJBgJP textarea.form-control {
  min-height: 188px;
}
.cid-eEVSxJBgJP LABEL {
  color: #232323;
  display: initial;
}
.cid-eEVSxJBgJP .mbr-section-terms {
  text-align: center;
  color: #000000;
  margin-bottom: 0px;
}
.cid-eEVSxJBgJP .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-eEVSxJBgJP .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-eEVSxJBgJP .mbr-section-gdpr {
  text-align: center;
  color: #fafafa;
  margin-bottom: 0px;
}
.cid-eEVSxJBgJP .alert {
  margin-bottom: 0;
}
.cid-eEVSxJBgJP .alert-success {
  background-color: #70c770;
}
.cid-eEVSxJBgJP .alert-danger {
  background-color: #ff4a52;
}
.cid-eEVSxJBgJP .btn {
  display: inline-flex;
}
.cid-eEVSxJBgJP .hidden {
  display: none;
}
.cid-eEVSxJBgJP .mbr-alert-success {
  text-align: center;
  color: #232323;
}
.cid-eEVSxJBgJP .mbr-alert-danger {
  text-align: center;
  color: #232323;
}
.cid-eEVSxJBgJP .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-eEVSxJBgJP input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-eEVSxJBgJP input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-eEVSxJBgJP input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-eEVSxJBgJP input,
.cid-eEVSxJBgJP textarea {
  background-color: #bbbbbb !important;
}
.cid-eEVSxJBgJP .mbr-section-title {
  color: #232323;
}
.cid-eEVSxJBgJP P {
  color: #fafafa;
  text-align: left;
}
.cid-eEVSxJBgJP .card-title {
  text-align: left;
  color: #ff0000;
}
.cid-tPjaybcWK5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tPjaybcWK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPjaybcWK5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPjaybcWK5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tPjaybcWK5 .row {
    text-align: center;
  }
  .cid-tPjaybcWK5 .row > div {
    margin: auto;
  }
  .cid-tPjaybcWK5 .social-row {
    justify-content: center;
  }
}
.cid-tPjaybcWK5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPjaybcWK5 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 0rem;
  }
}
.cid-tPjaybcWK5 .mbr-text {
  color: #bbbbbb;
}
.cid-tPjaybcWK5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPjaybcWK5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPjaybcWK5 .copyright {
  text-align: center;
}
.cid-tPaSE4LCtp .navbar-dropdown {
  position: relative !important;
  padding: 0 0;
}
.cid-tPaSE4LCtp .dropdown-item:before {
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-menu {
  padding: 0;
  border-radius: 0px !important;
  width: auto !important;
  padding-bottom: 10px !important;
  transition: all 0.3s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-item {
  border-top: 1px solid #DBEEFD !important;
  border-bottom: 1px solid #e43f3f;
  padding: 0.5rem 1.8rem;
}
.cid-tPaSE4LCtp .dropdown-item:hover,
.cid-tPaSE4LCtp .dropdown-item:focus {
  background: #f5f5f5 !important;
  color: #e43f3f !important;
  padding-top: 10px !important;
  border-radius: 0 !important;
}
.cid-tPaSE4LCtp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPaSE4LCtp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPaSE4LCtp .nav-dropdown .link {
  padding: 0 0.4em !important;
  margin: 0.667em 1em !important;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPaSE4LCtp .nav-link {
  position: relative;
}
.cid-tPaSE4LCtp .container {
  display: flex;
  margin: auto;
}
.cid-tPaSE4LCtp .dropdown-menu,
.cid-tPaSE4LCtp .navbar.opened {
  background: #f5f5f5 !important;
}
.cid-tPaSE4LCtp .nav-item:focus,
.cid-tPaSE4LCtp .nav-link:focus {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item {
  transition: all 0.25s ease-in-out;
  width: auto;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPaSE4LCtp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPaSE4LCtp .navbar {
  border-bottom: 1px solid #e43f3f;
  min-height: 70px;
  transition: all 0.3s;
  z-index: 9999;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.cid-tPaSE4LCtp.opened {
  transition: all 0.3s;
}
.cid-tPaSE4LCtp .navbar-logo img {
  width: auto;
}
.cid-tPaSE4LCtp .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  padding-bottom: 10px;
  padding-top: 10px;
}
.cid-tPaSE4LCtp.collapsed {
  justify-content: center;
}
.cid-tPaSE4LCtp.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPaSE4LCtp.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPaSE4LCtp.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPaSE4LCtp.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPaSE4LCtp.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPaSE4LCtp .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPaSE4LCtp.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPaSE4LCtp .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPaSE4LCtp ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPaSE4LCtp .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPaSE4LCtp .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPaSE4LCtp .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPaSE4LCtp.navbar-short {
  min-height: 60px;
}
.cid-tPaSE4LCtp.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPaSE4LCtp.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPaSE4LCtp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown-item.active,
.cid-tPaSE4LCtp .dropdown-item:active {
  background-color: transparent;
}
.cid-tPaSE4LCtp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f5f5f5;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPaSE4LCtp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPaSE4LCtp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPaSE4LCtp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPaSE4LCtp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #11429b;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPaSE4LCtp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPaSE4LCtp .navbar {
    height: 70px;
  }
  .cid-tPaSE4LCtp .navbar.opened {
    height: auto;
  }
  .cid-tPaSE4LCtp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPaSE4LCtp .bgtop {
  transition: none;
  min-height: 77px;
  background: #f5f5f5;
  background-image: url("../../../assets/images/menubgg.jpeg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.7%;
  padding-bottom: 1.7%;
  padding: auto !important;
}
.cid-tPaSE4LCtp P {
  color: #ffffff;
}
.cid-tPaSE4LCtp .mbr-section-title {
  text-decoration: none;
  color: #ffffff;
}
.cid-tPaSE4LCtp .bouton {
  padding: 9px 14px;
  margin-top: -5px;
  margin-bottom: -5px;
}
@media only screen and (max-width: 600px) {
  .cid-tPaSE4LCtp .bouton {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .cid-tPaSE4LCtp .bouton .dtop-social-icons {
    text-align: center !important;
  }
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .dtop ul li {
    display: inline-block;
    margin: 1px 8px 1px 8px;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
.cid-tPaSE4LCtp .dtop {
  position: relative;
  overflow: hidden;
}
.cid-tPaSE4LCtp .dtop ul li {
  display: inline-block;
  margin-right: 35px;
}
.cid-tPaSE4LCtp .dtop ul li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}
.cid-tPaSE4LCtp .dtop .fas,
.cid-tPaSE4LCtp .dtop .far {
  margin: 0 5px 0 0;
  font-size: 15px;
}
.cid-tPaSE4LCtp .dtop-social-icons {
  text-align: right;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li {
  display: inline-block;
  text-align: center;
  margin: 0 0px;
  padding: 0;
  width: 25px;
  height: 22px;
  transition: .5s;
  cursor: pointer;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li:hover {
  background-color: #e43f3f;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li a .fab {
  padding-top: 4px;
  font-size: 15px;
}
.cid-tPaSE4LCtp ul li {
  list-style: none;
}
.cid-tPaSE4LCtp ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
@media only screen and (max-width: 767px) {
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
.cid-tPaSE4LCtp .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tPaSE4LCtp UL {
  color: #ffffff;
}
.cid-XdFBZQ0KnV {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 45px;
}
@media (min-width: 992px) {
  .cid-XdFBZQ0KnV .text-wrapper {
    padding: 5rem;
  }
}
.cid-XdFBZQ0KnV .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-XdFBZQ0KnV .mbr-text {
  text-align: left;
  color: #ff0000;
}
.cid-XdFBZQ0KnV .container-fluid {
  padding: 1;
}
.cid-XdFBZQ0KnV .text-wrapper {
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .cid-XdFBZQ0KnV .text-wrapper {
    padding: 0 1rem;
  }
}
.cid-XdFBZQ0KnV input,
.cid-XdFBZQ0KnV textarea {
  background-color: #bbbbbb !important;
}
.cid-XdFBZQ0KnV .showAlerts {
  display: block !important;
}
.cid-XdFBZQ0KnV .rowflexrev {
  display: -webkit-flex;
}
.cid-XdFBZQ0KnV .title {
  margin-bottom: 2rem;
}
.cid-XdFBZQ0KnV .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-XdFBZQ0KnV textarea.form-control {
  min-height: 188px;
}
.cid-XdFBZQ0KnV LABEL {
  color: #232323;
  display: initial;
}
.cid-XdFBZQ0KnV .mbr-section-terms {
  text-align: left;
  color: #bbbbbb;
  margin-bottom: 0px;
}
.cid-XdFBZQ0KnV .mbr-section-labels {
  color: #ffe161;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-XdFBZQ0KnV .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-XdFBZQ0KnV .mbr-section-gdpr {
  text-align: center;
  color: #fafafa;
  margin-bottom: 0px;
}
.cid-XdFBZQ0KnV .alert {
  margin-bottom: 0;
}
.cid-XdFBZQ0KnV .alert-success {
  background-color: #70c770;
}
.cid-XdFBZQ0KnV .alert-danger {
  background-color: #ff4a52;
}
.cid-XdFBZQ0KnV .btn {
  display: inline-flex;
}
.cid-XdFBZQ0KnV .hidden {
  display: none;
}
.cid-XdFBZQ0KnV .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-XdFBZQ0KnV .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-XdFBZQ0KnV .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-XdFBZQ0KnV input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-XdFBZQ0KnV input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-XdFBZQ0KnV input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tPjaybcWK5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tPjaybcWK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPjaybcWK5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPjaybcWK5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tPjaybcWK5 .row {
    text-align: center;
  }
  .cid-tPjaybcWK5 .row > div {
    margin: auto;
  }
  .cid-tPjaybcWK5 .social-row {
    justify-content: center;
  }
}
.cid-tPjaybcWK5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPjaybcWK5 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 0rem;
  }
}
.cid-tPjaybcWK5 .mbr-text {
  color: #bbbbbb;
}
.cid-tPjaybcWK5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPjaybcWK5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPjaybcWK5 .copyright {
  text-align: center;
}
.cid-tPaSE4LCtp .navbar-dropdown {
  position: relative !important;
  padding: 0 0;
}
.cid-tPaSE4LCtp .dropdown-item:before {
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-menu {
  padding: 0;
  border-radius: 0px !important;
  width: auto !important;
  padding-bottom: 10px !important;
  transition: all 0.3s ease-in-out;
}
.cid-tPaSE4LCtp .dropdown-item {
  border-top: 1px solid #DBEEFD !important;
  border-bottom: 1px solid #e43f3f;
  padding: 0.5rem 1.8rem;
}
.cid-tPaSE4LCtp .dropdown-item:hover,
.cid-tPaSE4LCtp .dropdown-item:focus {
  background: #f5f5f5 !important;
  color: #e43f3f !important;
  padding-top: 10px !important;
  border-radius: 0 !important;
}
.cid-tPaSE4LCtp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPaSE4LCtp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPaSE4LCtp .nav-dropdown .link {
  padding: 0 0.4em !important;
  margin: 0.667em 1em !important;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPaSE4LCtp .nav-link {
  position: relative;
}
.cid-tPaSE4LCtp .container {
  display: flex;
  margin: auto;
}
.cid-tPaSE4LCtp .dropdown-menu,
.cid-tPaSE4LCtp .navbar.opened {
  background: #f5f5f5 !important;
}
.cid-tPaSE4LCtp .nav-item:focus,
.cid-tPaSE4LCtp .nav-link:focus {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item {
  transition: all 0.25s ease-in-out;
  width: auto;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPaSE4LCtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPaSE4LCtp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPaSE4LCtp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPaSE4LCtp .navbar {
  border-bottom: 1px solid #e43f3f;
  min-height: 70px;
  transition: all 0.3s;
  z-index: 9999;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.cid-tPaSE4LCtp.opened {
  transition: all 0.3s;
}
.cid-tPaSE4LCtp .navbar-logo img {
  width: auto;
}
.cid-tPaSE4LCtp .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  padding-bottom: 10px;
  padding-top: 10px;
}
.cid-tPaSE4LCtp.collapsed {
  justify-content: center;
}
.cid-tPaSE4LCtp.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPaSE4LCtp.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPaSE4LCtp.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPaSE4LCtp.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPaSE4LCtp.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPaSE4LCtp.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPaSE4LCtp .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPaSE4LCtp.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPaSE4LCtp .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPaSE4LCtp ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPaSE4LCtp .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPaSE4LCtp .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPaSE4LCtp .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPaSE4LCtp .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPaSE4LCtp.navbar-short {
  min-height: 60px;
}
.cid-tPaSE4LCtp.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPaSE4LCtp.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPaSE4LCtp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPaSE4LCtp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPaSE4LCtp .dropdown-item.active,
.cid-tPaSE4LCtp .dropdown-item:active {
  background-color: transparent;
}
.cid-tPaSE4LCtp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPaSE4LCtp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f5f5f5;
}
.cid-tPaSE4LCtp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPaSE4LCtp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPaSE4LCtp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPaSE4LCtp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPaSE4LCtp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #11429b;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPaSE4LCtp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPaSE4LCtp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPaSE4LCtp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPaSE4LCtp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPaSE4LCtp .navbar {
    height: 70px;
  }
  .cid-tPaSE4LCtp .navbar.opened {
    height: auto;
  }
  .cid-tPaSE4LCtp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPaSE4LCtp .bgtop {
  transition: none;
  min-height: 77px;
  background: #f5f5f5;
  background-image: url("../../../assets/images/menubgg.jpeg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.7%;
  padding-bottom: 1.7%;
  padding: auto !important;
}
.cid-tPaSE4LCtp P {
  color: #ffffff;
}
.cid-tPaSE4LCtp .mbr-section-title {
  text-decoration: none;
  color: #ffffff;
}
.cid-tPaSE4LCtp .bouton {
  padding: 9px 14px;
  margin-top: -5px;
  margin-bottom: -5px;
}
@media only screen and (max-width: 600px) {
  .cid-tPaSE4LCtp .bouton {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .cid-tPaSE4LCtp .bouton .dtop-social-icons {
    text-align: center !important;
  }
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .dtop ul li {
    display: inline-block;
    margin: 1px 8px 1px 8px;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
.cid-tPaSE4LCtp .dtop {
  position: relative;
  overflow: hidden;
}
.cid-tPaSE4LCtp .dtop ul li {
  display: inline-block;
  margin-right: 35px;
}
.cid-tPaSE4LCtp .dtop ul li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}
.cid-tPaSE4LCtp .dtop .fas,
.cid-tPaSE4LCtp .dtop .far {
  margin: 0 5px 0 0;
  font-size: 15px;
}
.cid-tPaSE4LCtp .dtop-social-icons {
  text-align: right;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li {
  display: inline-block;
  text-align: center;
  margin: 0 0px;
  padding: 0;
  width: 25px;
  height: 22px;
  transition: .5s;
  cursor: pointer;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li:hover {
  background-color: #e43f3f;
}
.cid-tPaSE4LCtp .dtop-social-icons ul li a .fab {
  padding-top: 4px;
  font-size: 15px;
}
.cid-tPaSE4LCtp ul li {
  list-style: none;
}
.cid-tPaSE4LCtp ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
@media only screen and (max-width: 767px) {
  .cid-tPaSE4LCtp .dtop {
    text-align: center;
  }
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .cid-tPaSE4LCtp .text-alig {
    text-align: center;
  }
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .cid-tPaSE4LCtp .nomobile {
    display: none;
  }
}
.cid-tPaSE4LCtp .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tPaSE4LCtp UL {
  color: #ffffff;
}
.cid-w52nW5Sr8x {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-w52nW5Sr8x .v-center {
  margin: auto;
}
.cid-w52nW5Sr8x h2 {
  text-align: left;
}
.cid-w52nW5Sr8x h4 {
  text-align: left;
  font-weight: 500;
}
.cid-w52nW5Sr8x p {
  color: #767676;
  text-align: left;
}
.cid-w52nW5Sr8x .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-w52nW5Sr8x .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  padding: 1rem;
  background: #fafafa;
  border-radius: 15px;
}
.cid-w52nW5Sr8x .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-w52nW5Sr8x .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin: auto 20px;
  background: #fafafa;
  border-radius: 15px;
}
.cid-w52nW5Sr8x .mbr-figure img {
  padding: 2rem;
}
.cid-w52nW5Sr8x .card {
  padding: 0 1rem;
}
.cid-w52nW5Sr8x .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-w52nW5Sr8x .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-w52nW5Sr8x .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-w52nW5Sr8x .card-img span {
    font-size: 40px !important;
  }
}
.cid-w52nW5Sr8x H2 {
  text-align: center;
  color: #551983;
  text-shadow: 0 0 2px #ff0000, 0 0 10px #ff0000;
}
.cid-w52nW5Sr8x .mbr-text {
  text-align: center;
  color: #635a51;
}
.cid-w52nW5Sr8x H4 {
  color: #652277;
  text-align: left;
}
.cid-w52nW5Sr8x H3 {
  text-shadow: 0 0 2px #ff0000, 0 0 10px #ff0000;
}
.cid-w52nW5Sr8x P {
  color: #000000;
}
.cid-qJ22c4V8vf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-qJ22c4V8vf .stats {
  position: relative;
  z-index: 0;
  color: #fff;
}
.cid-qJ22c4V8vf .stats .overlay-color {
  opacity: .85;
}
.cid-qJ22c4V8vf .stats .section-heading .line-solid-color {
  background: #fff;
}
.cid-qJ22c4V8vf .stats .stat-box .stat-box-inner {
  border-right: 1px dashed rgba(255, 255, 255, 0.5);
}
@media (max-width: 991px) {
  .cid-qJ22c4V8vf .stats .stat-box .stat-box-inner {
    border-right: none;
  }
}
.cid-qJ22c4V8vf .stats .stat-box:last-of-type .stat-box-inner {
  border-right: none;
}
.cid-qJ22c4V8vf .stats .stat-box-inner {
  color: #fff;
  text-align: center;
}
.cid-qJ22c4V8vf .stats .stat-box-inner .stat-icon {
  font-size: 4rem;
  display: block;
}
@media (max-width: 767px) {
  .cid-qJ22c4V8vf .stats .stat-box-inner .stat-icon {
    font-size: 2rem;
  }
  .cid-qJ22c4V8vf .stats .stat-box-inner .stat-num {
    font-size: 2rem;
    font-weight: 600;
  }
  .cid-qJ22c4V8vf .stats .stat-box-inner .stat-desc {
    font-size: .9rem;
  }
}
.cid-qJ22c4V8vf .stats .stat-box-inner .stat-num {
  display: block;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 800;
  margin-bottom: 0;
}
.cid-qJ22c4V8vf .stats .stat-box-inner .stat-desc {
  font-size: 1rem;
  display: block;
  text-transform: capitalize;
}
.cid-qJ22c4V8vf .stats.shifted-up {
  overflow: visible;
  padding: 0;
}
.cid-qJ22c4V8vf .stats.shifted-up .stats-inner {
  position: relative;
  overflow: hidden;
  background-color: #232323;
  border-radius: 7px;
  z-index: 0;
}
.cid-qJ22c4V8vf .stats.shifted-down {
  overflow: visible;
  padding: 0;
}
.cid-qJ22c4V8vf .stats.shifted-down .stats-inner {
  position: relative;
  overflow: hidden;
  background-color: #232323;
  border-radius: 7px;
  padding: 25px;
  z-index: 0;
}
.cid-qJ22c4V8vf .stats.is-light .stats-inner {
  background: #fff;
}
.cid-qJ22c4V8vf .stats.is-light .stat-box-inner .stat-icon {
  color: #08bce9;
}
.cid-qJ22c4V8vf .stats.is-light .stat-box-inner .stat-num,
.cid-qJ22c4V8vf .stats.is-light .stat-box-inner .stat-desc {
  color: #000531;
}
.cid-qJ22c4V8vf .stats.is-dark .stats-inner {
  background: #000531;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-qJ22c4V8vf .stats.is-dark .stat-box-inner .stat-icon {
  color: #e4a216;
}
.cid-qJ22c4V8vf .stats.is-dark .stat-box-inner .stat-num,
.cid-qJ22c4V8vf .stats.is-dark .stat-box-inner .stat-desc {
  color: #fff;
}
.cid-qJ22c4V8vf P {
  color: #ffffff;
}
.cid-qJ22c4V8vf H5 {
  color: #ffffff;
  text-align: center;
}
.cid-VRNiWZQtt1 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-VRNiWZQtt1 .dropcap_block {
  float: left;
  background-color: #e43f3f;
  font-size: 75px;
  line-height: 50px;
  padding: 6px 10px 8px;
  margin-top: 8px;
  margin-right: 10px;
  color: #ffffff;
}
.cid-VRNiWZQtt1 .dropcap_block.default {
  background-color: #e43f3f;
}
.cid-VRNiWZQtt1 .mbr-text {
  color: #232323;
}
.cid-tQfPdGOjwV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f3f3f3;
}
.cid-tQfPdGOjwV .d-st3 {
  position: relative;
}
.cid-tQfPdGOjwV .d-st3 .upper-box .title-inner {
  position: relative;
  display: block;
  max-width: 900px;
  width: 100%;
}
.cid-tQfPdGOjwV .d-st3 .upper-box .title-inner .sec-title {
  width: 50%;
}
.cid-tQfPdGOjwV .d-st3 .upper-box .title-inner .text {
  position: relative;
  padding-left: 30px;
  margin-top: 4px;
  width: 50%;
}
.cid-tQfPdGOjwV .d-st3 .upper-box .title-inner .text:before {
  position: absolute;
  content: '';
  background: #ffffff;
  width: 1px;
  height: 75px;
  left: -40px;
  top: 3px;
}
.cid-tQfPdGOjwV .sec-title.left.style-three h5 {
  padding-right: 35px;
}
.cid-tQfPdGOjwV .d-st3 .upper-box .btn-box {
  position: absolute;
  top: 25px;
  right: 0px;
}
.cid-tQfPdGOjwV .d-st3 .upper-box .btn-box .theme-btn i {
  font-size: 12px;
  margin-left: 10px;
}
.cid-tQfPdGOjwV .d-st3 .upper-box .btn-box .theme-btn {
  padding: 13px 38px;
}
.cid-tQfPdGOjwV .d-st3 .upper-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
}
.cid-tQfPdGOjwV .dahoservice .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 30px;
  transition: all 500ms ease;
}
.cid-tQfPdGOjwV .dahoservice .inner-box:hover {
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.cid-tQfPdGOjwV .dahoservice .inner-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transform: scale(0, 0);
  transition: all 500ms ease;
  background: #da2c46;
}
.cid-tQfPdGOjwV .dahoservice .inner-box:hover:before {
  transform: scale(1, 1);
}
.cid-tQfPdGOjwV .dahoservice .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .image-box img {
  width: 100%;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .image-box .overlay-box-1 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  z-index: 1;
  transition: all 500ms ease;
  background: #da2c46;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .image-box .overlay-box-2 {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  z-index: 1;
  transition: all 500ms ease;
  background: #da2c46;
}
.cid-tQfPdGOjwV .dahoservice .inner-box:hover .image-box .overlay-box-1,
.cid-tQfPdGOjwV .dahoservice .inner-box:hover .image-box .overlay-box-2 {
  width: 50%;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .image-box a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}
.cid-tQfPdGOjwV .dahoservice .inner-box:hover .image-box a {
  opacity: 1;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content {
  position: relative;
  padding: 37px 25px 38px 25px;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content h3 {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content h3 a {
  display: inline-block;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content h3 a:hover {
  color: #da2c46;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content p {
  margin-bottom: 29px;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content .link {
  position: relative;
  display: block;
  padding-top: 16px;
  border-top: 1px solid #da2c46;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content .link a {
  position: relative;
  display: inline-block;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content .link a span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  border-bottom: 1px solid #222;
  transition: all 500ms ease;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content .link a:hover span {
  color: #da2c46;
  border-color: #da2c46;
}
.cid-tQfPdGOjwV .dahoservice .inner-box .lower-content .link a i {
  font-size: 12px;
  margin-right: 10px;
  color: #da2c46;
}
.cid-tQfPdGOjwV .d-st3 .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 15px;
}
.cid-tQfPdGOjwV .d-st3 .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  background: #dddddd;
  width: 20px;
  height: 4px;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}
.cid-tQfPdGOjwV .d-st3 .owl-theme .owl-dots .owl-dot.active span,
.cid-tQfPdGOjwV .d-st3 .owl-theme .owl-dots .owl-dot span:hover {
  background: #da2c46;
}
.cid-tQfPdGOjwV P {
  line-height: 30px;
  color: #353535;
  text-align: left;
}
.cid-tQfPdGOjwV .pstyle {
  text-align: center;
}
.cid-tQfPdGOjwV H3 {
  text-align: left;
  color: #ff0000;
}
.cid-XLGHWcZxY1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-XLGHWcZxY1 .xborder {
  padding: 60px 60px 60px 60px;
  overflow: visible;
  border-radius: 27px;
}
.cid-XLGHWcZxY1 .xborder {
  background-color: #232323;
}
.cid-XLGHWcZxY1 .btn {
  padding: 15px 55px 15px 55px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 50px 50px 50px 50px;
  margin-top: 35px;
  box-shadow: 29px 29px 60px 0px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.cid-XLGHWcZxY1 .section-title span {
  color: #ffe885;
}
.cid-XLGHWcZxY1 P {
  color: #fafafa;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .cid-XLGHWcZxY1 .btn {
    float: left !important;
    padding: 6px !important;
  }
}
@media only screen and (max-width: 800px) {
  .cid-XLGHWcZxY1 .btn {
    float: left !important;
    padding: 14px;
  }
}
.cid-XLGHWcZxY1 .section-title {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
  margin-bottom: 20px;
}
.cid-XLGHWcZxY1 .border-divider {
  margin: auto;
  height: 4px;
  width: 30px;
  background: #ff0000;
  border-radius: 2px;
  position: relative;
  left: 13px;
}
.cid-XLGHWcZxY1 .border-divider::before {
  content: "";
  left: -27px;
  position: absolute;
  top: 0;
  display: inline-block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #ff0000;
  -webkit-box-shadow: 9px 0 0 0 #ff0000, 18px 0 0 0 #ff0000;
  box-shadow: 9px 0 0 0 #ff0000, 18px 0 0 0 #ff0000;
}
.cid-XLGHWcZxY1 .mbr-text {
  color: #ffffff;
}
.cid-XLGHWcZxY1 H2 {
  text-align: center;
  color: #fafafa;
}
.cid-XLGHWcZxY1 .section-top {
  color: #1d1b1b;
}
.cid-tPjaybcWK5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tPjaybcWK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPjaybcWK5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPjaybcWK5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tPjaybcWK5 .row {
    text-align: center;
  }
  .cid-tPjaybcWK5 .row > div {
    margin: auto;
  }
  .cid-tPjaybcWK5 .social-row {
    justify-content: center;
  }
}
.cid-tPjaybcWK5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPjaybcWK5 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPjaybcWK5 .list {
    margin-bottom: 0rem;
  }
}
.cid-tPjaybcWK5 .mbr-text {
  color: #bbbbbb;
}
.cid-tPjaybcWK5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPjaybcWK5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tPjaybcWK5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPjaybcWK5 .copyright {
  text-align: center;
}
