@import url(https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i);





body {
  font-family: Dosis;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Dosis', sans-serif;
  font-size: 3.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-2 {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  color: initial;
  border-radius: 0;
  font-weight: 600;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 2px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  font-weight: 600;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  font-weight: 600;
  letter-spacing: 2px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  font-weight: 600;
  letter-spacing: 2px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ffbc00 !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #b38400 !important;
  border-color: #b38400 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b38400 !important;
  border-color: #b38400 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #997100;
  color: #997100 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ffbc00;
  border-color: #ffbc00;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #215f88;
  color: #215f88 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #992700;
  color: #992700 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ff4100;
  border-color: #ff4100;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1b8d56;
  color: #1b8d56 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #36d88a;
  border-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffbc00 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #997100 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1b8d56 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #992700 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffbc00;
  border-color: #ffbc00;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #ffbc00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff2cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a {
  background: #444444;
  opacity: .5;
}
#scrollToTop a:hover {
  opacity: .7;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow {
  background-color: #444444;
  opacity: .5;
  transition: .3s;
}
.mbr-arrow a {
  color: #ffffff;
}
.mbr-arrow:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #ffbc00;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ffbc00;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ffbc00;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ffbc00;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffbc00;
}
/* Headers*/
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
#custom-html-1 {
  /* Type valid CSS here */
}
#custom-html-1 .my-image {
  width: 100%;
}
.cid-s1a625BFtv {
  overflow-x: hidden !important;
}
.cid-s1a625BFtv .mbr-section-title {
  color: #ffffff;
}
.cid-s1a625BFtv .mbr-section-title span {
  color: #ffbc00;
}
.cid-s1a625BFtv .mbr-text {
  color: #ffcd40;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-s1a625BFtv .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  background-image: url("../../../assets/images/background1.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  transform: translateZ(0);
}
.cid-s1a625BFtv .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-s1a625BFtv .mbr-overlay {
  z-index: 1;
}
.cid-s1a625BFtv .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.cid-s1a7CScUZN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-s1a7CScUZN .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
}
.cid-s1a7LwFY43 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s1a7LwFY43 .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-s1a7LwFY43 .input-main {
  width: 99.6%;
  margin-left: .1em;
}
.cid-s1a7LwFY43 .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-s1a7LwFY43 .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-s1a7LwFY43 .input-wrap input {
  border: 1px solid #ddd;
  padding-left: .5em;
  height: 2.5em;
  width: 96%;
}
.cid-s1a7LwFY43 .form-group textarea {
  height: 15em;
  background-color: white;
  padding: 0.5em 0.6em;
  width: 98%;
}
#custom-html-3q {
  /* Type valid CSS here */
}
#custom-html-3q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3q p {
  font-size: 60px;
  color: #777;
}
.cid-s1qnzCLfMw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s1qnzCLfMw a:link {
  text-decoration: none;
}
.cid-s1qnzCLfMw .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1qnzCLfMw .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1qnzCLfMw .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1qnzCLfMw .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1qnzCLfMw .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1qnzCLfMw .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1qnzCLfMw .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1qnzCLfMw .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1qnzCLfMw .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1qnzCLfMw .plan-title,
.cid-s1qnzCLfMw .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1qnzCLfMw .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1qnzCLfMw .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1qnzCLfMw .mbr-section-title span {
  color: #ffbc00;
}
.cid-tkJMHzzsCY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tkJMHzzsCY blockquote {
  color: #232323;
  font-size: inherit;
  font-style: normal;
}
.cid-tkJMHzzsCY .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #232323;
  opacity: .1;
}
.cid-tkJMHzzsCY .mbr-iconfont.right-top {
  right: -1rem;
  top: -1rem;
}
.cid-s1qdCWStoC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-s1qdCWStoC .mbr-text,
.cid-s1qdCWStoC .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s1qdCWStoC .mbr-section-title {
  margin-left: -0.2rem;
}
.cid-s1qdCWStoC .mbr-section-title span {
  color: #ffbc00;
}
.cid-s1qdCWStoC .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-s1qdCWStoC .mbr-section-title {
    margin-left: -0.8rem;
  }
}
.cid-s1qdFKOefo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s1qdFKOefo .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s1qdFKOefo .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s1qdFKOefo .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s1qdFKOefo .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s1qdFKOefo .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s1qdFKOefo .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-s1qdFKOefo .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-s1qdFKOefo .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-s1qdFKOefo .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-s1qdFKOefo .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-s1qdFKOefo .mbr-gallery-filter ul {
  display: block;
}
.cid-s1qdFKOefo .mbr-gallery-filter ul li {
  position: relative;
}
.cid-s1qdFKOefo .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-s1qdFKOefo .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-s1qdFKOefo .mbr-gallery-filter li.active::after,
.cid-s1qdFKOefo .mbr-gallery-filter li:hover::after {
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-s1qdFKOefo .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-s1qdFKOefo .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-s1qdFKOefo .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-s1qdFKOefo .icon-focus:before {
  content: '\e95e';
}
.cid-s1qdFKOefo .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-s1qdFKOefo .mbr-section-title {
  margin: 0;
}
.cid-s1qdFKOefo .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-s1qdFKOefo .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-tSnSUxhXg1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tSnSUxhXg1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tSnSUxhXg1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSnSUxhXg1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSnSUxhXg1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tSnSUxhXg1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tSnSUxhXg1 .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-tSnSUxhXg1 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tSnSUxhXg1 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tSnSUxhXg1 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tSnSUxhXg1 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tSnSUxhXg1 .mbr-gallery-filter ul {
  display: block;
}
.cid-tSnSUxhXg1 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tSnSUxhXg1 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tSnSUxhXg1 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tSnSUxhXg1 .mbr-gallery-filter li.active::after,
.cid-tSnSUxhXg1 .mbr-gallery-filter li:hover::after {
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tSnSUxhXg1 .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-tSnSUxhXg1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-tSnSUxhXg1 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tSnSUxhXg1 .icon-focus:before {
  content: '\e95e';
}
.cid-tSnSUxhXg1 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tSnSUxhXg1 .mbr-section-title {
  margin: 0;
}
.cid-tSnSUxhXg1 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tSnSUxhXg1 .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
#custom-html-3v {
  /* Type valid CSS here */
}
#custom-html-3v div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3v p {
  font-size: 60px;
  color: #777;
}
.cid-un7jS6pRN3 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-dd {
  /* Type valid CSS here */
}
#custom-html-dd div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-dd p {
  font-size: 60px;
  color: #777;
}
.cid-s1qSH5SHth {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qSH5SHth a:link {
  text-decoration: none;
}
.cid-s1qSH5SHth .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1qSH5SHth .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1qSH5SHth .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1qSH5SHth .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1qSH5SHth .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1qSH5SHth .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1qSH5SHth .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1qSH5SHth .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1qSH5SHth .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1qSH5SHth .plan-title,
.cid-s1qSH5SHth .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1qSH5SHth .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1qSH5SHth .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1qSH5SHth .mbr-section-title span {
  color: #ffbc00;
}
#custom-html-4n {
  /* Type valid CSS here */
}
#custom-html-4n div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4n p {
  font-size: 60px;
  color: #777;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-s1pW0jOr0W {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-s1pW0jOr0W .row {
  margin-left: -5rem;
}
.cid-s1pW0jOr0W .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-s1pW0jOr0W .mbr-section-title,
.cid-s1pW0jOr0W .mbr-section-subtitle {
  color: #232323;
}
.cid-s1pW0jOr0W .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-s1pW0jOr0W .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-s1pW0jOr0W .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-s1pW0jOr0W .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s1pW0jOr0W .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
#custom-html-k {
  /* Type valid CSS here */
}
#custom-html-k div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-k p {
  font-size: 60px;
  color: #777;
}
#custom-html-3z {
  /* Type valid CSS here */
}
#custom-html-3z div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3z p {
  font-size: 60px;
  color: #777;
}
.cid-uPCZfJ9HI0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-uPCZfJ9HI0 a:link {
  text-decoration: none;
}
.cid-uPCZfJ9HI0 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uPCZfJ9HI0 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-uPCZfJ9HI0 .inner-text {
  line-height: 3em;
}
.cid-uPCZfJ9HI0 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uPCZfJ9HI0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPCZfJ9HI0 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPCZfJ9HI0 .content-text,
.cid-uPCZfJ9HI0 .inner-text {
  color: #c1c1c1;
}
.cid-s1qnGvjNgY {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qnGvjNgY a:link {
  text-decoration: none;
}
.cid-s1qnGvjNgY .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1qnGvjNgY .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1qnGvjNgY .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1qnGvjNgY .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1qnGvjNgY .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1qnGvjNgY .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1qnGvjNgY .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1qnGvjNgY .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1qnGvjNgY .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1qnGvjNgY .plan-title,
.cid-s1qnGvjNgY .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1qnGvjNgY .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1qnGvjNgY .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1qnGvjNgY .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-s2LNt7g1aF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2NHKCDxDu {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s2NHKCDxDu .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
}
.cid-s2NHKCDxDu .card {
  margin-bottom: 2rem;
}
.cid-s2NHKCDxDu .card-box {
  word-break: break-word;
  padding-top: 2rem;
}
.cid-s2NHKCDxDu .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-s2NHKCDxDu .btn {
  margin: .3rem;
}
.cid-s2NHKCDxDu .mbr-section-title {
  margin: 0;
}
.cid-s2NHKCDxDu .card-underline,
.cid-s2NHKCDxDu .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-s2NHKCDxDu .card-underline .line,
.cid-s2NHKCDxDu .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-s2NHKCDxDu .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-s2NHKCDxDu .card-underline .line {
  background: #ffbc00;
}
@media (max-width: 767px) {
  .cid-s2NHKCDxDu .row.blog-block {
    padding: 0 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s2NHKCDxDu .row-content {
    min-width: 100%;
  }
  .cid-s2NHKCDxDu .card {
    display: block;
  }
}
.cid-sxMbcmJnHI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s2O42C9r7N {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-s2O42C9r7N .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-s2O42C9r7N .mbr-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-s2O42C9r7N .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-s2O42C9r7N .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
#custom-html-3w {
  /* Type valid CSS here */
}
#custom-html-3w div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3w p {
  font-size: 60px;
  color: #777;
}
.cid-un7kB1b6fj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-dh {
  /* Type valid CSS here */
}
#custom-html-dh div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-dh p {
  font-size: 60px;
  color: #777;
}
.cid-s1qldpVNIM {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qldpVNIM a:link {
  text-decoration: none;
}
.cid-s1qldpVNIM .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1qldpVNIM .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1qldpVNIM .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1qldpVNIM .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1qldpVNIM .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1qldpVNIM .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1qldpVNIM .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1qldpVNIM .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1qldpVNIM .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1qldpVNIM .plan-title,
.cid-s1qldpVNIM .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1qldpVNIM .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1qldpVNIM .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1qldpVNIM .mbr-section-title span {
  color: #ffbc00;
}
#custom-html-4o {
  /* Type valid CSS here */
}
#custom-html-4o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4o p {
  font-size: 60px;
  color: #777;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uPCuAcPHiZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qo2OIDj6 {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qo2OIDj6 .mbr-title {
  color: #000000;
}
#custom-html-41 {
  /* Type valid CSS here */
}
#custom-html-41 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-41 p {
  font-size: 60px;
  color: #777;
}
.cid-s1qo2P2U7Q {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qo2P2U7Q a:link {
  text-decoration: none;
}
.cid-s1qo2P2U7Q .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1qo2P2U7Q .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1qo2P2U7Q .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1qo2P2U7Q .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1qo2P2U7Q .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1qo2P2U7Q .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1qo2P2U7Q .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1qo2P2U7Q .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1qo2P2U7Q .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1qo2P2U7Q .plan-title,
.cid-s1qo2P2U7Q .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1qo2P2U7Q .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1qo2P2U7Q .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1qo2P2U7Q .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uPCyJhmWGX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rAgokULt9T {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rAgokULt9T .mbr-title {
  color: #000000;
}
#custom-html-40 {
  /* Type valid CSS here */
}
#custom-html-40 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-40 p {
  font-size: 60px;
  color: #777;
}
.cid-s1qnIdqwZ5 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qnIdqwZ5 a:link {
  text-decoration: none;
}
.cid-s1qnIdqwZ5 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1qnIdqwZ5 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1qnIdqwZ5 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1qnIdqwZ5 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1qnIdqwZ5 .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1qnIdqwZ5 .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1qnIdqwZ5 .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1qnIdqwZ5 .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1qnIdqwZ5 .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1qnIdqwZ5 .plan-title,
.cid-s1qnIdqwZ5 .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1qnIdqwZ5 .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1qnIdqwZ5 .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1qnIdqwZ5 .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tSoaSsCNQr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tSoaSsCNQr .mbr-section-subtitle {
  color: #767676;
}
.cid-s1qYkeQHS3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s1qYkeQHS3 .mbr-section-subtitle {
  color: #767676;
}
#custom-html-19 {
  /* Type valid CSS here */
}
#custom-html-19 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-19 p {
  font-size: 60px;
  color: #777;
}
#custom-html-3s {
  /* Type valid CSS here */
}
#custom-html-3s div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3s p {
  font-size: 60px;
  color: #777;
}
.cid-s1qYsI7YzU {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qYsI7YzU a:link {
  text-decoration: none;
}
.cid-s1qYsI7YzU .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1qYsI7YzU .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1qYsI7YzU .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1qYsI7YzU .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1qYsI7YzU .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1qYsI7YzU .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1qYsI7YzU .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1qYsI7YzU .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1qYsI7YzU .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1qYsI7YzU .plan-title,
.cid-s1qYsI7YzU .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1qYsI7YzU .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1qYsI7YzU .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1qYsI7YzU .mbr-section-title span {
  color: #ffbc00;
}
#custom-html-4j {
  /* Type valid CSS here */
}
#custom-html-4j div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4j p {
  font-size: 60px;
  color: #777;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-s1vhDVPTlH {
  background-image: url("../../../assets/images/mbr-1920x1263.jpg");
}
.cid-s1vhDVPTlH .mbr-text,
.cid-s1vhDVPTlH .typed-text,
.cid-s1vhDVPTlH .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s1vhDVPTlH .btn {
  margin-left: 4px !important;
}
.cid-s1vhDVPTlH .animated-element {
  color: #ffbc00;
}
.cid-s1vhDVPTlH .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#custom-html-b8 {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-b8 body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-b8 .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-b8 .col-12,
#custom-html-b8 .col-sm-6,
#custom-html-b8 .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b8 .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-b8 .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b8 .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b8 .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b8 .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-b8 .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-b8 .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b8 .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-b8 .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-b8 .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-s1viMdRwsG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umX58SolPX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX58SolPX .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX58SolPX .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX58SolPX .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX58SolPX .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX58SolPX .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
#custom-html-3y {
  /* Type valid CSS here */
}
#custom-html-3y div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3y p {
  font-size: 60px;
  color: #777;
}
.cid-un7l2ZA2id {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-dj {
  /* Type valid CSS here */
}
#custom-html-dj div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-dj p {
  font-size: 60px;
  color: #777;
}
.cid-s1vhDWILB3 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1vhDWILB3 a:link {
  text-decoration: none;
}
.cid-s1vhDWILB3 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1vhDWILB3 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1vhDWILB3 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1vhDWILB3 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1vhDWILB3 .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1vhDWILB3 .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1vhDWILB3 .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1vhDWILB3 .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1vhDWILB3 .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1vhDWILB3 .plan-title,
.cid-s1vhDWILB3 .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1vhDWILB3 .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1vhDWILB3 .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1vhDWILB3 .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tSoaI0u28x {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tSoaI0u28x .mbr-section-subtitle {
  color: #767676;
}
.cid-s1vkk5XdHu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s1vkk5XdHu .mbr-section-subtitle {
  color: #767676;
}
#custom-html-84 {
  /* Type valid CSS here */
}
#custom-html-84 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-84 p {
  font-size: 60px;
  color: #777;
}
.cid-s1vkqknJS3 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1vkqknJS3 a:link {
  text-decoration: none;
}
.cid-s1vkqknJS3 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1vkqknJS3 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1vkqknJS3 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1vkqknJS3 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1vkqknJS3 .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1vkqknJS3 .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1vkqknJS3 .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1vkqknJS3 .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1vkqknJS3 .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1vkqknJS3 .plan-title,
.cid-s1vkqknJS3 .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1vkqknJS3 .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1vkqknJS3 .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1vkqknJS3 .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tSoaX0tiby {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tSoaX0tiby .mbr-section-subtitle {
  color: #767676;
}
.cid-s2JW8nD0UD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s2JW8nD0UD .mbr-section-subtitle {
  color: #767676;
}
#custom-html-2n {
  /* Type valid CSS here */
}
#custom-html-2n div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2n p {
  font-size: 60px;
  color: #777;
}
#custom-html-3u {
  /* Type valid CSS here */
}
#custom-html-3u div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3u p {
  font-size: 60px;
  color: #777;
}
.cid-s2JW8ony4M {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2JW8ony4M a:link {
  text-decoration: none;
}
.cid-s2JW8ony4M .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s2JW8ony4M .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s2JW8ony4M .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s2JW8ony4M .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s2JW8ony4M .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s2JW8ony4M .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s2JW8ony4M .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s2JW8ony4M .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s2JW8ony4M .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s2JW8ony4M .plan-title,
.cid-s2JW8ony4M .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s2JW8ony4M .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s2JW8ony4M .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s2JW8ony4M .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-s2LNlepK10 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s2LNlepK10 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s2LNlepK10 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s2LNlepK10 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s2LNlepK10 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s2LNlepK10 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s2LNlepK10 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s2LNlepK10 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-s2LNlepK10 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-s2LNlepK10 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-s2LNlepK10 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-s2LNlepK10 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-s2LNlepK10 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-s2LNlepK10 .mbr-gallery-filter ul {
  display: block;
}
.cid-s2LNlepK10 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-s2LNlepK10 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-s2LNlepK10 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-s2LNlepK10 .mbr-gallery-filter li.active::after,
.cid-s2LNlepK10 .mbr-gallery-filter li:hover::after {
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-s2LNlepK10 .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s2LNlepK10 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2LNlepK10 .icon-focus:before {
  content: '\e95e';
}
.cid-s2LNlepK10 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-s2LNlepK10 .mbr-section-title {
  margin: 0;
}
.cid-s2LNlepK10 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-s2LNlepK10 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
#custom-html-4h {
  /* Type valid CSS here */
}
#custom-html-4h div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4h p {
  font-size: 60px;
  color: #777;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tSoaU50X9E {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tSoaU50X9E .mbr-section-subtitle {
  color: #767676;
}
.cid-s1qStkkp7B {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s1qStkkp7B .mbr-section-subtitle {
  color: #767676;
}
#custom-html-13 {
  /* Type valid CSS here */
}
#custom-html-13 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-13 p {
  font-size: 60px;
  color: #777;
}
#custom-html-3t {
  /* Type valid CSS here */
}
#custom-html-3t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3t p {
  font-size: 60px;
  color: #777;
}
.cid-s1qSr0MM0V {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qSr0MM0V a:link {
  text-decoration: none;
}
.cid-s1qSr0MM0V .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1qSr0MM0V .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1qSr0MM0V .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1qSr0MM0V .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1qSr0MM0V .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1qSr0MM0V .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1qSr0MM0V .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1qSr0MM0V .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1qSr0MM0V .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1qSr0MM0V .plan-title,
.cid-s1qSr0MM0V .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1qSr0MM0V .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1qSr0MM0V .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1qSr0MM0V .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-s1qoovgkLU {
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-s1qoovgkLU .mbr-text,
.cid-s1qoovgkLU .typed-text,
.cid-s1qoovgkLU .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s1qoovgkLU .btn {
  margin-left: 4px !important;
}
.cid-s1qoovgkLU .animated-element {
  color: #ffbc00;
}
.cid-s1qoovgkLU .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tSobIM9p8D {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSobIM9p8D .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSobIM9p8D .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSobIM9p8D .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSobIM9p8D .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSobIM9p8D .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSobIM9p8D .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSobIM9p8D .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSobIM9p8D .mbr-card-text {
  margin: 0;
}
.cid-tSobIM9p8D .mbr-title {
  text-align: left;
}
.cid-tSobIM9p8D .mbr-card-text,
.cid-tSobIM9p8D .mbr-section-btn {
  text-align: left;
}
.cid-tSnRlPC2Nc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tSnL2DQjsC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnL2DQjsC .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnL2DQjsC .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnL2DQjsC .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnL2DQjsC .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnL2DQjsC .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnL2DQjsC .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnL2DQjsC .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnL2DQjsC .mbr-card-text {
  margin: 0;
}
.cid-tSnL2DQjsC .mbr-title {
  text-align: left;
}
.cid-tSnL2DQjsC .mbr-card-text,
.cid-tSnL2DQjsC .mbr-section-btn {
  text-align: left;
}
.cid-tSnLrLTRCR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnLrLTRCR .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnLrLTRCR .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnLrLTRCR .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnLrLTRCR .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnLrLTRCR .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnLrLTRCR .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnLrLTRCR .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnLrLTRCR .mbr-card-text {
  margin: 0;
}
.cid-tSnLrLTRCR .mbr-title {
  text-align: left;
}
.cid-tSnLrLTRCR .mbr-card-text,
.cid-tSnLrLTRCR .mbr-section-btn {
  text-align: left;
}
.cid-tSnLINwItm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnLINwItm .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnLINwItm .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnLINwItm .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnLINwItm .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnLINwItm .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnLINwItm .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnLINwItm .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnLINwItm .mbr-card-text {
  margin: 0;
}
.cid-tSnLINwItm .mbr-title {
  text-align: left;
}
.cid-tSnLINwItm .mbr-card-text,
.cid-tSnLINwItm .mbr-section-btn {
  text-align: left;
}
.cid-tSnLRiwOuI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnLRiwOuI .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnLRiwOuI .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnLRiwOuI .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnLRiwOuI .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnLRiwOuI .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnLRiwOuI .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnLRiwOuI .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnLRiwOuI .mbr-card-text {
  margin: 0;
}
.cid-tSnLRiwOuI .mbr-title {
  text-align: left;
}
.cid-tSnLRiwOuI .mbr-card-text,
.cid-tSnLRiwOuI .mbr-section-btn {
  text-align: left;
}
.cid-tSnM15S2Sq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnM15S2Sq .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnM15S2Sq .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnM15S2Sq .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnM15S2Sq .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnM15S2Sq .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnM15S2Sq .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnM15S2Sq .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnM15S2Sq .mbr-card-text {
  margin: 0;
}
.cid-tSnM15S2Sq .mbr-title {
  text-align: left;
}
.cid-tSnM15S2Sq .mbr-card-text,
.cid-tSnM15S2Sq .mbr-section-btn {
  text-align: left;
}
.cid-tSnMe2SKWP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnMe2SKWP .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnMe2SKWP .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnMe2SKWP .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnMe2SKWP .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnMe2SKWP .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnMe2SKWP .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnMe2SKWP .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnMe2SKWP .mbr-card-text {
  margin: 0;
}
.cid-tSnMe2SKWP .mbr-title {
  text-align: left;
}
.cid-tSnMe2SKWP .mbr-card-text,
.cid-tSnMe2SKWP .mbr-section-btn {
  text-align: left;
}
.cid-tSnMzoZ3rj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnMzoZ3rj .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnMzoZ3rj .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnMzoZ3rj .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnMzoZ3rj .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnMzoZ3rj .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnMzoZ3rj .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnMzoZ3rj .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnMzoZ3rj .mbr-card-text {
  margin: 0;
}
.cid-tSnMzoZ3rj .mbr-title {
  text-align: left;
}
.cid-tSnMzoZ3rj .mbr-card-text,
.cid-tSnMzoZ3rj .mbr-section-btn {
  text-align: left;
}
.cid-tSnPyjBzSo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnPyjBzSo .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnPyjBzSo .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnPyjBzSo .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnPyjBzSo .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnPyjBzSo .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnPyjBzSo .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnPyjBzSo .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnPyjBzSo .mbr-card-text {
  margin: 0;
}
.cid-tSnPyjBzSo .mbr-title {
  text-align: left;
}
.cid-tSnPyjBzSo .mbr-card-text,
.cid-tSnPyjBzSo .mbr-section-btn {
  text-align: left;
}
.cid-tSnPHBUadH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnPHBUadH .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnPHBUadH .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnPHBUadH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnPHBUadH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnPHBUadH .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnPHBUadH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnPHBUadH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnPHBUadH .mbr-card-text {
  margin: 0;
}
.cid-tSnPHBUadH .mbr-title {
  text-align: left;
}
.cid-tSnPHBUadH .mbr-card-text,
.cid-tSnPHBUadH .mbr-section-btn {
  text-align: left;
}
.cid-tSnPSY0ipc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnPSY0ipc .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnPSY0ipc .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnPSY0ipc .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnPSY0ipc .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnPSY0ipc .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnPSY0ipc .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnPSY0ipc .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnPSY0ipc .mbr-card-text {
  margin: 0;
}
.cid-tSnPSY0ipc .mbr-title {
  text-align: left;
}
.cid-tSnPSY0ipc .mbr-card-text,
.cid-tSnPSY0ipc .mbr-section-btn {
  text-align: left;
}
.cid-tSnQ0JFQGa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnQ0JFQGa .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnQ0JFQGa .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnQ0JFQGa .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnQ0JFQGa .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnQ0JFQGa .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnQ0JFQGa .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnQ0JFQGa .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnQ0JFQGa .mbr-card-text {
  margin: 0;
}
.cid-tSnQ0JFQGa .mbr-title {
  text-align: left;
}
.cid-tSnQ0JFQGa .mbr-card-text,
.cid-tSnQ0JFQGa .mbr-section-btn {
  text-align: left;
}
.cid-tSnQ9z7bJq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSnQ9z7bJq .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSnQ9z7bJq .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tSnQ9z7bJq .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tSnQ9z7bJq .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSnQ9z7bJq .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-tSnQ9z7bJq .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSnQ9z7bJq .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tSnQ9z7bJq .mbr-card-text {
  margin: 0;
}
.cid-tSnQ9z7bJq .mbr-title {
  text-align: left;
}
.cid-tSnQ9z7bJq .mbr-card-text,
.cid-tSnQ9z7bJq .mbr-section-btn {
  text-align: left;
}
.cid-umhINHwZCV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhINHwZCV .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhINHwZCV .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhINHwZCV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhINHwZCV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhINHwZCV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhINHwZCV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhINHwZCV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhINHwZCV .mbr-card-text {
  margin: 0;
}
.cid-umhINHwZCV .mbr-title {
  text-align: left;
}
.cid-umhINHwZCV .mbr-card-text,
.cid-umhINHwZCV .mbr-section-btn {
  text-align: left;
}
.cid-umhJkd0ShS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhJkd0ShS .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhJkd0ShS .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhJkd0ShS .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhJkd0ShS .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhJkd0ShS .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhJkd0ShS .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhJkd0ShS .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhJkd0ShS .mbr-card-text {
  margin: 0;
}
.cid-umhJkd0ShS .mbr-title {
  text-align: left;
}
.cid-umhJkd0ShS .mbr-card-text,
.cid-umhJkd0ShS .mbr-section-btn {
  text-align: left;
}
.cid-umhJGRYz7y {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhJGRYz7y .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhJGRYz7y .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhJGRYz7y .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhJGRYz7y .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhJGRYz7y .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhJGRYz7y .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhJGRYz7y .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhJGRYz7y .mbr-card-text {
  margin: 0;
}
.cid-umhJGRYz7y .mbr-title {
  text-align: left;
}
.cid-umhJGRYz7y .mbr-card-text,
.cid-umhJGRYz7y .mbr-section-btn {
  text-align: left;
}
.cid-umhKaERIkD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhKaERIkD .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhKaERIkD .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhKaERIkD .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhKaERIkD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhKaERIkD .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhKaERIkD .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhKaERIkD .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhKaERIkD .mbr-card-text {
  margin: 0;
}
.cid-umhKaERIkD .mbr-title {
  text-align: left;
}
.cid-umhKaERIkD .mbr-card-text,
.cid-umhKaERIkD .mbr-section-btn {
  text-align: left;
}
.cid-umhKvTcrEK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhKvTcrEK .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhKvTcrEK .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhKvTcrEK .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhKvTcrEK .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhKvTcrEK .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhKvTcrEK .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhKvTcrEK .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhKvTcrEK .mbr-card-text {
  margin: 0;
}
.cid-umhKvTcrEK .mbr-title {
  text-align: left;
}
.cid-umhKvTcrEK .mbr-card-text,
.cid-umhKvTcrEK .mbr-section-btn {
  text-align: left;
}
.cid-umhKK0eXOK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhKK0eXOK .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhKK0eXOK .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhKK0eXOK .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhKK0eXOK .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhKK0eXOK .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhKK0eXOK .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhKK0eXOK .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhKK0eXOK .mbr-card-text {
  margin: 0;
}
.cid-umhKK0eXOK .mbr-title {
  text-align: left;
}
.cid-umhKK0eXOK .mbr-card-text,
.cid-umhKK0eXOK .mbr-section-btn {
  text-align: left;
}
.cid-umhLaXQnA5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhLaXQnA5 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhLaXQnA5 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhLaXQnA5 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhLaXQnA5 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhLaXQnA5 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhLaXQnA5 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhLaXQnA5 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhLaXQnA5 .mbr-card-text {
  margin: 0;
}
.cid-umhLaXQnA5 .mbr-title {
  text-align: left;
}
.cid-umhLaXQnA5 .mbr-card-text,
.cid-umhLaXQnA5 .mbr-section-btn {
  text-align: left;
}
.cid-umhLpxLNCq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhLpxLNCq .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhLpxLNCq .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhLpxLNCq .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhLpxLNCq .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhLpxLNCq .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhLpxLNCq .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhLpxLNCq .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhLpxLNCq .mbr-card-text {
  margin: 0;
}
.cid-umhLpxLNCq .mbr-title {
  text-align: left;
}
.cid-umhLpxLNCq .mbr-card-text,
.cid-umhLpxLNCq .mbr-section-btn {
  text-align: left;
}
.cid-umhLNjrIsg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhLNjrIsg .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhLNjrIsg .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhLNjrIsg .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhLNjrIsg .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhLNjrIsg .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhLNjrIsg .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhLNjrIsg .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhLNjrIsg .mbr-card-text {
  margin: 0;
}
.cid-umhLNjrIsg .mbr-title {
  text-align: left;
}
.cid-umhLNjrIsg .mbr-card-text,
.cid-umhLNjrIsg .mbr-section-btn {
  text-align: left;
}
.cid-umhM9WnxsD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhM9WnxsD .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhM9WnxsD .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhM9WnxsD .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhM9WnxsD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhM9WnxsD .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhM9WnxsD .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhM9WnxsD .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhM9WnxsD .mbr-card-text {
  margin: 0;
}
.cid-umhM9WnxsD .mbr-title {
  text-align: left;
}
.cid-umhM9WnxsD .mbr-card-text,
.cid-umhM9WnxsD .mbr-section-btn {
  text-align: left;
}
.cid-umhMaHyuVD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhMaHyuVD .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhMaHyuVD .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhMaHyuVD .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhMaHyuVD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhMaHyuVD .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhMaHyuVD .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhMaHyuVD .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhMaHyuVD .mbr-card-text {
  margin: 0;
}
.cid-umhMaHyuVD .mbr-title {
  text-align: left;
}
.cid-umhMaHyuVD .mbr-card-text,
.cid-umhMaHyuVD .mbr-section-btn {
  text-align: left;
}
.cid-umhMB8thWo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhMB8thWo .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhMB8thWo .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhMB8thWo .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhMB8thWo .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhMB8thWo .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhMB8thWo .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhMB8thWo .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhMB8thWo .mbr-card-text {
  margin: 0;
}
.cid-umhMB8thWo .mbr-title {
  text-align: left;
}
.cid-umhMB8thWo .mbr-card-text,
.cid-umhMB8thWo .mbr-section-btn {
  text-align: left;
}
.cid-umhMZfvmJA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhMZfvmJA .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhMZfvmJA .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhMZfvmJA .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhMZfvmJA .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhMZfvmJA .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhMZfvmJA .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhMZfvmJA .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhMZfvmJA .mbr-card-text {
  margin: 0;
}
.cid-umhMZfvmJA .mbr-title {
  text-align: left;
}
.cid-umhMZfvmJA .mbr-card-text,
.cid-umhMZfvmJA .mbr-section-btn {
  text-align: left;
}
.cid-umhNyef322 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umhNyef322 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhNyef322 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umhNyef322 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umhNyef322 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umhNyef322 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umhNyef322 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umhNyef322 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umhNyef322 .mbr-card-text {
  margin: 0;
}
.cid-umhNyef322 .mbr-title {
  text-align: left;
}
.cid-umhNyef322 .mbr-card-text,
.cid-umhNyef322 .mbr-section-btn {
  text-align: left;
}
.cid-umX4t08ULt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX4t08ULt .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX4t08ULt .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX4t08ULt .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX4t08ULt .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX4t08ULt .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-uPCN6HtECH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-ed {
  /* Type valid CSS here */
}
#custom-html-ed div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ed p {
  font-size: 60px;
  color: #777;
}
#custom-html-3x {
  /* Type valid CSS here */
}
#custom-html-3x div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3x p {
  font-size: 60px;
  color: #777;
}
.cid-s1qqG2hRzm {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1qqG2hRzm a:link {
  text-decoration: none;
}
.cid-s1qqG2hRzm .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s1qqG2hRzm .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s1qqG2hRzm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s1qqG2hRzm .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s1qqG2hRzm .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s1qqG2hRzm .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s1qqG2hRzm .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s1qqG2hRzm .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s1qqG2hRzm .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s1qqG2hRzm .plan-title,
.cid-s1qqG2hRzm .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s1qqG2hRzm .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s1qqG2hRzm .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s1qqG2hRzm .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tSocN59pRo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tSocN59pRo .mbr-section-subtitle {
  color: #767676;
}
.cid-tSodQoNLS0 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSodQoNLS0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tSocXI98NX {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tSocXI98NX .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #232323;
}
.cid-tSocXI98NX .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-tSocXI98NX .price-tage {
  background: #808080 none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-tSocXI98NX .price-tage > p {
  letter-spacing: 2px;
}
.cid-tSocXI98NX .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-tSocXI98NX .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em 1em;
}
.cid-tSocXI98NX .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-tSocXI98NX .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-tSocXI98NX .costs {
  color: #ffffff;
}
.cid-tSocXI98NX .costs-title {
  color: #ffffff;
}
#custom-html-4c {
  /* Type valid CSS here */
}
#custom-html-4c div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4c p {
  font-size: 60px;
  color: #777;
}
.cid-tSocN6KDJ3 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tSocN6KDJ3 a:link {
  text-decoration: none;
}
.cid-tSocN6KDJ3 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tSocN6KDJ3 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-tSocN6KDJ3 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tSocN6KDJ3 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tSocN6KDJ3 .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-tSocN6KDJ3 .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-tSocN6KDJ3 .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-tSocN6KDJ3 .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-tSocN6KDJ3 .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-tSocN6KDJ3 .plan-title,
.cid-tSocN6KDJ3 .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-tSocN6KDJ3 .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-tSocN6KDJ3 .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-tSocN6KDJ3 .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umyW1vIF3J {
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-umyW1vIF3J .mbr-text,
.cid-umyW1vIF3J .typed-text,
.cid-umyW1vIF3J .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umyW1vIF3J .btn {
  margin-left: 4px !important;
}
.cid-umyW1vIF3J .animated-element {
  color: #ffbc00;
}
.cid-umyW1vIF3J .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#custom-html-b5 {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-b5 body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-b5 .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-b5 .col-12,
#custom-html-b5 .col-sm-6,
#custom-html-b5 .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b5 .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-b5 .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b5 .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b5 .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b5 .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-b5 .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-b5 .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b5 .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-b5 .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-b5 .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-umyW1xb65e {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umX5hHuM3w {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX5hHuM3w .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX5hHuM3w .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX5hHuM3w .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX5hHuM3w .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX5hHuM3w .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un7ljFk2SA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-dn {
  /* Type valid CSS here */
}
#custom-html-dn div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-dn p {
  font-size: 60px;
  color: #777;
}
#custom-html-5m {
  /* Type valid CSS here */
}
#custom-html-5m div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5m p {
  font-size: 60px;
  color: #777;
}
.cid-umyW1y4UwE {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umyW1y4UwE a:link {
  text-decoration: none;
}
.cid-umyW1y4UwE .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umyW1y4UwE .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umyW1y4UwE .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umyW1y4UwE .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umyW1y4UwE .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umyW1y4UwE .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umyW1y4UwE .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umyW1y4UwE .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umyW1y4UwE .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umyW1y4UwE .plan-title,
.cid-umyW1y4UwE .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umyW1y4UwE .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umyW1y4UwE .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umyW1y4UwE .mbr-section-title span {
  color: #ffbc00;
}
#custom-html-5o {
  /* Type valid CSS here */
}
#custom-html-5o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5o p {
  font-size: 60px;
  color: #777;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umX0gH6CUs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umWZtuia1M {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-umWZtuia1M .mbr-text,
