body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
/* ---- 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.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ff4694 !important;
}
.bg-success {
  background-color: #ffd839 !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #ff4694 !important;
}
.bg-danger {
  background-color: #f9f9f9 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4694 !important;
  border-color: #ff4694 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #f80069 !important;
  border-color: #f80069 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #f80069 !important;
  border-color: #f80069 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #00bcff !important;
  border-color: #00bcff !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0084b3 !important;
  border-color: #0084b3 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0084b3 !important;
  border-color: #0084b3 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ffd839 !important;
  border-color: #ffd839 !important;
  color: #392e00 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #392e00 !important;
  background-color: #ecbd00 !important;
  border-color: #ecbd00 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #392e00 !important;
  background-color: #ecbd00 !important;
  border-color: #ecbd00 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ff4694 !important;
  border-color: #ff4694 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #f80069 !important;
  border-color: #f80069 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #f80069 !important;
  border-color: #f80069 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #f9f9f9 !important;
  border-color: #f9f9f9 !important;
  color: #7a7a7a !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #7a7a7a !important;
  background-color: #d3d3d3 !important;
  border-color: #d3d3d3 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #7a7a7a !important;
  background-color: #d3d3d3 !important;
  border-color: #d3d3d3 !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-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-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #df005e;
  color: #df005e !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4694;
  border-color: #ff4694;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4694 !important;
  border-color: #ff4694 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #007199;
  color: #007199 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #00bcff;
  border-color: #00bcff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #00bcff !important;
  border-color: #00bcff !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #000000;
  border-color: #000000;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #d2a900;
  color: #d2a900 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #392e00 !important;
  background-color: #ffd839;
  border-color: #ffd839;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #392e00 !important;
  background-color: #ffd839 !important;
  border-color: #ffd839 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #df005e;
  color: #df005e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #ff4694;
  border-color: #ff4694;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4694 !important;
  border-color: #ff4694 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #c6c6c6;
  color: #c6c6c6 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #7a7a7a !important;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #7a7a7a !important;
  background-color: #f9f9f9 !important;
  border-color: #f9f9f9 !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: #ff4694 !important;
}
.text-secondary {
  color: #00bcff !important;
}
.text-success {
  color: #ffd839 !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #ff4694 !important;
}
.text-danger {
  color: #f9f9f9 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #df005e !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #007199 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2a900 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #df005e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #c6c6c6 !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: #ffd839;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #ff4694;
}
.alert-danger {
  background-color: #f9f9f9;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4694;
  border-color: #ff4694;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff4694;
}
.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: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #ff4694;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4694;
  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: #ff4694;
  border-bottom-color: #ff4694;
}
.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: #ff4694 !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: #00bcff !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='%23ff4694' %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-tbjFVFSPfy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tbjFVFSPfy .nav-item,
.cid-tbjFVFSPfy .nav-link,
.cid-tbjFVFSPfy .navbar-caption {
  font-weight: normal;
}
.cid-tbjFVFSPfy .nav-item:focus,
.cid-tbjFVFSPfy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tbjFVFSPfy .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tbjFVFSPfy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbjFVFSPfy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbjFVFSPfy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-tbjFVFSPfy .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tbjFVFSPfy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tbjFVFSPfy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-tbjFVFSPfy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbjFVFSPfy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbjFVFSPfy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 5.3rem);
  }
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbjFVFSPfy .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-tbjFVFSPfy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tbjFVFSPfy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tbjFVFSPfy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbjFVFSPfy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbjFVFSPfy .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-tbjFVFSPfy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tbjFVFSPfy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbjFVFSPfy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tbjFVFSPfy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tbjFVFSPfy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tbjFVFSPfy .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tbjFVFSPfy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tbjFVFSPfy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tbjFVFSPfy .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-tbjFVFSPfy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbjFVFSPfy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbjFVFSPfy .dropdown-item.active,
.cid-tbjFVFSPfy .dropdown-item:active {
  background-color: transparent;
}
.cid-tbjFVFSPfy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbjFVFSPfy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbjFVFSPfy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbjFVFSPfy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tbjFVFSPfy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbjFVFSPfy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbjFVFSPfy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tbjFVFSPfy .navbar-buttons {
  text-align: center;
}
.cid-tbjFVFSPfy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tbjFVFSPfy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tbjFVFSPfy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tbjFVFSPfy .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-tbjFVFSPfy .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tbjFVFSPfy .soc-item {
  margin: .5rem .3rem;
}
.cid-tbjFVFSPfy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tbjFVFSPfy a.nav-link,
.cid-tbjFVFSPfy a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-tbjFVFSPfy a.nav-link .mbr-iconfont-btn,
.cid-tbjFVFSPfy a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-tbjFVFSPfy a.nav-link:hover .mbr-iconfont-btn,
.cid-tbjFVFSPfy a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-tbjFVFSPfy a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbjFVFSPfy .navbar {
    height: 77px;
  }
  .cid-tbjFVFSPfy .navbar.opened {
    height: auto;
  }
  .cid-tbjFVFSPfy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-taibl3g03q H2 {
  color: #89b758;
}
.cid-taibl3g03q .mbr-text,
.cid-taibl3g03q .mbr-section-btn {
  color: #ffffff;
}
.cid-taibl3g03q img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-taibl3g03q img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-taibl3g03q H1 {
  color: #29361a;
}
.cid-taiaggu08h {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background4-2-1920x1281.jpg");
}
.cid-taiaggu08h .animated-element {
  color: #767676;
}
.cid-taiaggu08h .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-taiaggu08h .mbr-section-subtitle {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-taiaggu08h .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-taiaggu08h .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-taiaggu08h .img-block {
    padding-bottom: 2rem;
  }
}
.cid-taiaggu08h .mbr-text,
.cid-taiaggu08h .mbr-section-btn {
  color: #000000;
}
.cid-taiaggu08h .mbr-section-title {
  color: #000000;
}
.cid-taifOjVvTg {
  overflow: hidden !important;
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f9f9f9;
}
.cid-taifOjVvTg .container-fluid {
  padding: 0 3rem;
}
.cid-taifOjVvTg .animated-element {
  color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-taifOjVvTg .container-fluid {
    padding: 0 1rem;
  }
}
.cid-taifOjVvTg H4 {
  color: #000000;
}
.cid-taifOjVvTg .mbr-section-title {
  color: #000000;
}
.cid-taifOjVvTg .mbr-text,
.cid-taifOjVvTg .mbr-section-btn {
  color: #000000;
}
.cid-taihDrIHja {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ff4694;
}
.cid-taihDrIHja .content_box {
  position: relative;
  z-index: 5;
}
.cid-taihDrIHja .carousel-item {
  justify-content: center;
}
.cid-taihDrIHja .carousel-item.active,
.cid-taihDrIHja .carousel-item-next,
.cid-taihDrIHja .carousel-item-prev {
  display: flex;
}
.cid-taihDrIHja .carousel-controls a {
  transition: opacity .5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  font-size: 35px;
  height: 22px;
  width: 22px;
  padding: 10px;
  color: black;
  opacity: 1;
}
.cid-taihDrIHja .carousel-control-next span {
  padding-left: 5px;
}
.cid-taihDrIHja .carousel-control-prev span {
  padding-right: 5px;
}
.cid-taihDrIHja .user_image {
  width: 100px;
  margin-bottom: 35px;
  overflow: hidden;
  margin: 0 auto 2rem auto;
}
.cid-taihDrIHja .user_image img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-taihDrIHja .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-taihDrIHja .user_text {
  line-height: 1.272em;
  font-weight: 500;
  color: #202020;
}
.cid-taihDrIHja .two_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: #f9f9f9;
  z-index: 0;
}
.cid-tain5f30h1 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9f9f9;
}
.cid-tain5f30h1 .card-wrapper {
  z-index: 3;
}
.cid-tain5f30h1 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tain5f30h1:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tain5f30h1 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tain5f30h1 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tain5f30h1 .text-block {
  text-align: right !important;
}
.cid-tain5f30h1 H2 {
  color: #000000;
  text-align: center;
}
.cid-taiofCcAT3 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f9f9f9;
}
.cid-taiofCcAT3 .mbr-section-title {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2rem;
}
.cid-taiofCcAT3 .row-bg {
  align-items: center;
  background: #00bcff;
  padding: 3rem;
  border-radius: 0rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-taiofCcAT3 .row-bg {
    padding: 1rem 0;
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-taiofCcAT3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-taiofCcAT3 img {
  border-radius: 0rem;
  transition: all 0.3s;
}
.cid-taiofCcAT3 img:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-taiofCcAT3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-taiofCcAT3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taip8YwRM5 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-taip8YwRM5 .mbr-section-title {
  text-align: center;
}
.cid-taip8YwRM5 .mbr-text,
.cid-taip8YwRM5 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-taip8YwRM5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-taip8YwRM5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taipqoURNN {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/background2-1-1920x1281.jpg");
}
.cid-taipqoURNN .mbr-section-title {
  text-align: center;
}
.cid-taipqoURNN .mbr-text,
.cid-taipqoURNN .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-taipqoURNN .mbr-fallback-image.disabled {
  display: none;
}
.cid-taipqoURNN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taiq6o5eug {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/02-251-2000x1296.jpg");
}
.cid-taiq6o5eug .mbr-section-title {
  text-align: center;
}
.cid-taiq6o5eug .mbr-text,
.cid-taiq6o5eug .mbr-section-btn {
  text-align: center;
  color: #696969;
}
.cid-taiq6o5eug .mbr-fallback-image.disabled {
  display: none;
}
.cid-taiq6o5eug .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taiqkxRcey {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/02-251-2000x1296.jpg");
}
.cid-taiqkxRcey .mbr-section-title {
  text-align: center;
}
.cid-taiqkxRcey .mbr-text,
.cid-taiqkxRcey .mbr-section-btn {
  text-align: center;
  color: #696969;
}
.cid-taiqkxRcey .mbr-fallback-image.disabled {
  display: none;
}
.cid-taiqkxRcey .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taiqVTOpk5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9f9f9;
}
.cid-taiqVTOpk5 .column-wrapper {
  padding-left: 1.5rem;
}
.cid-taiqVTOpk5 .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-taiqVTOpk5 .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-taiqVTOpk5 .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-taiqVTOpk5 .mbr-text,
.cid-taiqVTOpk5 .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-taiqVTOpk5 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-td1qcWeulk {
  background: #f9f9f9;
  padding-top: 0px;
  padding-bottom: 120px;
}
.cid-td1qcWeulk .container-fluid {
  padding: 0 3rem;
}
.cid-td1qcWeulk .image-block {
  position: relative;
  margin: auto;
}
.cid-td1qcWeulk .image-block img {
  width: 100%;
}
.cid-td1qcWeulk .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-td1qcWeulk .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-td1qcWeulk .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-td1qcWeulk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-taisMi9IHI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/motion3-1920x786.jpg");
}
.cid-taisMi9IHI .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-taisMi9IHI .mbr-text,
.cid-taisMi9IHI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-taisMi9IHI .mbr-fallback-image.disabled {
  display: none;
}
.cid-taisMi9IHI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taisMi9IHI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-taisKY0dAh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/motion4-1920x786.jpg");
}
.cid-taisKY0dAh .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-taisKY0dAh .mbr-text,
.cid-taisKY0dAh .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-taisKY0dAh .mbr-fallback-image.disabled {
  display: none;
}
.cid-taisKY0dAh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taisNs5M5H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/motion5b-1920x786.jpg");
}
.cid-taisNs5M5H .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-taisNs5M5H .mbr-text,
.cid-taisNs5M5H .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-taisNs5M5H .mbr-fallback-image.disabled {
  display: none;
}
.cid-taisNs5M5H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tekjpSDnaj {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tekjpSDnaj .mbr-section-subtitle {
  color: #000000;
}
.cid-tekjpSDnaj .mbr-section-title {
  color: #767676;
}
.cid-tekjpSDnaj .contenIframe {
  width: 350px;
  height: 450px;
  margin: 0 auto;
  overflow: scroll;
}
.cid-taixHWVOqd {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/02-251-2000x1296.jpg");
}
.cid-taixHWVOqd .mbr-section-title {
  text-align: center;
  color: #f9f9f9;
}
.cid-taixHWVOqd .mbr-text,
.cid-taixHWVOqd .mbr-section-btn {
  text-align: center;
  color: #f9f9f9;
}
.cid-taixHWVOqd .mbr-fallback-image.disabled {
  display: none;
}
.cid-taixHWVOqd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taiyOEVtbt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-taiyOEVtbt .form-control,
.cid-taiyOEVtbt .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-taiyOEVtbt .form-control:focus,
.cid-taiyOEVtbt .form-control:focus:focus {
  outline: none;
}
.cid-taiyOEVtbt input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-taiyOEVtbt input::-moz-placeholder {
  color: #5b686b;
}
.cid-taiyOEVtbt textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-taiyOEVtbt textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-taiyOEVtbt .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-taiyOEVtbt .form-control {
  margin-bottom: 15px;
}
.cid-taiyOEVtbt .map {
  width: 100%;
  height: 30rem;
}
.cid-taiyOEVtbt .map iframe {
  width: inherit;
  height: 100%;
}
.cid-taiyOEVtbt .mbr-text {
  color: #767676;
}
.cid-taiyOEVtbt .input-group-btn {
  display: block;
}
.cid-taiyOEVtbt .google-map {
  height: 25rem;
  position: relative;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(1);
}
.cid-taiyOEVtbt .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-taiyOEVtbt .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-taiyOEVtbt .google-map[data-state] {
  background: #e9e5dc;
}
.cid-taiyOEVtbt .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-taiyOEVtbt .mbr-section-subtitle,
  .cid-taiyOEVtbt .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-taiyOEVtbt .mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-taiyOEVtbt .mbr-section-subtitle {
  text-align: center;
}
.cid-taiyOEVtbt H2 {
  text-align: center;
}
.cid-taijzJ1nn2 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-taijzJ1nn2 .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-taijzJ1nn2 .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-taijzJ1nn2 .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-taijzJ1nn2 .soc-item:hover {
  background: #ff4694;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-taijzJ1nn2 .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-taijzJ1nn2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-taijzJ1nn2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-taijzJ1nn2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-taijzJ1nn2 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-taijzJ1nn2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-taijzJ1nn2 .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-taijzJ1nn2 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-taijzJ1nn2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-taijzJ1nn2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-taijzJ1nn2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-taijzJ1nn2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tbiKuhV1kQ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f9f9f9;
}
.cid-tbiKuhV1kQ .mbr-section-title {
  text-align: center;
}
.cid-tbiKuhV1kQ .mbr-text,
.cid-tbiKuhV1kQ .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tbiKuhV1kQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbiKuhV1kQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbiKue3MkK {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 105px;
  background: linear-gradient(to right, #ffda00 0%, #ffda00 30%, #ffffff 30%, #ffffff 100%);
}
.cid-tbiKue3MkK .animated-element {
  color: #767676;
}
.cid-tbiKue3MkK .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tbiKue3MkK .mbr-section-subtitle {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tbiKue3MkK .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tbiKue3MkK .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tbiKue3MkK {
    background: #ffffff;
  }
  .cid-tbiKue3MkK .img-block {
    padding-bottom: 2rem;
  }
}
.cid-tbiKue3MkK .mbr-text,
.cid-tbiKue3MkK .mbr-section-btn {
  color: #000000;
}
.cid-tbiKue3MkK .mbr-section-title {
  color: #000000;
}
.cid-tbiNHdZqlw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tbiNHdZqlw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tbiNHdZqlw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tbiNHdZqlw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tbiNHdZqlw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tbiNHdZqlw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tbiNHdZqlw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tbiNHdZqlw .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tbiNHdZqlw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tbiNHdZqlw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tcCNQEbDjf {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/background1-1170x780.jpg");
}
.cid-tcCNQEbDjf .row {
  position: relative;
  min-height: 768px;
}
.cid-tcCNQEbDjf .index {
  z-index: 3;
}
.cid-tcCNQEbDjf ul {
  list-style: none;
  margin: 0;
  padding-left: 61px;
}
.cid-tcCNQEbDjf li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tcCNQEbDjf ul li::before {
  position: absolute;
  content: "\2192";
  left: -61px;
  top: -15px;
  color: #ff4694;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
@media (max-width: 768px) {
  .cid-tcCNQEbDjf ul li::before {
    top: -5px;
  }
}
.cid-tcCNQEbDjf span {
  background: #ffda00;
}
@media (min-width: 992px) {
  .cid-tcCNQEbDjf img {
    object-fit: cover;
    position: absolute;
  }
  .cid-tcCNQEbDjf .one {
    top: -150px;
    right: 10%;
    width: 400px;
    height: 600px;
  }
  .cid-tcCNQEbDjf .two {
    top: -250px;
    width: 300px;
    height: 200px;
    right: -2%;
  }
  .cid-tcCNQEbDjf .three {
    top: 60%;
    width: 360px;
    height: 360px;
    right: -100px;
  }
}
@media (min-width: 1400px) {
  .cid-tcCNQEbDjf .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-tcCNQEbDjf img {
    object-fit: cover;
    position: relative;
    width: 30%;
  }
  .cid-tcCNQEbDjf .image-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-tcCNQEbDjf .mbr-text {
  color: #000000;
}
.cid-tcCNQEbDjf .list {
  color: #000000;
}
.cid-tbiKukg1pz {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/02-251-2000x1296.jpg");
}
.cid-tbiKukg1pz .mbr-section-title {
  text-align: center;
  color: #f9f9f9;
}
.cid-tbiKukg1pz .mbr-text,
.cid-tbiKukg1pz .mbr-section-btn {
  text-align: center;
  color: #f9f9f9;
}
.cid-tbiKukg1pz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbiKukg1pz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbiKukEvfk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tbiKukEvfk .form-control,
.cid-tbiKukEvfk .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-tbiKukEvfk .form-control:focus,
.cid-tbiKukEvfk .form-control:focus:focus {
  outline: none;
}
.cid-tbiKukEvfk input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-tbiKukEvfk input::-moz-placeholder {
  color: #5b686b;
}
.cid-tbiKukEvfk textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-tbiKukEvfk textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-tbiKukEvfk .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-tbiKukEvfk .form-control {
  margin-bottom: 15px;
}
.cid-tbiKukEvfk .map {
  width: 100%;
  height: 30rem;
}
.cid-tbiKukEvfk .map iframe {
  width: inherit;
  height: 100%;
}
.cid-tbiKukEvfk .mbr-text {
  color: #767676;
}
.cid-tbiKukEvfk .input-group-btn {
  display: block;
}
.cid-tbiKukEvfk .google-map {
  height: 25rem;
  position: relative;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(1);
}
.cid-tbiKukEvfk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tbiKukEvfk .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tbiKukEvfk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tbiKukEvfk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-tbiKukEvfk .mbr-section-subtitle,
  .cid-tbiKukEvfk .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tbiKukEvfk .mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-tbiKukEvfk .mbr-section-subtitle {
  text-align: center;
}
.cid-tbiKukEvfk H2 {
  text-align: center;
}
.cid-tbiKul0ZnY {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tbiKul0ZnY .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tbiKul0ZnY .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-tbiKul0ZnY .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-tbiKul0ZnY .soc-item:hover {
  background: #ff4694;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-tbiKul0ZnY .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tbiKul0ZnY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tbiKul0ZnY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tbiKul0ZnY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tbiKul0ZnY .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tbiKul0ZnY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-tbiKul0ZnY .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-tbiKul0ZnY .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbiKul0ZnY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbiKul0ZnY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbiKul0ZnY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tbiKul0ZnY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tbjFVFSPfy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tbjFVFSPfy .nav-item,
.cid-tbjFVFSPfy .nav-link,
.cid-tbjFVFSPfy .navbar-caption {
  font-weight: normal;
}
.cid-tbjFVFSPfy .nav-item:focus,
.cid-tbjFVFSPfy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tbjFVFSPfy .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tbjFVFSPfy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbjFVFSPfy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbjFVFSPfy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-tbjFVFSPfy .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tbjFVFSPfy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tbjFVFSPfy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-tbjFVFSPfy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbjFVFSPfy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbjFVFSPfy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 5.3rem);
  }
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbjFVFSPfy .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-tbjFVFSPfy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tbjFVFSPfy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tbjFVFSPfy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbjFVFSPfy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbjFVFSPfy .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-tbjFVFSPfy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tbjFVFSPfy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbjFVFSPfy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tbjFVFSPfy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tbjFVFSPfy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tbjFVFSPfy .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tbjFVFSPfy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tbjFVFSPfy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tbjFVFSPfy .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-tbjFVFSPfy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbjFVFSPfy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbjFVFSPfy .dropdown-item.active,
.cid-tbjFVFSPfy .dropdown-item:active {
  background-color: transparent;
}
.cid-tbjFVFSPfy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbjFVFSPfy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbjFVFSPfy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbjFVFSPfy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tbjFVFSPfy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbjFVFSPfy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbjFVFSPfy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tbjFVFSPfy .navbar-buttons {
  text-align: center;
}
.cid-tbjFVFSPfy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tbjFVFSPfy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tbjFVFSPfy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tbjFVFSPfy .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-tbjFVFSPfy .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tbjFVFSPfy .soc-item {
  margin: .5rem .3rem;
}
.cid-tbjFVFSPfy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tbjFVFSPfy a.nav-link,
.cid-tbjFVFSPfy a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-tbjFVFSPfy a.nav-link .mbr-iconfont-btn,
.cid-tbjFVFSPfy a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-tbjFVFSPfy a.nav-link:hover .mbr-iconfont-btn,
.cid-tbjFVFSPfy a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-tbjFVFSPfy a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbjFVFSPfy .navbar {
    height: 77px;
  }
  .cid-tbjFVFSPfy .navbar.opened {
    height: auto;
  }
  .cid-tbjFVFSPfy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbjEEj8uht {
  padding-top: 165px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-tbjEEj8uht .card-wrapper {
  z-index: 3;
}
.cid-tbjEEj8uht .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tbjEEj8uht:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tbjEEj8uht .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tbjEEj8uht .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tbjEEj8uht .text-block {
  text-align: right !important;
}
.cid-tbjEEj8uht H2 {
  color: #000000;
  text-align: center;
}
.cid-tbjIxnr40Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-tbjIxnr40Q .mbr-section-subtitle {
  color: #000000;
}
.cid-tbZgp0CZEl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-tbZgp0CZEl .mbr-section-subtitle {
  color: #000000;
}
.cid-tcCRCRtMH0 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-tcCRCRtMH0 .mbr-section-subtitle {
  color: #000000;
}
.cid-tcCRCRtMH0 .mbr-section-title {
  color: #767676;
}
.cid-tbjNOHrgLS {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-tbjNOHrgLS .card-wrapper {
  z-index: 3;
}
.cid-tbjNOHrgLS .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tbjNOHrgLS:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tbjNOHrgLS .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tbjNOHrgLS .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tbjNOHrgLS .text-block {
  text-align: right !important;
}
.cid-tbjNOHrgLS H2 {
  color: #000000;
  text-align: center;
}
#custom-html-3t {
  /* Type valid CSS here */
}
#custom-html-3t div {
  padding: 20px 0;
  width: 100%;
  margin: 0 auto;
  color: #777;
  text-align: center;
  background: #f9f9f9;
}
#custom-html-3t div.contenedor {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
#custom-html-3t p {
  font-size: 60px;
  color: #777;
}
.cid-tbjEEkKb1z {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/02-251-2000x1296.jpg");
}
.cid-tbjEEkKb1z .mbr-section-title {
  text-align: center;
  color: #f9f9f9;
}
.cid-tbjEEkKb1z .mbr-text,
.cid-tbjEEkKb1z .mbr-section-btn {
  text-align: center;
  color: #f9f9f9;
}
.cid-tbjEEkKb1z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbjEEkKb1z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbjEEl4PjM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tbjEEl4PjM .form-control,
.cid-tbjEEl4PjM .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-tbjEEl4PjM .form-control:focus,
.cid-tbjEEl4PjM .form-control:focus:focus {
  outline: none;
}
.cid-tbjEEl4PjM input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-tbjEEl4PjM input::-moz-placeholder {
  color: #5b686b;
}
.cid-tbjEEl4PjM textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-tbjEEl4PjM textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-tbjEEl4PjM .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-tbjEEl4PjM .form-control {
  margin-bottom: 15px;
}
.cid-tbjEEl4PjM .map {
  width: 100%;
  height: 30rem;
}
.cid-tbjEEl4PjM .map iframe {
  width: inherit;
  height: 100%;
}
.cid-tbjEEl4PjM .mbr-text {
  color: #767676;
}
.cid-tbjEEl4PjM .input-group-btn {
  display: block;
}
.cid-tbjEEl4PjM .google-map {
  height: 25rem;
  position: relative;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(1);
}
.cid-tbjEEl4PjM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tbjEEl4PjM .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tbjEEl4PjM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tbjEEl4PjM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-tbjEEl4PjM .mbr-section-subtitle,
  .cid-tbjEEl4PjM .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tbjEEl4PjM .mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-tbjEEl4PjM .mbr-section-subtitle {
  text-align: center;
}
.cid-tbjEEl4PjM H2 {
  text-align: center;
}
.cid-tbjEElvn48 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tbjEElvn48 .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tbjEElvn48 .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-tbjEElvn48 .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-tbjEElvn48 .soc-item:hover {
  background: #ff4694;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-tbjEElvn48 .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tbjEElvn48 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tbjEElvn48 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tbjEElvn48 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tbjEElvn48 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tbjEElvn48 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-tbjEElvn48 .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-tbjEElvn48 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tbjEElvn48 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbjEElvn48 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tbjEElvn48 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tbjEElvn48 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tbjFVFSPfy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tbjFVFSPfy .nav-item,
.cid-tbjFVFSPfy .nav-link,
.cid-tbjFVFSPfy .navbar-caption {
  font-weight: normal;
}
.cid-tbjFVFSPfy .nav-item:focus,
.cid-tbjFVFSPfy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tbjFVFSPfy .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tbjFVFSPfy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tbjFVFSPfy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbjFVFSPfy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbjFVFSPfy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-tbjFVFSPfy .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tbjFVFSPfy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tbjFVFSPfy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-tbjFVFSPfy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbjFVFSPfy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbjFVFSPfy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 5.3rem);
  }
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbjFVFSPfy .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-tbjFVFSPfy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbjFVFSPfy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tbjFVFSPfy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tbjFVFSPfy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbjFVFSPfy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbjFVFSPfy .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-tbjFVFSPfy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tbjFVFSPfy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbjFVFSPfy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbjFVFSPfy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tbjFVFSPfy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tbjFVFSPfy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tbjFVFSPfy .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tbjFVFSPfy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tbjFVFSPfy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tbjFVFSPfy .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-tbjFVFSPfy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbjFVFSPfy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbjFVFSPfy .dropdown-item.active,
.cid-tbjFVFSPfy .dropdown-item:active {
  background-color: transparent;
}
.cid-tbjFVFSPfy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbjFVFSPfy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbjFVFSPfy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbjFVFSPfy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tbjFVFSPfy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbjFVFSPfy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbjFVFSPfy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tbjFVFSPfy .navbar-buttons {
  text-align: center;
}
.cid-tbjFVFSPfy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tbjFVFSPfy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tbjFVFSPfy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tbjFVFSPfy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tbjFVFSPfy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tbjFVFSPfy .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-tbjFVFSPfy .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tbjFVFSPfy .soc-item {
  margin: .5rem .3rem;
}
.cid-tbjFVFSPfy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tbjFVFSPfy a.nav-link,
.cid-tbjFVFSPfy a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-tbjFVFSPfy a.nav-link .mbr-iconfont-btn,
.cid-tbjFVFSPfy a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-tbjFVFSPfy a.nav-link:hover .mbr-iconfont-btn,
.cid-tbjFVFSPfy a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-tbjFVFSPfy a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbjFVFSPfy .navbar {
    height: 77px;
  }
  .cid-tbjFVFSPfy .navbar.opened {
    height: auto;
  }
  .cid-tbjFVFSPfy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
