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





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.06rem;
}
/* ---- 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: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #f7cd3c !important;
}
.bg-success {
  background-color: #cba729 !important;
}
.bg-info {
  background-color: #393833 !important;
}
.bg-warning {
  background-color: #f4f8fa !important;
}
.bg-danger {
  background-color: #00a404 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f7cd3c !important;
  border-color: #f7cd3c !important;
  color: #322702 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #322702 !important;
  background-color: #f7cd3c !important;
  border-color: #f7cd3c !important;
}
.btn-primary:before {
  background-color: #ddae09 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #322702 !important;
  background-color: #ddae09 !important;
  border-color: #ddae09 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f7cd3c !important;
  border-color: #f7cd3c !important;
  color: #322702 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #322702 !important;
  background-color: #f7cd3c !important;
  border-color: #f7cd3c !important;
}
.btn-secondary:before {
  background-color: #ddae09 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #322702 !important;
  background-color: #ddae09 !important;
  border-color: #ddae09 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #393833 !important;
  border-color: #393833 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #393833 !important;
  border-color: #393833 !important;
}
.btn-info:before {
  background-color: #11100f !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #11100f !important;
  border-color: #11100f !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #cba729 !important;
  border-color: #cba729 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #cba729 !important;
  border-color: #cba729 !important;
}
.btn-success:before {
  background-color: #8b731c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #8b731c !important;
  border-color: #8b731c !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f4f8fa !important;
  border-color: #f4f8fa !important;
  color: #4b86a4 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #4b86a4 !important;
  background-color: #f4f8fa !important;
  border-color: #f4f8fa !important;
}
.btn-warning:before {
  background-color: #bfd7e2 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4b86a4 !important;
  background-color: #bfd7e2 !important;
  border-color: #bfd7e2 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #00a404 !important;
  border-color: #00a404 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #00a404 !important;
  border-color: #00a404 !important;
}
.btn-danger:before {
  background-color: #005802 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #005802 !important;
  border-color: #005802 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #c59b08;
  color: #c59b08;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #322702;
  border-color: #f7cd3c;
}
.btn-primary-outline:before {
  background-color: #f7cd3c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f7cd3c !important;
  border-color: #f7cd3c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #c59b08;
  color: #c59b08;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #322702;
  border-color: #f7cd3c;
}
.btn-secondary-outline:before {
  background-color: #f7cd3c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f7cd3c !important;
  border-color: #f7cd3c !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #030303;
  color: #030303;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #393833;
}
.btn-info-outline:before {
  background-color: #393833;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #393833 !important;
  border-color: #393833 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #766118;
  color: #766118;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #cba729;
}
.btn-success-outline:before {
  background-color: #cba729;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #cba729 !important;
  border-color: #cba729 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #aecbda;
  color: #aecbda;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #4b86a4;
  border-color: #f4f8fa;
}
.btn-warning-outline:before {
  background-color: #f4f8fa;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f4f8fa !important;
  border-color: #f4f8fa !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #003e02;
  color: #003e02;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  border-color: #00a404;
}
.btn-danger-outline:before {
  background-color: #00a404;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #00a404 !important;
  border-color: #00a404 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f7cd3c;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #f7cd3c !important;
}
.text-secondary {
  color: #f7cd3c !important;
}
.text-success {
  color: #cba729 !important;
}
.text-info {
  color: #393833 !important;
}
.text-warning {
  color: #f4f8fa !important;
}
.text-danger {
  color: #00a404 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c59b08 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #c59b08 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #766118 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #030303 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #aecbda !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #003e02 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #393833;
}
.alert-warning {
  background-color: #f4f8fa;
}
.alert-danger {
  background-color: #00a404;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f7cd3c;
  border-color: #f7cd3c;
  color: #4a3a03;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f7cd3c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f5ebcb;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #aeaca4;
}
.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: #24ff2a;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #f7cd3c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #f7cd3c;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #f7cd3c;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.84rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f7cd3c;
  color: #000000;
}
.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: #f7cd3c;
  border-bottom-color: #f7cd3c;
}
.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: #000000 !important;
  background-color: #f7cd3c !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: #f7cd3c !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='%23f7cd3c' %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-rWWOTOErBZ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-rWWOTOErBZ .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rWWOTOErBZ .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  background: #efefef !important;
}
.cid-rWWOTOErBZ .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rWWOTOErBZ .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-rWWOTOErBZ .navbar .navbar-collapse {
  padding-top: 1rem;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rWWOTOErBZ .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-rWWOTOErBZ .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #f7cd3c;
}
.cid-rWWOTOErBZ .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-rWWOTOErBZ .navbar.collapsed {
  flex-direction: row !important;
}
.cid-rWWOTOErBZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rWWOTOErBZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 87.55714286vh;
  }
}
.cid-rWWOTOErBZ .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-rWWOTOErBZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rWWOTOErBZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rWWOTOErBZ .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-rWWOTOErBZ .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-rWWOTOErBZ .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-rWWOTOErBZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rWWOTOErBZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-rWWOTOErBZ .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-rWWOTOErBZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rWWOTOErBZ .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-rWWOTOErBZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rWWOTOErBZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rWWOTOErBZ .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-rWWOTOErBZ .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-rWWOTOErBZ .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-rWWOTOErBZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rWWOTOErBZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rWWOTOErBZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-rWWOTOErBZ .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-rWWOTOErBZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rWWOTOErBZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rWWOTOErBZ .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rWWOTOErBZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rWWOTOErBZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rWWOTOErBZ .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-rWWOTOErBZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rWWOTOErBZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rWWOTOErBZ .dropdown-item.active,
.cid-rWWOTOErBZ .dropdown-item:active {
  background-color: transparent;
}
.cid-rWWOTOErBZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rWWOTOErBZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rWWOTOErBZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rWWOTOErBZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rWWOTOErBZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-rWWOTOErBZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWWOTOErBZ ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rWWOTOErBZ .navbar-buttons {
  text-align: center;
}
.cid-rWWOTOErBZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWWOTOErBZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f7cd3c;
}
.cid-rWWOTOErBZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWWOTOErBZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWWOTOErBZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWWOTOErBZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWWOTOErBZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWWOTOErBZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWWOTOErBZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWWOTOErBZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWWOTOErBZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rWWOTOErBZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-rWWOTOErBZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rWWOTOErBZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-rWWOTOErBZ .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-rWWOTOErBZ .nav-link:hover,
.cid-rWWOTOErBZ .dropdown-item:hover {
  color: #f7cd3c !important;
}
.cid-s46V7BKXju {
  background-image: url("../../../assets/images/1617-1-2000x973.jpg");
}
.cid-s46V7BKXju .mbr-section-title,
.cid-s46V7BKXju .mbr-section-subtitle {
  color: #000000;
}
.cid-s46V7BKXju .mbr-section-text {
  color: #232323;
}
.cid-s46V7BKXju .mbr-text,
.cid-s46V7BKXju .typed-text,
.cid-s46V7BKXju .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s46V7BKXju .btn {
  margin-left: 4px !important;
}
.cid-s46V7BKXju .animated-element {
  color: #f7cd3c;
}
.cid-s46V7BKXju .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #f7cd3c;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-s46V7BKXju .mbr-section-subtitle,
.cid-s46V7BKXju .typed-text {
  text-align: left;
  color: #000000;
  line-height: 1 ;
}
.cid-s46V7BKXju .mbr-section-text,
.cid-s46V7BKXju .mbr-section-btn {
  text-align: justify;
  color: #ffffff;
}
.cid-s46V7BKXju .mbr-section-title {
  text-align: left;
}
.cid-s46V7BKXju .diplay-1 {
  line-height: 1 ;
}
.cid-s46V7BKXju SPAN {
  color: #ffffff;
  text-align: left;
}
.cid-s46V7BKXju .col-md-12 {
  max-width: 1000px!important;
}
.cid-s0IdCYvgUN {
  padding-top: 0px;
  background-color: #000000;
}
.cid-s0IdCYvgUN .text-content {
  padding-bottom: 75px;
}
.cid-s0IdCYvgUN .content-container .btn-bgr {
  z-index: 0;
}
.cid-s0IdCYvgUN .box-item-text {
  color: #ffffff;
}
.cid-s0IdCYvgUN .box-item {
  padding: 2.5rem;
}
.cid-s0IdCYvgUN .box-item:first-child {
  background-color: #000000;
}
.cid-s0IdCYvgUN .box-item:nth-child(2) {
  background-color: #000000;
}
.cid-s0IdCYvgUN .box-item:last-child {
  background-color: #000000;
}
.cid-s0IdCYvgUN .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-s0IdCYvgUN .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-s0IdCYvgUN .box-list li:last-child {
  border-bottom: none;
}
.cid-s0IdCYvgUN .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-s0IdCYvgUN .mbr-iconfont {
  color: #f7cd3c;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-s0IdCYvgUN .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-s0IdCYvgUN .mbr-section-subtitle,
  .cid-s0IdCYvgUN .mbr-section-title,
  .cid-s0IdCYvgUN .mbr-text,
  .cid-s0IdCYvgUN .mbr-section-btn,
  .cid-s0IdCYvgUN .icon-block-top,
  .cid-s0IdCYvgUN .box-item-title,
  .cid-s0IdCYvgUN .box-item-text {
    text-align: center !important;
  }
}
.cid-s0IdCYvgUN .mbr-section-title {
  color: #232323;
}
.cid-s0IdCYvgUN .mbr-text,
.cid-s0IdCYvgUN .mbr-section-btn {
  color: #232323;
}
.cid-s0IdCYvgUN .mbr-section-subtitle {
  color: #767676;
}
.cid-s0IdCYvgUN .icon-block-top,
.cid-s0IdCYvgUN .box-item-title {
  color: #ffffff;
}
.cid-rWWCaQhTQ2 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rWWCaQhTQ2 .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-rWWCaQhTQ2 .text-content {
  padding-right: 1.5rem;
}
.cid-rWWCaQhTQ2 .mbr-section-btn {
  margin-left: -0.8rem;
  color: #767676;
  text-align: right;
}
.cid-rWWCaQhTQ2 .mbr-text {
  color: #767676;
  text-align: justify;
}
.cid-rWWCaQhTQ2 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(54, 54, 54, 0.3);
  box-shadow: 0px 0px 30px rgba(54, 54, 54, 0.3);
  border-radius: .25rem;
}
.cid-rWWCaQhTQ2 .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-rWWCaQhTQ2 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rWWCaQhTQ2 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rWWCaQhTQ2 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #393833;
}
@media (max-width: 991px) {
  .cid-rWWCaQhTQ2 .main-row {
    margin: 0;
  }
  .cid-rWWCaQhTQ2 .mbr-section-title,
  .cid-rWWCaQhTQ2 .mbr-text,
  .cid-rWWCaQhTQ2 .list,
  .cid-rWWCaQhTQ2 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rWWCaQhTQ2 .text-content {
    padding: 0;
  }
}
.cid-rWWCaQhTQ2 .mbr-section-title {
  text-align: right;
}
.cid-rWWCaQhTQ2 .list UL {
  text-align: right;
}
.cid-s3fK8ZhAGm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-s3fK8ZhAGm .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-s3fK8ZhAGm .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-s3fK8ZhAGm .mbr-text,
.cid-s3fK8ZhAGm .mbr-section-btn {
  color: #000000;
}
.cid-s1UZNnv48N {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f4f8fa;
}
.cid-s1UZNnv48N .price-term {
  vertical-align: top;
}
.cid-s1UZNnv48N h4 {
  margin: 0;
}
.cid-s1UZNnv48N .card1 {
  background: #f7cd3c;
}
.cid-s1UZNnv48N .card2 {
  background: #f7cd3c;
}
.cid-s1UZNnv48N .card3 {
  background: #f7cd3c;
}
.cid-s1UZNnv48N .plan-item .mbr-iconfont {
  margin-right: 22px;
  font-size: 22px;
  position: relative;
  top: 18px;
}
.cid-s1UZNnv48N .plan-item p {
  letter-spacing: 0.4px;
  margin: 0;
  padding: 16px 0 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  max-width: 205px;
  width: 100%;
}
.cid-s1UZNnv48N .plan-body .mbr-section-btn {
  padding: 44px 0 0;
}
.cid-s1UZNnv48N .plan-body .mbr-section-btn .btn {
  margin-bottom: 14px;
}
.cid-s1UZNnv48N .plan-header {
  padding: 4rem 1rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cid-s1UZNnv48N .plan-body {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  padding: 40px 1rem;
}
.cid-s1UZNnv48N .month {
  letter-spacing: 2px;
}
.cid-s1UZNnv48N .plan {
  word-break: break-word;
  position: relative;
  max-width: 400px;
  margin-bottom: 1rem;
  color: #767676;
}
.cid-s1UZNnv48N .row {
  justify-content: center;
}
.cid-s1UZNnv48N .price-value {
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-s1UZNnv48N .price-figure {
    font-size: 4.25rem;
  }
}
@media (max-width: 992px) {
  .cid-s1UZNnv48N .plan {
    margin-bottom: 2rem;
  }
}
.cid-s1UZNnv48N .plan-item p,
.cid-s1UZNnv48N .plan-item .mbr-iconfont {
  color: #000000;
  text-align: center;
}
@media (max-width: 700px) {
  .cid-s1UZNnv48N .guriz {
    font-size: 2rem;
  }
}
.cid-rWWGODl4cj {
  padding-top: 40px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rWWGODl4cj .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-rWWGODl4cj .mbr-section-btn {
  margin-left: -0.8rem;
  color: #767676;
  text-align: right;
}
.cid-rWWGODl4cj .text-content {
  padding-right: 1.5rem;
}
.cid-rWWGODl4cj .mbr-text {
  color: #767676;
  text-align: justify;
}
.cid-rWWGODl4cj .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(54, 54, 54, 0.3);
  box-shadow: 0px 0px 30px rgba(54, 54, 54, 0.3);
  border-radius: .25rem;
}
.cid-rWWGODl4cj .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-rWWGODl4cj .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rWWGODl4cj .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rWWGODl4cj .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #393833;
}
@media (max-width: 991px) {
  .cid-rWWGODl4cj .main-row {
    margin: 0;
  }
  .cid-rWWGODl4cj .mbr-section-title,
  .cid-rWWGODl4cj .mbr-text,
  .cid-rWWGODl4cj .list,
  .cid-rWWGODl4cj .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rWWGODl4cj .text-content {
    padding: 0;
  }
}
.cid-rWWGODl4cj .mbr-section-title {
  text-align: right;
}
.cid-rWWGODl4cj .list UL {
  text-align: right;
}
.cid-rWWFVJIXhN {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rWWFVJIXhN .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-rWWFVJIXhN .mbr-section-btn {
  margin-left: -0.8rem;
  color: #767676;
  text-align: LEFT;
}
.cid-rWWFVJIXhN .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-rWWFVJIXhN .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-rWWFVJIXhN .mbr-text {
  color: #767676;
  text-align: justify;
}
.cid-rWWFVJIXhN .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(54, 54, 54, 0.3);
  box-shadow: 0px 0px 30px rgba(54, 54, 54, 0.3);
  border-radius: .25rem;
}
.cid-rWWFVJIXhN .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-rWWFVJIXhN .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rWWFVJIXhN .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rWWFVJIXhN .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #393833;
}
@media (max-width: 991px) {
  .cid-rWWFVJIXhN .main-row {
    margin: 0;
  }
  .cid-rWWFVJIXhN .mbr-section-title,
  .cid-rWWFVJIXhN .mbr-text,
  .cid-rWWFVJIXhN .list,
  .cid-rWWFVJIXhN .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rWWFVJIXhN .text-content {
    padding: 0;
  }
}
.cid-rWWFVJIXhN .mbr-section-title {
  text-align: left;
}
.cid-rWWFVJIXhN .list UL {
  text-align: right;
}
.cid-rWWGhbXeN0 {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rWWGhbXeN0 .mbr-text {
  color: #767676;
}
.cid-rWWGhbXeN0 h4 {
  text-align: center;
}
.cid-rWWGhbXeN0 p {
  text-align: center;
}
.cid-rWWGhbXeN0 .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #f7cd3c;
  border: 2px solid #f7cd3c;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rWWGhbXeN0 .card:hover .card-img span {
  background: none;
  color: #f7cd3c;
}
.cid-rWWGhbXeN0 .card-box {
  padding-top: 1.5vh;
}
@media (max-width: 600px) {
  .cid-rWWGhbXeN0 .m4x {
    max-width: 50vw!important;
  }
}
@media (max-width: 900px) {
  .cid-rWWGhbXeN0 .m4x {
    max-width: 30vw;
  }
}
.cid-rWWHqGxW6y {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-rWWHqGxW6y .mbr-text {
  color: #767676;
}
.cid-rWWHqGxW6y h4 {
  font-weight: 500;
}
.cid-rWWHqGxW6y h4,
.cid-rWWHqGxW6y h5 {
  text-align: center;
}
.cid-rWWHqGxW6y p {
  text-align: center;
}
.cid-rWWHqGxW6y .card-box {
  text-align: center;
}
.cid-rWWHqGxW6y .card-img {
  font-size: 3rem;
}
.cid-rWWHqGxW6y .mbr-iconfont {
  color: #f7cd3c;
}
.cid-rWWKq3guiA {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rWWKq3guiA H1 {
  color: #2c1616;
}
.cid-rWWKq3guiA .mbr-text {
  color: #393833;
}
.cid-rWWJtWb562 {
  padding-top: 0px;
  padding-bottom: 90px;
  background: #ffffff;
}
.cid-rWWJtWb562 .btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.cid-rWWJtWb562 .container-fluid {
  padding: 0 3rem;
}
.cid-rWWJtWb562 .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #efefef;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-rWWJtWb562 .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #f7cd3c;
}
.cid-rWWJtWb562 .table-wrap:hover .table-pricing,
.cid-rWWJtWb562 .table-wrap:hover .table-icon {
  color: #000000 !important;
}
.cid-rWWJtWb562 .table-wrap:hover .table-heading,
.cid-rWWJtWb562 .table-wrap:hover .mbr-section-subtitle {
  color: #000000 !important;
}
.cid-rWWJtWb562 .section-heading {
  margin-bottom: 2rem;
}
.cid-rWWJtWb562 .table-heading {
  margin-bottom: 2em;
}
.cid-rWWJtWb562 .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-rWWJtWb562 .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #f7cd3c, #f7cd3c);
  display: inline-block;
}
.cid-rWWJtWb562 ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-rWWJtWb562 ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rWWJtWb562 ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-rWWJtWb562 hr {
  display: none;
  background: #efefef;
}
.cid-rWWJtWb562 hr {
  display: block;
}
.cid-rWWJtWb562 .table-heading,
.cid-rWWJtWb562 .table-pricing,
.cid-rWWJtWb562 .table-icon {
  color: #000000;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-rWWJtWb562 .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-rWWJtWb562 .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rWWJtWb562 .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-rWWJtWb562 .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-rWWJtWb562 .container-fluid {
    padding: 0 0rem;
  }
}
.cid-rWWJtWb562 .table-pricing,
.cid-rWWJtWb562 .table-icon {
  text-align: center;
  color: #393833;
}
.cid-rWWJtWb562 .row {
  margin-right: 0px;
  marging-left: 0px;
}
.cid-rWWMRKXuUn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/01.jpg");
}
.cid-rWWMRKXuUn .mbr-section-title {
  letter-spacing: 0.0em;
}
.cid-rWWMRKXuUn .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.030em;
}
.cid-rWWMRKXuUn .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-rWWMRKXuUn .wrap-img {
  padding-bottom: 1rem;
}
.cid-rWWMRKXuUn .wrap-img img {
  max-width: 100%;
}
.cid-rWWMRKXuUn .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.00em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rWWNgKhwfI {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #cba729, #f7cd3c);
}
.cid-rWWNgKhwfI .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWWNgKhwfI .carousel-item.active,
.cid-rWWNgKhwfI .carousel-item-next,
.cid-rWWNgKhwfI .carousel-item-prev {
  display: flex;
}
.cid-rWWNgKhwfI .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
  width: 20%;
}
.cid-rWWNgKhwfI .carousel-controls a span {
  position: absolute;
  top: 45%;
  font-size: 1.2rem;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #ffffff;
  opacity: .9;
}
.cid-rWWNgKhwfI .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rWWNgKhwfI .user_image {
  width: 100px;
  height: 100px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  margin: 1rem auto 1rem auto;
  display: flex;
}
.cid-rWWNgKhwfI .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rWWNgKhwfI .mbr-iconfont {
  font-size: 3rem;
  position: absolute;
  opacity: 0.2;
  color: #f4f8fa;
}
.cid-rWWNgKhwfI .mbr-iconfont.left-top {
  top: 0;
  left: 0;
}
.cid-rWWNgKhwfI .mbr-iconfont.right-bottom {
  bottom: 1rem;
  right: 0;
}
.cid-rWWNgKhwfI .user_text {
  position: relative;
}
@media (min-width: 768px) {
  .cid-rWWNgKhwfI .user_text p {
    padding: 1rem 4rem;
  }
}
@media (max-width: 230px) {
  .cid-rWWNgKhwfI .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-rWWS2kjjeI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rWWS2kjjeI .mbr-text {
  color: #767676;
}
.cid-rWWS2kjjeI h4 {
  font-weight: 500;
}
.cid-rWWS2kjjeI h4,
.cid-rWWS2kjjeI h5 {
  text-align: center;
}
.cid-rWWS2kjjeI p {
  text-align: center;
}
.cid-rWWS2kjjeI .card-box {
  text-align: center;
}
.cid-rWWS2kjjeI .card-img {
  font-size: 3rem;
}
.cid-rWWS2kjjeI .mbr-iconfont {
  color: #f7cd3c;
}
.cid-rWWTAX5fB9 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/93-2000x1054.jpg");
}
.cid-rWWTAX5fB9 .media-content .btn-bgr {
  z-index: 0;
}
.cid-rWWTAX5fB9 .mbr-overlay {
  background: linear-gradient(90deg, #000000, #000000);
}
@media (min-width: 992px) {
  .cid-rWWTAX5fB9 .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-rWWTAX5fB9 {
    text-align: center !important;
  }
  .cid-rWWTAX5fB9 .mbr-text {
    text-align: center;
  }
}
.cid-rWWTAX5fB9 .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWX0buDJ6G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rWX0buDJ6G .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-rWX0buDJ6G .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-rWX0buDJ6G .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-rWX0buDJ6G .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-rWX0buDJ6G .btn {
  margin: 0!important;
  transition: all 0.3s;
  opacity: 0;
}
.cid-rWX0buDJ6G .card {
  padding: 0!important;
  margin: 0;
  overflow: hidden;
  border-radius: 0 !important;
}
.cid-rWX0buDJ6G .card-title {
  color: #ffffff;
  margin: 0;
  text-align: center;
}
.cid-rWX0buDJ6G .card-img {
  overflow: hidden!important;
  position: relative;
  border-radius: 0px;
}
.cid-rWX0buDJ6G .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #333333;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-rWX0buDJ6G .card-box {
  position: absolute;
  padding: 1.5rem 1.5rem;
  bottom: -24px;
  transition: all 0.3s;
  width: 100%;
  left: 0;
  z-index: 2;
}
.cid-rWX0buDJ6G .mbr-section-title,
.cid-rWX0buDJ6G .line-wrap {
  text-align: center;
}
.cid-rWX0buDJ6G .card-box > p,
.cid-rWX0buDJ6G .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-rWWNQrQHFk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-rWWNQrQHFk p {
  text-align: center;
}
.cid-rWWNQrQHFk .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-rWWNQrQHFk .btn-underline:hover {
  color: #505050;
}
.cid-rWWNQrQHFk .btn-underline:before {
  background-color: #505050;
}
.cid-rWWNQrQHFk .social-list a:focus {
  text-decoration: none;
}
.cid-rWWNQrQHFk .text-copyright {
  width: 100%;
}
.cid-rWWNQrQHFk .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-rWWNQrQHFk .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-rWWNQrQHFk .logo-footer {
  line-height: normal;
}
.cid-rWWNQrQHFk .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rWWNQrQHFk .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWWNQrQHFk .mbr-section-btn {
  font-size: 16px;
}
.cid-rWWNQrQHFk .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
#custom-html-10 .whatsapp {
  width: 300px;
  position: fixed;
  bottom: 1%;
  right: 1%;
  padding: 10px;
  z-index: 10000000;
}
@media (max-width: 600px) {
  #custom-html-10 .whatsapp {
    width: 200px;
  }
}