.cid-umWZtuia1M .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umWZtuia1M .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-umWZtuia1M .mbr-section-title span {
  color: #ffbc00;
}
.cid-umWZtuia1M .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-umWZtuia1M .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-b6 {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-b6 body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-b6 .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-b6 .col-12,
#custom-html-b6 .col-sm-6,
#custom-html-b6 .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b6 .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-b6 .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b6 .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b6 .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b6 .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-b6 .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-b6 .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b6 .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-b6 .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-b6 .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-umyX4CzoZZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umX5lyJVt1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX5lyJVt1 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX5lyJVt1 .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX5lyJVt1 .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX5lyJVt1 .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX5lyJVt1 .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un7lrIQwRP {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-5t {
  /* Type valid CSS here */
}
#custom-html-5t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5t p {
  font-size: 60px;
  color: #777;
}
.cid-umyX4Dg3N4 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umyX4Dg3N4 a:link {
  text-decoration: none;
}
.cid-umyX4Dg3N4 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umyX4Dg3N4 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umyX4Dg3N4 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umyX4Dg3N4 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umyX4Dg3N4 .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umyX4Dg3N4 .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umyX4Dg3N4 .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umyX4Dg3N4 .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umyX4Dg3N4 .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umyX4Dg3N4 .plan-title,
.cid-umyX4Dg3N4 .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umyX4Dg3N4 .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umyX4Dg3N4 .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umyX4Dg3N4 .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umX1ohukFK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umX1oVg8Zs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-2-1920x1281.jpg");
}
.cid-umX1oVg8Zs .mbr-text,
.cid-umX1oVg8Zs .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umX1oVg8Zs .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-umX1oVg8Zs .mbr-section-title span {
  color: #ffbc00;
}
.cid-umX1oVg8Zs .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-umX1oVg8Zs .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-bd .course-selection {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#custom-html-bd .course-step {
  flex: 1 1 200px;
  margin: 10px;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#custom-html-bd .course-step:hover {
  transform: translateY(-10px);
  background-color: #e9ecef;
}
#custom-html-bd .course-step h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}
#custom-html-bd .course-step p {
  font-size: 1em;
  color: #6c757d;
}
#custom-html-bd .course-step a {
  color: #28a745;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}
