@import url(https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);
@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.6rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 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.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  position: relative;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: normal;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 100%;
  height: 100%;
  transition: border-radius 0.3s;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  position: absolute;
  left: 0%;
  top: 0%;
  opacity: 1;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.note-popover .btn:after {
  display: none;
}
@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 {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #c24161 !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #c24161 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c24161 !important;
  border-color: #c24161 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #8a2c44 !important;
  border-color: #8a2c44 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8a2c44 !important;
  border-color: #8a2c44 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #c24161 !important;
  border-color: #c24161 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #8a2c44 !important;
  border-color: #8a2c44 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8a2c44 !important;
  border-color: #8a2c44 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger: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-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: #77263a;
  color: #77263a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #c24161;
  border-color: #c24161;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c24161 !important;
  border-color: #c24161 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #77263a;
  color: #77263a !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #c24161;
  border-color: #c24161;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c24161 !important;
  border-color: #c24161 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #c24161 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #c24161 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #77263a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #77263a !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !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: #365c9a;
}
.alert-info {
  background-color: #c24161;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,.8s;
  transition-timing-function: ease-in-out;
}
.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;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c24161;
  border-color: #c24161;
  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: #c24161;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e1a2b1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e1a2b1;
}
.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 a {
  border-radius: 100px;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #c24161;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #c24161;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #c24161;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
/* Footer */
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-qOpKbVVLtR .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qOpKbVVLtR .nav-item,
.cid-qOpKbVVLtR .nav-link,
.cid-qOpKbVVLtR .navbar-caption {
  font-weight: normal;
}
.cid-qOpKbVVLtR .nav-item:focus,
.cid-qOpKbVVLtR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qOpKbVVLtR .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qOpKbVVLtR .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-qOpKbVVLtR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qOpKbVVLtR .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qOpKbVVLtR .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qOpKbVVLtR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qOpKbVVLtR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qOpKbVVLtR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qOpKbVVLtR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qOpKbVVLtR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-qOpKbVVLtR .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-qOpKbVVLtR .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qOpKbVVLtR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qOpKbVVLtR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qOpKbVVLtR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qOpKbVVLtR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qOpKbVVLtR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qOpKbVVLtR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qOpKbVVLtR .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-qOpKbVVLtR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qOpKbVVLtR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qOpKbVVLtR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qOpKbVVLtR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qOpKbVVLtR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qOpKbVVLtR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qOpKbVVLtR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qOpKbVVLtR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qOpKbVVLtR .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-qOpKbVVLtR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qOpKbVVLtR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qOpKbVVLtR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qOpKbVVLtR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qOpKbVVLtR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qOpKbVVLtR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qOpKbVVLtR .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-qOpKbVVLtR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qOpKbVVLtR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qOpKbVVLtR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qOpKbVVLtR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qOpKbVVLtR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qOpKbVVLtR .dropdown-item.active,
.cid-qOpKbVVLtR .dropdown-item:active {
  background-color: transparent;
}
.cid-qOpKbVVLtR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qOpKbVVLtR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qOpKbVVLtR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qOpKbVVLtR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-qOpKbVVLtR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qOpKbVVLtR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qOpKbVVLtR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qOpKbVVLtR .navbar-buttons {
  text-align: center;
}
.cid-qOpKbVVLtR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qOpKbVVLtR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qOpKbVVLtR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qOpKbVVLtR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qOpKbVVLtR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qOpKbVVLtR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qOpKbVVLtR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOpKbVVLtR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qOpKbVVLtR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qOpKbVVLtR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOpKbVVLtR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qOpKbVVLtR a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qOpKbVVLtR .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qOpKbVVLtR .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOpKbVVLtR .soc-item {
  margin: .5rem .3rem;
}
.cid-qOpKbVVLtR .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qOpKbVVLtR .navbar {
    height: 77px;
  }
  .cid-qOpKbVVLtR .navbar.opened {
    height: auto;
  }
  .cid-qOpKbVVLtR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qOq3CxbRt7 {
  background-image: url("../../../assets/images/224644-p1blmg-301-2000x1333.jpg");
  overflow: hidden !important;
}
.cid-qOq3CxbRt7 .container-fluid {
  padding: 0 3rem;
}
.cid-qOq3CxbRt7 .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-qOq3CxbRt7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qOqHvrCkSS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qOqHvrCkSS .mbr-section-subtitle {
  color: #767676;
}
.cid-qOqHvrCkSS .mbr-section-title {
  color: #c24161;
}
.cid-qOqcQBnYeD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qOqcQBnYeD .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-qOqcQBnYeD .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-qOqcQBnYeD .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOqcQBnYeD .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-qOqcQBnYeD .card-overlay {
  display: none;
  background: #232323;
}
@media (min-width: 768px) {
  .cid-qOqcQBnYeD .image-element:hover .card-overlay {
    opacity: 0.4;
    border-bottom-right-radius: 7rem;
  }
  .cid-qOqcQBnYeD .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-qOqcQBnYeD .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-qOqcQBnYeD .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-qOqcQBnYeD .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-qOqcQBnYeD .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-qOqcQBnYeD .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-qOqcQBnYeD .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-qOqcQBnYeD .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-qOqcQBnYeD .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-qOqcQBnYeD .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-qOqcQBnYeD .card-title,
  .cid-qOqcQBnYeD .underline,
  .cid-qOqcQBnYeD .mbr-text,
  .cid-qOqcQBnYeD .mbr-section-btn,
  .cid-qOqcQBnYeD .mbr-section-subtitle,
  .cid-qOqcQBnYeD .mbr-section-title {
    text-align: center !important;
  }
}
.cid-qOqcQBnYeD .mbr-section-title {
  text-align: left;
}
.cid-qQGoGGeCmv {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qQGoGGeCmv .mbr-section-subtitle {
  color: #767676;
}
.cid-qQGoGGeCmv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qQGoGGeCmv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qQGoGGeCmv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qQGoGGeCmv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qQGoGGeCmv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qQGoGGeCmv .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-qQGoGGeCmv .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qQGoGGeCmv .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-qQGoGGeCmv .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qQGoGGeCmv .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-qQGoGGeCmv ul {
  font-size: 0;
}
.cid-qQGoGGeCmv .mbr-gallery-filter ul {
  text-align: center;
}
.cid-qQGoGGeCmv .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #ffffff !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qQGoGGeCmv .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qQGoGGeCmv .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-qQGoGGeCmv .mbr-gallery-filter ul li:first-child,
.cid-qQGoGGeCmv .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-qQGoGGeCmv .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-qQGoGGeCmv .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-qQGoGGeCmv .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-qQGoGGeCmv .btn.active:after {
  animation: none;
}
.cid-qQGoGGeCmv .btn:active {
  box-shadow: none !important;
}
.cid-qQGoGGeCmv .btn:hover {
  background: transparent !important;
}
.cid-qQGoGGeCmv .btn:hover:before {
  background: transparent !important;
}
.cid-qQGoGGeCmv .btn:before {
  background-color: transparent !important;
}
.cid-qQGoGGeCmv .btn:focus {
  box-shadow: none !important;
}
.cid-qQGoGGeCmv .mbr-section-title,
.cid-qQGoGGeCmv .mbr-gallery-filter ul {
  color: #ffffff;
}
.cid-qOqcLsEBrh {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #232323;
}
.cid-qOqcLsEBrh .mbr-section-title {
  margin-bottom: 0;
  color: #c24161;
}
.cid-qOqcLsEBrh .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-qOqcLsEBrh .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOqcLsEBrh .mbr-iconfont:hover {
  color: #66458e;
}
.cid-qOqcLsEBrh .image-wrap {
  position: relative;
}
.cid-qOqcLsEBrh .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-qOqcLsEBrh .mbr-section-subtitle {
  line-height: 1.5;
  color: #efefef;
}
.cid-qOqcLsEBrh .card-wrap {
  margin-bottom: 3rem;
}
.cid-qOqcLsEBrh .card-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-qOqcLsEBrh .card-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-qOqcLsEBrh .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-qOqcLsEBrh .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-qOqcLsEBrh .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-qOqcLsEBrh .img-overlay {
  background: linear-gradient(transparent, #bcc2d8);
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-qOqcLsEBrh .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-qOqcLsEBrh .mbr-text {
  color: #efefef;
}
.cid-qOqcLsEBrh .mbr-name {
  color: #ffffff;
}
.cid-qOqpbDio23 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qOqpbDio23 .form-control,
.cid-qOqpbDio23 .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-qOqpbDio23 .form-control:focus,
.cid-qOqpbDio23 .form-control:focus:focus {
  outline: none;
}
.cid-qOqpbDio23 input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-qOqpbDio23 input::-moz-placeholder {
  color: #5b686b;
}
.cid-qOqpbDio23 textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-qOqpbDio23 textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-qOqpbDio23 .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qOqpbDio23 .input {
  margin-bottom: 15px;
}
.cid-qOqpbDio23 .map {
  width: 100%;
  height: 30rem;
}
.cid-qOqpbDio23 .map iframe {
  width: inherit;
  height: 100%;
}
.cid-qOqpbDio23 .mbr-text {
  color: #767676;
}
.cid-qOqpbDio23 .input-group-btn {
  display: block;
}
.cid-qOqpbDio23 .google-map {
  filter: grayscale(1);
  height: 25rem;
  position: relative;
}
.cid-qOqpbDio23 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qOqpbDio23 .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-qOqpbDio23 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qOqpbDio23 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-qOqpbDio23 .mbr-section-subtitle,
  .cid-qOqpbDio23 .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-qOqpbDio23 form.mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-qOqct7128Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qOqct7128Y .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qOqct7128Y .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qOqct7128Y .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qOqct7128Y .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qOqct7128Y .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #000000;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qOqct7128Y .icon-transition span:hover {
  background-color: #e96188;
}
.cid-qOqct7128Y .mbr-text {
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-qOqct7128Y .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qOqct7128Y .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qOqct7128Y .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qOqfStJI1Z .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qOqfStJI1Z .nav-item,
.cid-qOqfStJI1Z .nav-link,
.cid-qOqfStJI1Z .navbar-caption {
  font-weight: normal;
}
.cid-qOqfStJI1Z .nav-item:focus,
.cid-qOqfStJI1Z .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qOqfStJI1Z .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qOqfStJI1Z .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-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qOqfStJI1Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qOqfStJI1Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qOqfStJI1Z .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-qOqfStJI1Z .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-qOqfStJI1Z .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qOqfStJI1Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qOqfStJI1Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qOqfStJI1Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qOqfStJI1Z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qOqfStJI1Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qOqfStJI1Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qOqfStJI1Z .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-qOqfStJI1Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qOqfStJI1Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qOqfStJI1Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qOqfStJI1Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qOqfStJI1Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qOqfStJI1Z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qOqfStJI1Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qOqfStJI1Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qOqfStJI1Z .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-qOqfStJI1Z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qOqfStJI1Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qOqfStJI1Z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qOqfStJI1Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qOqfStJI1Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qOqfStJI1Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qOqfStJI1Z .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-qOqfStJI1Z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qOqfStJI1Z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qOqfStJI1Z .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qOqfStJI1Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qOqfStJI1Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qOqfStJI1Z .dropdown-item.active,
.cid-qOqfStJI1Z .dropdown-item:active {
  background-color: transparent;
}
.cid-qOqfStJI1Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qOqfStJI1Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qOqfStJI1Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qOqfStJI1Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-qOqfStJI1Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qOqfStJI1Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qOqfStJI1Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qOqfStJI1Z .navbar-buttons {
  text-align: center;
}
.cid-qOqfStJI1Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qOqfStJI1Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOqfStJI1Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qOqfStJI1Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qOqfStJI1Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOqfStJI1Z .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qOqfStJI1Z a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qOqfStJI1Z .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qOqfStJI1Z .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOqfStJI1Z .soc-item {
  margin: .5rem .3rem;
}
.cid-qOqfStJI1Z .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qOqfStJI1Z .navbar {
    height: 77px;
  }
  .cid-qOqfStJI1Z .navbar.opened {
    height: auto;
  }
  .cid-qOqfStJI1Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qOqfSwJhuT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qOqfSwJhuT .mbr-section-subtitle {
  color: #767676;
}
.cid-qOqfSwJhuT .mbr-section-title I {
  color: #ffffff;
}
.cid-qOqgoRHMf9 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/7723-2000x1333.jpg");
}
.cid-qOqgoRHMf9 .card-wrapper {
  z-index: 3;
}
.cid-qOqgoRHMf9 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qOqgoRHMf9:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qOqgoRHMf9 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qOqgoRHMf9 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qOqgoRHMf9 .text-block {
  text-align: right !important;
}
.cid-qOqfSxoGu4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qOqfSxoGu4 .container-fluid {
  padding: 0 3rem;
}
.cid-qOqfSxoGu4 .mbr-section-subtitle {
  color: #767676;
}
.cid-qOqfSxoGu4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qOqfSxoGu4 .table-wrapper {
  margin: 0 auto;
}
.cid-qOqfSxoGu4 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qOqfSxoGu4 table thead tr {
  border: none !important;
}
.cid-qOqfSxoGu4 table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #000000;
  color: white;
  vertical-align: middle;
}
.cid-qOqfSxoGu4 table tr {
  border-bottom: 0px solid #232323;
  border-top: none;
}
.cid-qOqfSxoGu4 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qOqfSxoGu4 tr:hover {
  background-color: #c24161 !important;
}
.cid-qOqfSxoGu4 .head-item:after,
.cid-qOqfSxoGu4 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qOqfSxoGu4 table th,
  .cid-qOqfSxoGu4 table td {
    padding: .75rem;
  }
}
.cid-qOqfSxoGu4 .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qOqfSxoGu4 .head-item {
  color: #000000;
  text-align: left;
}
.cid-qOqfSxoGu4 .mbr-text {
  color: #767676;
}
.cid-qOqfSxoGu4 .mbr-section-title,
.cid-qOqfSxoGu4 .underline {
  text-align: left;
}
.cid-qOqfSxoGu4 .mbr-section-title,
.cid-qOqfSxoGu4 .underline B {
  color: #c24161;
}
.cid-qOqfSxoGu4 .head-item SPAN {
  color: #ffffff;
}
.cid-qOqfSynh70 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qOqfSynh70 .container-fluid {
  padding: 0 3rem;
}
.cid-qOqfSynh70 .mbr-section-subtitle {
  color: #767676;
}
.cid-qOqfSynh70 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qOqfSynh70 .table-wrapper {
  margin: 0 auto;
}
.cid-qOqfSynh70 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qOqfSynh70 table thead tr {
  border: none !important;
}
.cid-qOqfSynh70 table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-qOqfSynh70 table tr {
  border-bottom: 0px solid #c1c1c1;
  border-top: none;
}
.cid-qOqfSynh70 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qOqfSynh70 tr:hover {
  background-color: #c24161 !important;
}
.cid-qOqfSynh70 .head-item:after,
.cid-qOqfSynh70 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qOqfSynh70 table th,
  .cid-qOqfSynh70 table td {
    padding: .75rem;
  }
}
.cid-qOqfSynh70 .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qOqfSynh70 .head-item {
  color: #000000;
  text-align: left;
}
.cid-qOqfSynh70 .mbr-text {
  color: #767676;
}
.cid-qOqfSynh70 .mbr-section-title,
.cid-qOqfSynh70 .underline {
  text-align: left;
}
.cid-qOqfSynh70 .head-item SPAN {
  color: #ffffff;
}
.cid-qOqfSynh70 .mbr-section-title,
.cid-qOqfSynh70 .underline B {
  color: #c24161;
}
.cid-qPKGGa1TXL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKGGa1TXL .container-fluid {
  padding: 0 3rem;
}
.cid-qPKGGa1TXL .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKGGa1TXL .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKGGa1TXL .table-wrapper {
  margin: 0 auto;
}
.cid-qPKGGa1TXL table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKGGa1TXL table thead tr {
  border: none !important;
}
.cid-qPKGGa1TXL table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-qPKGGa1TXL table tr {
  border-bottom: 0px solid #c1c1c1;
  border-top: none;
}
.cid-qPKGGa1TXL table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKGGa1TXL tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKGGa1TXL .head-item:after,
.cid-qPKGGa1TXL .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKGGa1TXL table th,
  .cid-qPKGGa1TXL table td {
    padding: .75rem;
  }
}
.cid-qPKGGa1TXL .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKGGa1TXL .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKGGa1TXL .mbr-text {
  color: #767676;
}
.cid-qPKGGa1TXL .mbr-section-title,
.cid-qPKGGa1TXL .underline {
  text-align: left;
}
.cid-qPKGGa1TXL .mbr-section-title,
.cid-qPKGGa1TXL .underline B {
  color: #c24161;
}
.cid-qPKGGa1TXL .head-item SPAN {
  color: #ffffff;
}
.cid-qPKJsFRMml {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKJsFRMml .container-fluid {
  padding: 0 3rem;
}
.cid-qPKJsFRMml .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKJsFRMml .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKJsFRMml .table-wrapper {
  margin: 0 auto;
}
.cid-qPKJsFRMml table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKJsFRMml table thead tr {
  border: none !important;
}
.cid-qPKJsFRMml table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-qPKJsFRMml table tr {
  border-bottom: 0px solid #c1c1c1;
  border-top: none;
}
.cid-qPKJsFRMml table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKJsFRMml tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKJsFRMml .head-item:after,
.cid-qPKJsFRMml .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKJsFRMml table th,
  .cid-qPKJsFRMml table td {
    padding: .75rem;
  }
}
.cid-qPKJsFRMml .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKJsFRMml .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKJsFRMml .mbr-text {
  color: #767676;
}
.cid-qPKJsFRMml .mbr-section-title,
.cid-qPKJsFRMml .underline {
  text-align: left;
}
.cid-qPKJsFRMml .mbr-section-title,
.cid-qPKJsFRMml .underline B {
  color: #c24161;
}
.cid-qPKJsFRMml .head-item SPAN {
  color: #ffffff;
}
.cid-qPKIoM2pwj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKIoM2pwj .container-fluid {
  padding: 0 3rem;
}
.cid-qPKIoM2pwj .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKIoM2pwj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKIoM2pwj .table-wrapper {
  margin: 0 auto;
}
.cid-qPKIoM2pwj table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKIoM2pwj table thead tr {
  border: none !important;
}
.cid-qPKIoM2pwj table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-qPKIoM2pwj table tr {
  border-bottom: 0px solid #c1c1c1;
  border-top: none;
}
.cid-qPKIoM2pwj table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKIoM2pwj tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKIoM2pwj .head-item:after,
.cid-qPKIoM2pwj .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKIoM2pwj table th,
  .cid-qPKIoM2pwj table td {
    padding: .75rem;
  }
}
.cid-qPKIoM2pwj .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKIoM2pwj .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKIoM2pwj .mbr-text {
  color: #767676;
}
.cid-qPKIoM2pwj .mbr-section-title,
.cid-qPKIoM2pwj .underline {
  text-align: left;
}
.cid-qPKIoM2pwj .mbr-section-title,
.cid-qPKIoM2pwj .underline B {
  color: #c24161;
}
.cid-qPKIoM2pwj .head-item SPAN {
  color: #ffffff;
}
.cid-qPKJNqMLJI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKJNqMLJI .container-fluid {
  padding: 0 3rem;
}
.cid-qPKJNqMLJI .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKJNqMLJI .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKJNqMLJI .table-wrapper {
  margin: 0 auto;
}
.cid-qPKJNqMLJI table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKJNqMLJI table thead tr {
  border: none !important;
}
.cid-qPKJNqMLJI table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-qPKJNqMLJI table tr {
  border-bottom: 0px solid #c1c1c1;
  border-top: none;
}
.cid-qPKJNqMLJI table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKJNqMLJI tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKJNqMLJI .head-item:after,
.cid-qPKJNqMLJI .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKJNqMLJI table th,
  .cid-qPKJNqMLJI table td {
    padding: .75rem;
  }
}
.cid-qPKJNqMLJI .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKJNqMLJI .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKJNqMLJI .mbr-text {
  color: #767676;
}
.cid-qPKJNqMLJI .mbr-section-title,
.cid-qPKJNqMLJI .underline {
  text-align: left;
}
.cid-qPKJNqMLJI .mbr-section-title,
.cid-qPKJNqMLJI .underline B {
  color: #c24161;
}
.cid-qPKJNqMLJI .head-item SPAN {
  color: #ffffff;
}
.cid-qOqxqesC1p {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/taustakuva2-2000x900.jpg");
}
.cid-qOqxqesC1p .form-control {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-qOqxqesC1p .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-qOqxqesC1p input::-webkit-input-placeholder {
  color: #000000;
}
.cid-qOqxqesC1p input::-moz-placeholder {
  color: #000000;
}
.cid-qOqxqesC1p textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-qOqxqesC1p textarea::-moz-placeholder {
  color: #000000;
}
.cid-qOqxqesC1p .mbr-section-subtitle {
  color: #767676;
}
.cid-qOqfSAjQ4R {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #232323;
}
.cid-qOqfSAjQ4R .mbr-section-title {
  margin-bottom: 0;
  color: #c24161;
}
.cid-qOqfSAjQ4R .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-qOqfSAjQ4R .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOqfSAjQ4R .mbr-iconfont:hover {
  color: #66458e;
}
.cid-qOqfSAjQ4R .image-wrap {
  position: relative;
}
.cid-qOqfSAjQ4R .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-qOqfSAjQ4R .mbr-section-subtitle {
  line-height: 1.5;
  color: #efefef;
}
.cid-qOqfSAjQ4R .card-wrap {
  margin-bottom: 3rem;
}
.cid-qOqfSAjQ4R .card-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-qOqfSAjQ4R .card-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-qOqfSAjQ4R .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-qOqfSAjQ4R .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-qOqfSAjQ4R .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-qOqfSAjQ4R .img-overlay {
  background: linear-gradient(transparent, #bcc2d8);
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-qOqfSAjQ4R .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-qOqfSAjQ4R .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qOqfSAjQ4R .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-qOqfSDtvX3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qOqfSDtvX3 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qOqfSDtvX3 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qOqfSDtvX3 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qOqfSDtvX3 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qOqfSDtvX3 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c24161;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qOqfSDtvX3 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-qOqfSDtvX3 .mbr-text {
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-qOqfSDtvX3 .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qOqfSDtvX3 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qOqfSDtvX3 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qOqfUnZRE5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qOqfUnZRE5 .nav-item,
.cid-qOqfUnZRE5 .nav-link,
.cid-qOqfUnZRE5 .navbar-caption {
  font-weight: normal;
}
.cid-qOqfUnZRE5 .nav-item:focus,
.cid-qOqfUnZRE5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qOqfUnZRE5 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qOqfUnZRE5 .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-qOqfUnZRE5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qOqfUnZRE5 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qOqfUnZRE5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qOqfUnZRE5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qOqfUnZRE5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qOqfUnZRE5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qOqfUnZRE5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qOqfUnZRE5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-qOqfUnZRE5 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-qOqfUnZRE5 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qOqfUnZRE5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qOqfUnZRE5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qOqfUnZRE5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qOqfUnZRE5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qOqfUnZRE5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qOqfUnZRE5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qOqfUnZRE5 .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-qOqfUnZRE5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qOqfUnZRE5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qOqfUnZRE5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qOqfUnZRE5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qOqfUnZRE5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qOqfUnZRE5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qOqfUnZRE5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qOqfUnZRE5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qOqfUnZRE5 .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-qOqfUnZRE5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qOqfUnZRE5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qOqfUnZRE5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qOqfUnZRE5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qOqfUnZRE5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qOqfUnZRE5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qOqfUnZRE5 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-qOqfUnZRE5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qOqfUnZRE5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qOqfUnZRE5 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qOqfUnZRE5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qOqfUnZRE5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qOqfUnZRE5 .dropdown-item.active,
.cid-qOqfUnZRE5 .dropdown-item:active {
  background-color: transparent;
}
.cid-qOqfUnZRE5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qOqfUnZRE5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qOqfUnZRE5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qOqfUnZRE5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-qOqfUnZRE5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qOqfUnZRE5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qOqfUnZRE5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qOqfUnZRE5 .navbar-buttons {
  text-align: center;
}
.cid-qOqfUnZRE5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qOqfUnZRE5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qOqfUnZRE5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qOqfUnZRE5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qOqfUnZRE5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qOqfUnZRE5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qOqfUnZRE5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOqfUnZRE5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qOqfUnZRE5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qOqfUnZRE5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOqfUnZRE5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qOqfUnZRE5 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qOqfUnZRE5 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qOqfUnZRE5 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOqfUnZRE5 .soc-item {
  margin: .5rem .3rem;
}
.cid-qOqfUnZRE5 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qOqfUnZRE5 .navbar {
    height: 77px;
  }
  .cid-qOqfUnZRE5 .navbar.opened {
    height: auto;
  }
  .cid-qOqfUnZRE5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qOqfUpZ4Ct {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qOqfUpZ4Ct .mbr-section-subtitle {
  color: #767676;
}
.cid-qOqfUpZ4Ct .mbr-section-title I {
  color: #ffffff;
}
.cid-qOqgYjvo6r {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/1794-2-2000x1333.jpg");
}
.cid-qOqgYjvo6r .card-wrapper {
  z-index: 3;
}
.cid-qOqgYjvo6r .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qOqgYjvo6r:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qOqgYjvo6r .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qOqgYjvo6r .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qOqgYjvo6r .text-block {
  text-align: right !important;
}
.cid-qOqgYjvo6r B {
  color: #ffffff;
}
.cid-qPKRDVXKZG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKRDVXKZG .container-fluid {
  padding: 0 3rem;
}
.cid-qPKRDVXKZG .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKRDVXKZG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKRDVXKZG .table-wrapper {
  margin: 0 auto;
}
.cid-qPKRDVXKZG table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKRDVXKZG table thead tr {
  border: none !important;
}
.cid-qPKRDVXKZG table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #000000;
  color: white;
  vertical-align: middle;
}
.cid-qPKRDVXKZG table tr {
  border-bottom: 0px solid #232323;
  border-top: none;
}
.cid-qPKRDVXKZG table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKRDVXKZG tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKRDVXKZG .head-item:after,
.cid-qPKRDVXKZG .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKRDVXKZG table th,
  .cid-qPKRDVXKZG table td {
    padding: .75rem;
  }
}
.cid-qPKRDVXKZG .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKRDVXKZG .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKRDVXKZG .mbr-text {
  color: #767676;
}
.cid-qPKRDVXKZG .mbr-section-title,
.cid-qPKRDVXKZG .underline {
  text-align: left;
}
.cid-qPKRDVXKZG .mbr-section-title,
.cid-qPKRDVXKZG .underline B {
  color: #c24161;
}
.cid-qPKRDVXKZG .head-item SPAN {
  color: #ffffff;
}
.cid-qPKRNXLJbv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKRNXLJbv .container-fluid {
  padding: 0 3rem;
}
.cid-qPKRNXLJbv .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKRNXLJbv .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKRNXLJbv .table-wrapper {
  margin: 0 auto;
}
.cid-qPKRNXLJbv table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKRNXLJbv table thead tr {
  border: none !important;
}
.cid-qPKRNXLJbv table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #000000;
  color: white;
  vertical-align: middle;
}
.cid-qPKRNXLJbv table tr {
  border-bottom: 0px solid #232323;
  border-top: none;
}
.cid-qPKRNXLJbv table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKRNXLJbv tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKRNXLJbv .head-item:after,
.cid-qPKRNXLJbv .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKRNXLJbv table th,
  .cid-qPKRNXLJbv table td {
    padding: .75rem;
  }
}
.cid-qPKRNXLJbv .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKRNXLJbv .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKRNXLJbv .mbr-text {
  color: #767676;
}
.cid-qPKRNXLJbv .mbr-section-title,
.cid-qPKRNXLJbv .underline {
  text-align: left;
}
.cid-qPKRNXLJbv .mbr-section-title,
.cid-qPKRNXLJbv .underline B {
  color: #c24161;
}
.cid-qPKRNXLJbv .head-item SPAN {
  color: #ffffff;
}
.cid-qPKRWzHPvE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKRWzHPvE .container-fluid {
  padding: 0 3rem;
}
.cid-qPKRWzHPvE .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKRWzHPvE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKRWzHPvE .table-wrapper {
  margin: 0 auto;
}
.cid-qPKRWzHPvE table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKRWzHPvE table thead tr {
  border: none !important;
}
.cid-qPKRWzHPvE table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #000000;
  color: white;
  vertical-align: middle;
}
.cid-qPKRWzHPvE table tr {
  border-bottom: 0px solid #232323;
  border-top: none;
}
.cid-qPKRWzHPvE table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKRWzHPvE tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKRWzHPvE .head-item:after,
.cid-qPKRWzHPvE .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKRWzHPvE table th,
  .cid-qPKRWzHPvE table td {
    padding: .75rem;
  }
}
.cid-qPKRWzHPvE .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKRWzHPvE .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKRWzHPvE .mbr-text {
  color: #767676;
}
.cid-qPKRWzHPvE .mbr-section-title,
.cid-qPKRWzHPvE .underline {
  text-align: left;
}
.cid-qPKRWzHPvE .mbr-section-title,
.cid-qPKRWzHPvE .underline B {
  color: #c24161;
}
.cid-qPKRWzHPvE .head-item SPAN {
  color: #ffffff;
}
.cid-qPKS6cJulb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKS6cJulb .container-fluid {
  padding: 0 3rem;
}
.cid-qPKS6cJulb .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKS6cJulb .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKS6cJulb .table-wrapper {
  margin: 0 auto;
}
.cid-qPKS6cJulb table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKS6cJulb table thead tr {
  border: none !important;
}
.cid-qPKS6cJulb table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #000000;
  color: white;
  vertical-align: middle;
}
.cid-qPKS6cJulb table tr {
  border-bottom: 0px solid #232323;
  border-top: none;
}
.cid-qPKS6cJulb table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKS6cJulb tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKS6cJulb .head-item:after,
.cid-qPKS6cJulb .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKS6cJulb table th,
  .cid-qPKS6cJulb table td {
    padding: .75rem;
  }
}
.cid-qPKS6cJulb .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKS6cJulb .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKS6cJulb .mbr-text {
  color: #767676;
}
.cid-qPKS6cJulb .mbr-section-title,
.cid-qPKS6cJulb .underline {
  text-align: left;
}
.cid-qPKS6cJulb .mbr-section-title,
.cid-qPKS6cJulb .underline B {
  color: #c24161;
}
.cid-qPKS6cJulb .head-item SPAN {
  color: #ffffff;
}
.cid-qPKT0sfPFe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKT0sfPFe .container-fluid {
  padding: 0 3rem;
}
.cid-qPKT0sfPFe .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKT0sfPFe .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKT0sfPFe .table-wrapper {
  margin: 0 auto;
}
.cid-qPKT0sfPFe table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKT0sfPFe table thead tr {
  border: none !important;
}
.cid-qPKT0sfPFe table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #000000;
  color: white;
  vertical-align: middle;
}
.cid-qPKT0sfPFe table tr {
  border-bottom: 0px solid #232323;
  border-top: none;
}
.cid-qPKT0sfPFe table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKT0sfPFe tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKT0sfPFe .head-item:after,
.cid-qPKT0sfPFe .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKT0sfPFe table th,
  .cid-qPKT0sfPFe table td {
    padding: .75rem;
  }
}
.cid-qPKT0sfPFe .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKT0sfPFe .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKT0sfPFe .mbr-text {
  color: #767676;
}
.cid-qPKT0sfPFe .mbr-section-title,
.cid-qPKT0sfPFe .underline {
  text-align: left;
}
.cid-qPKT0sfPFe .mbr-section-title,
.cid-qPKT0sfPFe .underline B {
  color: #c24161;
}
.cid-qPKT0sfPFe .head-item SPAN {
  color: #ffffff;
}
.cid-qPKTPSL5q1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKTPSL5q1 .container-fluid {
  padding: 0 3rem;
}
.cid-qPKTPSL5q1 .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKTPSL5q1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKTPSL5q1 .table-wrapper {
  margin: 0 auto;
}
.cid-qPKTPSL5q1 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKTPSL5q1 table thead tr {
  border: none !important;
}
.cid-qPKTPSL5q1 table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #000000;
  color: white;
  vertical-align: middle;
}
.cid-qPKTPSL5q1 table tr {
  border-bottom: 0px solid #232323;
  border-top: none;
}
.cid-qPKTPSL5q1 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKTPSL5q1 tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKTPSL5q1 .head-item:after,
.cid-qPKTPSL5q1 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKTPSL5q1 table th,
  .cid-qPKTPSL5q1 table td {
    padding: .75rem;
  }
}
.cid-qPKTPSL5q1 .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKTPSL5q1 .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKTPSL5q1 .mbr-text {
  color: #767676;
}
.cid-qPKTPSL5q1 .mbr-section-title,
.cid-qPKTPSL5q1 .underline {
  text-align: left;
}
.cid-qPKTPSL5q1 .mbr-section-title,
.cid-qPKTPSL5q1 .underline B {
  color: #c24161;
}
.cid-qPKTPSL5q1 .head-item SPAN {
  color: #ffffff;
}
.cid-qPKXl7qIEX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qPKXl7qIEX .container-fluid {
  padding: 0 3rem;
}
.cid-qPKXl7qIEX .mbr-section-subtitle {
  color: #767676;
}
.cid-qPKXl7qIEX .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qPKXl7qIEX .table-wrapper {
  margin: 0 auto;
}
.cid-qPKXl7qIEX table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qPKXl7qIEX table thead tr {
  border: none !important;
}
.cid-qPKXl7qIEX table th {
  padding: 1.2rem 1.6rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 0px solid #000000;
  color: white;
  vertical-align: middle;
}
.cid-qPKXl7qIEX table tr {
  border-bottom: 0px solid #232323;
  border-top: none;
}
.cid-qPKXl7qIEX table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-qPKXl7qIEX tr:hover {
  background-color: #c24161 !important;
}
.cid-qPKXl7qIEX .head-item:after,
.cid-qPKXl7qIEX .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-qPKXl7qIEX table th,
  .cid-qPKXl7qIEX table td {
    padding: .75rem;
  }
}
.cid-qPKXl7qIEX .body-item {
  text-align: left;
  color: #ffffff;
}
.cid-qPKXl7qIEX .head-item {
  color: #000000;
  text-align: left;
}
.cid-qPKXl7qIEX .mbr-text {
  color: #767676;
}
.cid-qPKXl7qIEX .mbr-section-title,
.cid-qPKXl7qIEX .underline {
  text-align: left;
}
.cid-qPKXl7qIEX .mbr-section-title,
.cid-qPKXl7qIEX .underline B {
  color: #c24161;
}
.cid-qPKXl7qIEX .head-item SPAN {
  color: #ffffff;
}
.cid-qPKUtpzQOI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/1938-1-2000x3000.jpg");
}
.cid-qPKUtpzQOI .form-control {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-qPKUtpzQOI .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-qPKUtpzQOI input::-webkit-input-placeholder {
  color: #000000;
}
.cid-qPKUtpzQOI input::-moz-placeholder {
  color: #000000;
}
.cid-qPKUtpzQOI textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-qPKUtpzQOI textarea::-moz-placeholder {
  color: #000000;
}
.cid-qPKUtpzQOI .mbr-section-subtitle {
  color: #767676;
}
.cid-qOqfUtpzdT {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #232323;
}
.cid-qOqfUtpzdT .mbr-section-title {
  margin-bottom: 0;
  color: #c24161;
}
.cid-qOqfUtpzdT .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-qOqfUtpzdT .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOqfUtpzdT .mbr-iconfont:hover {
  color: #66458e;
}
.cid-qOqfUtpzdT .image-wrap {
  position: relative;
}
.cid-qOqfUtpzdT .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-qOqfUtpzdT .mbr-section-subtitle {
  line-height: 1.5;
  color: #efefef;
}
.cid-qOqfUtpzdT .card-wrap {
  margin-bottom: 3rem;
}
.cid-qOqfUtpzdT .card-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-qOqfUtpzdT .card-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-qOqfUtpzdT .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-qOqfUtpzdT .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-qOqfUtpzdT .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-qOqfUtpzdT .img-overlay {
  background: linear-gradient(transparent, #bcc2d8);
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-qOqfUtpzdT .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-qOqfUtpzdT .mbr-text {
  color: #efefef;
}
.cid-qOqfUtpzdT .mbr-name {
  color: #ffffff;
}
.cid-qOqfUw5tfL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qOqfUw5tfL .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qOqfUw5tfL .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qOqfUw5tfL .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qOqfUw5tfL .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qOqfUw5tfL .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #000000;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qOqfUw5tfL .icon-transition span:hover {
  background-color: #e96188;
}
.cid-qOqfUw5tfL .mbr-text {
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-qOqfUw5tfL .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qOqfUw5tfL .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qOqfUw5tfL .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qOqfStJI1Z .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qOqfStJI1Z .nav-item,
.cid-qOqfStJI1Z .nav-link,
.cid-qOqfStJI1Z .navbar-caption {
  font-weight: normal;
}
.cid-qOqfStJI1Z .nav-item:focus,
.cid-qOqfStJI1Z .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qOqfStJI1Z .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qOqfStJI1Z .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-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qOqfStJI1Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qOqfStJI1Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qOqfStJI1Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qOqfStJI1Z .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-qOqfStJI1Z .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-qOqfStJI1Z .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qOqfStJI1Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qOqfStJI1Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qOqfStJI1Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qOqfStJI1Z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qOqfStJI1Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qOqfStJI1Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qOqfStJI1Z .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-qOqfStJI1Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qOqfStJI1Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qOqfStJI1Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qOqfStJI1Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qOqfStJI1Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qOqfStJI1Z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qOqfStJI1Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qOqfStJI1Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qOqfStJI1Z .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-qOqfStJI1Z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qOqfStJI1Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qOqfStJI1Z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qOqfStJI1Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qOqfStJI1Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qOqfStJI1Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qOqfStJI1Z .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-qOqfStJI1Z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qOqfStJI1Z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qOqfStJI1Z .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qOqfStJI1Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qOqfStJI1Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qOqfStJI1Z .dropdown-item.active,
.cid-qOqfStJI1Z .dropdown-item:active {
  background-color: transparent;
}
.cid-qOqfStJI1Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qOqfStJI1Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qOqfStJI1Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qOqfStJI1Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-qOqfStJI1Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qOqfStJI1Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qOqfStJI1Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qOqfStJI1Z .navbar-buttons {
  text-align: center;
}
.cid-qOqfStJI1Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qOqfStJI1Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qOqfStJI1Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOqfStJI1Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qOqfStJI1Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qOqfStJI1Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qOqfStJI1Z .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qOqfStJI1Z a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qOqfStJI1Z .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qOqfStJI1Z .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qOqfStJI1Z .soc-item {
  margin: .5rem .3rem;
}
.cid-qOqfStJI1Z .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qOqfStJI1Z .navbar {
    height: 77px;
  }
  .cid-qOqfStJI1Z .navbar.opened {
    height: auto;
  }
  .cid-qOqfStJI1Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qOqfSDtvX3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qOqfSDtvX3 .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qOqfSDtvX3 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qOqfSDtvX3 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qOqfSDtvX3 .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qOqfSDtvX3 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c24161;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qOqfSDtvX3 .icon-transition span:hover {
  background-color: #e96188;
}
.cid-qOqfSDtvX3 .mbr-text {
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-qOqfSDtvX3 .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qOqfSDtvX3 .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qOqfSDtvX3 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qSLYnOdWwM {
  background-image: url("../../../assets/images/1938-1-2000x3000.jpg");
}
.cid-qSLYnOdWwM .mbr-overlay {
  background: #efefef;
}
.cid-qSLYnOdWwM .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
}
.cid-qSLYnOdWwM .mbr-section-subtitle {
  color: #232323;
}
.cid-qSLXhocPSI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSLXhocPSI .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qSLXhocPSI .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qSLXhocPSI .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qSLXhocPSI .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qSLXhocPSI .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c24161;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qSLXhocPSI .icon-transition span:hover {
  background-color: #e96188;
}
.cid-qSLXhocPSI .mbr-text {
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-qSLXhocPSI .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qSLXhocPSI .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qSLXhocPSI .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qSLZhkRVzf .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSLZhkRVzf .nav-item,
.cid-qSLZhkRVzf .nav-link,
.cid-qSLZhkRVzf .navbar-caption {
  font-weight: normal;
}
.cid-qSLZhkRVzf .nav-item:focus,
.cid-qSLZhkRVzf .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSLZhkRVzf .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qSLZhkRVzf .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-qSLZhkRVzf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSLZhkRVzf .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSLZhkRVzf .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSLZhkRVzf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSLZhkRVzf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qSLZhkRVzf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSLZhkRVzf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSLZhkRVzf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-qSLZhkRVzf .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-qSLZhkRVzf .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSLZhkRVzf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSLZhkRVzf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSLZhkRVzf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSLZhkRVzf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSLZhkRVzf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSLZhkRVzf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSLZhkRVzf .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-qSLZhkRVzf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSLZhkRVzf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSLZhkRVzf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSLZhkRVzf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSLZhkRVzf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSLZhkRVzf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSLZhkRVzf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSLZhkRVzf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSLZhkRVzf .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-qSLZhkRVzf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSLZhkRVzf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSLZhkRVzf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSLZhkRVzf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSLZhkRVzf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSLZhkRVzf .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSLZhkRVzf .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-qSLZhkRVzf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSLZhkRVzf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSLZhkRVzf .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSLZhkRVzf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSLZhkRVzf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSLZhkRVzf .dropdown-item.active,
.cid-qSLZhkRVzf .dropdown-item:active {
  background-color: transparent;
}
.cid-qSLZhkRVzf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSLZhkRVzf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSLZhkRVzf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSLZhkRVzf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-qSLZhkRVzf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSLZhkRVzf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSLZhkRVzf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSLZhkRVzf .navbar-buttons {
  text-align: center;
}
.cid-qSLZhkRVzf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSLZhkRVzf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSLZhkRVzf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSLZhkRVzf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSLZhkRVzf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSLZhkRVzf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSLZhkRVzf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSLZhkRVzf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSLZhkRVzf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSLZhkRVzf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSLZhkRVzf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSLZhkRVzf a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSLZhkRVzf .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSLZhkRVzf .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qSLZhkRVzf .soc-item {
  margin: .5rem .3rem;
}
.cid-qSLZhkRVzf .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSLZhkRVzf .navbar {
    height: 77px;
  }
  .cid-qSLZhkRVzf .navbar.opened {
    height: auto;
  }
  .cid-qSLZhkRVzf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSLZhm1asW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSLZhm1asW .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qSLZhm1asW .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qSLZhm1asW .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qSLZhm1asW .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qSLZhm1asW .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c24161;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qSLZhm1asW .icon-transition span:hover {
  background-color: #e96188;
}
.cid-qSLZhm1asW .mbr-text {
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-qSLZhm1asW .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qSLZhm1asW .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qSLZhm1asW .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qSLZhmTBjD {
  background-image: url("../../../assets/images/1938-1-2000x3000.jpg");
}
.cid-qSLZhmTBjD .mbr-overlay {
  background: #efefef;
}
.cid-qSLZhmTBjD .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
}
.cid-qSLZhmTBjD .mbr-section-subtitle {
  color: #232323;
}
.cid-qSLZhnMFyH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSLZhnMFyH .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qSLZhnMFyH .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qSLZhnMFyH .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qSLZhnMFyH .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qSLZhnMFyH .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c24161;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qSLZhnMFyH .icon-transition span:hover {
  background-color: #e96188;
}
.cid-qSLZhnMFyH .mbr-text {
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-qSLZhnMFyH .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qSLZhnMFyH .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qSLZhnMFyH .mbr-text {
    margin-bottom: 1.5rem;
  }
}
