@import url(https://fonts.googleapis.com/css?family=Jost:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i&display=swap);






body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Jost', 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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 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 {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #0077ff !important;
}
.bg-success {
  background-color: #8aae3d !important;
}
.bg-info {
  background-color: #35999a !important;
}
.bg-warning {
  background-color: #d6d2cd !important;
}
.bg-danger {
  background-color: #df561c !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0077ff !important;
  border-color: #0077ff !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #0053b3 !important;
  border-color: #0053b3 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0053b3 !important;
  border-color: #0053b3 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #84f962 !important;
  border-color: #84f962 !important;
  color: #175903 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #175903 !important;
  background-color: #4af618 !important;
  border-color: #4af618 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #175903 !important;
  background-color: #4af618 !important;
  border-color: #4af618 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #35999a !important;
  border-color: #35999a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #216061 !important;
  border-color: #216061 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #216061 !important;
  border-color: #216061 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #8aae3d !important;
  border-color: #8aae3d !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #5d7529 !important;
  border-color: #5d7529 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #5d7529 !important;
  border-color: #5d7529 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d6d2cd !important;
  border-color: #d6d2cd !important;
  color: #5a534a !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #5a534a !important;
  background-color: #b4aca3 !important;
  border-color: #b4aca3 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #5a534a !important;
  background-color: #b4aca3 !important;
  border-color: #b4aca3 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #df561c !important;
  border-color: #df561c !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #9b3c13 !important;
  border-color: #9b3c13 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #9b3c13 !important;
  border-color: #9b3c13 !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: #004799;
  color: #004799 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #0077ff;
  border-color: #0077ff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0077ff !important;
  border-color: #0077ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #3cec09;
  color: #3cec09 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #175903 !important;
  background-color: #84f962;
  border-color: #84f962;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #175903 !important;
  background-color: #84f962 !important;
  border-color: #84f962 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #1b4e4e;
  color: #1b4e4e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #35999a;
  border-color: #35999a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #35999a !important;
  border-color: #35999a !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #4e6223;
  color: #4e6223 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #8aae3d;
  border-color: #8aae3d;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8aae3d !important;
  border-color: #8aae3d !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #a8a095;
  color: #a8a095 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #5a534a !important;
  background-color: #d6d2cd;
  border-color: #d6d2cd;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5a534a !important;
  background-color: #d6d2cd !important;
  border-color: #d6d2cd !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #843311;
  color: #843311 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #df561c;
  border-color: #df561c;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #df561c !important;
  border-color: #df561c !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: #0077ff !important;
}
.text-secondary {
  color: #84f962 !important;
}
.text-success {
  color: #8aae3d !important;
}
.text-info {
  color: #35999a !important;
}
.text-warning {
  color: #d6d2cd !important;
}
.text-danger {
  color: #df561c !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #004799 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #3cec09 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #4e6223 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #1b4e4e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a8a095 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843311 !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: #8aae3d;
}
.alert-info {
  background-color: #35999a;
}
.alert-warning {
  background-color: #d6d2cd;
}
.alert-danger {
  background-color: #df561c;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.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: #0077ff;
  border-color: #0077ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0077ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cce4ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c2d992;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #7cd1d2;
}
.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: #f9dbce;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #0077ff;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.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;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0077ff;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0077ff;
  border-bottom-color: #0077ff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #0077ff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #84f962 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230077ff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-soBQtrSyXr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #0077ff;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-soBQtrSyXr .nav-item,