#custom-html-bd .course-step a:hover {
  color: #155724;
}
#custom-html-b9 {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-b9 body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-b9 .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-b9 .col-12,
#custom-html-b9 .col-sm-6,
#custom-html-b9 .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b9 .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-b9 .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b9 .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b9 .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b9 .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-b9 .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-b9 .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b9 .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-b9 .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-b9 .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-umyYgnI4v6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umX5r3GKJo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX5r3GKJo .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX5r3GKJo .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX5r3GKJo .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX5r3GKJo .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX5r3GKJo .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un7lxleBug {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-dr {
  /* Type valid CSS here */
}
#custom-html-dr div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-dr p {
  font-size: 60px;
  color: #777;
}
#custom-html-60 {
  /* Type valid CSS here */
}
#custom-html-60 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-60 p {
  font-size: 60px;
  color: #777;
}
.cid-umyYgoktLE {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umyYgoktLE a:link {
  text-decoration: none;
}
.cid-umyYgoktLE .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umyYgoktLE .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umyYgoktLE .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umyYgoktLE .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umyYgoktLE .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umyYgoktLE .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umyYgoktLE .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umyYgoktLE .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umyYgoktLE .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umyYgoktLE .plan-title,
.cid-umyYgoktLE .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umyYgoktLE .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umyYgoktLE .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umyYgoktLE .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umX0LkBa0i {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umX0LWZEch {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg");
}
.cid-umX0LWZEch .mbr-text,
.cid-umX0LWZEch .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umX0LWZEch .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-umX0LWZEch .mbr-section-title span {
  color: #ffbc00;
}
.cid-umX0LWZEch .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-umX0LWZEch .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-bb .course-selection {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#custom-html-bb .course-step {
  flex: 1 1 200px;
  margin: 10px;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#custom-html-bb .course-step:hover {
  transform: translateY(-10px);
  background-color: #e9ecef;
}
#custom-html-bb .course-step h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}
#custom-html-bb .course-step p {
  font-size: 1em;
  color: #6c757d;
}
#custom-html-bb .course-step a {
  color: #28a745;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}
#custom-html-bb .course-step a:hover {
  color: #155724;
}
#custom-html-ba {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-ba body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-ba .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-ba .col-12,
#custom-html-ba .col-sm-6,
#custom-html-ba .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-ba .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-ba .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-ba .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-ba .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-ba .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-ba .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-ba .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-ba .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-ba .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-ba .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-umyZ2CdlHB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umX5veT7t2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX5veT7t2 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX5veT7t2 .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX5veT7t2 .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX5veT7t2 .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX5veT7t2 .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un7lJnSs7k {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-dt {
  /* Type valid CSS here */
}
#custom-html-dt div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-dt p {
  font-size: 60px;
  color: #777;
}
#custom-html-67 {
  /* Type valid CSS here */
}
#custom-html-67 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-67 p {
  font-size: 60px;
  color: #777;
}
.cid-umyZ2CVt53 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umyZ2CVt53 a:link {
  text-decoration: none;
}
.cid-umyZ2CVt53 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umyZ2CVt53 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umyZ2CVt53 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umyZ2CVt53 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umyZ2CVt53 .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umyZ2CVt53 .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umyZ2CVt53 .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umyZ2CVt53 .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umyZ2CVt53 .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umyZ2CVt53 .plan-title,
.cid-umyZ2CVt53 .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umyZ2CVt53 .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umyZ2CVt53 .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umyZ2CVt53 .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umz1Ynck4V {
  background-image: url("../../../assets/images/mbr-1441x1920.jpg");
}
.cid-umz1Ynck4V .mbr-text,
.cid-umz1Ynck4V .typed-text,
.cid-umz1Ynck4V .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umz1Ynck4V .btn {
  margin-left: 4px !important;
}
.cid-umz1Ynck4V .animated-element {
  color: #ffbc00;
}
.cid-umz1Ynck4V .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-umX1MA6pB2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umX1N6Jzr2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpg");
}
.cid-umX1N6Jzr2 .mbr-text,
.cid-umX1N6Jzr2 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umX1N6Jzr2 .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-umX1N6Jzr2 .mbr-section-title span {
  color: #ffbc00;
}
.cid-umX1N6Jzr2 .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-umX1N6Jzr2 .mbr-section-title {
    margin-left: -0.8rem;
  }
}
.cid-umz1YnYtx0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umz1YnYtx0 blockquote {
  color: #232323;
  font-size: inherit;
  font-style: normal;
}
.cid-umz1YnYtx0 .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #232323;
  opacity: .1;
}
.cid-umz1YnYtx0 .mbr-iconfont.right-top {
  right: -1rem;
  top: -1rem;
}
.cid-umz1Yodg7m {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-6e {
  /* Type valid CSS here */
}
#custom-html-6e div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6e p {
  font-size: 60px;
  color: #777;
}
.cid-umz1YoPMk5 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umz1YoPMk5 a:link {
  text-decoration: none;
}
.cid-umz1YoPMk5 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umz1YoPMk5 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umz1YoPMk5 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umz1YoPMk5 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umz1YoPMk5 .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umz1YoPMk5 .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umz1YoPMk5 .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umz1YoPMk5 .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umz1YoPMk5 .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umz1YoPMk5 .plan-title,
.cid-umz1YoPMk5 .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umz1YoPMk5 .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umz1YoPMk5 .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umz1YoPMk5 .mbr-section-title span {
  color: #ffbc00;
}
#custom-html-6g {
  /* Type valid CSS here */
}
#custom-html-6g div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6g p {
  font-size: 60px;
  color: #777;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umzhZU5ljO {
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-umzhZU5ljO .mbr-text,
.cid-umzhZU5ljO .typed-text,
.cid-umzhZU5ljO .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umzhZU5ljO .btn {
  margin-left: 4px !important;
}
.cid-umzhZU5ljO .animated-element {
  color: #ffbc00;
}
.cid-umzhZU5ljO .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-umzbOGQ53U {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzbOGQ53U .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzbOGQ53U .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzbOGQ53U .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzbOGQ53U .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzbOGQ53U .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzbOGQ53U .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzbOGQ53U .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzbOGQ53U .mbr-card-text {
  margin: 0;
}
.cid-umzbOGQ53U .mbr-title {
  text-align: left;
}
.cid-umzbOGQ53U .mbr-card-text,
.cid-umzbOGQ53U .mbr-section-btn {
  text-align: left;
}
.cid-umzbOIlc1L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umzbOJK3L8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzbOJK3L8 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzbOJK3L8 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzbOJK3L8 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzbOJK3L8 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzbOJK3L8 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzbOJK3L8 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzbOJK3L8 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzbOJK3L8 .mbr-card-text {
  margin: 0;
}
.cid-umzbOJK3L8 .mbr-title {
  text-align: left;
}
.cid-umzbOJK3L8 .mbr-card-text,
.cid-umzbOJK3L8 .mbr-section-btn {
  text-align: left;
}
.cid-umzbOKLh6d {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzbOKLh6d .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzbOKLh6d .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzbOKLh6d .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzbOKLh6d .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzbOKLh6d .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzbOKLh6d .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzbOKLh6d .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzbOKLh6d .mbr-card-text {
  margin: 0;
}
.cid-umzbOKLh6d .mbr-title {
  text-align: left;
}
.cid-umzbOKLh6d .mbr-card-text,
.cid-umzbOKLh6d .mbr-section-btn {
  text-align: left;
}
.cid-umzbOLOKud {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzbOLOKud .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzbOLOKud .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzbOLOKud .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzbOLOKud .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzbOLOKud .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzbOLOKud .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzbOLOKud .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzbOLOKud .mbr-card-text {
  margin: 0;
}
.cid-umzbOLOKud .mbr-title {
  text-align: left;
}
.cid-umzbOLOKud .mbr-card-text,
.cid-umzbOLOKud .mbr-section-btn {
  text-align: left;
}
.cid-umzbONfxWX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzbONfxWX .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzbONfxWX .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzbONfxWX .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzbONfxWX .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzbONfxWX .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzbONfxWX .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzbONfxWX .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzbONfxWX .mbr-card-text {
  margin: 0;
}
.cid-umzbONfxWX .mbr-title {
  text-align: left;
}
.cid-umzbONfxWX .mbr-card-text,
.cid-umzbONfxWX .mbr-section-btn {
  text-align: left;
}
.cid-umzbOOlwv6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzbOOlwv6 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzbOOlwv6 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzbOOlwv6 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzbOOlwv6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzbOOlwv6 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzbOOlwv6 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzbOOlwv6 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzbOOlwv6 .mbr-card-text {
  margin: 0;
}
.cid-umzbOOlwv6 .mbr-title {
  text-align: left;
}
.cid-umzbOOlwv6 .mbr-card-text,
.cid-umzbOOlwv6 .mbr-section-btn {
  text-align: left;
}
.cid-umzbOPvL0o {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzbOPvL0o .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzbOPvL0o .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzbOPvL0o .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzbOPvL0o .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzbOPvL0o .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzbOPvL0o .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzbOPvL0o .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzbOPvL0o .mbr-card-text {
  margin: 0;
}
.cid-umzbOPvL0o .mbr-title {
  text-align: left;
}
.cid-umzbOPvL0o .mbr-card-text,
.cid-umzbOPvL0o .mbr-section-btn {
  text-align: left;
}
.cid-umzbOQPBbW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzbOQPBbW .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzbOQPBbW .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzbOQPBbW .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzbOQPBbW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzbOQPBbW .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzbOQPBbW .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzbOQPBbW .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzbOQPBbW .mbr-card-text {
  margin: 0;
}
.cid-umzbOQPBbW .mbr-title {
  text-align: left;
}
.cid-umzbOQPBbW .mbr-card-text,
.cid-umzbOQPBbW .mbr-section-btn {
  text-align: left;
}
.cid-umzbOS4IBq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzbOS4IBq .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzbOS4IBq .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzbOS4IBq .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzbOS4IBq .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzbOS4IBq .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzbOS4IBq .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzbOS4IBq .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzbOS4IBq .mbr-card-text {
  margin: 0;
}
.cid-umzbOS4IBq .mbr-title {
  text-align: left;
}
.cid-umzbOS4IBq .mbr-card-text,
.cid-umzbOS4IBq .mbr-section-btn {
  text-align: left;
}
.cid-umX4Tb7Nux {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX4Tb7Nux .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX4Tb7Nux .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX4Tb7Nux .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX4Tb7Nux .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX4Tb7Nux .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-uPCNygbT86 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-ee {
  /* Type valid CSS here */
}
#custom-html-ee div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ee p {
  font-size: 60px;
  color: #777;
}
#custom-html-7l {
  /* Type valid CSS here */
}
#custom-html-7l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7l p {
  font-size: 60px;
  color: #777;
}
.cid-umzbPieoAp {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umzbPieoAp a:link {
  text-decoration: none;
}
.cid-umzbPieoAp .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umzbPieoAp .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umzbPieoAp .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umzbPieoAp .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umzbPieoAp .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umzbPieoAp .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umzbPieoAp .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umzbPieoAp .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umzbPieoAp .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umzbPieoAp .plan-title,
.cid-umzbPieoAp .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umzbPieoAp .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umzbPieoAp .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umzbPieoAp .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umzeIkzysu {
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-umzeIkzysu .mbr-text,
.cid-umzeIkzysu .typed-text,
.cid-umzeIkzysu .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umzeIkzysu .btn {
  margin-left: 4px !important;
}
.cid-umzeIkzysu .animated-element {
  color: #ffbc00;
}
.cid-umzeIkzysu .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-umzeIlCdx4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzeIlCdx4 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzeIlCdx4 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzeIlCdx4 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzeIlCdx4 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzeIlCdx4 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzeIlCdx4 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzeIlCdx4 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzeIlCdx4 .mbr-card-text {
  margin: 0;
}
.cid-umzeIlCdx4 .mbr-title {
  text-align: left;
}
.cid-umzeIlCdx4 .mbr-card-text,
.cid-umzeIlCdx4 .mbr-section-btn {
  text-align: left;
}
.cid-umzeImPLNC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umzeInjazO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzeInjazO .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzeInjazO .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzeInjazO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzeInjazO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzeInjazO .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzeInjazO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzeInjazO .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzeInjazO .mbr-card-text {
  margin: 0;
}
.cid-umzeInjazO .mbr-title {
  text-align: left;
}
.cid-umzeInjazO .mbr-card-text,
.cid-umzeInjazO .mbr-section-btn {
  text-align: left;
}
.cid-umzeIoz16a {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzeIoz16a .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzeIoz16a .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzeIoz16a .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzeIoz16a .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzeIoz16a .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzeIoz16a .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzeIoz16a .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzeIoz16a .mbr-card-text {
  margin: 0;
}
.cid-umzeIoz16a .mbr-title {
  text-align: left;
}
.cid-umzeIoz16a .mbr-card-text,
.cid-umzeIoz16a .mbr-section-btn {
  text-align: left;
}
.cid-umzeIqW2mM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzeIqW2mM .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzeIqW2mM .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzeIqW2mM .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzeIqW2mM .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzeIqW2mM .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzeIqW2mM .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzeIqW2mM .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzeIqW2mM .mbr-card-text {
  margin: 0;
}
.cid-umzeIqW2mM .mbr-title {
  text-align: left;
}
.cid-umzeIqW2mM .mbr-card-text,
.cid-umzeIqW2mM .mbr-section-btn {
  text-align: left;
}
.cid-umzeItecVY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzeItecVY .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzeItecVY .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzeItecVY .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzeItecVY .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzeItecVY .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzeItecVY .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzeItecVY .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzeItecVY .mbr-card-text {
  margin: 0;
}
.cid-umzeItecVY .mbr-title {
  text-align: left;
}
.cid-umzeItecVY .mbr-card-text,
.cid-umzeItecVY .mbr-section-btn {
  text-align: left;
}
.cid-umzeIuHi6C {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzeIuHi6C .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzeIuHi6C .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzeIuHi6C .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzeIuHi6C .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzeIuHi6C .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzeIuHi6C .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzeIuHi6C .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzeIuHi6C .mbr-card-text {
  margin: 0;
}
.cid-umzeIuHi6C .mbr-title {
  text-align: left;
}
.cid-umzeIuHi6C .mbr-card-text,
.cid-umzeIuHi6C .mbr-section-btn {
  text-align: left;
}
.cid-umzeIwz5aI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzeIwz5aI .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzeIwz5aI .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzeIwz5aI .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzeIwz5aI .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzeIwz5aI .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzeIwz5aI .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzeIwz5aI .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzeIwz5aI .mbr-card-text {
  margin: 0;
}
.cid-umzeIwz5aI .mbr-title {
  text-align: left;
}
.cid-umzeIwz5aI .mbr-card-text,
.cid-umzeIwz5aI .mbr-section-btn {
  text-align: left;
}
.cid-umzeIxusXm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzeIxusXm .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzeIxusXm .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzeIxusXm .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzeIxusXm .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzeIxusXm .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzeIxusXm .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzeIxusXm .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzeIxusXm .mbr-card-text {
  margin: 0;
}
.cid-umzeIxusXm .mbr-title {
  text-align: left;
}
.cid-umzeIxusXm .mbr-card-text,
.cid-umzeIxusXm .mbr-section-btn {
  text-align: left;
}
.cid-umzeIyy30n {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umzeIyy30n .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umzeIyy30n .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umzeIyy30n .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umzeIyy30n .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umzeIyy30n .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umzeIyy30n .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umzeIyy30n .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umzeIyy30n .mbr-card-text {
  margin: 0;
}
.cid-umzeIyy30n .mbr-title {
  text-align: left;
}
.cid-umzeIyy30n .mbr-card-text,
.cid-umzeIyy30n .mbr-section-btn {
  text-align: left;
}
.cid-umX54UcXnM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX54UcXnM .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX54UcXnM .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX54UcXnM .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX54UcXnM .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX54UcXnM .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-uPCNBJTaUF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-eh {
  /* Type valid CSS here */
}
#custom-html-eh div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-eh p {
  font-size: 60px;
  color: #777;
}
#custom-html-80 {
  /* Type valid CSS here */
}
#custom-html-80 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-80 p {
  font-size: 60px;
  color: #777;
}
.cid-umzeID3OLw {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umzeID3OLw a:link {
  text-decoration: none;
}
.cid-umzeID3OLw .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umzeID3OLw .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umzeID3OLw .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umzeID3OLw .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umzeID3OLw .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umzeID3OLw .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umzeID3OLw .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umzeID3OLw .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umzeID3OLw .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umzeID3OLw .plan-title,
.cid-umzeID3OLw .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umzeID3OLw .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umzeID3OLw .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umzeID3OLw .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umX2YWRXJ1 {
  background-image: url("../../../assets/images/mbr-11-1920x1280.jpg");
}
.cid-umX2YWRXJ1 .mbr-text,
.cid-umX2YWRXJ1 .typed-text,
.cid-umX2YWRXJ1 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umX2YWRXJ1 .btn {
  margin-left: 4px !important;
}
.cid-umX2YWRXJ1 .animated-element {
  color: #ffbc00;
}
.cid-umX2YWRXJ1 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-umX2YXuJ5s {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umX2YXuJ5s .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umX2YXuJ5s .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umX2YXuJ5s .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umX2YXuJ5s .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umX2YXuJ5s .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umX2YXuJ5s .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umX2YXuJ5s .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umX2YXuJ5s .mbr-card-text {
  margin: 0;
}
.cid-umX2YXuJ5s .mbr-title {
  text-align: left;
}
.cid-umX2YXuJ5s .mbr-card-text,
.cid-umX2YXuJ5s .mbr-section-btn {
  text-align: left;
}
.cid-umX2YYA2LP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umX2YYQcca {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umX2YYQcca .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umX2YYQcca .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umX2YYQcca .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umX2YYQcca .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umX2YYQcca .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umX2YYQcca .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umX2YYQcca .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umX2YYQcca .mbr-card-text {
  margin: 0;
}
.cid-umX2YYQcca .mbr-title {
  text-align: left;
}
.cid-umX2YYQcca .mbr-card-text,
.cid-umX2YYQcca .mbr-section-btn {
  text-align: left;
}
.cid-umX2Z07Y5q {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umX2Z07Y5q .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umX2Z07Y5q .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umX2Z07Y5q .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umX2Z07Y5q .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umX2Z07Y5q .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umX2Z07Y5q .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umX2Z07Y5q .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umX2Z07Y5q .mbr-card-text {
  margin: 0;
}
.cid-umX2Z07Y5q .mbr-title {
  text-align: left;
}
.cid-umX2Z07Y5q .mbr-card-text,
.cid-umX2Z07Y5q .mbr-section-btn {
  text-align: left;
}
.cid-umX2Z16H9U {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umX2Z16H9U .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umX2Z16H9U .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umX2Z16H9U .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umX2Z16H9U .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umX2Z16H9U .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umX2Z16H9U .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umX2Z16H9U .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umX2Z16H9U .mbr-card-text {
  margin: 0;
}
.cid-umX2Z16H9U .mbr-title {
  text-align: left;
}
.cid-umX2Z16H9U .mbr-card-text,
.cid-umX2Z16H9U .mbr-section-btn {
  text-align: left;
}
.cid-umX2Z25zwj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umX2Z25zwj .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umX2Z25zwj .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umX2Z25zwj .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umX2Z25zwj .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umX2Z25zwj .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umX2Z25zwj .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umX2Z25zwj .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umX2Z25zwj .mbr-card-text {
  margin: 0;
}
.cid-umX2Z25zwj .mbr-title {
  text-align: left;
}
.cid-umX2Z25zwj .mbr-card-text,
.cid-umX2Z25zwj .mbr-section-btn {
  text-align: left;
}
.cid-umX2Z3s4ix {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umX2Z3s4ix .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umX2Z3s4ix .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umX2Z3s4ix .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umX2Z3s4ix .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umX2Z3s4ix .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umX2Z3s4ix .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umX2Z3s4ix .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umX2Z3s4ix .mbr-card-text {
  margin: 0;
}
.cid-umX2Z3s4ix .mbr-title {
  text-align: left;
}
.cid-umX2Z3s4ix .mbr-card-text,
.cid-umX2Z3s4ix .mbr-section-btn {
  text-align: left;
}
.cid-umX2Z4A4Y4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umX2Z4A4Y4 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umX2Z4A4Y4 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umX2Z4A4Y4 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umX2Z4A4Y4 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umX2Z4A4Y4 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umX2Z4A4Y4 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umX2Z4A4Y4 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umX2Z4A4Y4 .mbr-card-text {
  margin: 0;
}
.cid-umX2Z4A4Y4 .mbr-title {
  text-align: left;
}
.cid-umX2Z4A4Y4 .mbr-card-text,
.cid-umX2Z4A4Y4 .mbr-section-btn {
  text-align: left;
}
.cid-umX2Z5GmUi {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umX2Z5GmUi .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umX2Z5GmUi .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umX2Z5GmUi .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umX2Z5GmUi .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umX2Z5GmUi .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umX2Z5GmUi .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umX2Z5GmUi .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umX2Z5GmUi .mbr-card-text {
  margin: 0;
}
.cid-umX2Z5GmUi .mbr-title {
  text-align: left;
}
.cid-umX2Z5GmUi .mbr-card-text,
.cid-umX2Z5GmUi .mbr-section-btn {
  text-align: left;
}
.cid-umX2Z6WUyZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-umX2Z6WUyZ .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umX2Z6WUyZ .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-umX2Z6WUyZ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-umX2Z6WUyZ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-umX2Z6WUyZ .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #000000;
}
.cid-umX2Z6WUyZ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-umX2Z6WUyZ .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-umX2Z6WUyZ .mbr-card-text {
  margin: 0;
}
.cid-umX2Z6WUyZ .mbr-title {
  text-align: left;
}
.cid-umX2Z6WUyZ .mbr-card-text,
.cid-umX2Z6WUyZ .mbr-section-btn {
  text-align: left;
}
.cid-umX56XqULr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX56XqULr .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX56XqULr .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX56XqULr .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX56XqULr .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX56XqULr .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-uPCNI0CDG9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-ei {
  /* Type valid CSS here */
}
#custom-html-ei div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ei p {
  font-size: 60px;
  color: #777;
}
#custom-html-8p {
  /* Type valid CSS here */
}
#custom-html-8p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-8p p {
  font-size: 60px;
  color: #777;
}
.cid-umX2Z9RbzG {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umX2Z9RbzG a:link {
  text-decoration: none;
}
.cid-umX2Z9RbzG .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umX2Z9RbzG .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umX2Z9RbzG .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umX2Z9RbzG .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umX2Z9RbzG .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umX2Z9RbzG .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umX2Z9RbzG .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umX2Z9RbzG .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umX2Z9RbzG .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umX2Z9RbzG .plan-title,
.cid-umX2Z9RbzG .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umX2Z9RbzG .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umX2Z9RbzG .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umX2Z9RbzG .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umXcujJw0a {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umXcuNbhhp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/set-eight4-696x6963.png");
}
.cid-umXcuNbhhp .mbr-text,
.cid-umXcuNbhhp .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umXcuNbhhp .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-umXcuNbhhp .mbr-section-title span {
  color: #ffbc00;
}
.cid-umXcuNbhhp .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-umXcuNbhhp .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-be body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}
#custom-html-be .course-selection {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#custom-html-be .course-step {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
#custom-html-be .course-step:last-child {
  border-bottom: none;
}
#custom-html-be .course-step h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #333;
}
#custom-html-be .course-step p {
  margin: 0;
  font-size: 1em;
  color: #555;
}
#custom-html-am {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-am body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-am .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-am .col-12,
#custom-html-am .col-sm-6,
#custom-html-am .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-am .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-am .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-am .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-am .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-am .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-am .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-am .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-am .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-am .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-am .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-un0AmAQTNH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-un0AmAQTNH .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un0AmAQTNH .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un0AmAQTNH .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un0AmAQTNH .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un0AmAQTNH .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
#custom-html-ak {
  /* Type valid CSS here */
}
#custom-html-ak div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ak p {
  font-size: 60px;
  color: #777;
}
.cid-umXbSnebNe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umXbSnebNe .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umXbSnebNe .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umXbSnebNe .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umXbSnebNe .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umXbSnebNe .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-umXbTotFBp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-a3 {
  /* Type valid CSS here */
}
#custom-html-a3 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-a3 p {
  font-size: 60px;
  color: #777;
}
.cid-umXbBv1mpi {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umXbBv1mpi a:link {
  text-decoration: none;
}
.cid-umXbBv1mpi .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umXbBv1mpi .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umXbBv1mpi .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umXbBv1mpi .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umXbBv1mpi .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umXbBv1mpi .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umXbBv1mpi .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umXbBv1mpi .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umXbBv1mpi .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umXbBv1mpi .plan-title,
.cid-umXbBv1mpi .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umXbBv1mpi .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umXbBv1mpi .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umXbBv1mpi .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-umhSNIrEpM {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-umhSNIrEpM .mbr-text,
.cid-umhSNIrEpM .typed-text,
.cid-umhSNIrEpM .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-umhSNIrEpM .btn {
  margin-left: 4px !important;
}
.cid-umhSNIrEpM .animated-element {
  color: #ffbc00;
}
.cid-umhSNIrEpM .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#custom-html-b7 {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-b7 body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-b7 .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-b7 .col-12,
#custom-html-b7 .col-sm-6,
#custom-html-b7 .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b7 .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-b7 .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b7 .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-b7 .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b7 .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-b7 .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-b7 .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-b7 .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-b7 .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-b7 .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-umhSNJBcyX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-umX5cLWNDd {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-umX5cLWNDd .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-umX5cLWNDd .mbr-text {
  width: 100%;
  height: auto;
}
.cid-umX5cLWNDd .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-umX5cLWNDd .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-umX5cLWNDd .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un7lcnZSWl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
#custom-html-dl {
  /* Type valid CSS here */
}
#custom-html-dl div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-dl p {
  font-size: 60px;
  color: #777;
}
#custom-html-5d {
  /* Type valid CSS here */
}
#custom-html-5d div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5d p {
  font-size: 60px;
  color: #777;
}
.cid-umhSNKjkHq {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umhSNKjkHq a:link {
  text-decoration: none;
}
.cid-umhSNKjkHq .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-umhSNKjkHq .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-umhSNKjkHq .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-umhSNKjkHq .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-umhSNKjkHq .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-umhSNKjkHq .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-umhSNKjkHq .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-umhSNKjkHq .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-umhSNKjkHq .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-umhSNKjkHq .plan-title,
.cid-umhSNKjkHq .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-umhSNKjkHq .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-umhSNKjkHq .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-umhSNKjkHq .mbr-section-title span {
  color: #ffbc00;
}
.cid-un1wNAyU92 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un1wNAyU92 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un1wNAyU92 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un1wNAyU92 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un1wNAyU92 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un1wNAyU92 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un1wNAyU92 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un1wNAyU92 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un1wNAyU92 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un1wNAyU92 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un1wNAyU92 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un1wNAyU92 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un1wNAyU92 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un1wNAyU92 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un1wNAyU92 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un1wNAyU92 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un1wNAyU92 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un1wNAyU92 .dropdown-item.active,
.cid-un1wNAyU92 .dropdown-item:active {
  background-color: transparent;
}
.cid-un1wNAyU92 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un1wNAyU92 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un1wNAyU92 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un1wNAyU92 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un1wNAyU92 .navbar-buttons {
  text-align: center;
}
.cid-un1wNAyU92 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un1wNAyU92 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un1wNAyU92 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un1wNAyU92 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un1wNAyU92 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un1wNAyU92 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un1wNAyU92 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un1wNAyU92 .nav-link:hover,
.cid-un1wNAyU92 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-un2sdJU8g3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2sdKzhkX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/set-eight5-696x6964.png");
}
.cid-un2sdKzhkX .mbr-text,
.cid-un2sdKzhkX .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-un2sdKzhkX .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-un2sdKzhkX .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2sdKzhkX .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-un2sdKzhkX .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-bh body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}
#custom-html-bh .course-selection {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#custom-html-bh .course-step {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
#custom-html-bh .course-step:last-child {
  border-bottom: none;
}
#custom-html-bh .course-step h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #333;
}
#custom-html-bh .course-step p {
  margin: 0;
  font-size: 1em;
  color: #555;
}
#custom-html-bi {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-bi body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-bi .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-bi .col-12,
#custom-html-bi .col-sm-6,
#custom-html-bi .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-bi .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-bi .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-bi .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-bi .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-bi .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-bi .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-bi .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-bi .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-bi .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-bi .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-un2sdPNWCI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-un2sdPNWCI .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2sdPNWCI .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2sdPNWCI .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2sdPNWCI .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2sdPNWCI .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
#custom-html-bm {
  /* Type valid CSS here */
}
#custom-html-bm div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bm p {
  font-size: 60px;
  color: #777;
}
.cid-un2sdQXmQp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-un2sdQXmQp .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2sdQXmQp .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2sdQXmQp .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2sdQXmQp .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2sdQXmQp .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un2sdSTHmX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-bp {
  /* Type valid CSS here */
}
#custom-html-bp div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bp p {
  font-size: 60px;
  color: #777;
}
.cid-un2sdTBfff {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2sdTBfff a:link {
  text-decoration: none;
}
.cid-un2sdTBfff .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-un2sdTBfff .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-un2sdTBfff .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-un2sdTBfff .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-un2sdTBfff .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-un2sdTBfff .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-un2sdTBfff .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-un2sdTBfff .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-un2sdTBfff .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-un2sdTBfff .plan-title,
.cid-un2sdTBfff .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-un2sdTBfff .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-un2sdTBfff .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-un2sdTBfff .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2sdUNc51 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un2sdUNc51 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un2sdUNc51 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un2sdUNc51 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un2sdUNc51 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un2sdUNc51 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un2sdUNc51 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un2sdUNc51 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un2sdUNc51 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un2sdUNc51 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un2sdUNc51 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un2sdUNc51 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un2sdUNc51 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un2sdUNc51 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un2sdUNc51 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un2sdUNc51 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un2sdUNc51 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un2sdUNc51 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un2sdUNc51 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un2sdUNc51 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un2sdUNc51 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un2sdUNc51 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un2sdUNc51 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un2sdUNc51 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un2sdUNc51 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un2sdUNc51 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un2sdUNc51 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un2sdUNc51 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un2sdUNc51 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un2sdUNc51 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un2sdUNc51 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un2sdUNc51 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un2sdUNc51 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un2sdUNc51 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un2sdUNc51 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un2sdUNc51 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un2sdUNc51 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un2sdUNc51 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un2sdUNc51 .dropdown-item.active,
.cid-un2sdUNc51 .dropdown-item:active {
  background-color: transparent;
}
.cid-un2sdUNc51 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un2sdUNc51 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un2sdUNc51 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un2sdUNc51 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un2sdUNc51 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un2sdUNc51 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un2sdUNc51 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un2sdUNc51 .navbar-buttons {
  text-align: center;
}
.cid-un2sdUNc51 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un2sdUNc51 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un2sdUNc51 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un2sdUNc51 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un2sdUNc51 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un2sdUNc51 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un2sdUNc51 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2sdUNc51 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un2sdUNc51 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un2sdUNc51 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2sdUNc51 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un2sdUNc51 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un2sdUNc51 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un2sdUNc51 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un2sdUNc51 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un2sdUNc51 .nav-link:hover,
.cid-un2sdUNc51 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-un2slqGyIr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2slraU3S {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/set-eight6-696x6965.png");
}
.cid-un2slraU3S .mbr-text,
.cid-un2slraU3S .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-un2slraU3S .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-un2slraU3S .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2slraU3S .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-un2slraU3S .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-bv body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}
#custom-html-bv .course-selection {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#custom-html-bv .course-step {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
#custom-html-bv .course-step:last-child {
  border-bottom: none;
}
#custom-html-bv .course-step h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #333;
}
#custom-html-bv .course-step p {
  margin: 0;
  font-size: 1em;
  color: #555;
}
#custom-html-bw {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-bw body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-bw .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-bw .col-12,
#custom-html-bw .col-sm-6,
#custom-html-bw .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-bw .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-bw .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-bw .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-bw .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-bw .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-bw .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-bw .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-bw .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-bw .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-bw .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-un2slvQNd9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-un2slvQNd9 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2slvQNd9 .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2slvQNd9 .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2slvQNd9 .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2slvQNd9 .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
#custom-html-c0 {
  /* Type valid CSS here */
}
#custom-html-c0 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-c0 p {
  font-size: 60px;
  color: #777;
}
.cid-un2slwXAEA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-un2slwXAEA .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2slwXAEA .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2slwXAEA .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2slwXAEA .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2slwXAEA .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un2slxpxHQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-c3 {
  /* Type valid CSS here */
}
#custom-html-c3 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-c3 p {
  font-size: 60px;
  color: #777;
}
.cid-un2slycOYL {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2slycOYL a:link {
  text-decoration: none;
}
.cid-un2slycOYL .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-un2slycOYL .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-un2slycOYL .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-un2slycOYL .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-un2slycOYL .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-un2slycOYL .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-un2slycOYL .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-un2slycOYL .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-un2slycOYL .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-un2slycOYL .plan-title,
.cid-un2slycOYL .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-un2slycOYL .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-un2slycOYL .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-un2slycOYL .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2slBk8jR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un2slBk8jR .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un2slBk8jR .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un2slBk8jR .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un2slBk8jR .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un2slBk8jR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un2slBk8jR .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un2slBk8jR .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un2slBk8jR .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un2slBk8jR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un2slBk8jR .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un2slBk8jR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un2slBk8jR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un2slBk8jR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un2slBk8jR .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un2slBk8jR .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un2slBk8jR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un2slBk8jR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un2slBk8jR .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un2slBk8jR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un2slBk8jR .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un2slBk8jR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un2slBk8jR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un2slBk8jR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un2slBk8jR .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un2slBk8jR .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un2slBk8jR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un2slBk8jR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un2slBk8jR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un2slBk8jR .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un2slBk8jR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un2slBk8jR .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un2slBk8jR .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un2slBk8jR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un2slBk8jR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un2slBk8jR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un2slBk8jR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un2slBk8jR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un2slBk8jR .dropdown-item.active,
.cid-un2slBk8jR .dropdown-item:active {
  background-color: transparent;
}
.cid-un2slBk8jR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un2slBk8jR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un2slBk8jR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un2slBk8jR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un2slBk8jR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un2slBk8jR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un2slBk8jR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un2slBk8jR .navbar-buttons {
  text-align: center;
}
.cid-un2slBk8jR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un2slBk8jR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un2slBk8jR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un2slBk8jR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un2slBk8jR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un2slBk8jR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un2slBk8jR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2slBk8jR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un2slBk8jR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un2slBk8jR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2slBk8jR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un2slBk8jR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un2slBk8jR .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un2slBk8jR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un2slBk8jR .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un2slBk8jR .nav-link:hover,
.cid-un2slBk8jR .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-un2spUCOpR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2spV23Zv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/set-eight7-696x6966.png");
}
.cid-un2spV23Zv .mbr-text,
.cid-un2spV23Zv .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-un2spV23Zv .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-un2spV23Zv .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2spV23Zv .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-un2spV23Zv .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-c9 body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}
#custom-html-c9 .course-selection {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#custom-html-c9 .course-step {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
#custom-html-c9 .course-step:last-child {
  border-bottom: none;
}
#custom-html-c9 .course-step h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #333;
}
#custom-html-c9 .course-step p {
  margin: 0;
  font-size: 1em;
  color: #555;
}
#custom-html-ca {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-ca body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-ca .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-ca .col-12,
#custom-html-ca .col-sm-6,
#custom-html-ca .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-ca .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-ca .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-ca .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-ca .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-ca .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-ca .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-ca .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-ca .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-ca .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-ca .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-un2spYLzEg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-un2spYLzEg .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2spYLzEg .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2spYLzEg .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2spYLzEg .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2spYLzEg .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
#custom-html-ce {
  /* Type valid CSS here */
}
#custom-html-ce div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ce p {
  font-size: 60px;
  color: #777;
}
.cid-un2sq1BMZ4 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-un2sq1BMZ4 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2sq1BMZ4 .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2sq1BMZ4 .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2sq1BMZ4 .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2sq1BMZ4 .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un2sq2eIXH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-ch {
  /* Type valid CSS here */
}
#custom-html-ch div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ch p {
  font-size: 60px;
  color: #777;
}
.cid-un2sq37GPg {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2sq37GPg a:link {
  text-decoration: none;
}
.cid-un2sq37GPg .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-un2sq37GPg .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-un2sq37GPg .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-un2sq37GPg .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-un2sq37GPg .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-un2sq37GPg .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-un2sq37GPg .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-un2sq37GPg .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-un2sq37GPg .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-un2sq37GPg .plan-title,
.cid-un2sq37GPg .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-un2sq37GPg .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-un2sq37GPg .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-un2sq37GPg .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2sq4uX8w .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un2sq4uX8w .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un2sq4uX8w .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un2sq4uX8w .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un2sq4uX8w .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un2sq4uX8w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un2sq4uX8w .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un2sq4uX8w .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un2sq4uX8w .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un2sq4uX8w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un2sq4uX8w .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un2sq4uX8w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un2sq4uX8w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un2sq4uX8w .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un2sq4uX8w .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un2sq4uX8w .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un2sq4uX8w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un2sq4uX8w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un2sq4uX8w .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un2sq4uX8w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un2sq4uX8w .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un2sq4uX8w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un2sq4uX8w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un2sq4uX8w .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un2sq4uX8w .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un2sq4uX8w .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un2sq4uX8w .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un2sq4uX8w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un2sq4uX8w .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un2sq4uX8w .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un2sq4uX8w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un2sq4uX8w .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un2sq4uX8w .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un2sq4uX8w .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un2sq4uX8w .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un2sq4uX8w .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un2sq4uX8w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un2sq4uX8w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un2sq4uX8w .dropdown-item.active,
.cid-un2sq4uX8w .dropdown-item:active {
  background-color: transparent;
}
.cid-un2sq4uX8w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un2sq4uX8w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un2sq4uX8w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un2sq4uX8w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un2sq4uX8w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un2sq4uX8w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un2sq4uX8w ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un2sq4uX8w .navbar-buttons {
  text-align: center;
}
.cid-un2sq4uX8w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un2sq4uX8w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un2sq4uX8w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un2sq4uX8w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un2sq4uX8w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un2sq4uX8w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un2sq4uX8w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2sq4uX8w nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un2sq4uX8w nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un2sq4uX8w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2sq4uX8w .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un2sq4uX8w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un2sq4uX8w .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un2sq4uX8w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un2sq4uX8w .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un2sq4uX8w .nav-link:hover,
.cid-un2sq4uX8w .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-un2sPGnN7f {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2sPH3CWn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/set-eight4-696x6963.png");
}
.cid-un2sPH3CWn .mbr-text,
.cid-un2sPH3CWn .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-un2sPH3CWn .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-un2sPH3CWn .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2sPH3CWn .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-un2sPH3CWn .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-cn body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}
#custom-html-cn .course-selection {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#custom-html-cn .course-step {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
#custom-html-cn .course-step:last-child {
  border-bottom: none;
}
#custom-html-cn .course-step h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #333;
}
#custom-html-cn .course-step p {
  margin: 0;
  font-size: 1em;
  color: #555;
}
#custom-html-co {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-co body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-co .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-co .col-12,
#custom-html-co .col-sm-6,
#custom-html-co .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-co .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-co .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-co .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-co .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-co .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-co .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-co .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-co .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-co .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-co .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-un2sQpWDhi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-un2sQpWDhi .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2sQpWDhi .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2sQpWDhi .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2sQpWDhi .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2sQpWDhi .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
#custom-html-cs {
  /* Type valid CSS here */
}
#custom-html-cs div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-cs p {
  font-size: 60px;
  color: #777;
}
.cid-un2sQrTjK3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-un2sQrTjK3 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2sQrTjK3 .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2sQrTjK3 .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2sQrTjK3 .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2sQrTjK3 .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un2sQt6Qmp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-cv {
  /* Type valid CSS here */
}
#custom-html-cv div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-cv p {
  font-size: 60px;
  color: #777;
}
.cid-un2sQuI6Oc {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2sQuI6Oc a:link {
  text-decoration: none;
}
.cid-un2sQuI6Oc .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-un2sQuI6Oc .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-un2sQuI6Oc .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-un2sQuI6Oc .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-un2sQuI6Oc .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-un2sQuI6Oc .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-un2sQuI6Oc .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-un2sQuI6Oc .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-un2sQuI6Oc .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-un2sQuI6Oc .plan-title,
.cid-un2sQuI6Oc .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-un2sQuI6Oc .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-un2sQuI6Oc .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-un2sQuI6Oc .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2sQwbrgB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un2sQwbrgB .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un2sQwbrgB .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un2sQwbrgB .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un2sQwbrgB .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un2sQwbrgB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un2sQwbrgB .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un2sQwbrgB .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un2sQwbrgB .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un2sQwbrgB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un2sQwbrgB .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un2sQwbrgB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un2sQwbrgB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un2sQwbrgB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un2sQwbrgB .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un2sQwbrgB .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un2sQwbrgB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un2sQwbrgB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un2sQwbrgB .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un2sQwbrgB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un2sQwbrgB .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un2sQwbrgB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un2sQwbrgB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un2sQwbrgB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un2sQwbrgB .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un2sQwbrgB .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un2sQwbrgB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un2sQwbrgB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un2sQwbrgB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un2sQwbrgB .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un2sQwbrgB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un2sQwbrgB .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un2sQwbrgB .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un2sQwbrgB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un2sQwbrgB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un2sQwbrgB .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un2sQwbrgB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un2sQwbrgB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un2sQwbrgB .dropdown-item.active,
.cid-un2sQwbrgB .dropdown-item:active {
  background-color: transparent;
}
.cid-un2sQwbrgB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un2sQwbrgB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un2sQwbrgB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un2sQwbrgB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un2sQwbrgB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un2sQwbrgB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un2sQwbrgB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un2sQwbrgB .navbar-buttons {
  text-align: center;
}
.cid-un2sQwbrgB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un2sQwbrgB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un2sQwbrgB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un2sQwbrgB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un2sQwbrgB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un2sQwbrgB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un2sQwbrgB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2sQwbrgB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un2sQwbrgB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un2sQwbrgB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2sQwbrgB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un2sQwbrgB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un2sQwbrgB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un2sQwbrgB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un2sQwbrgB .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un2sQwbrgB .nav-link:hover,
.cid-un2sQwbrgB .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-un2xVnTg3P {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2xVoIf1X {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/set-eight4-696x6963.png");
}
.cid-un2xVoIf1X .mbr-text,
.cid-un2xVoIf1X .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-un2xVoIf1X .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-un2xVoIf1X .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2xVoIf1X .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-un2xVoIf1X .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-d1 body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}
#custom-html-d1 .course-selection {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#custom-html-d1 .course-step {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
#custom-html-d1 .course-step:last-child {
  border-bottom: none;
}
#custom-html-d1 .course-step h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #333;
}
#custom-html-d1 .course-step p {
  margin: 0;
  font-size: 1em;
  color: #555;
}
#custom-html-d2 {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-d2 body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-d2 .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-d2 .col-12,
#custom-html-d2 .col-sm-6,
#custom-html-d2 .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-d2 .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-d2 .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-d2 .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-d2 .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-d2 .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-d2 .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-d2 .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-d2 .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-d2 .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-d2 .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-un2xVsHzan {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-un2xVsHzan .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2xVsHzan .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2xVsHzan .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2xVsHzan .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2xVsHzan .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
#custom-html-d6 {
  /* Type valid CSS here */
}
#custom-html-d6 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-d6 p {
  font-size: 60px;
  color: #777;
}
.cid-un2xVtNLcs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-un2xVtNLcs .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un2xVtNLcs .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un2xVtNLcs .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un2xVtNLcs .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un2xVtNLcs .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un2xVuif13 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-d9 {
  /* Type valid CSS here */
}
#custom-html-d9 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-d9 p {
  font-size: 60px;
  color: #777;
}
.cid-un2xVv9qpO {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un2xVv9qpO a:link {
  text-decoration: none;
}
.cid-un2xVv9qpO .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-un2xVv9qpO .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-un2xVv9qpO .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-un2xVv9qpO .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-un2xVv9qpO .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-un2xVv9qpO .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-un2xVv9qpO .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-un2xVv9qpO .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-un2xVv9qpO .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-un2xVv9qpO .plan-title,
.cid-un2xVv9qpO .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-un2xVv9qpO .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-un2xVv9qpO .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-un2xVv9qpO .mbr-section-title span {
  color: #ffbc00;
}
.cid-un2xVymb45 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un2xVymb45 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un2xVymb45 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un2xVymb45 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un2xVymb45 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un2xVymb45 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un2xVymb45 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un2xVymb45 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un2xVymb45 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un2xVymb45 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un2xVymb45 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un2xVymb45 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un2xVymb45 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un2xVymb45 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un2xVymb45 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un2xVymb45 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un2xVymb45 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un2xVymb45 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un2xVymb45 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un2xVymb45 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un2xVymb45 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un2xVymb45 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un2xVymb45 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un2xVymb45 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un2xVymb45 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un2xVymb45 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un2xVymb45 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un2xVymb45 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un2xVymb45 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un2xVymb45 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un2xVymb45 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un2xVymb45 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un2xVymb45 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un2xVymb45 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un2xVymb45 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un2xVymb45 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un2xVymb45 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un2xVymb45 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un2xVymb45 .dropdown-item.active,
.cid-un2xVymb45 .dropdown-item:active {
  background-color: transparent;
}
.cid-un2xVymb45 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un2xVymb45 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un2xVymb45 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un2xVymb45 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un2xVymb45 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un2xVymb45 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un2xVymb45 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un2xVymb45 .navbar-buttons {
  text-align: center;
}
.cid-un2xVymb45 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un2xVymb45 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un2xVymb45 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un2xVymb45 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un2xVymb45 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un2xVymb45 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un2xVymb45 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2xVymb45 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un2xVymb45 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un2xVymb45 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un2xVymb45 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un2xVymb45 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un2xVymb45 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un2xVymb45 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un2xVymb45 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un2xVymb45 .nav-link:hover,
.cid-un2xVymb45 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-un7mlZzjLm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un7mlZTH67 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/set-eight4-696x6963.png");
}
.cid-un7mlZTH67 .mbr-text,
.cid-un7mlZTH67 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-un7mlZTH67 .mbr-section-title {
  margin-left: -0.2rem;
  color: #ffbc00;
}
.cid-un7mlZTH67 .mbr-section-title span {
  color: #ffbc00;
}
.cid-un7mlZTH67 .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-un7mlZTH67 .mbr-section-title {
    margin-left: -0.8rem;
  }
}
#custom-html-dw body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}
#custom-html-dw .course-selection {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#custom-html-dw .course-step {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
#custom-html-dw .course-step:last-child {
  border-bottom: none;
}
#custom-html-dw .course-step h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #333;
}
#custom-html-dw .course-step p {
  margin: 0;
  font-size: 1em;
  color: #555;
}
#custom-html-dx {
  /* General Body Styling */
  /* Container for Content Layout */
  /* Column Styling */
  /* Left Column Styling */
  /* Right Column Styling for 3D Buttons */
  /* Ensure padding is applied to the specific section */
  /* 3D Button Styling */
}
#custom-html-dx body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Light background for contrast */
}
#custom-html-dx .container {
  max-width: 1200px;
  /* Maximum width for the container */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 80px;
  /* Equal padding on left and right sides */
  box-sizing: border-box;
  /* Include padding in the total width */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}
