body {
  font-family: Dosis;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 3.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-2 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #c1d82f !important;
}
.bg-success {
  background-color: #232323 !important;
}
.bg-info {
  background-color: #444444 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c1d82f !important;
  border-color: #c1d82f !important;
  color: #060701 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #060701 !important;
  background-color: #8c9d1d !important;
  border-color: #8c9d1d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #060701 !important;
  background-color: #8c9d1d !important;
  border-color: #8c9d1d !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #6a2c91 !important;
  border-color: #6a2c91 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #3f1a56 !important;
  border-color: #3f1a56 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3f1a56 !important;
  border-color: #3f1a56 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #798819;
  color: #798819 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #060701 !important;
  background-color: #c1d82f;
  border-color: #c1d82f;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #060701 !important;
  background-color: #c1d82f !important;
  border-color: #c1d82f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #311443;
  color: #311443 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #6a2c91;
  border-color: #6a2c91;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6a2c91 !important;
  border-color: #6a2c91 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #111111;
  color: #111111 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #232323;
  border-color: #232323;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #c1d82f !important;
}
.text-secondary {
  color: #6a2c91 !important;
}
.text-success {
  color: #232323 !important;
}
.text-info {
  color: #444444 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #798819 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #311443 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #111111 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #444444;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c1d82f;
  border-color: #c1d82f;
  color: #191c05;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #c1d82f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f4f8db;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b7b7b7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a {
  background: #444444;
}
#scrollToTop a i:before {
  background: #ffffff;
}
#scrollToTop a i:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.mbr-arrow {
  background-color: #444444;
  opacity: .5;
  transition: .3s;
}
.mbr-arrow a {
  color: #ffffff;
}
.mbr-arrow:hover {
  opacity: .7;
}
.form-control {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #c1d82f;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form1 .input-group-btn a.btn {
  border-radius: 0 !important;
}
.form1 .input-group-btn button[type="submit"] {
  border-radius: 0 !important;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #c1d82f;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #c1d82f;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c1d82f;
  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: #c1d82f;
  border-bottom-color: #c1d82f;
}
.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: #c1d82f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #6a2c91 !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='%23c1d82f' %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-rB911fuhHF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-rB911fuhHF .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rB911fuhHF .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #000000 !important;
  background: #efefef !important;
}
.cid-rB911fuhHF .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rB911fuhHF .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-rB911fuhHF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rB911fuhHF .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-rB911fuhHF .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #c1d82f;
}
.cid-rB911fuhHF .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-rB911fuhHF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rB911fuhHF .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-rB911fuhHF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rB911fuhHF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rB911fuhHF .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-rB911fuhHF .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-rB911fuhHF .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-rB911fuhHF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rB911fuhHF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-rB911fuhHF .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-rB911fuhHF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rB911fuhHF .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-rB911fuhHF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rB911fuhHF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rB911fuhHF .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-rB911fuhHF .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-rB911fuhHF .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-rB911fuhHF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rB911fuhHF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rB911fuhHF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-rB911fuhHF .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-rB911fuhHF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-rB911fuhHF .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
}
.cid-rB911fuhHF .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rB911fuhHF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rB911fuhHF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rB911fuhHF .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-rB911fuhHF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rB911fuhHF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rB911fuhHF .dropdown-item.active,
.cid-rB911fuhHF .dropdown-item:active {
  background-color: transparent;
}
.cid-rB911fuhHF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rB911fuhHF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rB911fuhHF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rB911fuhHF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rB911fuhHF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-rB911fuhHF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rB911fuhHF ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rB911fuhHF .navbar-buttons {
  text-align: center;
}
.cid-rB911fuhHF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-rB911fuhHF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rB911fuhHF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rB911fuhHF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rB911fuhHF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rB911fuhHF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rB911fuhHF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rB911fuhHF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rB911fuhHF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rB911fuhHF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rB911fuhHF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rB911fuhHF a.nav-link {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rB911fuhHF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rB911fuhHF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-rB911fuhHF .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-rB911fuhHF .nav-link:hover,
.cid-rB911fuhHF .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-stJKW1CbNT {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #6a2c91;
  background: linear-gradient(45deg, #6a2c91, #000000);
}
.cid-stJKW1CbNT img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-stJKW1CbNT .row {
  justify-content: center;
}
.cid-stJKW1CbNT .mbr-text {
  color: #ffffff;
}
.cid-stJKW1CbNT .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-stJKW1CbNT .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-stJKW1CbNT .date {
  margin: 0;
  color: #cccccc;
}
.cid-stJKW1CbNT .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-stJKW1CbNT .icon-box {
    flex-direction: column;
  }
  .cid-stJKW1CbNT .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-stJKW1CbNT img {
    margin-bottom: 2rem;
  }
}
.cid-stJKW1CbNT H1 {
  color: #c1d82f;
}
.cid-uemme2akgV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/14208-2000x1455.jpg");
}
.cid-uemme2akgV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uemme2akgV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uemme2akgV .container {
    padding: 0 22px;
  }
}
.cid-uemme2akgV .row {
  justify-content: center;
}
.cid-uemme2akgV .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uemme2akgV .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uemme2akgV .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uemme2akgV .item {
    margin-bottom: 20px;
  }
}
.cid-uemme2akgV .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uemme2akgV .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 45px;
  color: #c1d82f;
}
@media (max-width: 992px) {
  .cid-uemme2akgV .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
    font-size: 42px;
  }
}
.cid-uemme2akgV .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-uemme2akgV .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uemme2akgV .mbr-section-title {
  color: #ffffff;
}
.cid-uemme2akgV .card-title {
  color: #ffffff;
}
.cid-uemme2akgV .card-text {
  color: #ffffff;
  text-align: center;
}
.cid-uemme2akgV .mbr-section-title,
.cid-uemme2akgV .mbr-section-btn {
  text-align: center;
}
.cid-uemme2akgV .card-title,
.cid-uemme2akgV .icon-wrapper {
  text-align: center;
}
.cid-rB913DsQVK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rB913DsQVK .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rB913DsQVK .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rB913DsQVK .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rB913DsQVK .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-rB913DsQVK .process-icon,
.cid-rB913DsQVK .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-rB913DsQVK .wrapper,
.cid-rB913DsQVK .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-rB913DsQVK .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #6a2c91;
  opacity: .4;
}
.cid-rB913DsQVK .icon-container {
  display: -webkit-inline-flex;
  position: relative;
}
.cid-rB913DsQVK .icon-container a {
  display: inherit;
}
.cid-rB913DsQVK .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #c1d82f !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #000000;
  z-index: 1;
}
.cid-rB913DsQVK .icon-main {
  margin: 1rem 0;
  display: -webkit-flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
  -webkit-align-items: center;
}
.cid-rB913DsQVK .icon-main:hover .icon-wrapper {
  background-color: #c1d82f !important;
}
.cid-rB913DsQVK .icon-main:hover .icon-number {
  background-color: #6a2c91 !important;
  color: #ffffff !important;
}
.cid-rB913DsQVK .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-rB913DsQVK .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-rB913DsQVK .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-rB913DsQVK .third-elem .wrapper:before {
    display: none;
  }
}
.cid-rB913DsQVK .mbr-section-title {
  margin: 0;
}
.cid-rB913DsQVK .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-rB913DsQVK .mbr-section-title,
.cid-rB913DsQVK .underline {
  color: #6a2c91;
}
.cid-udpNTh9uJU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-udpNTh9uJU .mbr-overlay {
  background: #6a2c91;
  opacity: 0.9;
}
.cid-udpNTh9uJU .title-wrapper .mbr-section-title {
  margin: 55px;
}
@media (max-width: 992px) {
  .cid-udpNTh9uJU .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-udpNTh9uJU .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-udpNTh9uJU .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-udpNTh9uJU .container {
    padding: 0 22px;
  }
}
.cid-udpNTh9uJU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 212px;
  max-width: 212px;
}
@media (max-width: 767px) {
  .cid-udpNTh9uJU .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-udpNTh9uJU .embla__slide .slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-udpNTh9uJU .embla__slide .slide-content {
    display: block;
  }
}
.cid-udpNTh9uJU .embla__slide .slide-content .item-wrapper .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udpNTh9uJU .embla__slide .slide-content .item-wrapper .item-img img {
  height: 180px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-udpNTh9uJU .embla__button--next,
.cid-udpNTh9uJU .embla__button--prev {
  display: flex;
}
.cid-udpNTh9uJU .embla__button {
  bottom: 0;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-udpNTh9uJU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-udpNTh9uJU .embla__button:hover {
  color: #c1d82f !important;
}
.cid-udpNTh9uJU .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-udpNTh9uJU .embla__button.embla__button--prev {
    left: auto;
    right: 4rem;
  }
}
.cid-udpNTh9uJU .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-udpNTh9uJU .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-udpNTh9uJU .embla {
  position: relative;
  width: 100%;
}
.cid-udpNTh9uJU .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-udpNTh9uJU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-udpNTh9uJU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-udpNTh9uJU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-udpNTh9uJU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-rCzkZQWrrd {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rCzkZQWrrd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rCzkZQWrrd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rCzkZQWrrd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rCzkZQWrrd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rCzkZQWrrd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rCzkZQWrrd .mbr-gallery-item > div:hover::before {
  opacity: 0.8 !important;
}
.cid-rCzkZQWrrd .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-rCzkZQWrrd .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-rCzkZQWrrd .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-family: sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-rCzkZQWrrd .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #c1d82f !important;
}
.cid-rCzkZQWrrd .mbr-gallery-filter ul {
  display: block;
}
.cid-rCzkZQWrrd .mbr-gallery-filter ul li {
  position: relative;
}
.cid-rCzkZQWrrd .mbr-gallery-filter li.active .btn {
  color: #c1d82f !important;
  background: transparent;
}
.cid-rCzkZQWrrd .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #c1d82f !important;
  -webkit-transform: translateX(-50%) scale(0);
}
.cid-rCzkZQWrrd .mbr-gallery-filter li.active::after,
.cid-rCzkZQWrrd .mbr-gallery-filter li:hover::after {
  transform: translateX(-50%) scale(1);
  background: #c1d82f !important;
  -webkit-transform: translateX(-50%) scale(1);
}
.cid-rCzkZQWrrd .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-rCzkZQWrrd .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-rCzkZQWrrd .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-rCzkZQWrrd .icon-focus:before {
  content: '\e95e';
}
.cid-rCzkZQWrrd .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-rCzkZQWrrd .mbr-section-title {
  margin: 0;
}
.cid-rCzkZQWrrd .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rCzkZQWrrd .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-rCzkZQWrrd .mbr-section-title,
.cid-rCzkZQWrrd .underline {
  color: #6a2c91;
}
.cid-rCzkZQWrrd .mbr-gallery-item > div > span P {
  text-align: right;
}
.cid-rB928Z9Ip7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rB928Z9Ip7 .mbr-section-heading {
  margin-bottom: 1.5em;
  text-align: center;
  color: #6a2c91;
}
.cid-rB928Z9Ip7 .input-main {
  width: 99.6%;
  margin-left: .1em;
}
.cid-rB928Z9Ip7 .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-rB928Z9Ip7 .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-rB928Z9Ip7 .input-wrap input {
  border: 1px solid #ddd;
  padding-left: .5em;
  height: 2.5em;
  width: 96%;
}
.cid-rB928Z9Ip7 .form-group textarea {
  height: 15em;
  background-color: white;
  padding: 0.5em 0.6em;
  width: 98%;
}
.cid-rB92ayMItX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-rB92ayMItX a:link {
  text-decoration: none;
}
.cid-rB92ayMItX .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rB92ayMItX .icon-transition span:hover {
  background-color: #6a2c91;
}
.cid-rB92ayMItX .inner-text {
  line-height: 3em;
}
.cid-rB92ayMItX .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-rB92ayMItX .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rB92ayMItX .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rB92ayMItX .content-text,
.cid-rB92ayMItX .inner-text {
  color: #c1c1c1;
}
