.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'KaushanScript-Regular';
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'KaushanScript-Regular';
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Kalam-Regular';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'KaushanScript-Regular';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Kalam-Regular';
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((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.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fff0b0 !important;
}
.bg-success {
  background-color: #364848 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #65c6d4 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fff0b0 !important;
  border-color: #fff0b0 !important;
  color: #b08f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #594800 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #b08f00 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #99000b !important;
  border-color: #99000b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #420005 !important;
  border-color: #420005 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #420005 !important;
  border-color: #420005 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #364848 !important;
  border-color: #364848 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #111616 !important;
  border-color: #111616 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #111616 !important;
  border-color: #111616 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #65c6d4 !important;
  border-color: #65c6d4 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #31a1b1 !important;
  border-color: #31a1b1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #31a1b1 !important;
  border-color: #31a1b1 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #fff0b0;
  color: #fff0b0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffe059 !important;
  background-color: transparent!important;
  border-color: #ffe059 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #b08f00 !important;
  background-color: #fff0b0 !important;
  border-color: #fff0b0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #99000b;
  color: #99000b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #420005 !important;
  background-color: transparent!important;
  border-color: #420005 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #99000b !important;
  border-color: #99000b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #364848;
  color: #364848;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #111616 !important;
  background-color: transparent!important;
  border-color: #111616 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #364848 !important;
  border-color: #364848 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #65c6d4;
  color: #65c6d4;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #31a1b1 !important;
  background-color: transparent!important;
  border-color: #31a1b1 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #65c6d4 !important;
  border-color: #65c6d4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #fff0b0 !important;
}
.text-secondary {
  color: #99000b !important;
}
.text-success {
  color: #364848 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #65c6d4 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ffdd4a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #330004 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0a0e0e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #2e96a5 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fff0b0;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #65c6d4;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fff0b0;
  border-color: #fff0b0;
  color: #caa300;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #fff0b0;
}
.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: #a7bdbd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Kalam-Regular';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fff0b0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Kalam-Regular';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #fff0b0;
}
/* Forms */
.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 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fff0b0;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fff0b0;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fff0b0;
  border-bottom-color: #fff0b0;
}
.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: #fff0b0 !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: #99000b !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%;
  width: 100%;
  height: auto;
}
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='%23fff0b0' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFZsAE1bjy .navbar {
  padding: .5rem 0;
  background: #323939;
  transition: none;
  min-height: 77px;
}
.cid-sFZsAE1bjy .navbar-dropdown.bg-color.transparent.opened {
  background: #323939;
}
.cid-sFZsAE1bjy a {
  font-style: normal;
}
.cid-sFZsAE1bjy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sFZsAE1bjy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sFZsAE1bjy .nav-item:focus,
.cid-sFZsAE1bjy .nav-link:focus {
  outline: none;
}
.cid-sFZsAE1bjy .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sFZsAE1bjy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sFZsAE1bjy .menu-logo {
  margin-right: auto;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu {
  background: #323939;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sFZsAE1bjy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sFZsAE1bjy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sFZsAE1bjy button.navbar-toggler:focus {
  outline: none;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .btn {
  display: -webkit-flex;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-sFZsAE1bjy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sFZsAE1bjy .collapsed button.navbar-toggler {
  display: block;
}
.cid-sFZsAE1bjy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sFZsAE1bjy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-sFZsAE1bjy .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy img {
    height: 3.8rem !important;
  }
  .cid-sFZsAE1bjy .btn {
    display: -webkit-flex;
  }
  .cid-sFZsAE1bjy button.navbar-toggler {
    display: block;
  }
  .cid-sFZsAE1bjy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sFZsAE1bjy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing,
  .cid-sFZsAE1bjy .navbar-collapse.show {
    display: block !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sFZsAE1bjy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sFZsAE1bjy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sFZsAE1bjy .nav-link:hover,
.cid-sFZsAE1bjy .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-sEaXuVZ963 {
  background-image: url("../../../assets/images/bgrnd-welcome-opt-2000x1335.jpeg");
}
.cid-sEaXuVZ963 .mbr-section-title {
  color: #fff0b0;
  text-align: right;
}
.cid-sEaXuVZ963 .mbr-section-subtitle {
  color: #fff0b0;
  text-align: right;
}
.cid-sEaXuVZ963 .mbr-text,
.cid-sEaXuVZ963 .mbr-section-btn {
  color: #fff0b0;
  text-align: right;
}
.cid-sF2nqSr5sK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3e1313;
}
.cid-sF2nqSr5sK .image-wrapper {
  padding: 0;
}
.cid-sF2nqSr5sK .img-item,
.cid-sF2nqSr5sK img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sF2nqSr5sK .container-fluid {
  padding: 0 1rem;
}
.cid-sF2nqSr5sK .wrapper {
  max-width: 550px;
  margin: auto;
  padding: 4rem 0;
}
.cid-sF2nqSr5sK .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 757px) {
  .cid-sF2nqSr5sK .card-wrapper {
    flex-direction: column;
  }
}
.cid-sF2nqSr5sK .mbr-iconfont {
  font-size: 2rem;
}
.cid-sF2nqSr5sK .icon1 {
  color: #fff0b0;
}
.cid-sF2nqSr5sK .icon-wrapper {
  background: #3e1313;
  border-radius: 50%;
  min-width: 80px;
  height: 80px;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 757px) {
  .cid-sF2nqSr5sK .icon-wrapper {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-sF2nqSr5sK .mbr-text,
.cid-sF2nqSr5sK .mbr-section-btn {
  color: #fff0b0;
}
.cid-sF2nqSr5sK .mbr-section-subtitle {
  color: #777777;
}
.cid-sF2nqSr5sK .mbr-list {
  color: #777777;
}
@media (max-width: 767px) {
  .cid-sF2nqSr5sK .mbr-list {
    justify-content: center;
    display: flex;
  }
}
.cid-sF2nqSr5sK .card-text {
  color: #fff0b0;
}
.cid-sF2nqSr5sK .card-title {
  color: #fff0b0;
}
.cid-sF2nqSr5sK .mbr-section-title {
  color: #fff0b0;
}
.cid-sF2rkNIEmr {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/bgrnd-budha-2000x1268.jpeg");
}
.cid-sF2rkNIEmr .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #fff0b0;
  color: #444444;
  padding: 0;
}
.cid-sF2rkNIEmr .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sF2rkNIEmr p {
  line-height: 1.6;
}
.cid-sF2rkNIEmr .rev,
.cid-sF2rkNIEmr .mbr-iconfont {
  display: inline-block;
}
.cid-sF2rkNIEmr .card-title {
  color: #ff3366;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sF2rkNIEmr .card-box {
  padding: 1.5rem;
}
.cid-sF2rkNIEmr .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sF2rkNIEmr .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sF2rkNIEmr .mbr-section-title,
.cid-sF2rkNIEmr .line-wrap {
  text-align: center;
  color: #fff0b0;
}
.cid-sF2rkNIEmr .rev {
  color: #0a1c44;
}
.cid-sF2rkNIEmr .card-text,
.cid-sF2rkNIEmr .mbr-section-btn,
.cid-sF2rkNIEmr .ico-line {
  color: #610202;
  text-align: center;
}
.cid-sF2vFH38fo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #323939;
}
@media (min-width: 1500px) {
  .cid-sF2vFH38fo .container {
    max-width: 1400px;
  }
}
.cid-sF2vFH38fo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sF2vFH38fo .card {
  border-radius: 0;
  background: #3e1313;
}
.cid-sF2vFH38fo .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-sF2vFH38fo .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-sF2vFH38fo .img-col {
  padding: 0;
}
.cid-sF2vFH38fo .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sF2vFH38fo .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-sF2vFH38fo .mbr-text,
.cid-sF2vFH38fo .mbr-section-btn {
  color: #fff0b0;
}
.cid-sF2vFH38fo .card-title,
.cid-sF2vFH38fo .card-box {
  color: #fff0b0;
}
.cid-sF2vViOn6l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #323939;
}
@media (min-width: 1500px) {
  .cid-sF2vViOn6l .container {
    max-width: 1400px;
  }
}
.cid-sF2vViOn6l img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sF2vViOn6l .card {
  border-radius: 0;
  background: #3e1313;
}
.cid-sF2vViOn6l .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-sF2vViOn6l .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-sF2vViOn6l .img-col {
  padding: 0;
}
.cid-sF2vViOn6l .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sF2vViOn6l .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-sF2vViOn6l .mbr-text,
.cid-sF2vViOn6l .mbr-section-btn {
  color: #fff0b0;
}
.cid-sF2vViOn6l .card-title,
.cid-sF2vViOn6l .card-box {
  color: #fff0b0;
}
.cid-sF2xBy8oeZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #323939;
}
@media (min-width: 1500px) {
  .cid-sF2xBy8oeZ .container {
    max-width: 1400px;
  }
}
.cid-sF2xBy8oeZ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sF2xBy8oeZ .card {
  border-radius: 0;
  background: #3e1313;
}
.cid-sF2xBy8oeZ .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-sF2xBy8oeZ .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-sF2xBy8oeZ .img-col {
  padding: 0;
}
.cid-sF2xBy8oeZ .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sF2xBy8oeZ .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-sF2xBy8oeZ .card-title,
.cid-sF2xBy8oeZ .card-box {
  color: #fff0b0;
}
.cid-sF2xBy8oeZ .mbr-text,
.cid-sF2xBy8oeZ .mbr-section-btn {
  color: #fff0b0;
}
.cid-sF2Say2je8 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #323939;
}
.cid-sF2Say2je8 .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-sF2Say2je8 H2 {
  color: #fff0b0;
}
.cid-sF2Say2je8 .mbr-section-subtitle,
.cid-sF2Say2je8 .mbr-section-btn {
  color: #fff0b0;
}
.cid-tf4tCGaoil {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bgrnd-budha-4-2000x1268.jpeg");
}
.cid-tf4tCGaoil .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf4tCGaoil .row {
    text-align: center;
  }
  .cid-tf4tCGaoil .row > div {
    margin: auto;
  }
  .cid-tf4tCGaoil .social-row {
    justify-content: center;
  }
}
.cid-tf4tCGaoil .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf4tCGaoil .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 0rem;
  }
}
.cid-tf4tCGaoil .mbr-text {
  color: #fff0b0;
}
.cid-tf4tCGaoil .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf4tCGaoil .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf4tCGaoil H5 {
  color: #fff0b0;
}
.cid-tf4h157tkS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tf4h157tkS .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sFYTvdd7pX {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/bgrnd-preise-opt-2000x1335.jpeg");
}
.cid-sFYTvdd7pX .menu-item {
  padding-bottom: 2rem;
}
.cid-sFYTvdd7pX .menu-box {
  display: flex;
}
.cid-sFYTvdd7pX .menu-box .box-text {
  word-break: break-word;
  padding-right: 2rem;
}
.cid-sFYTvdd7pX .menu-box .box-price {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-sFYTvdd7pX .menu-item:nth-child(odd) {
    padding-right: 2rem;
  }
  .cid-sFYTvdd7pX .menu-item:nth-child(even) {
    padding-left: 2rem;
  }
}
.cid-sFYTvdd7pX .mbr-section-title,
.cid-sFYTvdd7pX .ornament {
  color: #fff0b0;
}
.cid-sFYTvdd7pX .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sFYTvdd7pX P {
  color: #fff0b0;
}
.cid-sFYTvdd7pX H3 {
  color: #ffe161;
}
.cid-sFYTvdd7pX SPAN {
  color: #ffffff;
}
.cid-tgQ1JHOQGH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tgQ1JHOQGH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgQ1JHOQGH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgQ1JHOQGH .mbr-section-title {
  color: #ffe161;
}
.cid-tgQ1JHOQGH .mbr-text,
.cid-tgQ1JHOQGH .mbr-section-btn {
  color: #fff0b0;
}
.cid-sFZ0pts5au {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-sFZ0pts5au .line {
  background-color: #fff0b0;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sFZ0pts5au .mbr-text {
  color: #fff0b0;
}
.cid-sFZ3dEZwKL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #323939;
}
.cid-sFZ3dEZwKL .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sFZ3dEZwKL .mbr-text {
  color: #fff0b0;
}
.cid-sFZ3KzaSdi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #323939;
}
.cid-sFZ3KzaSdi .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sFZ3KzaSdi .mbr-text {
  color: #fff0b0;
}
.cid-sFZ4mrkUY4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #323939;
}
.cid-sFZ4mrkUY4 .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sFZ4mrkUY4 .mbr-text {
  color: #fff0b0;
}
.cid-sFZ5ppOa6S {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-sFZ5ppOa6S .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sFZ5ppOa6S .mbr-text {
  color: #fff0b0;
}
.cid-sF3bltgCOS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #323939;
}
.cid-sF3bltgCOS .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-sF3bltgCOS H2 {
  color: #fff0b0;
}
.cid-sF3bltgCOS .mbr-section-subtitle,
.cid-sF3bltgCOS .mbr-section-btn {
  color: #fff0b0;
}
.cid-sFZsAE1bjy .navbar {
  padding: .5rem 0;
  background: #323939;
  transition: none;
  min-height: 77px;
}
.cid-sFZsAE1bjy .navbar-dropdown.bg-color.transparent.opened {
  background: #323939;
}
.cid-sFZsAE1bjy a {
  font-style: normal;
}
.cid-sFZsAE1bjy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sFZsAE1bjy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sFZsAE1bjy .nav-item:focus,
.cid-sFZsAE1bjy .nav-link:focus {
  outline: none;
}
.cid-sFZsAE1bjy .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sFZsAE1bjy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sFZsAE1bjy .menu-logo {
  margin-right: auto;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu {
  background: #323939;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sFZsAE1bjy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sFZsAE1bjy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sFZsAE1bjy button.navbar-toggler:focus {
  outline: none;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .btn {
  display: -webkit-flex;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-sFZsAE1bjy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sFZsAE1bjy .collapsed button.navbar-toggler {
  display: block;
}
.cid-sFZsAE1bjy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sFZsAE1bjy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-sFZsAE1bjy .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy img {
    height: 3.8rem !important;
  }
  .cid-sFZsAE1bjy .btn {
    display: -webkit-flex;
  }
  .cid-sFZsAE1bjy button.navbar-toggler {
    display: block;
  }
  .cid-sFZsAE1bjy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sFZsAE1bjy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing,
  .cid-sFZsAE1bjy .navbar-collapse.show {
    display: block !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sFZsAE1bjy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sFZsAE1bjy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sFZsAE1bjy .nav-link:hover,
.cid-sFZsAE1bjy .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-tf4tCGaoil {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bgrnd-budha-4-2000x1268.jpeg");
}
.cid-tf4tCGaoil .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf4tCGaoil .row {
    text-align: center;
  }
  .cid-tf4tCGaoil .row > div {
    margin: auto;
  }
  .cid-tf4tCGaoil .social-row {
    justify-content: center;
  }
}
.cid-tf4tCGaoil .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf4tCGaoil .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 0rem;
  }
}
.cid-tf4tCGaoil .mbr-text {
  color: #fff0b0;
}
.cid-tf4tCGaoil .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf4tCGaoil .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf4tCGaoil H5 {
  color: #fff0b0;
}
.cid-tf4AbepBJy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tf4AbepBJy .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sFZl22kQGw {
  background-image: url("../../../assets/images/bgrnd-ueberuns-12-2000x1247.jpeg");
}
.cid-sFZl22kQGw .mbr-section-title {
  color: #fff0b0;
  text-align: right;
}
.cid-sFZl22kQGw .mbr-section-subtitle {
  color: #fff0b0;
  text-align: right;
}
.cid-sFZl22kQGw .mbr-text,
.cid-sFZl22kQGw .mbr-section-btn {
  color: #fff0b0;
  text-align: right;
}
.cid-thBXPkpN55 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-thBXPkpN55 .mbr-fallback-image.disabled {
  display: none;
}
.cid-thBXPkpN55 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thBXPkpN55 .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-thBSaQzEF8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #323939;
}
.cid-thBSaQzEF8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-thBSaQzEF8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thBSaQzEF8 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-thBSaQzEF8 .card-wrapper {
  background-color: #fff0b0;
  border-radius: 4px;
  background-color: transparent;
}
.cid-thBSaQzEF8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-thBSaQzEF8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-thBSaQzEF8 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-thBSaQzEF8 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-thBSaQzEF8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-thBSaQzEF8 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-thBSaQzEF8 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thBSaQzEF8 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-thBSaQzEF8 .card-title {
  color: #fff0b0;
}
.cid-thBSaQzEF8 .mbr-text,
.cid-thBSaQzEF8 .social-row {
  color: #fff0b0;
}
.cid-thBSaQzEF8 .card-subtitle {
  color: #e6c63b;
}
.cid-sFZEH8p5WN.popup-builder {
  background-color: #ffffff;
}
.cid-sFZEH8p5WN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFZEH8p5WN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFZEH8p5WN .modal-content,
.cid-sFZEH8p5WN .modal-dialog {
  height: auto;
}
.cid-sFZEH8p5WN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFZEH8p5WN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFZEH8p5WN .form-wrapper .mbr-form .form-group,
  .cid-sFZEH8p5WN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFZEH8p5WN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFZEH8p5WN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFZEH8p5WN .mbr-text {
  text-align: center;
}
.cid-sFZEH8p5WN .pt-0 {
  padding-top: 0 !important;
}
.cid-sFZEH8p5WN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFZEH8p5WN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFZEH8p5WN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFZEH8p5WN .modal-open {
  overflow: hidden;
}
.cid-sFZEH8p5WN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFZEH8p5WN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFZEH8p5WN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFZEH8p5WN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFZEH8p5WN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFZEH8p5WN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFZEH8p5WN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFZEH8p5WN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFZEH8p5WN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFZEH8p5WN .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFZEH8p5WN .modal-backdrop.show {
  opacity: .5;
}
.cid-sFZEH8p5WN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFZEH8p5WN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFZEH8p5WN .modal-header {
    padding: 1rem;
  }
}
.cid-sFZEH8p5WN .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFZEH8p5WN .modal-header .close:hover {
  opacity: 1;
}
.cid-sFZEH8p5WN .modal-header .close:focus {
  outline: none;
}
.cid-sFZEH8p5WN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFZEH8p5WN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFZEH8p5WN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFZEH8p5WN .modal-body {
    padding: 1rem;
  }
}
.cid-sFZEH8p5WN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFZEH8p5WN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFZEH8p5WN .modal-footer {
    padding: 1rem;
  }
}
.cid-sFZEH8p5WN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFZEH8p5WN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFZEH8p5WN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFZEH8p5WN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFZEH8p5WN .modal-sm {
    max-width: 300px;
  }
  .cid-sFZEH8p5WN .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFZEH8p5WN .modal-lg,
  .cid-sFZEH8p5WN .modal-xl {
    max-width: 800px;
  }
  .cid-sFZEH8p5WN .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFZEH8p5WN .modal-xl {
    max-width: 1140px;
  }
  .cid-sFZEH8p5WN .container {
    max-width: 1140px;
  }
}
.cid-sFZEH8p5WN .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFZEH8p5WN .container {
    max-width: 720px;
  }
}
.cid-sFZEH8p5WN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFZEH8p5WN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFZEH8p5WN .form-group {
  margin-bottom: 1rem;
}
.cid-sFZEH8p5WN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFZEH8p5WN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFZEH8p5WN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFZEH8p5WN .mbr-section-btn {
  margin: 0;
}
.cid-sFZEH8p5WN .mbr-section-btn .btn {
  margin: 0;
}
.cid-sFZFu6V0Ff.popup-builder {
  background-color: #ffffff;
}
.cid-sFZFu6V0Ff.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFZFu6V0Ff.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFZFu6V0Ff .modal-content,
.cid-sFZFu6V0Ff .modal-dialog {
  height: auto;
}
.cid-sFZFu6V0Ff .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFZFu6V0Ff .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFZFu6V0Ff .form-wrapper .mbr-form .form-group,
  .cid-sFZFu6V0Ff .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFZFu6V0Ff .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFZFu6V0Ff .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFZFu6V0Ff .mbr-text {
  text-align: center;
}
.cid-sFZFu6V0Ff .pt-0 {
  padding-top: 0 !important;
}
.cid-sFZFu6V0Ff .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFZFu6V0Ff .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFZFu6V0Ff .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFZFu6V0Ff .modal-open {
  overflow: hidden;
}
.cid-sFZFu6V0Ff .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFZFu6V0Ff .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFZFu6V0Ff .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFZFu6V0Ff .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFZFu6V0Ff .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFZFu6V0Ff .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFZFu6V0Ff .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFZFu6V0Ff .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFZFu6V0Ff .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFZFu6V0Ff .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFZFu6V0Ff .modal-backdrop.show {
  opacity: .5;
}
.cid-sFZFu6V0Ff .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFZFu6V0Ff .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFZFu6V0Ff .modal-header {
    padding: 1rem;
  }
}
.cid-sFZFu6V0Ff .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFZFu6V0Ff .modal-header .close:hover {
  opacity: 1;
}
.cid-sFZFu6V0Ff .modal-header .close:focus {
  outline: none;
}
.cid-sFZFu6V0Ff .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFZFu6V0Ff .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFZFu6V0Ff .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFZFu6V0Ff .modal-body {
    padding: 1rem;
  }
}
.cid-sFZFu6V0Ff .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFZFu6V0Ff .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFZFu6V0Ff .modal-footer {
    padding: 1rem;
  }
}
.cid-sFZFu6V0Ff .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFZFu6V0Ff .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFZFu6V0Ff .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFZFu6V0Ff .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFZFu6V0Ff .modal-sm {
    max-width: 300px;
  }
  .cid-sFZFu6V0Ff .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFZFu6V0Ff .modal-lg,
  .cid-sFZFu6V0Ff .modal-xl {
    max-width: 800px;
  }
  .cid-sFZFu6V0Ff .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFZFu6V0Ff .modal-xl {
    max-width: 1140px;
  }
  .cid-sFZFu6V0Ff .container {
    max-width: 1140px;
  }
}
.cid-sFZFu6V0Ff .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFZFu6V0Ff .container {
    max-width: 720px;
  }
}
.cid-sFZFu6V0Ff .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFZFu6V0Ff .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFZFu6V0Ff .form-group {
  margin-bottom: 1rem;
}
.cid-sFZFu6V0Ff .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFZFu6V0Ff .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFZFu6V0Ff .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFZFu6V0Ff .mbr-section-btn {
  margin: 0;
}
.cid-sFZFu6V0Ff .mbr-section-btn .btn {
  margin: 0;
}
.cid-sFZBx816kb {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #323939;
}
.cid-sFZBx816kb .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sFZBx816kb .mbr-text {
  color: #fff0b0;
  text-align: left;
}
.cid-sFZUzHdHTl {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #3e1313;
}
.cid-sFZUzHdHTl .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sFZUzHdHTl .mbr-text {
  color: #fff0b0;
  text-align: center;
}
.cid-sFZUnNDHTN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3e1313;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sFZUnNDHTN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sFZUnNDHTN .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-sFZUnNDHTN .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-sFZUnNDHTN .btn-primary-outline:active {
  color: gray;
}
.cid-sFZUnNDHTN .btn-primary-outline:hover {
  color: white;
}
.cid-sFZUnNDHTN .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-sFZUnNDHTN div {
  overflow: hidden;
}
.cid-sFZUnNDHTN li.active .btn-primary-outline {
  color: white;
}
.cid-sFZUnNDHTN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFZUnNDHTN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFZUnNDHTN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sFZUnNDHTN .mbr-gallery-item {
  overflow: hidden;
}
.cid-sFZUnNDHTN .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-sFZUnNDHTN .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-sFZUnNDHTN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #bbbbbb;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #bbbbbb, #000000) !important;
}
.cid-sFZUnNDHTN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sFZUnNDHTN .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sFZUnNDHTN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sFZUnNDHTN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #bbbbbb !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #bbbbbb, #000000) !important;
}
.cid-sFZUnNDHTN .mbr-gallery-item > div > span {
  color: #fff0b0;
}
.cid-sG06W047U5 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/img-20210930-160229-2000x1129.jpeg");
}
.cid-sG06W047U5 .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: .75rem;
  text-align: center;
  color: #e43f3f;
}
.cid-sG06W047U5 .card {
  margin-bottom: 1.5rem;
}
.cid-sG06W047U5 .card-wrapper {
  overflow: visible;
  padding: 2.5rem 1.5rem;
  border-bottom: 8px solid grey;
  background-color: #fff0b0;
}
@media (max-width: 767px) {
  .cid-sG06W047U5 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sG06W047U5 .card-wrapper-1 {
  border-color: #900505;
}
.cid-sG06W047U5 .card-wrapper-2 {
  border-color: #900505;
}
.cid-sG06W047U5 .card-wrapper-3 {
  border-color: #900505;
}
.cid-sG06W047U5 .card-wrapper-4 {
  border-color: #eec39c;
}
.cid-sG06W047U5 .card-wrapper-5 {
  border-color: #d4e7eb;
}
.cid-sG06W047U5 .card-wrapper-6 {
  border-color: #67beb0;
}
.cid-sG06W047U5 .card-text {
  text-align: center;
}
.cid-sG06W047U5 .card-number {
  color: #2299aa;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sG06W047U5 .card-number {
    text-align: center;
  }
}
.cid-sG06W047U5 .mbr-section-title {
  text-align: left;
  color: #fff0b0;
}
.cid-sG06W047U5 .mbr-section-title {
  margin-bottom: 1.5rem;
}
.cid-sG09T2TqiS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #323939;
}
.cid-sG09T2TqiS .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sG09T2TqiS .mbr-text {
  color: #fff0b0;
  text-align: left;
}
.cid-sFZPj28f0d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #323939;
}
.cid-sFZPj28f0d .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-sFZPj28f0d H2 {
  color: #fff0b0;
}
.cid-sFZPj28f0d .mbr-section-subtitle,
.cid-sFZPj28f0d .mbr-section-btn {
  color: #fff0b0;
}
.cid-sFZsAE1bjy .navbar {
  padding: .5rem 0;
  background: #323939;
  transition: none;
  min-height: 77px;
}
.cid-sFZsAE1bjy .navbar-dropdown.bg-color.transparent.opened {
  background: #323939;
}
.cid-sFZsAE1bjy a {
  font-style: normal;
}
.cid-sFZsAE1bjy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sFZsAE1bjy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sFZsAE1bjy .nav-item:focus,
.cid-sFZsAE1bjy .nav-link:focus {
  outline: none;
}
.cid-sFZsAE1bjy .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sFZsAE1bjy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sFZsAE1bjy .menu-logo {
  margin-right: auto;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu {
  background: #323939;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sFZsAE1bjy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sFZsAE1bjy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sFZsAE1bjy button.navbar-toggler:focus {
  outline: none;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .btn {
  display: -webkit-flex;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-sFZsAE1bjy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sFZsAE1bjy .collapsed button.navbar-toggler {
  display: block;
}
.cid-sFZsAE1bjy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sFZsAE1bjy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-sFZsAE1bjy .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy img {
    height: 3.8rem !important;
  }
  .cid-sFZsAE1bjy .btn {
    display: -webkit-flex;
  }
  .cid-sFZsAE1bjy button.navbar-toggler {
    display: block;
  }
  .cid-sFZsAE1bjy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sFZsAE1bjy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing,
  .cid-sFZsAE1bjy .navbar-collapse.show {
    display: block !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sFZsAE1bjy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sFZsAE1bjy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sFZsAE1bjy .nav-link:hover,
.cid-sFZsAE1bjy .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-tf4tCGaoil {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bgrnd-budha-4-2000x1268.jpeg");
}
.cid-tf4tCGaoil .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf4tCGaoil .row {
    text-align: center;
  }
  .cid-tf4tCGaoil .row > div {
    margin: auto;
  }
  .cid-tf4tCGaoil .social-row {
    justify-content: center;
  }
}
.cid-tf4tCGaoil .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf4tCGaoil .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 0rem;
  }
}
.cid-tf4tCGaoil .mbr-text {
  color: #fff0b0;
}
.cid-tf4tCGaoil .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf4tCGaoil .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf4tCGaoil H5 {
  color: #fff0b0;
}
.cid-tf4rl4OVY7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tf4rl4OVY7 .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sHtBplKuEd {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-sHtBplKuEd .mbr-text {
  color: #fff0b0;
}
.cid-sHtBplKuEd .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sHtBplKuEd .mbr-section-title {
  color: #fff0b0;
}
.cid-sHGrLY334x {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-sHGrLY334x .mbr-text {
  color: #fff0b0;
}
.cid-sHGrMLU1Ez {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-sHGrMLU1Ez .mbr-text {
  color: #fff0b0;
}
.cid-sHGrNxiq9m {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #323939;
}
.cid-sHGrNxiq9m .mbr-text {
  color: #fff0b0;
}
.cid-sFZsAE1bjy .navbar {
  padding: .5rem 0;
  background: #323939;
  transition: none;
  min-height: 77px;
}
.cid-sFZsAE1bjy .navbar-dropdown.bg-color.transparent.opened {
  background: #323939;
}
.cid-sFZsAE1bjy a {
  font-style: normal;
}
.cid-sFZsAE1bjy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sFZsAE1bjy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sFZsAE1bjy .nav-item:focus,
.cid-sFZsAE1bjy .nav-link:focus {
  outline: none;
}
.cid-sFZsAE1bjy .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sFZsAE1bjy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sFZsAE1bjy .menu-logo {
  margin-right: auto;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu {
  background: #323939;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sFZsAE1bjy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sFZsAE1bjy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sFZsAE1bjy button.navbar-toggler:focus {
  outline: none;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .btn {
  display: -webkit-flex;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-sFZsAE1bjy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sFZsAE1bjy .collapsed button.navbar-toggler {
  display: block;
}
.cid-sFZsAE1bjy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sFZsAE1bjy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-sFZsAE1bjy .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy img {
    height: 3.8rem !important;
  }
  .cid-sFZsAE1bjy .btn {
    display: -webkit-flex;
  }
  .cid-sFZsAE1bjy button.navbar-toggler {
    display: block;
  }
  .cid-sFZsAE1bjy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sFZsAE1bjy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing,
  .cid-sFZsAE1bjy .navbar-collapse.show {
    display: block !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sFZsAE1bjy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sFZsAE1bjy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sFZsAE1bjy .nav-link:hover,
.cid-sFZsAE1bjy .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-tf4tCGaoil {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bgrnd-budha-4-2000x1268.jpeg");
}
.cid-tf4tCGaoil .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf4tCGaoil .row {
    text-align: center;
  }
  .cid-tf4tCGaoil .row > div {
    margin: auto;
  }
  .cid-tf4tCGaoil .social-row {
    justify-content: center;
  }
}
.cid-tf4tCGaoil .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf4tCGaoil .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 0rem;
  }
}
.cid-tf4tCGaoil .mbr-text {
  color: #fff0b0;
}
.cid-tf4tCGaoil .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf4tCGaoil .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf4tCGaoil H5 {
  color: #fff0b0;
}
.cid-tf4xP3H75e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tf4xP3H75e .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sHtGSgxFZv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-sHtGSgxFZv .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sHtGSgxFZv .mbr-text {
  color: #fff0b0;
}
.cid-sHtGSgxFZv .mbr-section-title {
  color: #fff0b0;
}
.cid-tfUq5powaE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-tfUq5powaE .mbr-text {
  color: #fff0b0;
}
.cid-tfUouYc3zv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-tfUouYc3zv .mbr-text {
  color: #fff0b0;
}
.cid-tfUouYc3zv .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-tfUok9VUYq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tfUok9VUYq .mbr-text {
  color: #fff0b0;
}
.cid-sFZsAE1bjy .navbar {
  padding: .5rem 0;
  background: #323939;
  transition: none;
  min-height: 77px;
}
.cid-sFZsAE1bjy .navbar-dropdown.bg-color.transparent.opened {
  background: #323939;
}
.cid-sFZsAE1bjy a {
  font-style: normal;
}
.cid-sFZsAE1bjy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sFZsAE1bjy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sFZsAE1bjy .nav-item:focus,
.cid-sFZsAE1bjy .nav-link:focus {
  outline: none;
}
.cid-sFZsAE1bjy .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sFZsAE1bjy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sFZsAE1bjy .menu-logo {
  margin-right: auto;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu {
  background: #323939;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sFZsAE1bjy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sFZsAE1bjy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sFZsAE1bjy button.navbar-toggler:focus {
  outline: none;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .btn {
  display: -webkit-flex;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-sFZsAE1bjy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sFZsAE1bjy .collapsed button.navbar-toggler {
  display: block;
}
.cid-sFZsAE1bjy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sFZsAE1bjy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-sFZsAE1bjy .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy img {
    height: 3.8rem !important;
  }
  .cid-sFZsAE1bjy .btn {
    display: -webkit-flex;
  }
  .cid-sFZsAE1bjy button.navbar-toggler {
    display: block;
  }
  .cid-sFZsAE1bjy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sFZsAE1bjy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing,
  .cid-sFZsAE1bjy .navbar-collapse.show {
    display: block !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sFZsAE1bjy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sFZsAE1bjy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sFZsAE1bjy .nav-link:hover,
.cid-sFZsAE1bjy .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-tf4tCGaoil {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bgrnd-budha-4-2000x1268.jpeg");
}
.cid-tf4tCGaoil .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf4tCGaoil .row {
    text-align: center;
  }
  .cid-tf4tCGaoil .row > div {
    margin: auto;
  }
  .cid-tf4tCGaoil .social-row {
    justify-content: center;
  }
}
.cid-tf4tCGaoil .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf4tCGaoil .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 0rem;
  }
}
.cid-tf4tCGaoil .mbr-text {
  color: #fff0b0;
}
.cid-tf4tCGaoil .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf4tCGaoil .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf4tCGaoil H5 {
  color: #fff0b0;
}
.cid-tf4ykYg9wy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tf4ykYg9wy .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-tg4J1TAMQJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/budha-stone-1-2000x1333.jpeg");
}
.cid-tg4J1TAMQJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg4J1TAMQJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg4J1TAMQJ .content-wrapper {
  background: #fff0b0;
}
@media (max-width: 991px) {
  .cid-tg4J1TAMQJ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tg4J1TAMQJ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tg4J1TAMQJ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tg4J1TAMQJ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tg4J1TAMQJ .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tg4J1TAMQJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tg4J1TAMQJ .card-title {
  color: #d83c47;
}
.cid-tg4EbaRg3X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-tg4EbaRg3X .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tg4EbaRg3X .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tg4EbaRg3X .row {
  flex-direction: row-reverse;
}
.cid-tg4EbaRg3X img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tg4EbaRg3X .text-wrapper {
    padding: 2rem;
  }
}
.cid-tg4EbaRg3X .mbr-section-title {
  color: #fff0b0;
}
.cid-tg4EbaRg3X .mbr-text {
  color: #fff0b0;
}
.cid-tg4Ebb9Uo0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #323939;
}
.cid-tg4Ebb9Uo0 .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-tg4Ebb9Uo0 H2 {
  color: #fff0b0;
}
.cid-tg4Ebb9Uo0 .mbr-section-subtitle,
.cid-tg4Ebb9Uo0 .mbr-section-btn {
  color: #fff0b0;
}
.cid-tg4EbbpRJX .navbar {
  padding: .5rem 0;
  background: #323939;
  transition: none;
  min-height: 77px;
}
.cid-tg4EbbpRJX .navbar-dropdown.bg-color.transparent.opened {
  background: #323939;
}
.cid-tg4EbbpRJX a {
  font-style: normal;
}
.cid-tg4EbbpRJX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tg4EbbpRJX .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tg4EbbpRJX .nav-item:focus,
.cid-tg4EbbpRJX .nav-link:focus {
  outline: none;
}
.cid-tg4EbbpRJX .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tg4EbbpRJX .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tg4EbbpRJX .menu-logo {
  margin-right: auto;
}
.cid-tg4EbbpRJX .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tg4EbbpRJX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tg4EbbpRJX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tg4EbbpRJX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tg4EbbpRJX .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tg4EbbpRJX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tg4EbbpRJX .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tg4EbbpRJX .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tg4EbbpRJX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tg4EbbpRJX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tg4EbbpRJX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tg4EbbpRJX .dropdown .dropdown-menu {
  background: #323939;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tg4EbbpRJX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tg4EbbpRJX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tg4EbbpRJX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tg4EbbpRJX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tg4EbbpRJX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tg4EbbpRJX .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tg4EbbpRJX .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tg4EbbpRJX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tg4EbbpRJX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tg4EbbpRJX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tg4EbbpRJX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tg4EbbpRJX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tg4EbbpRJX button.navbar-toggler:focus {
  outline: none;
}
.cid-tg4EbbpRJX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-tg4EbbpRJX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tg4EbbpRJX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tg4EbbpRJX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tg4EbbpRJX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tg4EbbpRJX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tg4EbbpRJX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tg4EbbpRJX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tg4EbbpRJX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tg4EbbpRJX .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tg4EbbpRJX .collapsed .btn {
  display: -webkit-flex;
}
.cid-tg4EbbpRJX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tg4EbbpRJX .collapsed .navbar-collapse.collapsing,
.cid-tg4EbbpRJX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tg4EbbpRJX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tg4EbbpRJX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tg4EbbpRJX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tg4EbbpRJX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tg4EbbpRJX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tg4EbbpRJX .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tg4EbbpRJX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tg4EbbpRJX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tg4EbbpRJX .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tg4EbbpRJX .collapsed button.navbar-toggler {
  display: block;
}
.cid-tg4EbbpRJX .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tg4EbbpRJX .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tg4EbbpRJX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tg4EbbpRJX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tg4EbbpRJX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tg4EbbpRJX .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-tg4EbbpRJX .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tg4EbbpRJX img {
    height: 3.8rem !important;
  }
  .cid-tg4EbbpRJX .btn {
    display: -webkit-flex;
  }
  .cid-tg4EbbpRJX button.navbar-toggler {
    display: block;
  }
  .cid-tg4EbbpRJX .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tg4EbbpRJX .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tg4EbbpRJX .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tg4EbbpRJX .navbar-collapse.collapsing,
  .cid-tg4EbbpRJX .navbar-collapse.show {
    display: block !important;
  }
  .cid-tg4EbbpRJX .navbar-collapse.collapsing .navbar-nav,
  .cid-tg4EbbpRJX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tg4EbbpRJX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tg4EbbpRJX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tg4EbbpRJX .navbar-collapse.collapsing .navbar-buttons,
  .cid-tg4EbbpRJX .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tg4EbbpRJX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tg4EbbpRJX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tg4EbbpRJX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tg4EbbpRJX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tg4EbbpRJX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tg4EbbpRJX .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tg4EbbpRJX .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tg4EbbpRJX .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tg4EbbpRJX .nav-link:hover,
.cid-tg4EbbpRJX .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-tg4EbbP1sb {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bgrnd-budha-4-2000x1268.jpeg");
}
.cid-tg4EbbP1sb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tg4EbbP1sb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tg4EbbP1sb .row {
    text-align: center;
  }
  .cid-tg4EbbP1sb .row > div {
    margin: auto;
  }
  .cid-tg4EbbP1sb .social-row {
    justify-content: center;
  }
}
.cid-tg4EbbP1sb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tg4EbbP1sb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tg4EbbP1sb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tg4EbbP1sb .list {
    margin-bottom: 0rem;
  }
}
.cid-tg4EbbP1sb .mbr-text {
  color: #fff0b0;
}
.cid-tg4EbbP1sb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tg4EbbP1sb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tg4EbbP1sb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tg4EbbP1sb H5 {
  color: #fff0b0;
}
.cid-tg4Ebcmm01 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tg4Ebcmm01 .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-tg4M3Aq8Ld {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/budha-stone-1-2000x1333.jpeg");
}
.cid-tg4M3Aq8Ld .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg4M3Aq8Ld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg4M3Aq8Ld .content-wrapper {
  background: #fff0b0;
}
@media (max-width: 991px) {
  .cid-tg4M3Aq8Ld .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tg4M3Aq8Ld .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tg4M3Aq8Ld .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tg4M3Aq8Ld .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tg4M3Aq8Ld .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tg4M3Aq8Ld .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tg4M3Aq8Ld .card-title {
  color: #d83c47;
}
.cid-tg4M3AFbPx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-tg4M3AFbPx .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tg4M3AFbPx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tg4M3AFbPx .row {
  flex-direction: row-reverse;
}
.cid-tg4M3AFbPx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tg4M3AFbPx .text-wrapper {
    padding: 2rem;
  }
}
.cid-tg4M3AFbPx .mbr-section-title {
  color: #fff0b0;
}
.cid-tg4M3AFbPx .mbr-text {
  color: #fff0b0;
}
.cid-tg4M3AUAgC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #323939;
}
.cid-tg4M3AUAgC .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-tg4M3AUAgC H2 {
  color: #fff0b0;
}
.cid-tg4M3AUAgC .mbr-section-subtitle,
.cid-tg4M3AUAgC .mbr-section-btn {
  color: #fff0b0;
}
.cid-tg4M3B8Lpz .navbar {
  padding: .5rem 0;
  background: #323939;
  transition: none;
  min-height: 77px;
}
.cid-tg4M3B8Lpz .navbar-dropdown.bg-color.transparent.opened {
  background: #323939;
}
.cid-tg4M3B8Lpz a {
  font-style: normal;
}
.cid-tg4M3B8Lpz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tg4M3B8Lpz .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tg4M3B8Lpz .nav-item:focus,
.cid-tg4M3B8Lpz .nav-link:focus {
  outline: none;
}
.cid-tg4M3B8Lpz .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tg4M3B8Lpz .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tg4M3B8Lpz .menu-logo {
  margin-right: auto;
}
.cid-tg4M3B8Lpz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tg4M3B8Lpz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tg4M3B8Lpz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tg4M3B8Lpz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tg4M3B8Lpz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tg4M3B8Lpz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tg4M3B8Lpz .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tg4M3B8Lpz .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tg4M3B8Lpz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tg4M3B8Lpz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tg4M3B8Lpz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tg4M3B8Lpz .dropdown .dropdown-menu {
  background: #323939;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tg4M3B8Lpz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tg4M3B8Lpz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tg4M3B8Lpz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tg4M3B8Lpz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tg4M3B8Lpz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tg4M3B8Lpz .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tg4M3B8Lpz .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tg4M3B8Lpz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tg4M3B8Lpz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tg4M3B8Lpz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tg4M3B8Lpz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tg4M3B8Lpz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tg4M3B8Lpz button.navbar-toggler:focus {
  outline: none;
}
.cid-tg4M3B8Lpz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-tg4M3B8Lpz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tg4M3B8Lpz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tg4M3B8Lpz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tg4M3B8Lpz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tg4M3B8Lpz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tg4M3B8Lpz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tg4M3B8Lpz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tg4M3B8Lpz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tg4M3B8Lpz .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tg4M3B8Lpz .collapsed .btn {
  display: -webkit-flex;
}
.cid-tg4M3B8Lpz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.collapsing,
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tg4M3B8Lpz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tg4M3B8Lpz .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tg4M3B8Lpz .collapsed button.navbar-toggler {
  display: block;
}
.cid-tg4M3B8Lpz .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tg4M3B8Lpz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tg4M3B8Lpz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tg4M3B8Lpz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tg4M3B8Lpz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tg4M3B8Lpz .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-tg4M3B8Lpz .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tg4M3B8Lpz img {
    height: 3.8rem !important;
  }
  .cid-tg4M3B8Lpz .btn {
    display: -webkit-flex;
  }
  .cid-tg4M3B8Lpz button.navbar-toggler {
    display: block;
  }
  .cid-tg4M3B8Lpz .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tg4M3B8Lpz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tg4M3B8Lpz .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tg4M3B8Lpz .navbar-collapse.collapsing,
  .cid-tg4M3B8Lpz .navbar-collapse.show {
    display: block !important;
  }
  .cid-tg4M3B8Lpz .navbar-collapse.collapsing .navbar-nav,
  .cid-tg4M3B8Lpz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tg4M3B8Lpz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tg4M3B8Lpz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tg4M3B8Lpz .navbar-collapse.collapsing .navbar-buttons,
  .cid-tg4M3B8Lpz .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tg4M3B8Lpz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tg4M3B8Lpz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tg4M3B8Lpz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tg4M3B8Lpz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tg4M3B8Lpz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tg4M3B8Lpz .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tg4M3B8Lpz .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tg4M3B8Lpz .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tg4M3B8Lpz .nav-link:hover,
.cid-tg4M3B8Lpz .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-tg4M3BrvqV {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bgrnd-budha-4-2000x1268.jpeg");
}
.cid-tg4M3BrvqV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tg4M3BrvqV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tg4M3BrvqV .row {
    text-align: center;
  }
  .cid-tg4M3BrvqV .row > div {
    margin: auto;
  }
  .cid-tg4M3BrvqV .social-row {
    justify-content: center;
  }
}
.cid-tg4M3BrvqV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tg4M3BrvqV .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tg4M3BrvqV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tg4M3BrvqV .list {
    margin-bottom: 0rem;
  }
}
.cid-tg4M3BrvqV .mbr-text {
  color: #fff0b0;
}
.cid-tg4M3BrvqV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tg4M3BrvqV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tg4M3BrvqV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tg4M3BrvqV H5 {
  color: #fff0b0;
}
.cid-tg4M3BQkY4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tg4M3BQkY4 .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sG0g2dxM1x {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #323939;
}
.cid-sG0g2dxM1x .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sG0g2dxM1x .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sG0g2dxM1x .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sG0g2dxM1x .mbr-section-title {
  color: #fff0b0;
}
.cid-sG0g2dxM1x .mbr-text,
.cid-sG0g2dxM1x .mbr-section-btn,
.cid-sG0g2dxM1x .social-row {
  color: #fff0b0;
  text-align: left;
}
.cid-sG0g2dxM1x .mbr-section-subtitle {
  color: #fff0b0;
}
.cid-sHtOvboyhk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/photo-1476725974034-6788d424c132-2000x1333.jpeg");
}
.cid-sHtOvboyhk .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-sHtOvboyhk .form-control,
.cid-sHtOvboyhk .field-input {
  padding: 0.5rem;
  background-color: #fff0b0;
  border-color: #f23801;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sHtOvboyhk .form-control::-webkit-input-placeholder,
.cid-sHtOvboyhk .field-input::-webkit-input-placeholder,
.cid-sHtOvboyhk .form-control::-webkit-input-placeholder,
.cid-sHtOvboyhk .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-sHtOvboyhk .form-control:-moz-placeholder,
.cid-sHtOvboyhk .field-input:-moz-placeholder,
.cid-sHtOvboyhk .form-control:-moz-placeholder,
.cid-sHtOvboyhk .field-input:-moz-placeholder {
  color: #000000;
}
.cid-sHtOvboyhk .form-control:hover,
.cid-sHtOvboyhk .field-input:hover,
.cid-sHtOvboyhk .form-control:focus,
.cid-sHtOvboyhk .field-input:focus {
  background-color: #fafafa;
  border-color: #000000;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sHtOvboyhk .form-control:hover::-webkit-input-placeholder,
.cid-sHtOvboyhk .field-input:hover::-webkit-input-placeholder,
.cid-sHtOvboyhk .form-control:focus::-webkit-input-placeholder,
.cid-sHtOvboyhk .field-input:focus::-webkit-input-placeholder,
.cid-sHtOvboyhk .form-control:hover::-webkit-input-placeholder,
.cid-sHtOvboyhk .field-input:hover::-webkit-input-placeholder,
.cid-sHtOvboyhk .form-control:focus::-webkit-input-placeholder,
.cid-sHtOvboyhk .field-input:focus::-webkit-input-placeholder {
  color: #d83c47;
}
.cid-sHtOvboyhk .form-control:hover:-moz-placeholder,
.cid-sHtOvboyhk .field-input:hover:-moz-placeholder,
.cid-sHtOvboyhk .form-control:focus:-moz-placeholder,
.cid-sHtOvboyhk .field-input:focus:-moz-placeholder,
.cid-sHtOvboyhk .form-control:hover:-moz-placeholder,
.cid-sHtOvboyhk .field-input:hover:-moz-placeholder,
.cid-sHtOvboyhk .form-control:focus:-moz-placeholder,
.cid-sHtOvboyhk .field-input:focus:-moz-placeholder {
  color: #d83c47;
}
.cid-sHtOvboyhk .jq-number__spin:hover,
.cid-sHtOvboyhk .jq-number__spin:focus {
  background-color: #fafafa;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sHtOvboyhk .jq-number__spin {
  background-color: #fff0b0;
  border-color: #f23801;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sHtOvboyhk .jq-selectbox li,
.cid-sHtOvboyhk .jq-selectbox li {
  background-color: #fff0b0;
  color: #000000;
}
.cid-sHtOvboyhk .jq-selectbox li:hover,
.cid-sHtOvboyhk .jq-selectbox li.selected {
  background-color: #fafafa;
  color: #000000;
}
.cid-sHtOvboyhk .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sHtOvboyhk .jq-number__spin.minus:hover:after,
.cid-sHtOvboyhk .jq-number__spin.plus:hover:after {
  border-top-color: #fff0b0;
  border-bottom-color: #fff0b0;
}
.cid-sHtOvboyhk .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sHtOvboyhk .jq-number__spin.minus:after,
.cid-sHtOvboyhk .jq-number__spin.plus:after {
  border-top-color: #fafafa;
  border-bottom-color: #fafafa;
}
.cid-sHtOvboyhk input::-webkit-clear-button {
  display: none;
}
.cid-sHtOvboyhk input::-webkit-inner-spin-button {
  display: none;
}
.cid-sHtOvboyhk input::-webkit-outer-spin-button {
  display: none;
}
.cid-sHtOvboyhk input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sHtOvboyhk H4 {
  color: #fff0b0;
  text-align: center;
}
.cid-sHtOvboyhk H5 {
  color: #fff0b0;
  text-align: left;
}
.cid-sHtOvboyhk LABEL {
  color: #fff0b0;
}
.cid-sHtOvboyhk H6 {
  color: #fff0b0;
}
.cid-sHtAkddEs9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #323939;
}
.cid-sHtAkddEs9 .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-sHtAkddEs9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sHtAkddEs9 .row {
  flex-direction: row-reverse;
}
.cid-sHtAkddEs9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sHtAkddEs9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sHtAkddEs9 .mbr-section-title {
  color: #fff0b0;
}
.cid-sHtAkddEs9 .mbr-text {
  color: #fff0b0;
}
.cid-sHubtH0PWl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #323939;
}
.cid-sHubtH0PWl .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-sHubtH0PWl H2 {
  color: #fff0b0;
}
.cid-sHubtH0PWl .mbr-section-subtitle,
.cid-sHubtH0PWl .mbr-section-btn {
  color: #fff0b0;
}
.cid-sFZsAE1bjy .navbar {
  padding: .5rem 0;
  background: #323939;
  transition: none;
  min-height: 77px;
}
.cid-sFZsAE1bjy .navbar-dropdown.bg-color.transparent.opened {
  background: #323939;
}
.cid-sFZsAE1bjy a {
  font-style: normal;
}
.cid-sFZsAE1bjy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sFZsAE1bjy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sFZsAE1bjy .nav-item:focus,
.cid-sFZsAE1bjy .nav-link:focus {
  outline: none;
}
.cid-sFZsAE1bjy .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sFZsAE1bjy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sFZsAE1bjy .menu-logo {
  margin-right: auto;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu {
  background: #323939;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFZsAE1bjy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFZsAE1bjy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sFZsAE1bjy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sFZsAE1bjy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sFZsAE1bjy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sFZsAE1bjy button.navbar-toggler:focus {
  outline: none;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sFZsAE1bjy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sFZsAE1bjy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFZsAE1bjy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .btn {
  display: -webkit-flex;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sFZsAE1bjy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sFZsAE1bjy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-sFZsAE1bjy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sFZsAE1bjy .collapsed button.navbar-toggler {
  display: block;
}
.cid-sFZsAE1bjy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sFZsAE1bjy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sFZsAE1bjy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sFZsAE1bjy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-sFZsAE1bjy .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy img {
    height: 3.8rem !important;
  }
  .cid-sFZsAE1bjy .btn {
    display: -webkit-flex;
  }
  .cid-sFZsAE1bjy button.navbar-toggler {
    display: block;
  }
  .cid-sFZsAE1bjy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sFZsAE1bjy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sFZsAE1bjy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing,
  .cid-sFZsAE1bjy .navbar-collapse.show {
    display: block !important;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sFZsAE1bjy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sFZsAE1bjy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sFZsAE1bjy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sFZsAE1bjy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sFZsAE1bjy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sFZsAE1bjy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sFZsAE1bjy .nav-link:hover,
.cid-sFZsAE1bjy .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-tf4tCGaoil {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bgrnd-budha-4-2000x1268.jpeg");
}
.cid-tf4tCGaoil .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf4tCGaoil .row {
    text-align: center;
  }
  .cid-tf4tCGaoil .row > div {
    margin: auto;
  }
  .cid-tf4tCGaoil .social-row {
    justify-content: center;
  }
}
.cid-tf4tCGaoil .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf4tCGaoil .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf4tCGaoil .list {
    margin-bottom: 0rem;
  }
}
.cid-tf4tCGaoil .mbr-text {
  color: #fff0b0;
}
.cid-tf4tCGaoil .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf4tCGaoil .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf4tCGaoil div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf4tCGaoil H5 {
  color: #fff0b0;
}
.cid-tf4xJvlkDY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #323939;
}
.cid-tf4xJvlkDY .mbr-section-subtitle {
  color: #fff0b0;
}