#custom-html-dx .col-12,
#custom-html-dx .col-sm-6,
#custom-html-dx .col-md-8 {
  padding: 40px;
  /* Padding inside the column */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-dx .left-column {
  flex: 1;
  /* Allow the left column to take up available space */
  text-align: left;
  /* Left-align text */
  padding: 40px;
  /* Padding inside the column */
  color: #333;
  /* Darker color for readability */
}
#custom-html-dx .right-column {
  flex-basis: 300px;
  /* Fixed width for the right column */
  padding: 40px;
  /* Padding inside the column */
  background-color: #fff;
  /* White background for buttons */
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  /* Subtle inner shadow */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-dx .col-6.col-md-4 {
  padding: 40px;
  /* Padding inside the "Learn More" section */
  box-sizing: border-box;
  /* Include padding in the total width */
}
#custom-html-dx .btn-3d {
  position: relative;
  display: block;
  /* Stack buttons vertically */
  width: 100%;
  /* Full width for buttons */
  padding: 16px 24px;
  /* Padding for buttons */
  font-size: 18px;
  /* Font size for buttons */
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  /* Space between buttons */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-dx .btn-3d:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
#custom-html-dx .btn-3d:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}
#custom-html-dx .btn-3d.btn-primary {
  background: linear-gradient(145deg, #007bff, #0056b3);
}
#custom-html-dx .btn-3d.btn-success {
  background: linear-gradient(145deg, #28a745, #1e7e34);
}
#custom-html-dx .btn-3d.btn-info {
  background: linear-gradient(145deg, #17a2b8, #117a8b);
}
#custom-html-dx .btn-3d.btn-warning {
  background: linear-gradient(145deg, #ffc107, #e0a800);
}
.cid-un7mm1HEMF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-8-1920x1280.jpg");
}
.cid-un7mm1HEMF .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un7mm1HEMF .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un7mm1HEMF .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un7mm1HEMF .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un7mm1HEMF .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un7mm23oTf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-un7mm23oTf .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #232323;
}
.cid-un7mm23oTf .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-un7mm23oTf .price-tage {
  background: #808080 none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-un7mm23oTf .price-tage > p {
  letter-spacing: 2px;
}
.cid-un7mm23oTf .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-un7mm23oTf .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em 1em;
}
.cid-un7mm23oTf .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-un7mm23oTf .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-un7mm23oTf .costs {
  color: #ffffff;
}
.cid-un7mm23oTf .costs-title {
  color: #ffffff;
}
.cid-un7mm23oTf .price-item {
  padding-bottom: 0;
}
.cid-un7mm23oTf .table-content {
  margin-bottom: 0;
}
.cid-un7mm23oTf .table-content > li:last-child {
  border-bottom: none;
}
.cid-un7mm2RWaJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-un7mm2RWaJ .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un7mm2RWaJ .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un7mm2RWaJ .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un7mm2RWaJ .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un7mm2RWaJ .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
#custom-html-e1 {
  /* Type valid CSS here */
}
#custom-html-e1 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-e1 p {
  font-size: 60px;
  color: #777;
}
.cid-un7mm3KOax {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x883.jpg");
}
.cid-un7mm3KOax .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-un7mm3KOax .mbr-text {
  width: 100%;
  height: auto;
}
.cid-un7mm3KOax .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-un7mm3KOax .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-un7mm3KOax .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-un7mm47k69 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-e4 {
  /* Type valid CSS here */
}
#custom-html-e4 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-e4 p {
  font-size: 60px;
  color: #777;
}
.cid-un7mm4LB2R {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-un7mm4LB2R a:link {
  text-decoration: none;
}
.cid-un7mm4LB2R .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-un7mm4LB2R .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-un7mm4LB2R .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-un7mm4LB2R .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-un7mm4LB2R .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-un7mm4LB2R .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-un7mm4LB2R .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-un7mm4LB2R .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-un7mm4LB2R .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-un7mm4LB2R .plan-title,
.cid-un7mm4LB2R .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-un7mm4LB2R .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-un7mm4LB2R .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-un7mm4LB2R .mbr-section-title span {
  color: #ffbc00;
}
#custom-html-e6 {
  /* Type valid CSS here */
}
#custom-html-e6 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-e6 p {
  font-size: 60px;
  color: #777;
}
.cid-un7mm5Grgk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-un7mm5Grgk .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-un7mm5Grgk .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-un7mm5Grgk .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-un7mm5Grgk .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-un7mm5Grgk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-un7mm5Grgk .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-un7mm5Grgk .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-un7mm5Grgk .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-un7mm5Grgk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-un7mm5Grgk .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-un7mm5Grgk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-un7mm5Grgk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-un7mm5Grgk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-un7mm5Grgk .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-un7mm5Grgk .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-un7mm5Grgk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-un7mm5Grgk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-un7mm5Grgk .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-un7mm5Grgk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-un7mm5Grgk .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-un7mm5Grgk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-un7mm5Grgk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-un7mm5Grgk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-un7mm5Grgk .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-un7mm5Grgk .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-un7mm5Grgk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-un7mm5Grgk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-un7mm5Grgk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-un7mm5Grgk .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-un7mm5Grgk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-un7mm5Grgk .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-un7mm5Grgk .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-un7mm5Grgk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-un7mm5Grgk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-un7mm5Grgk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-un7mm5Grgk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-un7mm5Grgk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-un7mm5Grgk .dropdown-item.active,
.cid-un7mm5Grgk .dropdown-item:active {
  background-color: transparent;
}
.cid-un7mm5Grgk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-un7mm5Grgk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-un7mm5Grgk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-un7mm5Grgk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-un7mm5Grgk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-un7mm5Grgk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-un7mm5Grgk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-un7mm5Grgk .navbar-buttons {
  text-align: center;
}
.cid-un7mm5Grgk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-un7mm5Grgk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-un7mm5Grgk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-un7mm5Grgk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-un7mm5Grgk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-un7mm5Grgk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-un7mm5Grgk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un7mm5Grgk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-un7mm5Grgk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-un7mm5Grgk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-un7mm5Grgk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-un7mm5Grgk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-un7mm5Grgk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-un7mm5Grgk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-un7mm5Grgk .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-un7mm5Grgk .nav-link:hover,
.cid-un7mm5Grgk .dropdown-item:hover {
  color: #c1c1c1 !important;
}