.cid-soBQtrSyXr .nav-link,
.cid-soBQtrSyXr .navbar-caption {
  font-weight: normal;
}
.cid-soBQtrSyXr .nav-item:focus,
.cid-soBQtrSyXr .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-soBQtrSyXr .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-soBQtrSyXr .nav-item .nav-link {
    position: relative;
  }
  .cid-soBQtrSyXr .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #0077ff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-soBQtrSyXr .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-soBQtrSyXr .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-soBQtrSyXr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-soBQtrSyXr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-soBQtrSyXr .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #232323;
}
.cid-soBQtrSyXr .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-soBQtrSyXr .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-soBQtrSyXr .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-soBQtrSyXr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-soBQtrSyXr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soBQtrSyXr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 8rem);
  }
}
.cid-soBQtrSyXr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-soBQtrSyXr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soBQtrSyXr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soBQtrSyXr .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-soBQtrSyXr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soBQtrSyXr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-soBQtrSyXr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-soBQtrSyXr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-soBQtrSyXr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soBQtrSyXr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-soBQtrSyXr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soBQtrSyXr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soBQtrSyXr .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-soBQtrSyXr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-soBQtrSyXr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soBQtrSyXr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-soBQtrSyXr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-soBQtrSyXr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soBQtrSyXr .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-soBQtrSyXr .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-soBQtrSyXr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soBQtrSyXr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-soBQtrSyXr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soBQtrSyXr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soBQtrSyXr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soBQtrSyXr .dropdown-item.active,
.cid-soBQtrSyXr .dropdown-item:active {
  background-color: transparent;
}
.cid-soBQtrSyXr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-soBQtrSyXr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soBQtrSyXr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soBQtrSyXr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-soBQtrSyXr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-soBQtrSyXr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-soBQtrSyXr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soBQtrSyXr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soBQtrSyXr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-soBQtrSyXr .navbar-buttons {
  text-align: center;
}
.cid-soBQtrSyXr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-soBQtrSyXr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soBQtrSyXr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-soBQtrSyXr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-soBQtrSyXr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soBQtrSyXr .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-soBQtrSyXr a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-soBQtrSyXr .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-soBQtrSyXr .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-soBQtrSyXr .soc-item {
  margin: .5rem .3rem;
}
.cid-soBQtrSyXr .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-soBQtrSyXr a.nav-link,
.cid-soBQtrSyXr a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-soBQtrSyXr a.nav-link .mbr-iconfont-btn,
.cid-soBQtrSyXr a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-soBQtrSyXr a.nav-link:hover .mbr-iconfont-btn,
.cid-soBQtrSyXr a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-soBQtrSyXr a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-soBQtrSyXr .navbar {
    height: 77px;
  }
  .cid-soBQtrSyXr .navbar.opened {
    height: auto;
  }
  .cid-soBQtrSyXr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-soBQtrSyXr .byline {
  background: linear-gradient(to left, #0077ff, currentColor) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #21b573 !important;
  font-size: 1rem !important;
}
.cid-soBQtrSyXr .byline:hover {
  background: linear-gradient(to right, rgba(0, 119, 255, 0.5) 0%, rgba(33, 181, 115, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#800077ff', endColorstr='#8021b573', GradientType=1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #21b573 !important;
}
.cid-soBQtrSyXr small {
  font-size: 2rem;
  position: relative;
  top: 17px;
  left: -9px;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: -10000px 1.2em;
}
.cid-soBQtrSyXr small:hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(to right, rgba(0, 119, 255, 0.5) 0%, rgba(33, 181, 115, 0.5) 100%);
  background-position: 0px 1.2em;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
}
.cid-soBTgsmZ3b {
  overflow: hidden !important;
}
.cid-soBTgsmZ3b .animated-element {
  color: #efefef;
}
.cid-soBTgsmZ3b .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-soBTgsmZ3b .mbr-section-subtitle {
  color: #bbbbbb;
}
@media (min-width: 992px) {
  .cid-soBTgsmZ3b .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-soBTgsmZ3b .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-soBTgsmZ3b .img-block {
    padding-bottom: 2rem;
  }
}
.cid-soBUlnUO7u {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #bbbbbb;
}
.cid-soBUlnUO7u .mbr-section-subtitle {
  color: #767676;
}
.cid-soBUlnUO7u ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soBUlnUO7u ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-soBUlnUO7u ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-soBUlnUO7u ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-soBUlnUO7u .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-soBVnHqZnY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-soBVnHqZnY .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soBVnHqZnY .carousel-item.active,
.cid-soBVnHqZnY .carousel-item-next,
.cid-soBVnHqZnY .carousel-item-prev {
  display: flex;
}
.cid-soBVnHqZnY .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-soBVnHqZnY .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #bcc2d8;
  opacity: .9;
}
.cid-soBVnHqZnY .carousel-controls a:hover span {
  opacity: 1;
}
.cid-soBVnHqZnY .user_image {
  width: 170px;
  height: 170px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #bcc2d8;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-soBVnHqZnY .user_image .user_image_inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-soBVnHqZnY .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-soBVnHqZnY .user_text {
  color: #767676;
}
.cid-soBVnHqZnY .user {
  margin: 1rem;
}
@media (min-width: 992px) {
  .cid-soBVnHqZnY .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-soBVnHqZnY .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-soBUpYvf4g {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-soBUpYvf4g .form-control {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-soBUpYvf4g .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-soBUpYvf4g input::-webkit-input-placeholder {
  color: #000000;
}
.cid-soBUpYvf4g input::-moz-placeholder {
  color: #000000;
}
.cid-soBUpYvf4g textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-soBUpYvf4g textarea::-moz-placeholder {
  color: #000000;
}
.cid-soBUpYvf4g textarea.form-control {
  min-height: 83px;
}
.cid-soBUpYvf4g .mbr-section-subtitle {
  color: #767676;
}
.cid-soBUuqmmL5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-soBUuqmmL5 .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-soBUuqmmL5 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-soBUuqmmL5 .mbr-section-subtitle {
  color: #767676;
}
.cid-soBUuqmmL5 .panel-group {
  width: 100%;
}
.cid-soBUuqmmL5 .panel-text {
  color: #767676;
}
.cid-soBUuqmmL5 .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-soBUuqmmL5 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-soBUuqmmL5 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f6f6f6;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-soBUuqmmL5 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-soBUuqmmL5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-soBUuqmmL5 .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-soBUuqmmL5 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-soBUuqmmL5 .card .panel-body {
  background: #ffffff;
}
.cid-soBUuqmmL5 .sign {
  color: #232323;
}
.cid-soBUKQg2ud {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #191919;
}
.cid-soBUKQg2ud [class^="socicon-"]:before,
.cid-soBUKQg2ud [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-soBUKQg2ud .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-soBUKQg2ud .btn-social,
.cid-soBUKQg2ud .mbr-section-title {
  color: #57468b;
}
.cid-soBUKQg2ud .soc-item {
  width: 45px;
  height: 45px;
  background: #efeeee;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.3rem;
}
.cid-soBUKQg2ud .soc-item span {
  font-size: 1.6rem;
  color: #c1c1c1 !important;
  transition: all 0.3s;
}
.cid-soBUKQg2ud .soc-item:hover span {
  color: #767676 !important;
}
@media (max-width: 992px) {
  .cid-soBUKQg2ud .align-left {
    text-align: center;
  }
  .cid-soBUKQg2ud .align-right {
    text-align: center;
  }
  .cid-soBUKQg2ud .social-list {
    justify-content: center;
  }
  .cid-soBUKQg2ud .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-soBUKQg2ud .mbr-text {
  color: #ffffff;
}
.cid-soBUy9HdIx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-soBUy9HdIx .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-soBUy9HdIx .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-soBUy9HdIx .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-soBUy9HdIx .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-soBUy9HdIx .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-soBUy9HdIx .icon-transition span:hover {
  background-color: #e96188;
}
.cid-soBUy9HdIx .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-soBUy9HdIx .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-soBUy9HdIx .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-soBUy9HdIx .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-soBQtrSyXr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #0077ff;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-soBQtrSyXr .nav-item,
.cid-soBQtrSyXr .nav-link,
.cid-soBQtrSyXr .navbar-caption {
  font-weight: normal;
}
.cid-soBQtrSyXr .nav-item:focus,
.cid-soBQtrSyXr .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-soBQtrSyXr .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-soBQtrSyXr .nav-item .nav-link {
    position: relative;
  }
  .cid-soBQtrSyXr .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #0077ff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-soBQtrSyXr .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-soBQtrSyXr .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-soBQtrSyXr .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-soBQtrSyXr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-soBQtrSyXr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-soBQtrSyXr .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #232323;
}
.cid-soBQtrSyXr .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-soBQtrSyXr .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-soBQtrSyXr .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-soBQtrSyXr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-soBQtrSyXr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soBQtrSyXr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 8rem);
  }
}
.cid-soBQtrSyXr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-soBQtrSyXr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soBQtrSyXr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soBQtrSyXr .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-soBQtrSyXr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soBQtrSyXr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-soBQtrSyXr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-soBQtrSyXr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-soBQtrSyXr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soBQtrSyXr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-soBQtrSyXr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soBQtrSyXr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soBQtrSyXr .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-soBQtrSyXr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-soBQtrSyXr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soBQtrSyXr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-soBQtrSyXr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-soBQtrSyXr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soBQtrSyXr .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-soBQtrSyXr .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-soBQtrSyXr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soBQtrSyXr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-soBQtrSyXr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soBQtrSyXr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soBQtrSyXr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soBQtrSyXr .dropdown-item.active,
.cid-soBQtrSyXr .dropdown-item:active {
  background-color: transparent;
}
.cid-soBQtrSyXr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-soBQtrSyXr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soBQtrSyXr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soBQtrSyXr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-soBQtrSyXr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-soBQtrSyXr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-soBQtrSyXr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soBQtrSyXr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soBQtrSyXr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-soBQtrSyXr .navbar-buttons {
  text-align: center;
}
.cid-soBQtrSyXr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-soBQtrSyXr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-soBQtrSyXr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soBQtrSyXr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-soBQtrSyXr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-soBQtrSyXr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soBQtrSyXr .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-soBQtrSyXr a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-soBQtrSyXr .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-soBQtrSyXr .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-soBQtrSyXr .soc-item {
  margin: .5rem .3rem;
}
.cid-soBQtrSyXr .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-soBQtrSyXr a.nav-link,
.cid-soBQtrSyXr a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-soBQtrSyXr a.nav-link .mbr-iconfont-btn,
.cid-soBQtrSyXr a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-soBQtrSyXr a.nav-link:hover .mbr-iconfont-btn,
.cid-soBQtrSyXr a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-soBQtrSyXr a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-soBQtrSyXr .navbar {
    height: 77px;
  }
  .cid-soBQtrSyXr .navbar.opened {
    height: auto;
  }
  .cid-soBQtrSyXr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-soBQtrSyXr .byline {
  background: linear-gradient(to left, #0077ff, currentColor) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #21b573 !important;
  font-size: 1rem !important;
}
.cid-soBQtrSyXr .byline:hover {
  background: linear-gradient(to right, rgba(0, 119, 255, 0.5) 0%, rgba(33, 181, 115, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#800077ff', endColorstr='#8021b573', GradientType=1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #21b573 !important;
}
.cid-soBQtrSyXr small {
  font-size: 2rem;
  position: relative;
  top: 17px;
  left: -9px;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: -10000px 1.2em;
}
.cid-soBQtrSyXr small:hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(to right, rgba(0, 119, 255, 0.5) 0%, rgba(33, 181, 115, 0.5) 100%);
  background-position: 0px 1.2em;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
}
.cid-soBUy9HdIx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-soBUy9HdIx .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-soBUy9HdIx .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-soBUy9HdIx .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-soBUy9HdIx .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-soBUy9HdIx .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-soBUy9HdIx .icon-transition span:hover {
  background-color: #e96188;
}
.cid-soBUy9HdIx .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-soBUy9HdIx .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-soBUy9HdIx .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-soBUy9HdIx .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-soC8t03dN3 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-soC8t03dN3 .form-control {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-soC8t03dN3 .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-soC8t03dN3 input::-webkit-input-placeholder {
  color: #000000;
}
.cid-soC8t03dN3 input::-moz-placeholder {
  color: #000000;
}
.cid-soC8t03dN3 textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-soC8t03dN3 textarea::-moz-placeholder {
  color: #000000;
}
.cid-soC8t03dN3 textarea.form-control {
  min-height: 83px;
}
.cid-soC8t03dN3 .mbr-section-subtitle {
  color: #767676;
}
.cid-spKiMJWaET .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #0077ff;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spKiMJWaET .nav-item,
.cid-spKiMJWaET .nav-link,
.cid-spKiMJWaET .navbar-caption {
  font-weight: normal;
}
.cid-spKiMJWaET .nav-item:focus,
.cid-spKiMJWaET .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spKiMJWaET .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-spKiMJWaET .nav-item .nav-link {
    position: relative;
  }
  .cid-spKiMJWaET .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #0077ff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-spKiMJWaET .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-spKiMJWaET .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-spKiMJWaET .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-spKiMJWaET .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spKiMJWaET .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-spKiMJWaET .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spKiMJWaET .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spKiMJWaET .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spKiMJWaET .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spKiMJWaET .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spKiMJWaET .navbar {
  min-height: 90px;
  transition: all .3s;
  background: #232323;
}
.cid-spKiMJWaET .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-spKiMJWaET .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-spKiMJWaET .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spKiMJWaET .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spKiMJWaET .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spKiMJWaET .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 8rem);
  }
}
.cid-spKiMJWaET .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spKiMJWaET .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spKiMJWaET .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-spKiMJWaET .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-spKiMJWaET .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spKiMJWaET .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-spKiMJWaET .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spKiMJWaET .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spKiMJWaET .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spKiMJWaET .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spKiMJWaET .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spKiMJWaET .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-spKiMJWaET .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-spKiMJWaET .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spKiMJWaET .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spKiMJWaET .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-spKiMJWaET .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spKiMJWaET .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spKiMJWaET .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spKiMJWaET .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-spKiMJWaET .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spKiMJWaET .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spKiMJWaET .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spKiMJWaET .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spKiMJWaET .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spKiMJWaET .dropdown-item.active,
.cid-spKiMJWaET .dropdown-item:active {
  background-color: transparent;
}
.cid-spKiMJWaET .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-spKiMJWaET .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spKiMJWaET .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spKiMJWaET .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-spKiMJWaET .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-spKiMJWaET .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-spKiMJWaET .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spKiMJWaET .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spKiMJWaET ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spKiMJWaET .navbar-buttons {
  text-align: center;
}
.cid-spKiMJWaET button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spKiMJWaET button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-spKiMJWaET button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spKiMJWaET button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spKiMJWaET button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spKiMJWaET button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spKiMJWaET nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spKiMJWaET nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spKiMJWaET nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spKiMJWaET nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spKiMJWaET .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spKiMJWaET a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spKiMJWaET .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-spKiMJWaET .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-spKiMJWaET .soc-item {
  margin: .5rem .3rem;
}
.cid-spKiMJWaET .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spKiMJWaET a.nav-link,
.cid-spKiMJWaET a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-spKiMJWaET a.nav-link .mbr-iconfont-btn,
.cid-spKiMJWaET a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-spKiMJWaET a.nav-link:hover .mbr-iconfont-btn,
.cid-spKiMJWaET a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-spKiMJWaET a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spKiMJWaET .navbar {
    height: 77px;
  }
  .cid-spKiMJWaET .navbar.opened {
    height: auto;
  }
  .cid-spKiMJWaET .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spKiMJWaET .byline {
  background: linear-gradient(to left, #0077ff, currentColor) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #21b573 !important;
  font-size: 1rem !important;
}
.cid-spKiMJWaET .byline:hover {
  background: linear-gradient(to right, rgba(0, 119, 255, 0.5) 0%, rgba(33, 181, 115, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#800077ff', endColorstr='#8021b573', GradientType=1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #21b573 !important;
}
.cid-spKiMJWaET small {
  font-size: 2rem;
  position: relative;
  top: 17px;
  left: -9px;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: -10000px 1.2em;
}
.cid-spKiMJWaET small:hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(to right, rgba(0, 119, 255, 0.5) 0%, rgba(33, 181, 115, 0.5) 100%);
  background-position: 0px 1.2em;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
}
.cid-spKiMKlm3x {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-spKiMKlm3x .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-spKiMKlm3x .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spKiMKlm3x .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-spKiMKlm3x .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-spKiMKlm3x .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-spKiMKlm3x .icon-transition span:hover {
  background-color: #e96188;
}
.cid-spKiMKlm3x .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-spKiMKlm3x .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-spKiMKlm3x .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-spKiMKlm3x .mbr-text {
    margin-bottom: 1.5rem;
  }
}
#custom-html-v {
  /*!

 =========================================================
 * Bootstrap Wizard - v1.1.1
 =========================================================
 
 * Product Page: https://www.creative-tim.com/product/bootstrap-wizard
 * Copyright 2017 Creative Tim (http://www.creative-tim.com)
 * Licensed under MIT (https://github.com/creativetimofficial/bootstrap-wizard/blob/master/LICENSE.md)
 
 =========================================================
 
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
 */
  /*           Animations              */
  /*           Font Smoothing      */
  /*           Typography          */
  /*             Inputs               */
  /*           Buttons fill .btn-fill           */
  /*          End Buttons fill          */
  /*            Navigation menu                */
  /*           Labels & Progress-bar              */
}
#custom-html-v a {
  color: #2CA8FF;
}
#custom-html-v a:hover,
#custom-html-v a:focus {
  color: #109CFF;
}
#custom-html-v a:focus,
#custom-html-v a:active,
#custom-html-v button::-moz-focus-inner,
#custom-html-v input[type="reset"]::-moz-focus-inner,
#custom-html-v input[type="button"]::-moz-focus-inner,
#custom-html-v input[type="submit"]::-moz-focus-inner,
#custom-html-v select::-moz-focus-inner,
#custom-html-v input[type="file"] > input[type="button"]::-moz-focus-inner,
#custom-html-v input[type="button"]:focus {
  outline: 0 !important;
}
#custom-html-v .btn:focus,
#custom-html-v .btn:hover,
#custom-html-v .btn:active {
  outline: 0;
}
#custom-html-v .form-control,
#custom-html-v .input-group-addon {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
#custom-html-v .image-container {
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
}
#custom-html-v .wizard-container {
  padding-top: 100px;
  z-index: 3;
}
#custom-html-v .wizard-navigation {
  position: relative;
}
#custom-html-v .made-with-mk {
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  z-index: 555;
  bottom: 40px;
  right: 40px;
  border-radius: 30px;
  background-color: rgba(16, 16, 16, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  cursor: pointer;
  padding: 10px 12px;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
  -moz-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
  -o-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
  transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
}
#custom-html-v .made-with-mk:hover,
#custom-html-v .made-with-mk:active,
#custom-html-v .made-with-mk:focus {
  width: 218px;
  color: #FFFFFF;
  transition-duration: .55s;
  padding: 10px 30px;
}
#custom-html-v .made-with-mk:hover .made-with,
#custom-html-v .made-with-mk:active .made-with,
#custom-html-v .made-with-mk:focus .made-with {
  opacity: 1;
}
#custom-html-v .made-with-mk:hover .brand,
#custom-html-v .made-with-mk:active .brand,
#custom-html-v .made-with-mk:focus .brand {
  left: 0;
}
#custom-html-v .made-with-mk .brand,
#custom-html-v .made-with-mk .made-with {
  float: left;
}
#custom-html-v .made-with-mk .brand {
  position: relative;
  top: 3px;
  left: -1px;
  letter-spacing: 1px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 600;
}
#custom-html-v .made-with-mk .made-with {
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 75px;
  top: 15px;
  opacity: 0;
  margin: 0;
  -webkit-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
  -moz-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
  -o-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
  transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1);
}
#custom-html-v .made-with-mk .made-with strong {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}
#custom-html-v h1,
#custom-html-v .h1,
#custom-html-v h2,
#custom-html-v .h2,
#custom-html-v h3,
#custom-html-v .h3,
#custom-html-v h4,
#custom-html-v .h4,
#custom-html-v h5,
#custom-html-v .h5,
#custom-html-v h6,
#custom-html-v .h6,
#custom-html-v p,
#custom-html-v .navbar,
#custom-html-v .brand,
#custom-html-v .btn-simple {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
#custom-html-v h1,
#custom-html-v .h1,
#custom-html-v h2,
#custom-html-v .h2,
#custom-html-v h3,
#custom-html-v .h3,
#custom-html-v h4,
#custom-html-v .h4 {
  font-weight: 400;
  margin: 30px 0 15px;
}
#custom-html-v h1,
#custom-html-v .h1 {
  font-size: 52px;
}
#custom-html-v h2,
#custom-html-v .h2 {
  font-size: 36px;
}
#custom-html-v h3,
#custom-html-v .h3 {
  font-size: 28px;
  margin: 20px 0 10px;
}
#custom-html-v h4,
#custom-html-v .h4 {
  font-size: 22px;
}
#custom-html-v h5,
#custom-html-v .h5 {
  font-size: 16px;
}
#custom-html-v h6,
#custom-html-v .h6 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
#custom-html-v p {
  font-size: 16px;
  line-height: 1.6180em;
}
#custom-html-v h1 small,
#custom-html-v h2 small,
#custom-html-v h3 small,
#custom-html-v h4 small,
#custom-html-v h5 small,
#custom-html-v h6 small,
#custom-html-v .h1 small,
#custom-html-v .h2 small,
#custom-html-v .h3 small,
#custom-html-v .h4 small,
#custom-html-v .h5 small,
#custom-html-v .h6 small,
#custom-html-v h1 .small,
#custom-html-v h2 .small,
#custom-html-v h3 .small,
#custom-html-v h4 .small,
#custom-html-v h5 .small,
#custom-html-v h6 .small,
#custom-html-v .h1 .small,
#custom-html-v .h2 .small,
#custom-html-v .h3 .small,
#custom-html-v .h4 .small,
#custom-html-v .h5 .small,
#custom-html-v .h6 .small {
  color: #999999;
  font-weight: 300;
  line-height: 1;
}
#custom-html-v h1 small,
#custom-html-v h2 small,
#custom-html-v h3 small,
#custom-html-v h1 .small,
#custom-html-v h2 .small,
#custom-html-v h3 .small {
  font-size: 60%;
}
#custom-html-v h1 .subtitle {
  display: block;
  font-family: 'Grand Hotel', cursive;
  line-height: 40px;
  margin: 15px 0 30px;
}
#custom-html-v .card {
  background-color: #FFFFFF;
  padding: 10px 0 20px;
  width: 100%;
}
#custom-html-v .wizard-card {
  min-height: 410px;
  background-color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15), 0 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 0;
}
#custom-html-v .wizard-card .picture-container {
  position: relative;
  cursor: pointer;
  text-align: center;
}
#custom-html-v .wizard-card .picture {
  width: 106px;
  height: 106px;
  background-color: #999999;
  border: 4px solid #CCCCCC;
  color: #FFFFFF;
  border-radius: 50%;
  margin: 5px auto;
  overflow: hidden;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
