body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((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: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .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: #47b5ed !important;
}
.bg-warning {
  background-color: #98dee8 !important;
}
.bg-danger {
  background-color: #bbbbbb !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: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !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: #98dee8 !important;
  border-color: #98dee8 !important;
  color: #185f69 !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: #ffffff !important;
  background-color: #51c7d8 !important;
  border-color: #51c7d8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #185f69 !important;
  background-color: #51c7d8 !important;
  border-color: #51c7d8 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !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: #525252;
}
.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: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !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: #47b5ed !important;
  border-color: #47b5ed !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: #98dee8;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #51c7d8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #185f69 !important;
  background-color: #98dee8 !important;
  border-color: #98dee8 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #909090 !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: #bbbbbb !important;
  border-color: #bbbbbb !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: #47b5ed !important;
}
.text-warning {
  color: #98dee8 !important;
}
.text-danger {
  color: #bbbbbb !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: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #45c3d5 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #888888 !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: #47b5ed;
}
.alert-warning {
  background-color: #98dee8;
}
.alert-danger {
  background-color: #bbbbbb;
}
.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: #ffffff;
}
.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: #fbfbfb;
}
/* 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-sRy6shgQck .navbar-dropdown {
  position: relative !important;      

}
.cid-sRy6shgQck .container-fluid {
  padding: 0;        


}
.cid-sRy6shgQck .dropdown-item:before {    


  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {   


    
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;        
  
    
}
.cid-sRy6shgQck .nav-link::before {     

    
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;      
 


}
.cid-sRy6shgQck .iconfont-wrapper {  


    
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
  
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {        

 background: #677276 !important;

 transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);

}
.cid-sRy6shgQck .navbar.opened {

  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;   

}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;     
    
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;   
 

}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
    
    
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;  
    
  
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;   

 
  
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;   
    
    
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;  

  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 40px;   

}


       

.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
  
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
 background: #677276 !important;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
  
  
}
.cid-sRy6shgQck ul.navbar-nav {

margin:0px auto !important;    
 background: #677276 !important;
    
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;     
  
        
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
    
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;

}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 10px;
    min-height: 40px;  

          
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0px !important;    
 
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0px !important;    
  
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {      


          
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {   
  
 
            
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
    
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}      








.cid-sPcXN2Hfk1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sPcXN2Hfk1 .carousel {
  height: 600px;
}
.cid-sPcXN2Hfk1 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sPcXN2Hfk1 .carousel-item,
.cid-sPcXN2Hfk1 .carousel-inner {
  height: 100%;
}
.cid-sPcXN2Hfk1 .carousel-caption {
  bottom: 40px;
}
.cid-sPcXN2Hfk1 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sPcXN2Hfk1 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sPcXN2Hfk1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sPcXN2Hfk1 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sPcXN2Hfk1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sPcXN2Hfk1 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sPcXN2Hfk1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sPcXN2Hfk1 .carousel-control {
  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-sPcXN2Hfk1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPcXN2Hfk1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sPcXN2Hfk1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sPcXN2Hfk1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sPcXN2Hfk1 .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-sPcXN2Hfk1 .carousel-indicators li.active,
.cid-sPcXN2Hfk1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sPcXN2Hfk1 .carousel-indicators li::after,
.cid-sPcXN2Hfk1 .carousel-indicators li::before {
  content: none;
}
.cid-sPcXN2Hfk1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sPcXN2Hfk1 .carousel-indicators {
    display: none !important;
  }
}
.cid-sPcY83LS9T {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f5f5f0;
}
.cid-sRy8ZVyGFc {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sRy8ZVyGFc .row {
  align-items: center;
  justify-content: space-between;
}
.cid-sRy8ZVyGFc .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-sRy8ZVyGFc .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-sRy8ZVyGFc .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-sRy8ZVyGFc .right-side {
  max-width: 554px;
}
.cid-sRy8ZVyGFc .rs {
  margin-right: 60px;
}
.cid-sRy8ZVyGFc .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-sRy8ZVyGFc .margin {
  margin-right: 14px;
}
.cid-sRy8ZVyGFc .gray {
  padding: 45px 0;
  background-color: #eff0f6;
}
.cid-sRy8ZVyGFc img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-sRy8ZVyGFc .gray {
    padding: 0px 0 5px;
  }
  .cid-sRy8ZVyGFc img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-sRy8ZVyGFc .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-sRy8ZVyGFc .b {
    margin-bottom: 10px;
  }
}
.cid-sRy8ZVyGFc .btn {
  margin-top: 20px;
}
.cid-sRy8ZVyGFc a.btn > span {
  margin-left: 0.5rem;
}
.cid-sRy8ZVyGFc .mbr-text,
.cid-sRy8ZVyGFc .button-align {
  color: #232323;
}
.cid-sPd0Aohh7J {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sPd0Aohh7J .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sPd0Aohh7J .link {
  opacity: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  transform: translate3d(0, 100%, 0);
  transition: all 0.3s;
}
.cid-sPd0Aohh7J img {
  border-radius: 10px;
}
.cid-sPd0Aohh7J .date {
  margin: 20px 0;
  color: #3F424E;
}
.cid-sPd0Aohh7J .mbr-section-title {
  color: #000000;
}
.cid-sPd0Aohh7J .mbr-buttons {
  background-color: #6592e6;
}
.cid-sPd0Aohh7J .header {
  margin-bottom: 50px;
  align-items: center;
}
.cid-sPd0Aohh7J a {
  text-transform: uppercase;
  color: #6592e6;
}
.cid-sPd0Aohh7J svg {
  padding-left: 15px;
  transition: 0.3s;
}
.cid-sPd0Aohh7J .link:hover svg {
  padding-left: 7px;
  transition: 0.3s;
}
.cid-sPd0Aohh7J .card-heading {
  line-height: 1.2;
  margin: 0px;
}
.cid-sPd0Aohh7J .item-wrapper:hover {
  cursor: pointer;
}
.cid-sPd0Aohh7J .item-wrapper:hover .link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-sPd0Aohh7J .button {
  text-align: right;
}
@media (max-width: 600px) {
  .cid-sPd0Aohh7J .header {
    margin-bottom: 20px;
  }
  .cid-sPd0Aohh7J .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-sPd0Aohh7J .button {
    text-align: left;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .cid-sPd0Aohh7J .link {
    margin-bottom: 40px;
  }
}
.cid-sPd0Aohh7J .mbr-section-btn {
  position: absolute;
  right: 0;
}
.cid-sRy9cArPr4 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sRy9cArPr4 .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sRy9cArPr4 .link {
  opacity: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  transform: translate3d(0, 100%, 0);
  transition: all 0.3s;
}
.cid-sRy9cArPr4 img {
  border-radius: 10px;
}
.cid-sRy9cArPr4 .date {
  margin: 20px 0;
  color: #3F424E;
}
.cid-sRy9cArPr4 .mbr-section-title {
  color: #000000;
}
.cid-sRy9cArPr4 .mbr-buttons {
  background-color: #6592e6;
}
.cid-sRy9cArPr4 .header {
  margin-bottom: 50px;
  align-items: center;
}
.cid-sRy9cArPr4 a {
  text-transform: uppercase;
  color: #6592e6;
}
.cid-sRy9cArPr4 svg {
  padding-left: 15px;
  transition: 0.3s;
}
.cid-sRy9cArPr4 .link:hover svg {
  padding-left: 7px;
  transition: 0.3s;
}
.cid-sRy9cArPr4 .card-heading {
  line-height: 1.2;
  margin: 0px;
}
.cid-sRy9cArPr4 .item-wrapper:hover {
  cursor: pointer;
}
.cid-sRy9cArPr4 .item-wrapper:hover .link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-sRy9cArPr4 .button {
  text-align: right;
}
@media (max-width: 600px) {
  .cid-sRy9cArPr4 .header {
    margin-bottom: 20px;
  }
  .cid-sRy9cArPr4 .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-sRy9cArPr4 .button {
    text-align: left;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .cid-sRy9cArPr4 .link {
    margin-bottom: 40px;
  }
}
.cid-sRy9cArPr4 .mbr-section-btn {
  position: absolute;
  right: 0;
}
.cid-sPd45YOpya {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPd45YOpya .mbr-text {
  color: #ffffff;
}
.cid-sPd45YOpya .container {
  max-width: 1000px;
}
.cid-sPd45YOpya h4 {
  text-align: center;
}
.cid-sPd45YOpya p {
  text-align: center;
}
.cid-sPd45YOpya .row {
  justify-content: center;
}
.cid-sPd45YOpya .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPd45YOpya .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: inline-block;
}
.cid-sPd45YOpya .card-title,
.cid-sPd45YOpya .card-img {
  color: #e43f3f;
}
.cid-sPd45YOpya .icon-wrap {    
  padding-top: 1.6rem;
  padding-bottom: 3.6rem;
}
.cid-sPd45YOpya .icon-wrap:before {
  content: '';
  position: absolute;
  background: #FFFFFF;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 40px;
}
.cid-sPd45YOpya img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sPMLRdm2E3 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMLRdm2E3 .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMLRdm2E3 .mbr-section-title b,
.cid-sPMLRdm2E3 .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMLRdm2E3 .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGNvogQmh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPGNvoAAWi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPGNvoAAWi img {
  width: 100%;
  margin: auto;
}
.cid-sPGNvoAAWi .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 0.5rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sPGNvoAAWi .card {
    max-width: 12.5%;
  }
}
.cid-sQTpENIRER {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sQTpENIRER img {
  width: 100%;
  margin: auto;
}
.cid-sQTpENIRER .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 0.5rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sQTpENIRER .card {
    max-width: 12.5%;
  }
}
.cid-sPGNvoZGll {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGNvoZGll .mbr-text {
  color: #ffffff;
}
.cid-sPGNvoZGll .container {
  max-width: 1000px;
}
.cid-sPGNvoZGll h4 {
  text-align: center;
}
.cid-sPGNvoZGll p {
  text-align: center;
}
.cid-sPGNvoZGll .row {
  justify-content: center;
}
.cid-sPGNvoZGll .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGNvoZGll .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGNvoZGll .card-title,
.cid-sPGNvoZGll .card-img {
  color: #e43f3f;
}
.cid-sPGNvoZGll .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGNvoZGll .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGNvoZGll img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMLTUM8nb {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMLTUM8nb .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMLTUM8nb .mbr-section-title b,
.cid-sPMLTUM8nb .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMLTUM8nb .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}      
        
   
   
   
.cid-sPMIBheERhM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMIBheERhM .mbr-section-title {
  margin-bottom: 0px;
}
.cid-sPMIBheERhM .mbr-section-title b,
.cid-sPMIBheERhM .mbr-section-title strong {
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-sPMIBheERhM  {
display:none; 
  }
}    






.cid-sPMIBheERh {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMIBheERh .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMIBheERh .mbr-section-title b,
.cid-sPMIBheERh .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMIBheERh  {
display:none; 
  }
}    










.cid-sPMLTVcwTH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPMM6iKEuw {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sPMM6iKEuw .card-heading {
  padding-bottom: 32px;
  color: #000000;
}
.cid-sPMM6iKEuw .p {
  padding-bottom: 26px;
  color: #232323;
}
.cid-sPMM6iKEuw .p:last-child {
  padding-bottom: 0;
}
.cid-sPMM6iKEuw .row {
  justify-content: center;
}
.cid-sPMM7jI7Mm {
  padding-top: 0.5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPMM7FBGzh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sPMM7FBGzh img {
  width: 280px;
  margin: auto;
}
.cid-sPMM7FBGzh .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 0.5rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sPMM7FBGzh .card {
    max-width: 12.5%;
  }
}
.cid-sPMLTWhFHS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPMLTWhFHS .mbr-text {
  color: #ffffff;
}
.cid-sPMLTWhFHS .container {
  max-width: 1000px;
}
.cid-sPMLTWhFHS h4 {
  text-align: center;
}
.cid-sPMLTWhFHS p {
  text-align: center;
}
.cid-sPMLTWhFHS .row {
  justify-content: center;
}
.cid-sPMLTWhFHS .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPMLTWhFHS .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPMLTWhFHS .card-title,
.cid-sPMLTWhFHS .card-img {
  color: #e43f3f;
}
.cid-sPMLTWhFHS .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPMLTWhFHS .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPMLTWhFHS img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMm4tLsW {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMm4tLsW .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMm4tLsW .mbr-section-title b,
.cid-sPMMm4tLsW .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMm4tLsW .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPMfHPOnZ9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPMfOBu12e {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sPMfOBu12e .item {
  padding-bottom: 2rem;
}
.cid-sPMfOBu12e .item-wrapper {
  position: relative;
}
.cid-sPMfOBu12e .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-sPMfOBu12e .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sPMfOBu12e .carousel-control,
.cid-sPMfOBu12e .close {
  background: #1b1b1b;
}
.cid-sPMfOBu12e .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sPMfOBu12e .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sPMfOBu12e .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sPMfOBu12e .carousel-control-next span {
  margin-left: 5px;
}
.cid-sPMfOBu12e .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-sPMfOBu12e .close::before {
  content: '\e91a';
}
.cid-sPMfOBu12e .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sPMfOBu12e .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-sPMfOBu12e .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPMfOBu12e .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sPMfOBu12e .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sPMfOBu12e .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sPMfOBu12e .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-sPMfOBu12e .carousel-indicators li.active,
.cid-sPMfOBu12e .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sPMfOBu12e .carousel-indicators li::after,
.cid-sPMfOBu12e .carousel-indicators li::before {
  content: none;
}
.cid-sPMfOBu12e .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sPMfOBu12e .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sPMfOBu12e .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sPMfOBu12e .carousel-indicators {
    display: none;
  }
}
.cid-sPMfOBu12e .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sPMfOBu12e .carousel-inner > .active {
  display: block;
}
.cid-sPMfOBu12e .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPMfOBu12e .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sPMfOBu12e .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sPMfOBu12e .carousel-control,
  .cid-sPMfOBu12e .carousel-indicators,
  .cid-sPMfOBu12e .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sPMfOBu12e .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sPMfOBu12e .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sPMfOBu12e .carousel-indicators .active,
.cid-sPMfOBu12e .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sPMfOBu12e .carousel-indicators .active {
  background: #fff;
}
.cid-sPMfOBu12e .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sPMfOBu12e .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sPMfOBu12e .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sPMfOBu12e .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sPMfOBu12e .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sPMfOBu12e .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sPMfOBu12e .carousel {
  width: 100%;
}
.cid-sPMfOBu12e .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sPMfOBu12e .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sPMfOBu12e .modal.fade .modal-dialog,
.cid-sPMfOBu12e .modal.in .modal-dialog {
  transform: none;
}
.cid-sPMfOBu12e .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sPMfOBu12e H6 {
  text-align: center;
}
.cid-sPMfHQTrQg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPMfHQTrQg .mbr-text {
  color: #ffffff;
}
.cid-sPMfHQTrQg .container {
  max-width: 1000px;
}
.cid-sPMfHQTrQg h4 {
  text-align: center;
}
.cid-sPMfHQTrQg p {
  text-align: center;
}
.cid-sPMfHQTrQg .row {
  justify-content: center;
}
.cid-sPMfHQTrQg .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPMfHQTrQg .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPMfHQTrQg .card-title,
.cid-sPMfHQTrQg .card-img {
  color: #e43f3f;
}
.cid-sPMfHQTrQg .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPMfHQTrQg .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPMfHQTrQg img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMp1NPH2 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMp1NPH2 .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMp1NPH2 .mbr-section-title b,
.cid-sPMMp1NPH2 .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMp1NPH2 .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPMgb0zrXB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPMgP0QqKz {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sPMgP0QqKz .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-sPMgP0QqKz .title-block {
  justify-content: space-between;
  margin: auto;
  margin-bottom: 58px;
  align-items: center;
  max-width: 571px;
}
.cid-sPMgP0QqKz .card-title {
  color: #4c4c4c;
  text-align: left;
  margin-bottom: 16px;
}
.cid-sPMgP0QqKz H3 {
  color: #1d1d1f;
}
.cid-sPMgP0QqKz .card-subtitle {
  text-align: left;
}
.cid-sPMgP0QqKz .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-sPMgP0QqKz .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-sPMgP0QqKz .card-title,
.cid-sPMgP0QqKz .iconfont-wrapper {
  text-align: center;
  color: #14142b;
}
.cid-sPMgP0QqKz .mbr-section-title {
  text-align: center;
  margin-bottom: 24px;
  color: #14142b;
}
.cid-sPMgP0QqKz .card-text {
  color: #8c8c95;
}
.cid-sPMgP0QqKz .year-title {
  text-align: center;
  color: #14142b;
  margin-bottom: 20px;
  position: relative;
}
.cid-sPMgP0QqKz .year-subtitle {
  text-align: center;
  color: #5f5d68;
}
.cid-sPMgP0QqKz .line {
  width: 20px;
  background-color: #e2e3e9;
  height: 2px;
  margin-top: -20px;
}
.cid-sPMgP0QqKz .accent {
  width: 25px;
  min-height: 25px;
  min-width: 25px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  border-radius: 1000px;
}
.cid-sPMgP0QqKz .accent1 {
  background-color: #fedb01;
}
.cid-sPMgP0QqKz .accent2 {
  background-color: #6c38ff;
}
.cid-sPMgP0QqKz .accent3 {
  background-color: #ff4433;
}
.cid-sPMgP0QqKz .accent4 {
  background-color: #ff9417;
}
.cid-sPMgP0QqKz .accent5 {
  background-color: #4cc9f0;
}
.cid-sPMgP0QqKz .timeline {
  align-items: center;
}
.cid-sPMgP0QqKz .year-title:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: none;
  margin: 11px 40px 0px 0px;
  border-style: solid;
  border-width: 5px;
  border-color: #fff;
  position: absolute;
  left: -40px;
  top: 15px;
}
.cid-sPMgP0QqKz .year-title.year1:before {
  background-color: #fedb01;
}
.cid-sPMgP0QqKz .year-title.year2:before {
  background-color: #6c38ff;
}
.cid-sPMgP0QqKz .year-title.year3:before {
  background-color: #ff4433;
}
.cid-sPMgP0QqKz .year-title.year4:before {
  background-color: #ff9417;
}
.cid-sPMgP0QqKz .year-title.year5:before {
  background-color: #4cc9f0;
}
.cid-sPMgP0QqKz .timeline-year-accent {
  width: 25px;
  min-height: 25px;
}
@media (max-width: 1120px) {
  .cid-sPMgP0QqKz .main {
    display: flex;
    justify-content: space-between;
    max-width: 849px;
  }
  .cid-sPMgP0QqKz .timeline.row {
    flex-direction: column;
    position: relative;
    max-width: 307px;
  }
  .cid-sPMgP0QqKz .year {
    flex-direction: row;
  }
  .cid-sPMgP0QqKz .year-title {
    text-align: left;
    margin-bottom: 4px;
  }
  .cid-sPMgP0QqKz .year-title:before {
    display: block;
  }
  .cid-sPMgP0QqKz .accent {
    display: none;
  }
  .cid-sPMgP0QqKz .row.title-block {
    margin: initial;
    max-width: 407px;
    align-items: flex-start;
  }
  .cid-sPMgP0QqKz .line {
    display: none;
  }
  .cid-sPMgP0QqKz .line1 {
    display: block;
    height: 100%;
    width: 2px;
    background-color: #e2e3e9;
    margin-top: -20px;
    margin-left: -15px;
    padding: 0 !important;
    position: absolute;
    left: 0;
  }
  .cid-sPMgP0QqKz .year-subtitle {
    margin-bottom: 60px;
    text-align: left;
  }
  .cid-sPMgP0QqKz .row.title-block > .col-12 {
    padding: 0 !important;
  }
}
.cid-sPMgP0QqKz .no-padd {
  margin-bottom: 0px !important;
}
@media (max-width: 750px) {
  .cid-sPMgP0QqKz .main {
    flex-direction: column;
  }
  .cid-sPMgP0QqKz .row.title-block,
  .cid-sPMgP0QqKz .timeline {
    margin: auto;
  }
  .cid-sPMgP0QqKz .row.title-block {
    padding-bottom: 40px;
    width: 90%;
  }
  .cid-sPMgP0QqKz .button-align {
    margin-top: 16px;
  }
}
.cid-sPMgP0QqKz .btn {
  margin-top: 20px;
}
.cid-sPMgP0QqKz a.btn > span {
  margin-left: 0.5rem;
}
.cid-sPMgb2ei7P {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPMgb2ei7P .mbr-text {
  color: #ffffff;
}
.cid-sPMgb2ei7P .container {
  max-width: 1000px;
}
.cid-sPMgb2ei7P h4 {
  text-align: center;
}
.cid-sPMgb2ei7P p {
  text-align: center;
}
.cid-sPMgb2ei7P .row {
  justify-content: center;
}
.cid-sPMgb2ei7P .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPMgb2ei7P .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPMgb2ei7P .card-title,
.cid-sPMgb2ei7P .card-img {
  color: #e43f3f;
}
.cid-sPMgb2ei7P .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPMgb2ei7P .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPMgb2ei7P img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}      
  





.cid-sRFlhhbdVI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-sRFlhhbdVI {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-sRFlhhbdVI {
    padding-top: 0.9rem;
    padding-bottom: 0.6rem;
  }
}
.cid-sRFlhhbdVI .f-row {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .cid-sRFlhhbdVI .f-row {
    flex-direction: column;
  }
}
.cid-sRFlhhbdVI .f-item {
  flex: 1 1 50%;
}
@media (max-width: 1000px) {
  .cid-sRFlhhbdVI .f-item {
    flex: 1 1 100%;
  }
}
.cid-sRFlhhbdVI .text-wrapper {
  padding: 0 2rem;
}
@media (max-width: 1000px) {
  .cid-sRFlhhbdVI .text-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sRFlhhbdVI .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sRFlhhbdVI .image-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 298px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 500px) {
  .cid-sRFlhhbdVI .image-circle {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .cid-sRFlhhbdVI .image-circle {
    width: 220px;
    height: 220px;
  }
}
.cid-sRFlhhbdVI .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sRFlhhbdVI .f-row {
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .cid-sRFlhhbdVI .f-row {
    flex-direction: column;
  }
}
.cid-sRFlhhbdVI .mbr-text,
.cid-sRFlhhbdVI .mbr-section-btn {
  text-align: left;
}
.cid-sRFlhhbdVI .card-title {
  text-align: left;
}

        

.cid-sPcY83LS9T {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f5f5f0;
}      





.cid-sRFjZ3YkAH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sRFjZ3YkAH .row {
    flex-direction: column-reverse;
  }
  .cid-sRFjZ3YkAH .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sRFjZ3YkAH .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sRFjZ3YkAH .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sRFjZ3YkAH .media-content,
.cid-sRFjZ3YkAH .mbr-figure {
  align-self: center;
}
.cid-sRFjZ3YkAH .mbr-figure iframe {
  width: 100%;
}



.cid-sPMMuUpUXj {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMuUpUXj .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMuUpUXj .mbr-section-title b,
.cid-sPMMuUpUXj .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMuUpUXj .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGPdaCuAp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPGPy4gCqS {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-sPGPy4gCqS .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #0196e3;
  margin-bottom: 1.5rem;
}
.cid-sPGPy4gCqS .col-lg-4,
.cid-sPGPy4gCqS .col-12 {
  padding: 0 2rem;
}
.cid-sPGPy4gCqS .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-sPGPy4gCqS .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-sPGPy4gCqS .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sPGPy4gCqS .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-sPGPy4gCqS .card-title,
.cid-sPGPy4gCqS .iconfont-wrapper {
  color: #36187d;
  text-align: center;
}
.cid-sPGPy4gCqS .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-sPGPy4gCqS .mbr-section-subtitle {
  color: #6c758f;
}
.cid-sPGPy4gCqS .mbr-section-title {
  color: #36187d;
}
.cid-sPGPyPvXSB {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f2f3f7;
}
.cid-sPGPyPvXSB .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sPGPyPvXSB .btn {
  padding: 1rem 3rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-sPGPyPvXSB .col-auto {
    margin: auto;
  }
}
.cid-sPGPyPvXSB textarea {
  min-height: 200px;
}
.cid-sPGPyPvXSB .form-control,
.cid-sPGPyPvXSB .field-input {
  padding: 1.5rem 2rem;
  box-shadow: inset 1px 1px 2px 0 #d2dce9;
  background-color: #edeff3;
  border-radius: 3rem;
  border: 0!important;
  color: #000000;
  transition: 0.4s;
  outline: none;
}
.cid-sPGPyPvXSB .form-control::-webkit-input-placeholder,
.cid-sPGPyPvXSB .field-input::-webkit-input-placeholder,
.cid-sPGPyPvXSB .form-control::-webkit-input-placeholder,
.cid-sPGPyPvXSB .field-input::-webkit-input-placeholder {
  color: #36187d;
}
.cid-sPGPyPvXSB .form-control:-moz-placeholder,
.cid-sPGPyPvXSB .field-input:-moz-placeholder,
.cid-sPGPyPvXSB .form-control:-moz-placeholder,
.cid-sPGPyPvXSB .field-input:-moz-placeholder {
  color: #36187d;
}
.cid-sPGPyPvXSB .form-control:hover,
.cid-sPGPyPvXSB .field-input:hover,
.cid-sPGPyPvXSB .form-control:focus,
.cid-sPGPyPvXSB .field-input:focus {
  background-color: #edeff3;
  color: #232323;
  border: 0!important;
  box-shadow: inset 1px 1px 2px 0 #d2dce9;
  outline: none;
}
.cid-sPGPyPvXSB .form-control:hover::-webkit-input-placeholder,
.cid-sPGPyPvXSB .field-input:hover::-webkit-input-placeholder,
.cid-sPGPyPvXSB .form-control:focus::-webkit-input-placeholder,
.cid-sPGPyPvXSB .field-input:focus::-webkit-input-placeholder,
.cid-sPGPyPvXSB .form-control:hover::-webkit-input-placeholder,
.cid-sPGPyPvXSB .field-input:hover::-webkit-input-placeholder,
.cid-sPGPyPvXSB .form-control:focus::-webkit-input-placeholder,
.cid-sPGPyPvXSB .field-input:focus::-webkit-input-placeholder {
  color: #36187d;
}
.cid-sPGPyPvXSB .form-control:hover:-moz-placeholder,
.cid-sPGPyPvXSB .field-input:hover:-moz-placeholder,
.cid-sPGPyPvXSB .form-control:focus:-moz-placeholder,
.cid-sPGPyPvXSB .field-input:focus:-moz-placeholder,
.cid-sPGPyPvXSB .form-control:hover:-moz-placeholder,
.cid-sPGPyPvXSB .field-input:hover:-moz-placeholder,
.cid-sPGPyPvXSB .form-control:focus:-moz-placeholder,
.cid-sPGPyPvXSB .field-input:focus:-moz-placeholder {
  color: #36187d;
}
.cid-sPGPyPvXSB .jq-number__spin:hover,
.cid-sPGPyPvXSB .jq-number__spin:focus {
  background-color: #edeff3;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sPGPyPvXSB .jq-number__spin {
  background-color: #edeff3;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPGPyPvXSB .jq-selectbox li,
.cid-sPGPyPvXSB .jq-selectbox li {
  background-color: #edeff3;
  color: #000000;
}
.cid-sPGPyPvXSB .jq-selectbox li:hover,
.cid-sPGPyPvXSB .jq-selectbox li.selected {
  background-color: #edeff3;
  color: #000000;
}
.cid-sPGPyPvXSB .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sPGPyPvXSB .jq-number__spin.minus:hover:after,
.cid-sPGPyPvXSB .jq-number__spin.plus:hover:after {
  border-top-color: #edeff3;
  border-bottom-color: #edeff3;
}
.cid-sPGPyPvXSB .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sPGPyPvXSB .jq-number__spin.minus:after,
.cid-sPGPyPvXSB .jq-number__spin.plus:after {
  border-top-color: #edeff3;
  border-bottom-color: #edeff3;
}
.cid-sPGPyPvXSB input::-webkit-clear-button {
  display: none;
}
.cid-sPGPyPvXSB input::-webkit-inner-spin-button {
  display: none;
}
.cid-sPGPyPvXSB input::-webkit-outer-spin-button {
  display: none;
}
.cid-sPGPyPvXSB input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sPGPyPvXSB H4 {
  color: #36187d;
}
.cid-sPGPHtlQpI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sPGPHtlQpI .google-map {
  height: 30rem;
  position: relative;
}
.cid-sPGPHtlQpI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sPGPHtlQpI .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sPGPHtlQpI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPGPHtlQpI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sPGPdceAaN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGPdceAaN .mbr-text {
  color: #ffffff;
}
.cid-sPGPdceAaN .container {
  max-width: 1000px;
}
.cid-sPGPdceAaN h4 {
  text-align: center;
}
.cid-sPGPdceAaN p {
  text-align: center;
}
.cid-sPGPdceAaN .row {
  justify-content: center;
}
.cid-sPGPdceAaN .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGPdceAaN .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGPdceAaN .card-title,
.cid-sPGPdceAaN .card-img {
  color: #e43f3f;
}
.cid-sPGPdceAaN .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGPdceAaN .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGPdceAaN img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMxiYMQb {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMxiYMQb .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMxiYMQb .mbr-section-title b,
.cid-sPMMxiYMQb .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMxiYMQb .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPdxekgvDV {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sPdxekgvDV .row {
  align-items: center;
  justify-content: space-between;
}
.cid-sPdxekgvDV .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-sPdxekgvDV .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-sPdxekgvDV .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-sPdxekgvDV .right-side {
  max-width: 554px;
}
.cid-sPdxekgvDV .rs {
  margin-right: 60px;
}
.cid-sPdxekgvDV .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-sPdxekgvDV .margin {
  margin-right: 14px;
}
.cid-sPdxekgvDV .gray {
  padding: 45px 0;
  background-color: #eff0f6;
}
.cid-sPdxekgvDV img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-sPdxekgvDV .gray {
    padding: 0px 0 5px;
  }
  .cid-sPdxekgvDV img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-sPdxekgvDV .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-sPdxekgvDV .b {
    margin-bottom: 10px;
  }
}
.cid-sPdxekgvDV .btn {
  margin-top: 20px;
}
.cid-sPdxekgvDV a.btn > span {
  margin-left: 0.5rem;
}
.cid-sPdxekgvDV .mbr-text,
.cid-sPdxekgvDV .button-align {
  color: #232323;
}
.cid-sPdxFI0GeA {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sPdvBMollH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPdvBMollH .mbr-text {
  color: #ffffff;
}
.cid-sPdvBMollH .container {
  max-width: 1000px;
}
.cid-sPdvBMollH h4 {
  text-align: center;
}
.cid-sPdvBMollH p {
  text-align: center;
}
.cid-sPdvBMollH .row {
  justify-content: center;
}
.cid-sPdvBMollH .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPdvBMollH .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPdvBMollH .card-title,
.cid-sPdvBMollH .card-img {
  color: #e43f3f;
}
.cid-sPdvBMollH .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPdvBMollH .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPdvBMollH img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMAm4XB8 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMAm4XB8 .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMAm4XB8 .mbr-section-title b,
.cid-sPMMAm4XB8 .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMAm4XB8 .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPdBSQv43U {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQTlsE1nUO {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sQTlsE1nUO .timeline-element {
  position: relative;
}
.cid-sQTlsE1nUO .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sQTlsE1nUO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sQTlsE1nUO .mbr-section-title,
.cid-sQTlsE1nUO .mbr-section-subtitle,
.cid-sQTlsE1nUO .timeline-date {
  text-align: center;
}
.cid-sQTlsE1nUO .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sQTlsE1nUO .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sQTlsE1nUO .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sQTlsE1nUO .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sQTlsE1nUO .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sQTlsE1nUO .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sQTlsE1nUO .timeline-date-wrapper,
  .cid-sQTlsE1nUO .timeline-text-wrapper,
  .cid-sQTlsE1nUO .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sQTlsE1nUO .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-sQTlsE1nUO .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQTlsE1nUO .timeline-date-wrapper,
  .cid-sQTlsE1nUO .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sQTlsE1nUO .timeline-date-wrapper,
  .cid-sQTlsE1nUO .timeline-text-wrapper,
  .cid-sQTlsE1nUO .image-wrapper {
    padding: 2rem;
  }
}
.cid-sPdxZQAuTv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPdxZQAuTv .mbr-text {
  color: #ffffff;
}
.cid-sPdxZQAuTv .container {
  max-width: 1000px;
}
.cid-sPdxZQAuTv h4 {
  text-align: center;
}
.cid-sPdxZQAuTv p {
  text-align: center;
}
.cid-sPdxZQAuTv .row {
  justify-content: center;
}
.cid-sPdxZQAuTv .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPdxZQAuTv .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPdxZQAuTv .card-title,
.cid-sPdxZQAuTv .card-img {
  color: #e43f3f;
}
.cid-sPdxZQAuTv .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPdxZQAuTv .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPdxZQAuTv img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMDENatt {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMDENatt .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMDENatt .mbr-section-title b,
.cid-sPMMDENatt .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMDENatt .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPdDPIaNqu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sPdEQQah4P {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #fafafa;
}
.cid-sPdEQQah4P .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPdEQQah4P .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPdEQQah4P .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPdEQQah4P .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPdEQQah4P .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPdEQQah4P .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPdEQQah4P .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPdEQQah4P .social-row {
  text-align: center;
}
.cid-sPdEQQah4P .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #2299aa;
  transition: all 0.3s;
}
.cid-sPdEQQah4P .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-sPdEQQah4P .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-sPdEQQah4P .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPdE9dUDPq {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background: #fafafa;
}
.cid-sPdE9dUDPq .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPdE9dUDPq .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPdE9dUDPq .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPdE9dUDPq .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPdE9dUDPq .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPdE9dUDPq .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPdE9dUDPq .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPdE9dUDPq .social-row {
  text-align: center;
}
.cid-sPdE9dUDPq .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #2299aa;
  transition: all 0.3s;
}
.cid-sPdE9dUDPq .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-sPdE9dUDPq .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-sPdE9dUDPq .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPdFtP30CA {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #fafafa;
}
.cid-sPdFtP30CA .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPdFtP30CA .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPdFtP30CA .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPdFtP30CA .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPdFtP30CA .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPdFtP30CA .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPdFtP30CA .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPdFtP30CA .social-row {
  text-align: center;
}
.cid-sPdFtP30CA .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #2299aa;
  transition: all 0.3s;
}
.cid-sPdFtP30CA .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-sPdFtP30CA .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-sPdFtP30CA .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPdFQB2mfd {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #fafafa;
}
.cid-sPdFQB2mfd .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPdFQB2mfd .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPdFQB2mfd .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPdFQB2mfd .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPdFQB2mfd .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPdFQB2mfd .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPdFQB2mfd .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPdFQB2mfd .social-row {
  text-align: center;
}
.cid-sPdFQB2mfd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #2299aa;
  transition: all 0.3s;
}
.cid-sPdFQB2mfd .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-sPdFQB2mfd .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-sPdFQB2mfd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPdGufDe09 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #fafafa;
}
.cid-sPdGufDe09 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPdGufDe09 .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPdGufDe09 .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPdGufDe09 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPdGufDe09 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPdGufDe09 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPdGufDe09 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPdGufDe09 .social-row {
  text-align: center;
}
.cid-sPdGufDe09 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #2299aa;
  transition: all 0.3s;
}
.cid-sPdGufDe09 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-sPdGufDe09 .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-sPdGufDe09 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPdGFGVPQJ {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #fafafa;
}
.cid-sPdGFGVPQJ .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPdGFGVPQJ .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPdGFGVPQJ .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPdGFGVPQJ .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPdGFGVPQJ .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPdGFGVPQJ .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPdGFGVPQJ .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPdGFGVPQJ .social-row {
  text-align: center;
}
.cid-sPdGFGVPQJ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #2299aa;
  transition: all 0.3s;
}
.cid-sPdGFGVPQJ .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-sPdGFGVPQJ .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-sPdGFGVPQJ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPdDPJkMnu {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPdDPJkMnu .mbr-text {
  color: #ffffff;
}
.cid-sPdDPJkMnu .container {
  max-width: 1000px;
}
.cid-sPdDPJkMnu h4 {
  text-align: center;
}
.cid-sPdDPJkMnu p {
  text-align: center;
}
.cid-sPdDPJkMnu .row {
  justify-content: center;
}
.cid-sPdDPJkMnu .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPdDPJkMnu .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPdDPJkMnu .card-title,
.cid-sPdDPJkMnu .card-img {
  color: #e43f3f;
}
.cid-sPdDPJkMnu .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPdDPJkMnu .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPdDPJkMnu img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMGhaq0E {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMGhaq0E .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMGhaq0E .mbr-section-title b,
.cid-sPMMGhaq0E .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMGhaq0E .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGIftcZVX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sPGIfz4zYp {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #fafafa;
}
.cid-sPGIfz4zYp .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPGIfz4zYp .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPGIfz4zYp .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPGIfz4zYp .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPGIfz4zYp .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPGIfz4zYp .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPGIfz4zYp .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPGIfz4zYp .social-row {
  text-align: center;
}
.cid-sPGIfz4zYp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #2299aa;
  transition: all 0.3s;
}
.cid-sPGIfz4zYp .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-sPGIfz4zYp .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-sPGIfz4zYp .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPGIfAbQNg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGIfAbQNg .mbr-text {
  color: #ffffff;
}
.cid-sPGIfAbQNg .container {
  max-width: 1000px;
}
.cid-sPGIfAbQNg h4 {
  text-align: center;
}
.cid-sPGIfAbQNg p {
  text-align: center;
}
.cid-sPGIfAbQNg .row {
  justify-content: center;
}
.cid-sPGIfAbQNg .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGIfAbQNg .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGIfAbQNg .card-title,
.cid-sPGIfAbQNg .card-img {
  color: #e43f3f;
}
.cid-sPGIfAbQNg .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGIfAbQNg .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGIfAbQNg img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMJ9JIo5 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMJ9JIo5 .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMJ9JIo5 .mbr-section-title b,
.cid-sPMMJ9JIo5 .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMJ9JIo5 .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGIGf2Wc4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sPGIGfsYyD {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #fafafa;
}
.cid-sPGIGfsYyD .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPGIGfsYyD .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPGIGfsYyD .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPGIGfsYyD .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPGIGfsYyD .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPGIGfsYyD .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPGIGfsYyD .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPGIGfsYyD .social-row {
  text-align: center;
}
.cid-sPGIGfsYyD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #2299aa;
  transition: all 0.3s;
}
.cid-sPGIGfsYyD .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-sPGIGfsYyD .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-sPGIGfsYyD .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPGIGgmtBB {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGIGgmtBB .mbr-text {
  color: #ffffff;
}
.cid-sPGIGgmtBB .container {
  max-width: 1000px;
}
.cid-sPGIGgmtBB h4 {
  text-align: center;
}
.cid-sPGIGgmtBB p {
  text-align: center;
}
.cid-sPGIGgmtBB .row {
  justify-content: center;
}
.cid-sPGIGgmtBB .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGIGgmtBB .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGIGgmtBB .card-title,
.cid-sPGIGgmtBB .card-img {
  color: #e43f3f;
}
.cid-sPGIGgmtBB .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGIGgmtBB .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGIGgmtBB img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMLv3JUS {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMLv3JUS .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMLv3JUS .mbr-section-title b,
.cid-sPMMLv3JUS .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMLv3JUS .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGJ62nqhT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sPGJ62Nd9S {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #fafafa;
}
.cid-sPGJ62Nd9S .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPGJ62Nd9S .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPGJ62Nd9S .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPGJ62Nd9S .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPGJ62Nd9S .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPGJ62Nd9S .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPGJ62Nd9S .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPGJ62Nd9S .social-row {
  text-align: center;
}
.cid-sPGJ62Nd9S .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #2299aa;
  transition: all 0.3s;
}
.cid-sPGJ62Nd9S .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-sPGJ62Nd9S .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-sPGJ62Nd9S .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPGJ63EpFr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGJ63EpFr .mbr-text {
  color: #ffffff;
}
.cid-sPGJ63EpFr .container {
  max-width: 1000px;
}
.cid-sPGJ63EpFr h4 {
  text-align: center;
}
.cid-sPGJ63EpFr p {
  text-align: center;
}
.cid-sPGJ63EpFr .row {
  justify-content: center;
}
.cid-sPGJ63EpFr .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGJ63EpFr .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGJ63EpFr .card-title,
.cid-sPGJ63EpFr .card-img {
  color: #e43f3f;
}
.cid-sPGJ63EpFr .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGJ63EpFr .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGJ63EpFr img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMOdjwQ7 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMOdjwQ7 .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMOdjwQ7 .mbr-section-title b,
.cid-sPMMOdjwQ7 .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMOdjwQ7 .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGJlhE8JJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPGJwmEMdb {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPGJwmEMdb img,
.cid-sPGJwmEMdb .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sPGJwmEMdb .item:focus,
.cid-sPGJwmEMdb span:focus {
  outline: none;
}
.cid-sPGJwmEMdb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sPGJwmEMdb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sPGJwmEMdb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sPGJwmEMdb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPGJwmEMdb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sPGJwmEMdb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sPGJwmEMdb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sPGJwmEMdb .mbr-section-title {
  color: #232323;
}
.cid-sPGJwmEMdb .mbr-text,
.cid-sPGJwmEMdb .mbr-section-btn {
  text-align: left;
}
.cid-sPGJwmEMdb .item-title {
  text-align: left;
}
.cid-sPGJwmEMdb .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sPGJliQbHS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGJliQbHS .mbr-text {
  color: #ffffff;
}
.cid-sPGJliQbHS .container {
  max-width: 1000px;
}
.cid-sPGJliQbHS h4 {
  text-align: center;
}
.cid-sPGJliQbHS p {
  text-align: center;
}
.cid-sPGJliQbHS .row {
  justify-content: center;
}
.cid-sPGJliQbHS .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGJliQbHS .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGJliQbHS .card-title,
.cid-sPGJliQbHS .card-img {
  color: #e43f3f;
}
.cid-sPGJliQbHS .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGJliQbHS .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGJliQbHS img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMSmzWFS {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMSmzWFS .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMSmzWFS .mbr-section-title b,
.cid-sPMMSmzWFS .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMSmzWFS .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGKhLeXx5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPGKhLGU5N {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPGKhLGU5N img,
.cid-sPGKhLGU5N .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sPGKhLGU5N .item:focus,
.cid-sPGKhLGU5N span:focus {
  outline: none;
}
.cid-sPGKhLGU5N .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sPGKhLGU5N .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sPGKhLGU5N .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sPGKhLGU5N .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPGKhLGU5N .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sPGKhLGU5N .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sPGKhLGU5N .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sPGKhLGU5N .mbr-section-title {
  color: #232323;
}
.cid-sPGKhLGU5N .mbr-text,
.cid-sPGKhLGU5N .mbr-section-btn {
  text-align: left;
}
.cid-sPGKhLGU5N .item-title {
  text-align: left;
}
.cid-sPGKhLGU5N .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sPGKhMcgIK {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGKhMcgIK .mbr-text {
  color: #ffffff;
}
.cid-sPGKhMcgIK .container {
  max-width: 1000px;
}
.cid-sPGKhMcgIK h4 {
  text-align: center;
}
.cid-sPGKhMcgIK p {
  text-align: center;
}
.cid-sPGKhMcgIK .row {
  justify-content: center;
}
.cid-sPGKhMcgIK .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGKhMcgIK .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGKhMcgIK .card-title,
.cid-sPGKhMcgIK .card-img {
  color: #e43f3f;
}
.cid-sPGKhMcgIK .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGKhMcgIK .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGKhMcgIK img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMV4YK8O {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMV4YK8O .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMV4YK8O .mbr-section-title b,
.cid-sPMMV4YK8O .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMV4YK8O .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGLh35Nbq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPGLh3PoBJ {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPGLh3PoBJ img,
.cid-sPGLh3PoBJ .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sPGLh3PoBJ .item:focus,
.cid-sPGLh3PoBJ span:focus {
  outline: none;
}
.cid-sPGLh3PoBJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sPGLh3PoBJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sPGLh3PoBJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sPGLh3PoBJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPGLh3PoBJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sPGLh3PoBJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sPGLh3PoBJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sPGLh3PoBJ .mbr-section-title {
  color: #232323;
}
.cid-sPGLh3PoBJ .mbr-text,
.cid-sPGLh3PoBJ .mbr-section-btn {
  text-align: left;
}
.cid-sPGLh3PoBJ .item-title {
  text-align: left;
}
.cid-sPGLh3PoBJ .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sPGLh4rgxu {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGLh4rgxu .mbr-text {
  color: #ffffff;
}
.cid-sPGLh4rgxu .container {
  max-width: 1000px;
}
.cid-sPGLh4rgxu h4 {
  text-align: center;
}
.cid-sPGLh4rgxu p {
  text-align: center;
}
.cid-sPGLh4rgxu .row {
  justify-content: center;
}
.cid-sPGLh4rgxu .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGLh4rgxu .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGLh4rgxu .card-title,
.cid-sPGLh4rgxu .card-img {
  color: #e43f3f;
}
.cid-sPGLh4rgxu .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGLh4rgxu .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGLh4rgxu img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMMXH51DS {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMMXH51DS .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMMXH51DS .mbr-section-title b,
.cid-sPMMXH51DS .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMMXH51DS .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGM8z5PvC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPGMLw2kdN {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPGMLw2kdN .mbr-section-title {
  margin-bottom: 50px;
  color: #000000;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.cid-sPGMLw2kdN .line {
  width: 100%;
  background-color: #e9e9e9;
  height: 1px;
  margin: 36px 0;
  padding: 0;
}
.cid-sPGMLw2kdN .date {
  color: #000000;
  font-weight: 600;
}
.cid-sPGMLw2kdN .workplace {
  color: #000000;
  padding-left: 50px;
}
.cid-sPGMLw2kdN .inline {
  align-items: center;
}
.cid-sPGMLw2kdN .button {
  text-align: end;
}
.cid-sPGMLw2kdN .btn {
  font-weight: 500;
}
.cid-sPGMLw2kdN .btn:hover {
  transform: translateY(-5px);
}
.cid-sPGMLw2kdN .container {
  max-width: 770px;
}
@media (max-width: 575px) {
  .cid-sPGMLw2kdN .workplace {
    padding-left: 0px;
    text-align: center;
    margin: 15px auto;
  }
  .cid-sPGMLw2kdN .button {
    text-align: center;
  }
  .cid-sPGMLw2kdN .date {
    text-align: center;
  }
}
.cid-sPGM8A8jH5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGM8A8jH5 .mbr-text {
  color: #ffffff;
}
.cid-sPGM8A8jH5 .container {
  max-width: 1000px;
}
.cid-sPGM8A8jH5 h4 {
  text-align: center;
}
.cid-sPGM8A8jH5 p {
  text-align: center;
}
.cid-sPGM8A8jH5 .row {
  justify-content: center;
}
.cid-sPGM8A8jH5 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGM8A8jH5 .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGM8A8jH5 .card-title,
.cid-sPGM8A8jH5 .card-img {
  color: #e43f3f;
}
.cid-sPGM8A8jH5 .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGM8A8jH5 .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGM8A8jH5 img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMN0anxcY {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMN0anxcY .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMN0anxcY .mbr-section-title b,
.cid-sPMN0anxcY .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMN0anxcY .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGNjpGpqW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPGNjqeZhS {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPGNjqeZhS .mbr-section-title {
  margin-bottom: 50px;
  color: #000000;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.cid-sPGNjqeZhS .line {
  width: 100%;
  background-color: #e9e9e9;
  height: 1px;
  margin: 36px 0;
  padding: 0;
}
.cid-sPGNjqeZhS .date {
  color: #000000;
  font-weight: 600;
}
.cid-sPGNjqeZhS .workplace {
  color: #000000;
  padding-left: 50px;
}
.cid-sPGNjqeZhS .inline {
  align-items: center;
}
.cid-sPGNjqeZhS .button {
  text-align: end;
}
.cid-sPGNjqeZhS .btn {
  font-weight: 500;
}
.cid-sPGNjqeZhS .btn:hover {
  transform: translateY(-5px);
}
.cid-sPGNjqeZhS .container {
  max-width: 770px;
}
@media (max-width: 575px) {
  .cid-sPGNjqeZhS .workplace {
    padding-left: 0px;
    text-align: center;
    margin: 15px auto;
  }
  .cid-sPGNjqeZhS .button {
    text-align: center;
  }
  .cid-sPGNjqeZhS .date {
    text-align: center;
  }
}
.cid-sPGNjqT46U {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGNjqT46U .mbr-text {
  color: #ffffff;
}
.cid-sPGNjqT46U .container {
  max-width: 1000px;
}
.cid-sPGNjqT46U h4 {
  text-align: center;
}
.cid-sPGNjqT46U p {
  text-align: center;
}
.cid-sPGNjqT46U .row {
  justify-content: center;
}
.cid-sPGNjqT46U .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGNjqT46U .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGNjqT46U .card-title,
.cid-sPGNjqT46U .card-img {
  color: #e43f3f;
}
.cid-sPGNjqT46U .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGNjqT46U .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGNjqT46U img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMN2pf3zS {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMN2pf3zS .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMN2pf3zS .mbr-section-title b,
.cid-sPMN2pf3zS .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMN2pf3zS .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPGKJA0s6I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPGKRPX2KJ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sPGKWwwj99 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sPGKWwwj99 .item {
  padding-bottom: 2rem;
}
.cid-sPGKWwwj99 .item-wrapper {
  position: relative;
}
.cid-sPGKWwwj99 .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-sPGKWwwj99 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sPGKWwwj99 .carousel-control,
.cid-sPGKWwwj99 .close {
  background: #1b1b1b;
}
.cid-sPGKWwwj99 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sPGKWwwj99 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sPGKWwwj99 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sPGKWwwj99 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sPGKWwwj99 .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-sPGKWwwj99 .close::before {
  content: '\e91a';
}
.cid-sPGKWwwj99 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sPGKWwwj99 .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-sPGKWwwj99 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPGKWwwj99 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sPGKWwwj99 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sPGKWwwj99 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sPGKWwwj99 .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-sPGKWwwj99 .carousel-indicators li.active,
.cid-sPGKWwwj99 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sPGKWwwj99 .carousel-indicators li::after,
.cid-sPGKWwwj99 .carousel-indicators li::before {
  content: none;
}
.cid-sPGKWwwj99 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sPGKWwwj99 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sPGKWwwj99 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sPGKWwwj99 .carousel-indicators {
    display: none;
  }
}
.cid-sPGKWwwj99 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sPGKWwwj99 .carousel-inner > .active {
  display: block;
}
.cid-sPGKWwwj99 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPGKWwwj99 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sPGKWwwj99 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sPGKWwwj99 .carousel-control,
  .cid-sPGKWwwj99 .carousel-indicators,
  .cid-sPGKWwwj99 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sPGKWwwj99 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sPGKWwwj99 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sPGKWwwj99 .carousel-indicators .active,
.cid-sPGKWwwj99 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sPGKWwwj99 .carousel-indicators .active {
  background: #fff;
}
.cid-sPGKWwwj99 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sPGKWwwj99 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sPGKWwwj99 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sPGKWwwj99 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sPGKWwwj99 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sPGKWwwj99 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sPGKWwwj99 .carousel {
  width: 100%;
}
.cid-sPGKWwwj99 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sPGKWwwj99 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sPGKWwwj99 .modal.fade .modal-dialog,
.cid-sPGKWwwj99 .modal.in .modal-dialog {
  transform: none;
}
.cid-sPGKWwwj99 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sPGKWwwj99 H6 {
  text-align: center;
}
.cid-sPGKJB4K0g {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPGKJB4K0g .mbr-text {
  color: #ffffff;
}
.cid-sPGKJB4K0g .container {
  max-width: 1000px;
}
.cid-sPGKJB4K0g h4 {
  text-align: center;
}
.cid-sPGKJB4K0g p {
  text-align: center;
}
.cid-sPGKJB4K0g .row {
  justify-content: center;
}
.cid-sPGKJB4K0g .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPGKJB4K0g .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPGKJB4K0g .card-title,
.cid-sPGKJB4K0g .card-img {
  color: #e43f3f;
}
.cid-sPGKJB4K0g .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPGKJB4K0g .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPGKJB4K0g img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}
.cid-sPMN4AM6QE {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/back-1680x220.png");
}
.cid-sPMN4AM6QE .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sPMN4AM6QE .mbr-section-title b,
.cid-sPMN4AM6QE .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-sPMN4AM6QE .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-sPdCb6K2i8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPdCb6K2i8 .card-title {
  padding-bottom: 18px;
  margin: 0;
  color: #14142b;
}
.cid-sPdCb6K2i8 .align-left {
  max-width: 547px;
}
.cid-sPdCb6K2i8 .mbr-text,
.cid-sPdCb6K2i8 .mbr-section-btn {
  color: #232323;
}
.cid-sPdCb6K2i8 .left-side {
  margin-right: 20px;
}
.cid-sPdCb6K2i8 .right-side {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .cid-sPdCb6K2i8 .left-side {
    margin-right: 0px;
  }
  .cid-sPdCb6K2i8 .right-side {
    padding-top: 20px;
    margin-left: 0px;
  }
}
.cid-sPdC1T7jgP {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-sPdC1T7jgP .mbr-text {
  color: #ffffff;
}
.cid-sPdC1T7jgP .container {
  max-width: 1000px;
}
.cid-sPdC1T7jgP h4 {
  text-align: center;
}
.cid-sPdC1T7jgP p {
  text-align: center;
}
.cid-sPdC1T7jgP .row {
  justify-content: center;
}
.cid-sPdC1T7jgP .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sPdC1T7jgP .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}
.cid-sPdC1T7jgP .card-title,
.cid-sPdC1T7jgP .card-img {
  color: #e43f3f;
}
.cid-sPdC1T7jgP .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-sPdC1T7jgP .icon-wrap:before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-sPdC1T7jgP img {
  margin-bottom: 1rem;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sRy6shgQck .navbar-dropdown {
  position: relative !important;
}
.cid-sRy6shgQck .container-fluid {
  padding: 0;
}
.cid-sRy6shgQck .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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-sRy6shgQck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRy6shgQck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRy6shgQck .dropdown-item:hover,
.cid-sRy6shgQck .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRy6shgQck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRy6shgQck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRy6shgQck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRy6shgQck .nav-link {
  position: relative;
}
.cid-sRy6shgQck .nav-link::before {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  -webkit-transition: width 0.5s ease-in-out;
  -moz--transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.cid-sRy6shgQck .nav-link::after {
  background: transparent !important;
}
.cid-sRy6shgQck .nav-link:hover::before,
.cid-sRy6shgQck .nav-link :focus::before {
  width: 100%;
}
.cid-sRy6shgQck .container {
  display: flex;
  margin: auto;
}
.cid-sRy6shgQck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid currentColor;
}
.cid-sRy6shgQck .iconfont-wrapper:hover {
  background: #FFFFFF;
}
.cid-sRy6shgQck .iconfont-wrapper:hover .mbr-iconfont {
  color: #141414;
}
.cid-sRy6shgQck .dropdown-menu,
.cid-sRy6shgQck .navbar.opened {
  background: #141414 !important;
}
.cid-sRy6shgQck .nav-item:focus,
.cid-sRy6shgQck .nav-link:focus {
  outline: none;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
  background: transparent !important;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRy6shgQck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRy6shgQck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRy6shgQck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRy6shgQck .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #141414;
}
.cid-sRy6shgQck .navbar.opened {
  transition: all 0.3s;
}
.cid-sRy6shgQck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRy6shgQck .navbar .navbar-logo img {
  width: auto;
}
.cid-sRy6shgQck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRy6shgQck .navbar.collapsed {
  justify-content: center;
}
.cid-sRy6shgQck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRy6shgQck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRy6shgQck .navbar.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-sRy6shgQck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRy6shgQck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRy6shgQck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRy6shgQck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRy6shgQck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRy6shgQck .navbar .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-sRy6shgQck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRy6shgQck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRy6shgQck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRy6shgQck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRy6shgQck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRy6shgQck .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRy6shgQck .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRy6shgQck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRy6shgQck .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-sRy6shgQck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRy6shgQck .navbar-brand .display-7 {
  font-size: 24px;
}
.cid-sRy6shgQck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRy6shgQck .dropdown-item.active,
.cid-sRy6shgQck .dropdown-item:active {
  background-color: transparent;
}
.cid-sRy6shgQck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRy6shgQck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #141414;
}
.cid-sRy6shgQck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRy6shgQck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRy6shgQck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRy6shgQck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-buttons {
    margin-bottom: -1px;
    margin-top: -1px;
  }
}
.cid-sRy6shgQck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRy6shgQck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRy6shgQck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRy6shgQck .navbar-dropdown {
  padding: 0 24px;
}
@media (min-width: 576px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 40px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 60px;
  }
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .navbar-dropdown {
    padding: 0 0 0 60px;
  }
}
.cid-sRy6shgQck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRy6shgQck .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .icons-menu {
    padding-left: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRy6shgQck .navbar {
    height: 70px;
  }
  .cid-sRy6shgQck .navbar.opened {
    height: auto;
  }
  .cid-sRy6shgQck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRy6shgQck .btn {
  min-height: 81px;
  margin: 0.667rem 0.667rem 1.4rem;
  padding: 0 64px;
}
@media (min-width: 992px) {
  .cid-sRy6shgQck .btn {
    margin: 0 0 0 0.6rem;
  }
}
.cid-sRy6shgQck .btn-info-outline {
  border: 1px solid currentColor;
  background: #232323 !important;
}
.cid-sRy6shgQck .btn-info-outline:hover {
  background: #595959 !important;
  border: 1px solid currentColor !important;
}                                 








.cid-sUWW0nfIWq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #edeff0;
}
.cid-sUWW0nfIWq .mbr-text {
  margin: 0;
}
.cid-sUWW0nfIWq .row-element {
  padding: 0;
}
.cid-sUWW0nfIWq img {
  border-radius: 10px;
  object-fit: cover;
}
.cid-sUWW0nfIWq .carousel-item.active,
.cid-sUWW0nfIWq .carousel-item-next,
.cid-sUWW0nfIWq .carousel-item-prev {
  display: flex;
}
.cid-sUWW0nfIWq .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
}
.cid-sUWW0nfIWq .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #40b0bf;
}
.cid-sUWW0nfIWq .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-sUWW0nfIWq .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sUWW0nfIWq .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-sUWW0nfIWq .carousel-controls {
    display: block;
  }
  .cid-sUWW0nfIWq .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-sUWW0nfIWq .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-sUWW0nfIWq .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-sUWW0nfIWq .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-sUWW0nfIWq .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUWW0nfIWq .media-container-row {
    width: 100%;
  }
}
.cid-sUWW0nfIWq .text-content {
  padding: 3rem;
}
.cid-sUWW0nfIWq .mbr-title {
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
}
.cid-sUWW0nfIWq .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-sUWW0nfIWq .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-sUWW0nfIWq .card-text {
  line-height: 1.72;
  text-align: left;
}
.cid-sUWW0nfIWq .link {
  text-align: left;
}
