body {
  font-family: Dosis;
}
.display-1 {
  font-family: 'Nothing You Could Do', handwriting;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Nothing You Could Do', handwriting;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Amatic SC', handwriting;
  font-size: 1.4rem;
}
.display-4 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-5 {
  font-family: 'Special Elite', display;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Nothing You Could Do', handwriting;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #333333 !important;
}
.bg-success {
  background-color: #130c02 !important;
}
.bg-info {
  background-color: #fff3f3 !important;
}
.bg-warning {
  background-color: #e2a8a4 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #fff3f3 !important;
  border-color: #fff3f3 !important;
  color: #f30000 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #f30000 !important;
  background-color: #ffa6a6 !important;
  border-color: #ffa6a6 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #f30000 !important;
  background-color: #ffa6a6 !important;
  border-color: #ffa6a6 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #130c02 !important;
  border-color: #130c02 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #e2a8a4 !important;
  border-color: #e2a8a4 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #d0716a !important;
  border-color: #d0716a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #d0716a !important;
  border-color: #d0716a !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #215f88;
  color: #215f88 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #ff8d8d;
  color: #ff8d8d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #f30000 !important;
  background-color: #fff3f3;
  border-color: #fff3f3;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #f30000 !important;
  background-color: #fff3f3 !important;
  border-color: #fff3f3 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #130c02;
  border-color: #130c02;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #130c02 !important;
  border-color: #130c02 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #c95e57;
  color: #c95e57 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #e2a8a4;
  border-color: #e2a8a4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e2a8a4 !important;
  border-color: #e2a8a4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #333333 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #130c02 !important;
}
.text-info {
  color: #fff3f3 !important;
}
.text-warning {
  color: #e2a8a4 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ff8d8d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #c95e57 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fff3f3;
}
.alert-warning {
  background-color: #e2a8a4;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #333333;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a6a6a6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f2c688;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
#scrollToTop a {
  background: #444444;
}
#scrollToTop a i:before {
  background: #ffffff;
}
#scrollToTop a i:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.mbr-arrow {
  background-color: #444444;
  opacity: .5;
  transition: .3s;
}
.mbr-arrow a {
  color: #ffffff;
}
.mbr-arrow:hover {
  opacity: .7;
}
.form-control {
  font-family: 'Nothing You Could Do', handwriting;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #333333;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form1 .input-group-btn a.btn {
  border-radius: 0 !important;
}
.form1 .input-group-btn button[type="submit"] {
  border-radius: 0 !important;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #333333;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #333333;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #333333;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #333333;
  border-bottom-color: #333333;
}
.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: #333333 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #3e97d1 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23333333' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-tdLz4kp5bN .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tdLz4kp5bN .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tdLz4kp5bN .nav-item:focus,
.cid-tdLz4kp5bN .nav-link:focus {
  outline: none;
}
.cid-tdLz4kp5bN .text-white:hover,
.cid-tdLz4kp5bN .text-white:active,
.cid-tdLz4kp5bN .text-white:focus {
  color: white!important;
}
.cid-tdLz4kp5bN .section {
  position: relative;
  overflow: visible!important;
}
.cid-tdLz4kp5bN .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tdLz4kp5bN .dropdown-item:hover {
  color: black!important;
}
.cid-tdLz4kp5bN .dropdown-menu {
  background-color: white!important;
}
.cid-tdLz4kp5bN .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tdLz4kp5bN .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #333333;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tdLz4kp5bN .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tdLz4kp5bN .nav-item .nav-link {
    position: relative;
  }
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tdLz4kp5bN .collapsed {
  flex-direction: row!important;
}
.cid-tdLz4kp5bN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdLz4kp5bN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdLz4kp5bN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tdLz4kp5bN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tdLz4kp5bN .navbar .dropdown-item {
  padding: .235rem 5rem;
}
.cid-tdLz4kp5bN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdLz4kp5bN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdLz4kp5bN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em  solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tdLz4kp5bN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tdLz4kp5bN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tdLz4kp5bN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdLz4kp5bN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em  solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tdLz4kp5bN .navbar .navbar-logo img {
    height: 8vw !important;
  }
  .cid-tdLz4kp5bN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdLz4kp5bN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tdLz4kp5bN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tdLz4kp5bN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tdLz4kp5bN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tdLz4kp5bN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tdLz4kp5bN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tdLz4kp5bN .navbar-caption {
  font-weight: 600!important;
}
.cid-tdLz4kp5bN .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdLz4kp5bN .navbar-brand .navbar-caption {
  line-height: 1 !important;
}
.cid-tdLz4kp5bN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdLz4kp5bN .dropdown-item.active,
.cid-tdLz4kp5bN .dropdown-item:active {
  background-color: transparent;
}
.cid-tdLz4kp5bN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdLz4kp5bN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdLz4kp5bN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdLz4kp5bN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdLz4kp5bN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdLz4kp5bN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tdLz4kp5bN .navbar-buttons {
  text-align: center;
}
.cid-tdLz4kp5bN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3d3d3d;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tdLz4kp5bN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdLz4kp5bN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tdLz4kp5bN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tdLz4kp5bN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdLz4kp5bN .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tdLz4kp5bN .nav-link {
  font-weight: 600!important;
}
.cid-tdLz4kp5bN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tdLz4kp5bN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tdLz4kp5bN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tdLz4kp5bN .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdLz4kp5bN .navbar {
    height: 77px;
  }
  .cid-tdLz4kp5bN .navbar.opened {
    height: auto;
  }
  .cid-tdLz4kp5bN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdLz4kp5bN .display-10 {
  font-size: 28px;
}
.cid-tdLz4kp5bN .display-10 emhalf {
  font-size: .5em;
}
@media (max-width: 991px) {
  .cid-tdLz4kp5bN .display-10 emhalf {
    font-size: 0.4em;
  }
}
@media (max-width: 575px) {
  .cid-tdLz4kp5bN .display-10 emhalf {
    font-size: 0.3em;
  }
}
@media (max-width: 991px) {
  .cid-tdLz4kp5bN .display-10 relsize {
    font-size: 0.6em;
  }
}
@media (max-width: 575px) {
  .cid-tdLz4kp5bN .display-10 relsize {
    font-size: 0.4em;
  }
}
.cid-tdLyrtFN2G {
  overflow-x: hidden !important;
}
.cid-tdLyrtFN2G .mbr-section-title {
  color: #b62519;
}
.cid-tdLyrtFN2G .mbr-text {
  color: #333333;
  letter-spacing: 5px;
  font-weight: 100;
  text-align: center;
}
.cid-tdLyrtFN2G .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 200s !important;
  animation-duration: 200s;
  background-image: url("../../../assets/images/background2-1983x1900.webp");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-tdLyrtFN2G .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-tdLyrtFN2G .mbr-overlay {
  z-index: 1;
}
.cid-tdLyrtFN2G .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-rj7ROGwSUd {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-rj7ROGwSUd .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-rj7ROGwSUd .mbr-text {
  width: 100%;
  height: auto;
  color: #333333;
  text-align: center;
}
.cid-rj7ROGwSUd .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-rj7ROGwSUd .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rj7ROGwSUd .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-rj7ROGwSUd .mbr-section-title {
  color: #333333;
  text-align: center;
}
.cid-tdV7BjSqBc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
@media (max-width: 991px) {
  .cid-tdV7BjSqBc .image {
    display: none !important;
  }
}
.cid-tdV7BjSqBc .image img {
  height: 500px;
}
.cid-tdV7BjSqBc .content__block {
  padding: 40px 0;
  height: 100%;
  align-items: center;
}
.cid-tdV7BjSqBc .mbr-section-title {
  margin-bottom: 15px;
  text-align: left;
}
.cid-tdV7BjSqBc .mbr-text {
  color: #919dab;
  margin-bottom: 0;
}
.cid-tdV7BjSqBc .block__products {
  padding-top: 10px;
}
.cid-tdV7BjSqBc .product__item {
  margin-top: 40px;
}
.cid-tdV7BjSqBc .image__item {
  width: 230px;
  height: 190px;
  transition: all .25s;
}
.cid-tdV7BjSqBc .image__item img {
  border-radius: 10px;
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.cid-tdV7BjSqBc .image__item:hover {
  opacity: .8;
}
.cid-tdV7BjSqBc .item__text {
  margin: 20px 0 0 40px;
}
@media (min-width: 767px) {
  .cid-tdV7BjSqBc .item__text {
    margin-top: 0;
  }
}
.cid-tdV7BjSqBc .item__title {
  width: 270px;
  min-width: 100%;
}
.cid-tdV7BjSqBc .name__item {
  margin-bottom: 0;
  width: 100%;
  letter-spacing: 2px;
}
.cid-tdV7BjSqBc .item__price {
  font-weight: 500;
  color: #333333;
  margin-bottom: 0;
  width: 100%;
  text-align: right;
}
.cid-tdV7BjSqBc .item__descr {
  margin-top: 10px;
}
.cid-tdV7BjSqBc .descr__text {
  margin-bottom: 0;
  color: #919dab;
}
.cid-tdV7BjSqBc .item__buttons {
  margin-top: 40px;
}
.cid-tdV7BjSqBc .mbr-section-btn {
  text-align: left;
}
.cid-tdV7BjSqBc .btn {
  height: 40px;
  font-weight: 500;
  margin-right: 10px;
}
.cid-tdV7BjSqBc .btn:nth-child(2) {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tdV7BjSqBc .row {
    margin-left: 0;
    margin-right: 0;
  }
  .cid-tdV7BjSqBc .item__text {
    margin: 20px 0 0;
  }
  .cid-tdV7BjSqBc .mbr-text {
    text-align: center;
  }
}
.cid-tdV7BjSqBc .descr__text,
.cid-tdV7BjSqBc .mbr-section-btn {
  color: #333333;
}
.cid-tdRZ7mnfFu {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-tdRZ7mnfFu .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-tdRZ7mnfFu .mbr-text {
  width: 100%;
  height: auto;
  color: #333333;
  text-align: center;
}
.cid-tdRZ7mnfFu .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-tdRZ7mnfFu .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tdRZ7mnfFu .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-tdRZ7mnfFu .mbr-section-title {
  color: #333333;
  text-align: center;
}
.cid-tdLAe1a6QT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-tdLAe1a6QT .row {
  flex-direction: row-reverse;
}
.cid-tdLAe1a6QT .row {
  align-items: center;
}
.cid-tdLAe1a6QT .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tdLAe1a6QT .image-wrapper {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tdLAe1a6QT .image-wrapper {
    padding-right: 2rem;
  }
}
.cid-tdLAe1a6QT .image-wrapper .img-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.cid-tdLAe1a6QT .image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.cid-tdLAe1a6QT .home-meet_headshot-filter {
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #7f5f5d;
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-tdLAe1a6QT .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tdLAe1a6QT .col-text {
    padding-left: 2rem;
  }
}
.cid-tdLAe1a6QT .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tdLAe1a6QT .mbr-section-title {
  margin-bottom: 1rem;
  color: #333333;
  width: 100%;
  text-align: center;
}
.cid-tdLAe1a6QT .mbr-text {
  color: #002549;
  width: 100%;
}
.cid-tdLAe1a6QT .btn-container {
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .cid-tdLAe1a6QT .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tdLAe1a6QT .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tdLAe1a6QT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdLAe1a6QT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdLAe1a6QT .mbr-text,
.cid-tdLAe1a6QT .mbr-section-btn {
  color: #333333;
}
.cid-tdRYz6GJE4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-tdRYz6GJE4 .row {
  align-items: center;
}
.cid-tdRYz6GJE4 .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tdRYz6GJE4 .image-wrapper {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tdRYz6GJE4 .image-wrapper {
    padding-left: 2rem;
  }
}
.cid-tdRYz6GJE4 .image-wrapper .img-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.cid-tdRYz6GJE4 .image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.cid-tdRYz6GJE4 .home-meet_headshot-filter {
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #7f5f5d;
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-tdRYz6GJE4 .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tdRYz6GJE4 .col-text {
    padding-right: 2rem;
  }
}
.cid-tdRYz6GJE4 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tdRYz6GJE4 .mbr-section-title {
  margin-bottom: 1rem;
  color: #333333;
  width: 100%;
  text-align: center;
}
.cid-tdRYz6GJE4 .mbr-text {
  color: #002549;
  width: 100%;
}
.cid-tdRYz6GJE4 .btn-container {
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .cid-tdRYz6GJE4 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tdRYz6GJE4 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tdRYz6GJE4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdRYz6GJE4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdRYz6GJE4 .mbr-text,
.cid-tdRYz6GJE4 .mbr-section-btn {
  color: #333333;
}
.cid-tdLzPbWULH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-tdLzPbWULH .row {
  flex-direction: row-reverse;
}
.cid-tdLzPbWULH .row {
  align-items: center;
}
.cid-tdLzPbWULH .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tdLzPbWULH .image-wrapper {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tdLzPbWULH .image-wrapper {
    padding-right: 2rem;
  }
}
.cid-tdLzPbWULH .image-wrapper .img-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.cid-tdLzPbWULH .image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.cid-tdLzPbWULH .home-meet_headshot-filter {
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #7f5f5d;
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-tdLzPbWULH .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tdLzPbWULH .col-text {
    padding-left: 2rem;
  }
}
.cid-tdLzPbWULH .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tdLzPbWULH .mbr-section-title {
  margin-bottom: 1rem;
  color: #1d2024;
  width: 100%;
}
.cid-tdLzPbWULH .mbr-text {
  color: #002549;
  width: 100%;
}
.cid-tdLzPbWULH .btn-container {
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .cid-tdLzPbWULH .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tdLzPbWULH .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tdLzPbWULH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdLzPbWULH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdLzPbWULH .mbr-text,
.cid-tdLzPbWULH .mbr-section-btn {
  color: #333333;
}
.cid-tdLzQSs1E4 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-tdLzQSs1E4 .card {
  height: auto;
  background-color: transparent;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
  transition: all 0.6s ease;
}
.cid-tdLzQSs1E4 .card:hover {
  transform: scale(1.03);
}
.cid-tdLzQSs1E4 .card-padding {
  padding: 0.72rem 0.75rem;
}
.cid-tdLzQSs1E4 .title-section {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .cid-tdLzQSs1E4 .title-section {
    padding: 0 6rem;
    margin-bottom: 4rem;
    text-align: center;
  }
}
.cid-tdLzQSs1E4 .img-container {
  display: flex;
  justify-content: center;
}
.cid-tdLzQSs1E4 .card-img-top {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
}
.cid-tdLzQSs1E4 .mbr-section-subtitle {
  text-align: center;
}
.cid-tdLzQSs1E4 .mbr-text {
  text-align: center;
}
.cid-tdLzQSs1E4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdLzQSs1E4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdLzQSs1E4 .mbr-section-title {
  color: #333333;
}
.cid-tdLzQSs1E4 .card-title {
  color: #333333;
}
.cid-tdOzFMVEtk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-tdOzFMVEtk .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-tdOzFMVEtk .mbr-text {
  width: 100%;
  height: auto;
  color: #333333;
  text-align: center;
}
.cid-tdOzFMVEtk .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-tdOzFMVEtk .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tdOzFMVEtk .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-tdOzFMVEtk .mbr-section-title {
  color: #333333;
  text-align: center;
}
.cid-tdOCgBuRa2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-tdOCgBuRa2 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-tdOCgBuRa2 .mbr-text {
  width: 100%;
  height: auto;
  color: #333333;
  text-align: center;
}
.cid-tdOCgBuRa2 .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-tdOCgBuRa2 .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tdOCgBuRa2 .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-tdOCgBuRa2 .mbr-section-title {
  color: #333333;
  text-align: center;
}
.cid-tdPXzG3tOg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-tdPXzG3tOg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdPXzG3tOg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdPXzG3tOg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tdPXzG3tOg .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tdPXzG3tOg .embla__button--next,
.cid-tdPXzG3tOg .embla__button--prev {
  display: flex;
}
.cid-tdPXzG3tOg .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tdPXzG3tOg .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tdPXzG3tOg .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tdPXzG3tOg .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tdPXzG3tOg .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tdPXzG3tOg .embla__button {
    top: auto;
  }
}
.cid-tdPXzG3tOg .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tdPXzG3tOg .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tdPXzG3tOg .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tdPXzG3tOg .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tdPXzG3tOg .embla {
  position: relative;
  width: 100%;
}
.cid-tdPXzG3tOg .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tdPXzG3tOg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tdPXzG3tOg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tdPXzG3tOg .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tdULNn8l57 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tdULNn8l57 .mbr-text {
  color: #000000;
}
.cid-tdRBmBWdzR.popup-builder {
  background-color: #ffffff;
}
.cid-tdRBmBWdzR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tdRBmBWdzR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tdRBmBWdzR .modal-content,
.cid-tdRBmBWdzR .modal-dialog {
  height: auto;
}
.cid-tdRBmBWdzR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tdRBmBWdzR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tdRBmBWdzR .form-wrapper .mbr-form .form-group,
  .cid-tdRBmBWdzR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tdRBmBWdzR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tdRBmBWdzR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdRBmBWdzR .mbr-text {
  text-align: center;
}
.cid-tdRBmBWdzR .pt-0 {
  padding-top: 0 !important;
}
.cid-tdRBmBWdzR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tdRBmBWdzR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tdRBmBWdzR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tdRBmBWdzR .modal-open {
  overflow: hidden;
}
.cid-tdRBmBWdzR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tdRBmBWdzR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tdRBmBWdzR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tdRBmBWdzR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tdRBmBWdzR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tdRBmBWdzR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tdRBmBWdzR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tdRBmBWdzR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tdRBmBWdzR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tdRBmBWdzR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tdRBmBWdzR .modal-backdrop.fade {
  opacity: 0;
}
.cid-tdRBmBWdzR .modal-backdrop.show {
  opacity: .5;
}
.cid-tdRBmBWdzR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tdRBmBWdzR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tdRBmBWdzR .modal-header {
    padding: 1rem;
  }
}
.cid-tdRBmBWdzR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tdRBmBWdzR .modal-header .close svg {
  fill: #353535;
}
.cid-tdRBmBWdzR .modal-header .close:hover {
  opacity: 1;
}
.cid-tdRBmBWdzR .modal-header .close:focus {
  outline: none;
}
.cid-tdRBmBWdzR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tdRBmBWdzR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tdRBmBWdzR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdRBmBWdzR .modal-body {
    padding: 1rem;
  }
}
.cid-tdRBmBWdzR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tdRBmBWdzR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdRBmBWdzR .modal-footer {
    padding: 1rem;
  }
}
.cid-tdRBmBWdzR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tdRBmBWdzR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tdRBmBWdzR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tdRBmBWdzR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tdRBmBWdzR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tdRBmBWdzR .modal-lg,
  .cid-tdRBmBWdzR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tdRBmBWdzR .modal-xl {
    max-width: 1140px;
  }
}
.cid-tdRBmBWdzR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tdRBmBWdzR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tdRBmBWdzR .form-group {
  margin-bottom: 1rem;
}
.cid-tdRBmBWdzR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tdRBmBWdzR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tdRBmBWdzR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tdRBmBWdzR .mbr-section-btn {
  margin: 0;
}
.cid-tdRBmBWdzR .mbr-section-btn .btn {
  margin: 0;
}
.cid-tdPc4reZWT.popup-builder {
  background-color: #ffffff;
}
.cid-tdPc4reZWT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tdPc4reZWT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tdPc4reZWT .modal-content,
.cid-tdPc4reZWT .modal-dialog {
  height: auto;
}
.cid-tdPc4reZWT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tdPc4reZWT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tdPc4reZWT .form-wrapper .mbr-form .form-group,
  .cid-tdPc4reZWT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tdPc4reZWT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tdPc4reZWT .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdPc4reZWT .mbr-text {
  text-align: center;
}
.cid-tdPc4reZWT .pt-0 {
  padding-top: 0 !important;
}
.cid-tdPc4reZWT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tdPc4reZWT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tdPc4reZWT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tdPc4reZWT .modal-open {
  overflow: hidden;
}
.cid-tdPc4reZWT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tdPc4reZWT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tdPc4reZWT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tdPc4reZWT .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tdPc4reZWT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tdPc4reZWT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tdPc4reZWT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tdPc4reZWT .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tdPc4reZWT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tdPc4reZWT .modal-backdrop.fade {
  opacity: 0;
}
.cid-tdPc4reZWT .modal-backdrop.show {
  opacity: .5;
}
.cid-tdPc4reZWT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 3rem;
  border-bottom: none;
}
.cid-tdPc4reZWT .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tdPc4reZWT .modal-header .close:hover {
  opacity: 1;
}
.cid-tdPc4reZWT .modal-header .close:focus {
  outline: none;
}
.cid-tdPc4reZWT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tdPc4reZWT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tdPc4reZWT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-tdPc4reZWT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tdPc4reZWT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tdPc4reZWT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tdPc4reZWT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tdPc4reZWT .modal-sm {
    max-width: 300px;
  }
  .cid-tdPc4reZWT .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tdPc4reZWT .modal-lg,
  .cid-tdPc4reZWT .modal-xl {
    max-width: 800px;
  }
  .cid-tdPc4reZWT .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tdPc4reZWT .modal-xl {
    max-width: 1140px;
  }
  .cid-tdPc4reZWT .container {
    max-width: 1140px;
  }
}
.cid-tdPc4reZWT .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tdPc4reZWT .container {
    max-width: 720px;
  }
}
.cid-tdPc4reZWT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tdPc4reZWT .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tdPc4reZWT .form-group {
  margin-bottom: 1rem;
}
.cid-tdPc4reZWT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tdPc4reZWT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tdPc4reZWT .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tdRIvjnDV2.popup-builder {
  background-color: #ffffff;
}
.cid-tdRIvjnDV2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tdRIvjnDV2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tdRIvjnDV2 .modal-content,
.cid-tdRIvjnDV2 .modal-dialog {
  height: auto;
}
.cid-tdRIvjnDV2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tdRIvjnDV2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tdRIvjnDV2 .form-wrapper .mbr-form .form-group,
  .cid-tdRIvjnDV2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tdRIvjnDV2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tdRIvjnDV2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdRIvjnDV2 .mbr-text {
  text-align: center;
}
.cid-tdRIvjnDV2 .pt-0 {
  padding-top: 0 !important;
}
.cid-tdRIvjnDV2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tdRIvjnDV2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tdRIvjnDV2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tdRIvjnDV2 .modal-open {
  overflow: hidden;
}
.cid-tdRIvjnDV2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tdRIvjnDV2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tdRIvjnDV2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tdRIvjnDV2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tdRIvjnDV2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tdRIvjnDV2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tdRIvjnDV2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tdRIvjnDV2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tdRIvjnDV2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tdRIvjnDV2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tdRIvjnDV2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tdRIvjnDV2 .modal-backdrop.show {
  opacity: .5;
}
.cid-tdRIvjnDV2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tdRIvjnDV2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tdRIvjnDV2 .modal-header {
    padding: 1rem;
  }
}
.cid-tdRIvjnDV2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tdRIvjnDV2 .modal-header .close svg {
  fill: #353535;
}
.cid-tdRIvjnDV2 .modal-header .close:hover {
  opacity: 1;
}
.cid-tdRIvjnDV2 .modal-header .close:focus {
  outline: none;
}
.cid-tdRIvjnDV2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tdRIvjnDV2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tdRIvjnDV2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdRIvjnDV2 .modal-body {
    padding: 1rem;
  }
}
.cid-tdRIvjnDV2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tdRIvjnDV2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdRIvjnDV2 .modal-footer {
    padding: 1rem;
  }
}
.cid-tdRIvjnDV2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tdRIvjnDV2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tdRIvjnDV2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tdRIvjnDV2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tdRIvjnDV2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tdRIvjnDV2 .modal-lg,
  .cid-tdRIvjnDV2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tdRIvjnDV2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tdRIvjnDV2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tdRIvjnDV2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tdRIvjnDV2 .form-group {
  margin-bottom: 1rem;
}
.cid-tdRIvjnDV2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tdRIvjnDV2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tdRIvjnDV2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tdRIvjnDV2 .mbr-section-btn {
  margin: 0;
}
.cid-tdRIvjnDV2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tdLz4kp5bN .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tdLz4kp5bN .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tdLz4kp5bN .nav-item:focus,
.cid-tdLz4kp5bN .nav-link:focus {
  outline: none;
}
.cid-tdLz4kp5bN .text-white:hover,
.cid-tdLz4kp5bN .text-white:active,
.cid-tdLz4kp5bN .text-white:focus {
  color: white!important;
}
.cid-tdLz4kp5bN .section {
  position: relative;
  overflow: visible!important;
}
.cid-tdLz4kp5bN .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tdLz4kp5bN .dropdown-item:hover {
  color: black!important;
}
.cid-tdLz4kp5bN .dropdown-menu {
  background-color: white!important;
}
.cid-tdLz4kp5bN .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tdLz4kp5bN .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #333333;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tdLz4kp5bN .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tdLz4kp5bN .nav-item .nav-link {
    position: relative;
  }
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tdLz4kp5bN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tdLz4kp5bN .collapsed {
  flex-direction: row!important;
}
.cid-tdLz4kp5bN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdLz4kp5bN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdLz4kp5bN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tdLz4kp5bN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tdLz4kp5bN .navbar .dropdown-item {
  padding: .235rem 5rem;
}
.cid-tdLz4kp5bN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdLz4kp5bN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdLz4kp5bN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em  solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tdLz4kp5bN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdLz4kp5bN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tdLz4kp5bN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tdLz4kp5bN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdLz4kp5bN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em  solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tdLz4kp5bN .navbar .navbar-logo img {
    height: 8vw !important;
  }
  .cid-tdLz4kp5bN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdLz4kp5bN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdLz4kp5bN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tdLz4kp5bN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tdLz4kp5bN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tdLz4kp5bN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tdLz4kp5bN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tdLz4kp5bN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tdLz4kp5bN .navbar-caption {
  font-weight: 600!important;
}
.cid-tdLz4kp5bN .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdLz4kp5bN .navbar-brand .navbar-caption {
  line-height: 1 !important;
}
.cid-tdLz4kp5bN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdLz4kp5bN .dropdown-item.active,
.cid-tdLz4kp5bN .dropdown-item:active {
  background-color: transparent;
}
.cid-tdLz4kp5bN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdLz4kp5bN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdLz4kp5bN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdLz4kp5bN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdLz4kp5bN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdLz4kp5bN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tdLz4kp5bN .navbar-buttons {
  text-align: center;
}
.cid-tdLz4kp5bN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3d3d3d;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tdLz4kp5bN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tdLz4kp5bN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdLz4kp5bN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tdLz4kp5bN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tdLz4kp5bN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdLz4kp5bN .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tdLz4kp5bN .nav-link {
  font-weight: 600!important;
}
.cid-tdLz4kp5bN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tdLz4kp5bN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tdLz4kp5bN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tdLz4kp5bN .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdLz4kp5bN .navbar {
    height: 77px;
  }
  .cid-tdLz4kp5bN .navbar.opened {
    height: auto;
  }
  .cid-tdLz4kp5bN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdLz4kp5bN .display-10 {
  font-size: 28px;
}
.cid-tdLz4kp5bN .display-10 emhalf {
  font-size: .5em;
}
@media (max-width: 991px) {
  .cid-tdLz4kp5bN .display-10 emhalf {
    font-size: 0.4em;
  }
}
@media (max-width: 575px) {
  .cid-tdLz4kp5bN .display-10 emhalf {
    font-size: 0.3em;
  }
}
@media (max-width: 991px) {
  .cid-tdLz4kp5bN .display-10 relsize {
    font-size: 0.6em;
  }
}
@media (max-width: 575px) {
  .cid-tdLz4kp5bN .display-10 relsize {
    font-size: 0.4em;
  }
}
.cid-rj8NIILh8Q {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/mbr-1920x1369.webp");
}
.cid-rj8NIILh8Q .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-rj8NIILh8Q .mbr-text {
  width: 100%;
  height: auto;
  color: #333333;
  text-align: center;
}
.cid-rj8NIILh8Q .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-rj8NIILh8Q .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rj8NIILh8Q .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-rj8NIILh8Q .mbr-section-title {
  color: #333333;
  text-align: center;
}
.cid-tdULNn8l57 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tdULNn8l57 .mbr-text {
  color: #000000;
}