#custom-html-v .wizard-card .picture:hover {
  border-color: #2ca8ff;
}
#custom-html-v .wizard-card .picture input[type="file"] {
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0 !important;
  position: absolute;
  top: 0;
  width: 100%;
}
#custom-html-v .wizard-card .picture-src {
  width: 100%;
}
#custom-html-v .wizard-card .tab-content {
  min-height: 340px;
  padding: 20px 10px;
}
#custom-html-v .wizard-card .wizard-footer {
  padding: 0 10px;
}
#custom-html-v .wizard-card .disabled {
  display: none;
}
#custom-html-v .wizard-card .wizard-header h3 {
  font-weight: 200;
  text-align: center;
}
#custom-html-v .wizard-card[data-color="green"] .choice:hover .icon,
#custom-html-v .wizard-card[data-color="green"] .choice.active .icon {
  border-color: #05AE0E;
}
#custom-html-v .wizard-card[data-color="green"] .picture:hover {
  border-color: #05AE0E;
}
#custom-html-v .wizard-card[data-color="green"] .moving-tab {
  position: absolute;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: #05AE0E;
  top: 0px;
  left: 0px;
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 500;
}
#custom-html-v .wizard-card[data-color="azzure"] .choice:hover .icon,
#custom-html-v .wizard-card[data-color="azzure"] .choice.active .icon {
  border-color: #2CA8FF;
}
#custom-html-v .wizard-card[data-color="azzure"] .picture:hover {
  border-color: #2CA8FF;
}
#custom-html-v .wizard-card[data-color="azzure"] .moving-tab {
  position: absolute;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: #2CA8FF;
  top: 0px;
  left: 0px;
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 500;
}
#custom-html-v .wizard-card[data-color="blue"] .choice:hover .icon,
#custom-html-v .wizard-card[data-color="blue"] .choice.active .icon {
  border-color: #3472F7;
}
#custom-html-v .wizard-card[data-color="blue"] .picture:hover {
  border-color: #3472F7;
}
#custom-html-v .wizard-card[data-color="blue"] .moving-tab {
  position: absolute;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: #3472F7;
  top: 0px;
  left: 0px;
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 500;
}
#custom-html-v .wizard-card[data-color="orange"] .choice:hover .icon,
#custom-html-v .wizard-card[data-color="orange"] .choice.active .icon {
  border-color: #FF9500;
}
#custom-html-v .wizard-card[data-color="orange"] .picture:hover {
  border-color: #FF9500;
}
#custom-html-v .wizard-card[data-color="orange"] .moving-tab {
  position: absolute;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: #FF9500;
  top: 0px;
  left: 0px;
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 500;
}
#custom-html-v .wizard-card[data-color="red"] .choice:hover .icon,
#custom-html-v .wizard-card[data-color="red"] .choice.active .icon {
  border-color: #FF3B30;
}
#custom-html-v .wizard-card[data-color="red"] .picture:hover {
  border-color: #FF3B30;
}
#custom-html-v .wizard-card[data-color="red"] .moving-tab {
  position: absolute;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: #FF3B30;
  top: 0px;
  left: 0px;
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 500;
}
#custom-html-v .wizard-card[data-color="gateway_systems_tech"] .choice:hover .icon,
#custom-html-v .wizard-card[data-color="gateway_systems_tech"] .choice.active .icon {
  border-color: #FF3B30;
}
#custom-html-v .wizard-card[data-color="gateway_systems_tech"] .picture:hover {
  border-color: #FF3B30;
}
#custom-html-v .wizard-card[data-color="gateway_systems_tech"] .moving-tab {
  position: absolute;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: #FF3B30;
  top: 0px;
  left: 0px;
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 500;
}
#custom-html-v .wizard-card .btn {
  text-transform: uppercase;
}
#custom-html-v .wizard-card .info-text {
  text-align: center;
  font-weight: 300;
  margin: 10px 0 30px;
}
#custom-html-v .wizard-card .choice {
  text-align: center;
  cursor: pointer;
  margin-top: 20px;
}
#custom-html-v .wizard-card .choice .icon {
  text-align: center;
  vertical-align: middle;
  height: 116px;
  width: 116px;
  border-radius: 50%;
  background-color: #999999;
  color: #FFFFFF;
  margin: 0 auto 20px;
  border: 4px solid #CCCCCC;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
#custom-html-v .wizard-card .choice i {
  font-size: 30px;
  line-height: 111px;
}
#custom-html-v .wizard-card .choice:hover .icon,
#custom-html-v .wizard-card .choice.active .icon {
  border-color: #2ca8ff;
}
#custom-html-v .wizard-card .choice input[type="radio"],
#custom-html-v .wizard-card .choice input[type="checkbox"] {
  position: absolute;
  left: -10000px;
  z-index: -1;
}
#custom-html-v .wizard-card .btn-finish {
  display: none;
}
#custom-html-v .wizard-card .description {
  color: #999999;
  font-size: 14px;
}
#custom-html-v .form-control {
  background-color: #FFFFFF;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  box-shadow: none;
  color: #444444;
  height: 38px;
  padding: 6px 16px;
}
#custom-html-v .form-control:focus {
  background-color: #FFFFFF;
  border: 1px solid #9A9A9A;
  box-shadow: none;
  outline: 0 none;
}
#custom-html-v .form-control + .form-control-feedback {
  border-radius: 6px;
  font-size: 14px;
  padding: 0 12px 0 0;
  position: absolute;
  right: 25px;
  top: 13px;
  vertical-align: middle;
}
#custom-html-v .has-success .form-control,
#custom-html-v .has-error .form-control,
#custom-html-v .has-success .form-control:focus,
#custom-html-v .has-error .form-control:focus {
  border-color: #E3E3E3;
  box-shadow: none;
}
#custom-html-v .has-success .form-control,
#custom-html-v .form-control .has-success .form-control-feedback,
#custom-html-v .form-control.valid:focus {
  border-color: #05AE0E;
  color: #05AE0E;
}
#custom-html-v .has-error .form-control,
#custom-html-v .form-control .has-error .form-control-feedback,
#custom-html-v .form-control.error {
  color: #FF3B30;
  border-color: #FF3B30;
}
#custom-html-v .form-control:focus + .input-group-addon,
#custom-html-v .form-control:focus ~ .input-group-addon {
  background-color: #FFFFFF;
  border-color: #9A9A9A;
}
#custom-html-v .form-control ::-moz-placeholder {
  color: #DDDDDD;
  opacity: 1;
}
#custom-html-v .form-control ::-moz-placeholder {
  color: #DDDDDD;
  opacity: 1;
}
#custom-html-v .form-control ::-webkit-input-placeholder {
  color: #DDDDDD;
  opacity: 1;
}
#custom-html-v .form-control ::-ms-input-placeholder {
  color: #DDDDDD;
  opacity: 1;
}
#custom-html-v .form-control[disabled],
#custom-html-v .form-control[readonly],
#custom-html-v fieldset[disabled] .form-control {
  background-color: #EEEEEE;
  color: #999999;
  cursor: not-allowed;
}
#custom-html-v .input-lg {
  height: 56px;
  padding: 10px 16px;
}
#custom-html-v .input-group-addon {
  background-color: #FFFFFF;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
}
#custom-html-v .input-group .form-control:first-child,
#custom-html-v .input-group-addon:first-child,
#custom-html-v .input-group-btn:first-child > .btn,
#custom-html-v .input-group-btn:first-child > .dropdown-toggle,
#custom-html-v .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-right: 0 none;
}
#custom-html-v .input-group .form-control:last-child,
#custom-html-v .input-group-addon:last-child,
#custom-html-v .input-group-btn:last-child > .btn,
#custom-html-v .input-group-btn:last-child > .dropdown-toggle,
#custom-html-v .input-group-btn:first-child > .btn:not(:first-child) {
  border-left: 0 none;
}
#custom-html-v .btn {
  border-width: 2px;
  background-color: transparent;
  font-weight: 400;
  opacity: 0.8;
  padding: 8px 16px;
}
#custom-html-v .btn:active,
#custom-html-v .btn.active {
  background-image: none;
  box-shadow: none;
}
#custom-html-v .btn.disabled,
#custom-html-v .btn[disabled],
#custom-html-v fieldset[disabled] .btn {
  opacity: 0.45;
}
#custom-html-v .btn-round {
  border-width: 1px;
  border-radius: 30px !important;
  opacity: 0.79;
  padding: 9px 18px;
}
#custom-html-v .btn-sm,
#custom-html-v .btn-xs {
  border-radius: 3px;
  font-size: 12px;
  padding: 5px 10px;
}
#custom-html-v .btn-xs {
  padding: 1px 5px;
}
#custom-html-v .btn-lg {
  border-radius: 6px;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 30px;
}
#custom-html-v .btn-wd {
  min-width: 100px;
}
#custom-html-v .btn-default {
  color: #777777;
  border-color: #999999;
}
#custom-html-v .btn-primary {
  color: #3472F7;
  border-color: #3472F7;
}
#custom-html-v .btn-info {
  color: #2CA8FF;
  border-color: #2CA8FF;
}
#custom-html-v .btn-success {
  color: #05AE0E;
  border-color: #05AE0E;
}
#custom-html-v .btn-warning {
  color: #FF9500;
  border-color: #FF9500;
}
#custom-html-v .btn-danger {
  color: #FF3B30;
  border-color: #FF3B30;
}
#custom-html-v .btn:hover {
  background-color: transparent;
  opacity: 1;
}
#custom-html-v .btn-primary:hover,
#custom-html-v .btn-primary:focus,
#custom-html-v .btn-primary:active,
#custom-html-v .btn-primary.active,
#custom-html-v .open .dropdown-toggle .btn-primary {
  color: #1D62F0;
  border-color: #1D62F0;
  background-color: transparent;
}
#custom-html-v .btn-info:hover,
#custom-html-v .btn-info:focus,
#custom-html-v .btn-info:active,
#custom-html-v .btn-info.active,
#custom-html-v .open .dropdown-toggle .btn-info {
  color: #109CFF;
  border-color: #109CFF;
  background-color: transparent;
}
#custom-html-v .btn-success:hover,
#custom-html-v .btn-success:focus,
#custom-html-v .btn-success:active,
#custom-html-v .btn-success.active,
#custom-html-v .open .dropdown-toggle .btn-success {
  color: #049F0C;
  border-color: #049F0C;
  background-color: transparent;
}
#custom-html-v .btn-warning:hover,
#custom-html-v .btn-warning:focus,
#custom-html-v .btn-warning:active,
#custom-html-v .btn-warning.active,
#custom-html-v .open .dropdown-toggle .btn-warning {
  color: #ED8D00;
  border-color: #ED8D00;
  background-color: transparent;
}
#custom-html-v .btn-danger:hover,
#custom-html-v .btn-danger:focus,
#custom-html-v .btn-danger:active,
#custom-html-v .btn-danger.active,
#custom-html-v .open .dropdown-toggle .btn-danger {
  color: #EE2D20;
  border-color: #EE2D20;
  background-color: transparent;
}
#custom-html-v .btn-default:hover,
#custom-html-v .btn-default:focus,
#custom-html-v .btn-default.active,
#custom-html-v .open .dropdown-toggle .btn-default {
  color: #666666;
  border-color: #888888;
  background-color: transparent;
}
#custom-html-v .btn-primary.disabled,
#custom-html-v .btn-primary[disabled],
#custom-html-v fieldset[disabled] .btn-primary,
#custom-html-v .btn-primary.disabled:hover,
#custom-html-v .btn-primary[disabled]:hover,
#custom-html-v fieldset[disabled] .btn-primary:hover,
#custom-html-v .btn-primary.disabled:focus,
#custom-html-v .btn-primary[disabled]:focus,
#custom-html-v fieldset[disabled] .btn-primary:focus,
#custom-html-v .btn-primary.disabled:active,
#custom-html-v .btn-primary[disabled]:active,
#custom-html-v fieldset[disabled] .btn-primary:active,
#custom-html-v .btn-primary.disabled.active,
#custom-html-v .btn-primary.active[disabled],
#custom-html-v fieldset[disabled] .btn-primary.active {
  background-color: transparent;
  border-color: #3472F7;
}
#custom-html-v .btn-info.disabled,
#custom-html-v .btn-info[disabled],
#custom-html-v fieldset[disabled] .btn-info,
#custom-html-v .btn-info.disabled:hover,
#custom-html-v .btn-info[disabled]:hover,
#custom-html-v fieldset[disabled] .btn-info:hover,
#custom-html-v .btn-info.disabled:focus,
#custom-html-v .btn-info[disabled]:focus,
#custom-html-v fieldset[disabled] .btn-info:focus,
#custom-html-v .btn-info.disabled:active,
#custom-html-v .btn-info[disabled]:active,
#custom-html-v fieldset[disabled] .btn-info:active,
#custom-html-v .btn-info.disabled.active,
#custom-html-v .btn-info.active[disabled],
#custom-html-v fieldset[disabled] .btn-info.active {
  background-color: transparent;
  border-color: #2CA8FF;
}
#custom-html-v .btn-success.disabled,
#custom-html-v .btn-success[disabled],
#custom-html-v fieldset[disabled] .btn-success,
#custom-html-v .btn-success.disabled:hover,
#custom-html-v .btn-success[disabled]:hover,
#custom-html-v fieldset[disabled] .btn-success:hover,
#custom-html-v .btn-success.disabled:focus,
#custom-html-v .btn-success[disabled]:focus,
#custom-html-v fieldset[disabled] .btn-success:focus,
#custom-html-v .btn-success.disabled:active,
#custom-html-v .btn-success[disabled]:active,
#custom-html-v fieldset[disabled] .btn-success:active,
#custom-html-v .btn-success.disabled.active,
#custom-html-v .btn-success.active[disabled],
#custom-html-v fieldset[disabled] .btn-success.active {
  background-color: transparent;
  border-color: #05AE0E;
}
#custom-html-v .btn-danger.disabled,
#custom-html-v .btn-danger[disabled],
#custom-html-v fieldset[disabled] .btn-danger,
#custom-html-v .btn-danger.disabled:hover,
#custom-html-v .btn-danger[disabled]:hover,
#custom-html-v fieldset[disabled] .btn-danger:hover,
#custom-html-v .btn-danger.disabled:focus,
#custom-html-v .btn-danger[disabled]:focus,
#custom-html-v fieldset[disabled] .btn-danger:focus,
#custom-html-v .btn-danger.disabled:active,
#custom-html-v .btn-danger[disabled]:active,
#custom-html-v fieldset[disabled] .btn-danger:active,
#custom-html-v .btn-danger.disabled.active,
#custom-html-v .btn-danger.active[disabled],
#custom-html-v fieldset[disabled] .btn-danger.active {
  background-color: transparent;
  border-color: #FF3B30;
}
#custom-html-v .btn-warning.disabled,
#custom-html-v .btn-warning[disabled],
#custom-html-v fieldset[disabled] .btn-warning,
#custom-html-v .btn-warning.disabled:hover,
#custom-html-v .btn-warning[disabled]:hover,
#custom-html-v fieldset[disabled] .btn-warning:hover,
#custom-html-v .btn-warning.disabled:focus,
#custom-html-v .btn-warning[disabled]:focus,
#custom-html-v fieldset[disabled] .btn-warning:focus,
#custom-html-v .btn-warning.disabled:active,
#custom-html-v .btn-warning[disabled]:active,
#custom-html-v fieldset[disabled] .btn-warning:active,
#custom-html-v .btn-warning.disabled.active,
#custom-html-v .btn-warning.active[disabled],
#custom-html-v fieldset[disabled] .btn-warning.active {
  background-color: transparent;
  border-color: #FF9500;
}
#custom-html-v .btn-fill {
  color: #FFFFFF;
  opacity: 1;
}
#custom-html-v .btn-fill:hover,
#custom-html-v .btn-fill:active,
#custom-html-v .btn-fill:focus {
  color: #FFFFFF;
}
#custom-html-v .btn-fill.btn-default {
  background-color: #999999;
  border-color: #999999;
}
#custom-html-v .btn-fill.btn-default:hover,
#custom-html-v .btn-fill.btn-default:focus,
#custom-html-v .btn-fill.btn-default:active,
#custom-html-v .btn-fill.btn-default.active,
#custom-html-v .open .dropdown-toggle .btn-fill.btn-default {
  background-color: #888888;
  border-color: #888888;
}
#custom-html-v .btn-fill.btn-primary {
  background-color: #3472F7;
  border-color: #3472F7;
}
#custom-html-v .btn-fill.btn-primary:hover,
#custom-html-v .btn-fill.btn-primary:focus,
#custom-html-v .btn-fill.btn-primary:active,
#custom-html-v .btn-fill.btn-primary.active,
#custom-html-v .open .dropdown-toggle .btn-fill.btn-primary {
  border-color: #1D62F0;
  background-color: #1D62F0;
}
#custom-html-v .btn-fill.btn-info {
  background-color: #2CA8FF;
  border-color: #2CA8FF;
}
#custom-html-v .btn-fill.btn-info:hover,
#custom-html-v .btn-fill.btn-info:focus,
#custom-html-v .btn-fill.btn-info:active,
#custom-html-v .btn-fill.btn-info.active,
#custom-html-v .open .dropdown-toggle .btn-fill.btn-info {
  background-color: #109CFF;
  border-color: #109CFF;
}
#custom-html-v .btn-fill.btn-success {
  background-color: #05AE0E;
  border-color: #05AE0E;
}
#custom-html-v .btn-fill.btn-warning {
  background-color: #FF9500;
  border-color: #FF9500;
}
#custom-html-v .btn-fill.btn-warning:hover,
#custom-html-v .btn-fill.btn-warning:focus,
#custom-html-v .btn-fill.btn-warning:active,
#custom-html-v .btn-fill.btn-warning.active,
#custom-html-v .open .dropdown-toggle .btn-fill.btn-warning {
  background-color: #ED8D00;
  border-color: #ED8D00;
}
#custom-html-v .btn-fill.btn-danger {
  background-color: #FF3B30;
  border-color: #FF3B30;
}
#custom-html-v .btn-fill.btn-danger:hover,
#custom-html-v .btn-fill.btn-danger:focus,
#custom-html-v .btn-fill.btn-danger:active,
#custom-html-v .btn-fill.btn-danger.active,
#custom-html-v .open .dropdown-toggle .btn-fill.btn-danger {
  background-color: #EE2D20;
  border-color: #EE2D20;
}
#custom-html-v .btn-simple {
  font-weight: 600;
  border: 0;
  padding: 10px 18px;
}
#custom-html-v .btn-simple.btn-xs {
  padding: 3px 5px;
}
#custom-html-v .btn-simple.btn-sm {
  padding: 7px 10px;
}
#custom-html-v .btn-simple.btn-lg {
  padding: 16px 60px;
}
#custom-html-v .btn-round.btn-xs {
  padding: 2px 5px;
}
#custom-html-v .btn-round.btn-sm {
  padding: 6px 10px;
}
#custom-html-v .btn-round.btn-lg {
  padding: 15px 30px;
}
#custom-html-v .nav-pills {
  background-color: #999999;
}
#custom-html-v .nav-pills > li + li {
  margin-left: 0;
}
#custom-html-v .nav-pills > li > a {
  border: 1px solid #2CA8FF;
  border-radius: 0;
  color: #2CA8FF;
  border: 0 !important;
  text-transform: uppercase;
  background-color: #999999;
  text-align: center;
  color: #FFFFFF !important;
  font-size: 12px;
  cursor: pointer;
}
#custom-html-v .nav-pills > li > a:focus,
#custom-html-v .nav-pills > li > a:hover {
  background-color: #999999;
}
#custom-html-v .nav-pills > li.active > a,
#custom-html-v .nav-pills > li.active > a:focus,
#custom-html-v .nav-pills > li.active > a:hover {
  background-color: inherit;
}
#custom-html-v .text-primary,
#custom-html-v .text-primary:hover {
  color: #3472F7;
}
#custom-html-v .text-info,
#custom-html-v .text-info:hover {
  color: #2CA8FF;
}
#custom-html-v .text-success,
#custom-html-v .text-success:hover {
  color: #05AE0E;
}
#custom-html-v .text-warning,
#custom-html-v .text-warning:hover {
  color: #FF9500;
}
#custom-html-v .text-danger,
#custom-html-v .text-danger:hover {
  color: #FF3B30;
}
#custom-html-v .label {
  padding: 0.2em 0.6em 0.2em;
  border: 1px solid #999999;
  border-radius: 3px;
  color: #999999;
  background-color: #FFFFFF;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
}
#custom-html-v .label.label-fill {
  color: #FFFFFF;
}
#custom-html-v .label-primary {
  border-color: #3472F7;
  color: #3472F7;
}
#custom-html-v .label-info {
  border-color: #2CA8FF;
  color: #2CA8FF;
}
#custom-html-v .label-success {
  border-color: #05AE0E;
  color: #05AE0E;
}
#custom-html-v .label-warning {
  border-color: #FF9500;
  color: #FF9500;
}
#custom-html-v .label-danger {
  border-color: #FF3B30;
  color: #FF3B30;
}
#custom-html-v label {
  font-weight: 400;
}
#custom-html-v label.error {
  color: #FF3B30;
  margin-top: 5px;
  margin-bottom: 0;
}
#custom-html-v label small {
  color: #999999;
}
#custom-html-v .label-primary.label-fill,
#custom-html-v .progress-bar,
#custom-html-v .progress-bar-primary {
  background-color: #3472F7;
}
#custom-html-v .label-info.label-fill,
#custom-html-v .progress-bar-info {
  background-color: #2CA8FF;
}
#custom-html-v .label-success.label-fill,
#custom-html-v .progress-bar-success {
  background-color: #05AE0E;
}
#custom-html-v .label-warning.label-fill,
#custom-html-v .progress-bar-warning {
  background-color: #FF9500;
}
#custom-html-v .label-danger.label-fill,
#custom-html-v .progress-bar-danger {
  background-color: #FF3B30;
}
#custom-html-v .label-default.label-fill {
  background-color: #999999;
}
#custom-html-v .tooltip {
  font-size: 14px;
  font-weight: bold;
}
#custom-html-v .tooltip-arrow {
  display: none;
  opacity: 0;
}
#custom-html-v .tooltip-inner {
  background-color: #FAE6A4;
  border-radius: 4px;
  box-shadow: 0 1px 13px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(115, 71, 38, 0.23);
  color: #734726;
  max-width: 200px;
  padding: 6px 10px;
  text-align: center;
  text-decoration: none;
}
#custom-html-v .tooltip-inner:after {
  content: "";
  display: inline-block;
  left: 100%;
  margin-left: -56%;
  position: absolute;
}
#custom-html-v .tooltip-inner:before {
  content: "";
  display: inline-block;
  left: 100%;
  margin-left: -56%;
  position: absolute;
}
#custom-html-v .tooltip.top {
  margin-top: -11px;
  padding: 0;
}
#custom-html-v .tooltip.top .tooltip-inner:after {
  border-top: 11px solid #FAE6A4;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  bottom: -10px;
}
#custom-html-v .tooltip.top .tooltip-inner:before {
  border-top: 11px solid rgba(0, 0, 0, 0.2);
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  bottom: -11px;
}
#custom-html-v .tooltip.bottom {
  margin-top: 11px;
  padding: 0;
}
#custom-html-v .tooltip.bottom .tooltip-inner:after {
  border-bottom: 11px solid #FAE6A4;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  top: -10px;
}
#custom-html-v .tooltip.bottom .tooltip-inner:before {
  border-bottom: 11px solid rgba(0, 0, 0, 0.2);
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  top: -11px;
}
#custom-html-v .tooltip.left {
  margin-left: -11px;
  padding: 0;
}
#custom-html-v .tooltip.left .tooltip-inner:after {
  border-left: 11px solid #FAE6A4;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  right: -10px;
  left: auto;
  margin-left: 0;
}
#custom-html-v .tooltip.left .tooltip-inner:before {
  border-left: 11px solid rgba(0, 0, 0, 0.2);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  right: -11px;
  left: auto;
  margin-left: 0;
}
#custom-html-v .tooltip.right {
  margin-left: 11px;
  padding: 0;
}
#custom-html-v .tooltip.right .tooltip-inner:after {
  border-right: 11px solid #FAE6A4;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  left: -10px;
  top: 0;
  margin-left: 0;
}
#custom-html-v .tooltip.right .tooltip-inner:before {
  border-right: 11px solid rgba(0, 0, 0, 0.2);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  left: -11px;
  top: 0;
  margin-left: 0;
}
#custom-html-v .footer {
  position: relative;
  bottom: 20px;
  right: 0px;
  width: 100%;
  color: #FFFFFF;
  z-index: 4;
  text-align: center;
  margin-top: 60px;
  text-shadow: 0 0px 1px black;
}
#custom-html-v .footer a {
  color: #FFFFFF;
}
#custom-html-v .footer .heart {
  color: #FF3B30;
}
@media (max-width: 768px) {
  #custom-html-v .main .container {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  #custom-html-v .navbar-form {
    margin-top: 21px;
    margin-bottom: 21px;
    padding-left: 5px;
    padding-right: 5px;
  }
  #custom-html-v .btn-wd {
    min-width: 140px;
  }
}
.cid-spKiMKBqAc {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-spKiMKBqAc .form-control {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-spKiMKBqAc .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-spKiMKBqAc input::-webkit-input-placeholder {
  color: #000000;
}
.cid-spKiMKBqAc input::-moz-placeholder {
  color: #000000;
}
.cid-spKiMKBqAc textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-spKiMKBqAc textarea::-moz-placeholder {
  color: #000000;
}
.cid-spKiMKBqAc textarea.form-control {
  min-height: 83px;
}
.cid-spKiMKBqAc .mbr-section-subtitle {
  color: #767676;
}
