body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Comfortaa', display;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.2rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 0.9rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1875rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 20px 30px;
  border-radius: 8px;
}
.bg-primary {
  background-color: #848abd !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #f3f4f7 !important;
}
.bg-warning {
  background-color: #b97ecd !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #848abd !important;
  border-color: #848abd !important;
  color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #555d9f !important;
  border-color: #555d9f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0e569e !important;
  border-color: #0e569e !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #083058 !important;
  border-color: #083058 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f3f4f7 !important;
  border-color: #f3f4f7 !important;
  color: #5e6a8d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #5e6a8d !important;
  background-color: #c5cad8 !important;
  border-color: #c5cad8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #b97ecd !important;
  border-color: #b97ecd !important;
  color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b47b7 !important;
  border-color: #9b47b7 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #404040 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !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 {
  background: none;
  border-color: #848abd;
  color: #848abd;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #848abd;
  border-color: #848abd;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #848abd !important;
  border-color: #848abd !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0e569e;
  color: #0e569e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #0e569e;
  border-color: #0e569e;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0e569e !important;
  border-color: #0e569e !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #f3f4f7;
  color: #f3f4f7;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #5e6a8d;
  background-color: #f3f4f7;
  border-color: #f3f4f7;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #5e6a8d !important;
  background-color: #f3f4f7 !important;
  border-color: #f3f4f7 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #b97ecd;
  color: #b97ecd;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #b97ecd;
  border-color: #b97ecd;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b97ecd !important;
  border-color: #b97ecd !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #848abd !important;
}
.text-secondary {
  color: #0e569e !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #f3f4f7 !important;
}
.text-warning {
  color: #b97ecd !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c6c9e1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #2689ec !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffffff !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ffffff !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e1c8e9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #333333 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f3f4f7;
}
.alert-warning {
  background-color: #b97ecd;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #848abd;
  border-color: #848abd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #848abd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d7d9ea;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 0.8rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.28rem;
}
blockquote {
  border-color: #848abd;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #848abd;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #848abd;
  border-bottom-color: #848abd;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #848abd !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #0e569e !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23848abd' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sxjrPLqqOz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxjrPLqqOz .image-wrapper {
  padding: 0;
}
.cid-sxjrPLqqOz .img-item,
.cid-sxjrPLqqOz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sxjrPLqqOz .container-fluid {
  padding: 0 1rem;
}
.cid-sxjrPLqqOz .wrapper {
  max-width: 550px;
  margin: auto;
  padding: 4rem 0;
}
.cid-sxjrPLqqOz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 757px) {
  .cid-sxjrPLqqOz .card-wrapper {
    flex-direction: column;
  }
}
.cid-sxjrPLqqOz .mbr-iconfont {
  font-size: 2rem;
}
.cid-sxjrPLqqOz .icon1 {
  color: #ffffff;
}
.cid-sxjrPLqqOz .icon-wrapper {
  background: #3c71d3;
  border-radius: 50%;
  min-width: 80px;
  height: 80px;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 757px) {
  .cid-sxjrPLqqOz .icon-wrapper {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-sxjrPLqqOz .mbr-text,
.cid-sxjrPLqqOz .mbr-section-btn {
  color: #878787;
}
.cid-sxjrPLqqOz .mbr-section-subtitle {
  color: #4f5b5f;
}
.cid-sxjrPLqqOz .mbr-list {
  color: #777777;
}
@media (max-width: 767px) {
  .cid-sxjrPLqqOz .mbr-list {
    justify-content: center;
    display: flex;
  }
}
.cid-sxjrPLqqOz .card-text {
  color: #606060;
}
.cid-sxjrPLqqOz .card-title {
  color: #000000;
}
.cid-sxjrPLqqOz .mbr-section-title {
  color: #ff0000;
}
.cid-sxibfOZRHU .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxibfOZRHU .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxibfOZRHU .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxibfOZRHU .hidden {
  display: none;
}
.cid-sxibfOZRHU H10 {
  color: #767676;
}
.cid-skJsouPVSx.popup-builder {
  background-color: #ffffff;
}
.cid-skJsouPVSx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skJsouPVSx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skJsouPVSx .modal-content,
.cid-skJsouPVSx .modal-dialog {
  height: auto;
}
.cid-skJsouPVSx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skJsouPVSx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skJsouPVSx .form-wrapper .mbr-form .form-group,
  .cid-skJsouPVSx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skJsouPVSx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skJsouPVSx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skJsouPVSx .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-skJsouPVSx .pt-0 {
  padding-top: 0 !important;
}
.cid-skJsouPVSx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skJsouPVSx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skJsouPVSx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skJsouPVSx .modal-open {
  overflow: hidden;
}
.cid-skJsouPVSx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skJsouPVSx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skJsouPVSx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skJsouPVSx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skJsouPVSx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skJsouPVSx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skJsouPVSx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skJsouPVSx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skJsouPVSx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skJsouPVSx .modal-backdrop.fade {
  opacity: 0;
}
.cid-skJsouPVSx .modal-backdrop.show {
  opacity: .5;
}
.cid-skJsouPVSx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skJsouPVSx .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skJsouPVSx .modal-header .close:hover {
  opacity: 1;
}
.cid-skJsouPVSx .modal-header .close:focus {
  outline: none;
}
.cid-skJsouPVSx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skJsouPVSx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skJsouPVSx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skJsouPVSx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skJsouPVSx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skJsouPVSx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skJsouPVSx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skJsouPVSx .modal-sm {
    max-width: 300px;
  }
  .cid-skJsouPVSx .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skJsouPVSx .modal-lg,
  .cid-skJsouPVSx .modal-xl {
    max-width: 800px;
  }
  .cid-skJsouPVSx .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skJsouPVSx .modal-xl {
    max-width: 1140px;
  }
  .cid-skJsouPVSx .container {
    max-width: 1140px;
  }
}
.cid-skJsouPVSx .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skJsouPVSx .container {
    max-width: 720px;
  }
}
.cid-skJsouPVSx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skJsouPVSx .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skJsouPVSx .form-group {
  margin-bottom: 1rem;
}
.cid-skJsouPVSx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skJsouPVSx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skJsouPVSx .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skJsEbYBmG.popup-builder {
  background-color: #ffffff;
}
.cid-skJsEbYBmG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skJsEbYBmG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skJsEbYBmG .modal-content,
.cid-skJsEbYBmG .modal-dialog {
  height: auto;
}
.cid-skJsEbYBmG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skJsEbYBmG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skJsEbYBmG .form-wrapper .mbr-form .form-group,
  .cid-skJsEbYBmG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skJsEbYBmG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skJsEbYBmG .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skJsEbYBmG .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-skJsEbYBmG .pt-0 {
  padding-top: 0 !important;
}
.cid-skJsEbYBmG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skJsEbYBmG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skJsEbYBmG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skJsEbYBmG .modal-open {
  overflow: hidden;
}
.cid-skJsEbYBmG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skJsEbYBmG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skJsEbYBmG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skJsEbYBmG .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skJsEbYBmG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skJsEbYBmG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skJsEbYBmG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skJsEbYBmG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skJsEbYBmG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skJsEbYBmG .modal-backdrop.fade {
  opacity: 0;
}
.cid-skJsEbYBmG .modal-backdrop.show {
  opacity: .5;
}
.cid-skJsEbYBmG .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skJsEbYBmG .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skJsEbYBmG .modal-header .close:hover {
  opacity: 1;
}
.cid-skJsEbYBmG .modal-header .close:focus {
  outline: none;
}
.cid-skJsEbYBmG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skJsEbYBmG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skJsEbYBmG .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skJsEbYBmG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skJsEbYBmG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skJsEbYBmG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skJsEbYBmG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skJsEbYBmG .modal-sm {
    max-width: 300px;
  }
  .cid-skJsEbYBmG .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skJsEbYBmG .modal-lg,
  .cid-skJsEbYBmG .modal-xl {
    max-width: 800px;
  }
  .cid-skJsEbYBmG .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skJsEbYBmG .modal-xl {
    max-width: 1140px;
  }
  .cid-skJsEbYBmG .container {
    max-width: 1140px;
  }
}
.cid-skJsEbYBmG .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skJsEbYBmG .container {
    max-width: 720px;
  }
}
.cid-skJsEbYBmG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skJsEbYBmG .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skJsEbYBmG .form-group {
  margin-bottom: 1rem;
}
.cid-skJsEbYBmG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skJsEbYBmG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skJsEbYBmG .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sv37AVWTCF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3f4f7;
}
.cid-sv37AVWTCF .card-box {
  padding: 1rem;
  padding-top: 2rem;
}
@media (min-width: 1500px) {
  .cid-sv37AVWTCF .container {
    max-width: 1400px;
  }
}
.cid-sv37AVWTCF img {
  width: 100%;
  border-radius: 26px 26px 0px 0px;
}
.cid-sv37AVWTCF .link-wrap {
  width: 100%;
}
.cid-sv37AVWTCF .link {
  display: inline-block;
}
.cid-sv37AVWTCF .card {
  transition: all 0.3s;
}
.cid-sv37AVWTCF .card:hover {
  transform: translateY(-10px);
}
.cid-sv37AVWTCF .card-wrapper {
  background-position: center;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  cursor: pointer;
  background: #f9fafb;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sv37AVWTCF .card-box {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-sv37AVWTCF .card-title,
.cid-sv37AVWTCF .card-box DIV {
  text-align: center;
}
.cid-sv37AVWTCF .mbr-text,
.cid-sv37AVWTCF .mbr-section-btn {
  text-align: center;
}
.cid-sv37AVWTCF .main-title {
  color: #606060;
}
.cid-sv37AVWTCF .mbr-text,
.cid-sv37AVWTCF .link-wrap {
  color: #7b7b7b;
}
.cid-sv37AVWTCF .card-title,
.cid-sv37AVWTCF .card-box {
  color: #111111;
}
.cid-svdhqi4a9z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svdhqi4a9z .container-fluid {
  max-width: 100%;
  padding: 0;
}
.cid-svdhqi4a9z MARQUEE {
  color: #FF0000;
  text-align: left;
}
.cid-sWykKY8P6o {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sWykKY8P6o [class^="socicon-"]:before,
.cid-sWykKY8P6o [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWykKY8P6o .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWykKY8P6o .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWykKY8P6o .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWykKY8P6o .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-sWRKsVhF1c {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #eff1f5;
}
.cid-sWRKsVhF1c .card {
  background: #ffffff;
  border-radius: 10px;
}
.cid-sWRKsVhF1c img {
  width: 100%;
  border-radius: 10px;
}
.cid-sWRKsVhF1c .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-sWRKsVhF1c .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sWRKsVhF1c .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-sWRKsVhF1c img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-sWRKsVhF1c .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-sWRKsVhF1c img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sWRKsVhF1c img {
    width: 100%;
  }
}
.cid-sWRKsVhF1c .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sWRKsVhF1c .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWRKsVhF1c .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #999999;
  font-weight: bold;
  font-size: 1.6rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWRKsVhF1c ul {
  padding-left: 1.7rem!important;
}
.cid-sWRKsVhF1c .mbr-text,
.cid-sWRKsVhF1c .mbr-section-btn {
  color: #606060;
}
.cid-sWRKsVhF1c .mbr-section-subtitle {
  color: #000000;
}
.cid-sWRKsVhF1c .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWRKsVhF1c .mbr-section-title {
  color: #4f5b5f;
}
.cid-sWRKsVhF1c .mbr-list {
  color: #606060;
}
.cid-sw5uyEYxBw {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/nicepng-water-pipe-png-1636075-829x275.png");
}
.cid-sw5uyEYxBw .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sw5uyEYxBw .icon-box {
  background: #0e569e;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sw5uyEYxBw .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw5uyEYxBw .card {
    margin-bottom: 2rem;
  }
  .cid-sw5uyEYxBw .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sw5uyEYxBw .card-title,
.cid-sw5uyEYxBw .card-box {
  color: #404040;
  text-align: center;
}
.cid-sw5uyEYxBw .icon-text {
  color: #606060;
}
.cid-sw5uyEYxBw .icon-title {
  color: #404040;
}
.cid-sw5uyEYxBw .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sv3dEewLzH {
  background-image: url("../../../assets/images/mbr-1281x1287.jpg");
}
.cid-sv3dEewLzH H1 {
  color: #000000;
}
.cid-sv3dEewLzH .mbr-text,
.cid-sv3dEewLzH .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-sv3dEewLzH .mbr-subtitle {
  color: #000000;
}
.cid-sv3dEewLzH .mbr-text {
  margin-top: 1.5rem;
}
.cid-sv3dEewLzH .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sv3dEewLzH .mbr-section-title,
.cid-sv3dEewLzH .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-sv3dEewLzH .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skA1Rs4hvb.popup-builder {
  background-color: #ffffff;
}
.cid-skA1Rs4hvb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skA1Rs4hvb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skA1Rs4hvb .modal-content,
.cid-skA1Rs4hvb .modal-dialog {
  height: auto;
}
.cid-skA1Rs4hvb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skA1Rs4hvb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skA1Rs4hvb .form-wrapper .mbr-form .form-group,
  .cid-skA1Rs4hvb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skA1Rs4hvb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skA1Rs4hvb .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skA1Rs4hvb .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-skA1Rs4hvb .pt-0 {
  padding-top: 0 !important;
}
.cid-skA1Rs4hvb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skA1Rs4hvb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skA1Rs4hvb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skA1Rs4hvb .modal-open {
  overflow: hidden;
}
.cid-skA1Rs4hvb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skA1Rs4hvb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skA1Rs4hvb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skA1Rs4hvb .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skA1Rs4hvb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skA1Rs4hvb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skA1Rs4hvb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skA1Rs4hvb .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skA1Rs4hvb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skA1Rs4hvb .modal-backdrop.fade {
  opacity: 0;
}
.cid-skA1Rs4hvb .modal-backdrop.show {
  opacity: .5;
}
.cid-skA1Rs4hvb .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skA1Rs4hvb .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skA1Rs4hvb .modal-header .close:hover {
  opacity: 1;
}
.cid-skA1Rs4hvb .modal-header .close:focus {
  outline: none;
}
.cid-skA1Rs4hvb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skA1Rs4hvb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skA1Rs4hvb .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skA1Rs4hvb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skA1Rs4hvb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skA1Rs4hvb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skA1Rs4hvb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skA1Rs4hvb .modal-sm {
    max-width: 300px;
  }
  .cid-skA1Rs4hvb .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skA1Rs4hvb .modal-lg,
  .cid-skA1Rs4hvb .modal-xl {
    max-width: 800px;
  }
  .cid-skA1Rs4hvb .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skA1Rs4hvb .modal-xl {
    max-width: 1140px;
  }
  .cid-skA1Rs4hvb .container {
    max-width: 1140px;
  }
}
.cid-skA1Rs4hvb .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skA1Rs4hvb .container {
    max-width: 720px;
  }
}
.cid-skA1Rs4hvb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skA1Rs4hvb .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skA1Rs4hvb .form-group {
  margin-bottom: 1rem;
}
.cid-skA1Rs4hvb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skA1Rs4hvb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skA1Rs4hvb .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skK3aV9xXA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f3f4f7;
}
.cid-skK3aV9xXA .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skK3aV9xXA .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skK3aV9xXA .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skK3aV9xXA .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skK3aV9xXA .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skK3aV9xXA .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skK3aV9xXA .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skK3aV9xXA .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skK3aV9xXA .card-title {
  color: #404040;
}
.cid-skK3aV9xXA .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skK3aV9xXA .mbr-text,
.cid-skK3aV9xXA .mbr-section-btn {
  color: #606060;
}
.cid-skJMncSuyy.popup-builder {
  background-color: #ffffff;
}
.cid-skJMncSuyy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skJMncSuyy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skJMncSuyy .modal-content,
.cid-skJMncSuyy .modal-dialog {
  height: auto;
}
.cid-skJMncSuyy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skJMncSuyy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skJMncSuyy .form-wrapper .mbr-form .form-group,
  .cid-skJMncSuyy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skJMncSuyy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skJMncSuyy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skJMncSuyy .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-skJMncSuyy .pt-0 {
  padding-top: 0 !important;
}
.cid-skJMncSuyy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skJMncSuyy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skJMncSuyy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skJMncSuyy .modal-open {
  overflow: hidden;
}
.cid-skJMncSuyy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skJMncSuyy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skJMncSuyy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skJMncSuyy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skJMncSuyy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skJMncSuyy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skJMncSuyy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skJMncSuyy .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skJMncSuyy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skJMncSuyy .modal-backdrop.fade {
  opacity: 0;
}
.cid-skJMncSuyy .modal-backdrop.show {
  opacity: .5;
}
.cid-skJMncSuyy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skJMncSuyy .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skJMncSuyy .modal-header .close:hover {
  opacity: 1;
}
.cid-skJMncSuyy .modal-header .close:focus {
  outline: none;
}
.cid-skJMncSuyy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skJMncSuyy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skJMncSuyy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skJMncSuyy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skJMncSuyy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skJMncSuyy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skJMncSuyy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skJMncSuyy .modal-sm {
    max-width: 300px;
  }
  .cid-skJMncSuyy .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skJMncSuyy .modal-lg,
  .cid-skJMncSuyy .modal-xl {
    max-width: 800px;
  }
  .cid-skJMncSuyy .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skJMncSuyy .modal-xl {
    max-width: 1140px;
  }
  .cid-skJMncSuyy .container {
    max-width: 1140px;
  }
}
.cid-skJMncSuyy .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skJMncSuyy .container {
    max-width: 720px;
  }
}
.cid-skJMncSuyy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skJMncSuyy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skJMncSuyy .form-group {
  margin-bottom: 1rem;
}
.cid-skJMncSuyy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skJMncSuyy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skJMncSuyy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sv3egVUxJX {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/pngaaa.com-895130-2000x828.png");
}
.cid-sv3egVUxJX .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 0;
  color: #606060;
}
.cid-sv3egVUxJX .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-sv3egVUxJX .mbr-section-btn {
  margin-top: 45px;
}
.cid-sv3egVUxJX .mbr-section-btn .btn {
  height: 60px;
  font-weight: 500;
}
.cid-sv3egVUxJX img {
  width: 160px;
  height: 80px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 0px 0px #F0FFFF;
}
@media (max-width: 767px) {
  .cid-sv3egVUxJX .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-sv3egVUxJX .mbr-section-btn .btn {
    height: 50px;
  }
  .cid-sv3egVUxJX .mbr-text {
    margin-top: 10px;
  }
}
.cid-sv3egVUxJX .mbr-text,
.cid-sv3egVUxJX .mbr-section-btn {
  color: #000000;
}
.cid-sv3egVUxJX .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWRO0cHLET {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #f3f4f7;
}
.cid-sWRO0cHLET .row {
  background: #ffffff;
  padding: 3rem 2rem;
  margin: 0rem;
}
@media (max-width: 767px) {
  .cid-sWRO0cHLET .row {
    padding: 1rem 0rem;
  }
}
.cid-sWRO0cHLET img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-sWRO0cHLET img {
    width: 100%;
  }
}
.cid-sWRO0cHLET .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sWRO0cHLET .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWRO0cHLET .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #f3f4f7;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-sWRO0cHLET .mbr-text,
.cid-sWRO0cHLET .mbr-section-btn {
  color: #878787;
}
.cid-sWRO0cHLET .mbr-section-subtitle {
  color: #777777;
}
.cid-sWRO0cHLET .mbr-list {
  color: #878787;
}
.cid-sWRO0cHLET .mbr-section-title {
  color: #404040;
}
.cid-sWRO0cHLET .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skJWS8mTku.popup-builder {
  background-color: #ffffff;
}
.cid-skJWS8mTku.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skJWS8mTku.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skJWS8mTku .modal-content,
.cid-skJWS8mTku .modal-dialog {
  height: auto;
}
.cid-skJWS8mTku .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skJWS8mTku .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skJWS8mTku .form-wrapper .mbr-form .form-group,
  .cid-skJWS8mTku .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skJWS8mTku .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skJWS8mTku .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skJWS8mTku .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-skJWS8mTku .pt-0 {
  padding-top: 0 !important;
}
.cid-skJWS8mTku .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skJWS8mTku .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skJWS8mTku .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skJWS8mTku .modal-open {
  overflow: hidden;
}
.cid-skJWS8mTku .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skJWS8mTku .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skJWS8mTku .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skJWS8mTku .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skJWS8mTku .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skJWS8mTku .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skJWS8mTku .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skJWS8mTku .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skJWS8mTku .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skJWS8mTku .modal-backdrop.fade {
  opacity: 0;
}
.cid-skJWS8mTku .modal-backdrop.show {
  opacity: .5;
}
.cid-skJWS8mTku .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skJWS8mTku .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skJWS8mTku .modal-header .close:hover {
  opacity: 1;
}
.cid-skJWS8mTku .modal-header .close:focus {
  outline: none;
}
.cid-skJWS8mTku .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skJWS8mTku .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skJWS8mTku .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skJWS8mTku .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skJWS8mTku .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skJWS8mTku .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skJWS8mTku .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skJWS8mTku .modal-sm {
    max-width: 300px;
  }
  .cid-skJWS8mTku .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skJWS8mTku .modal-lg,
  .cid-skJWS8mTku .modal-xl {
    max-width: 800px;
  }
  .cid-skJWS8mTku .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skJWS8mTku .modal-xl {
    max-width: 1140px;
  }
  .cid-skJWS8mTku .container {
    max-width: 1140px;
  }
}
.cid-skJWS8mTku .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skJWS8mTku .container {
    max-width: 720px;
  }
}
.cid-skJWS8mTku .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skJWS8mTku .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skJWS8mTku .form-group {
  margin-bottom: 1rem;
}
.cid-skJWS8mTku .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skJWS8mTku .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skJWS8mTku .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skJXklS5zQ.popup-builder {
  background-color: #ffffff;
}
.cid-skJXklS5zQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skJXklS5zQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skJXklS5zQ .modal-content,
.cid-skJXklS5zQ .modal-dialog {
  height: auto;
}
.cid-skJXklS5zQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skJXklS5zQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skJXklS5zQ .form-wrapper .mbr-form .form-group,
  .cid-skJXklS5zQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skJXklS5zQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skJXklS5zQ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skJXklS5zQ .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-skJXklS5zQ .pt-0 {
  padding-top: 0 !important;
}
.cid-skJXklS5zQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skJXklS5zQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skJXklS5zQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skJXklS5zQ .modal-open {
  overflow: hidden;
}
.cid-skJXklS5zQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skJXklS5zQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skJXklS5zQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skJXklS5zQ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skJXklS5zQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skJXklS5zQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skJXklS5zQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skJXklS5zQ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skJXklS5zQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skJXklS5zQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-skJXklS5zQ .modal-backdrop.show {
  opacity: .5;
}
.cid-skJXklS5zQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skJXklS5zQ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skJXklS5zQ .modal-header .close:hover {
  opacity: 1;
}
.cid-skJXklS5zQ .modal-header .close:focus {
  outline: none;
}
.cid-skJXklS5zQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skJXklS5zQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skJXklS5zQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skJXklS5zQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skJXklS5zQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skJXklS5zQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skJXklS5zQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skJXklS5zQ .modal-sm {
    max-width: 300px;
  }
  .cid-skJXklS5zQ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skJXklS5zQ .modal-lg,
  .cid-skJXklS5zQ .modal-xl {
    max-width: 800px;
  }
  .cid-skJXklS5zQ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skJXklS5zQ .modal-xl {
    max-width: 1140px;
  }
  .cid-skJXklS5zQ .container {
    max-width: 1140px;
  }
}
.cid-skJXklS5zQ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skJXklS5zQ .container {
    max-width: 720px;
  }
}
.cid-skJXklS5zQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skJXklS5zQ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skJXklS5zQ .form-group {
  margin-bottom: 1rem;
}
.cid-skJXklS5zQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skJXklS5zQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skJXklS5zQ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uQtg42APYA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f3f4f7;
}
.cid-uQtg42APYA .row {
  background: #ffffff;
  padding: 3rem 2rem;
  margin: 0rem;
}
@media (max-width: 767px) {
  .cid-uQtg42APYA .row {
    padding: 1rem 0rem;
  }
}
.cid-uQtg42APYA img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uQtg42APYA img {
    width: 100%;
  }
}
.cid-uQtg42APYA .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-uQtg42APYA .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uQtg42APYA .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #f3f4f7;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-uQtg42APYA .mbr-text,
.cid-uQtg42APYA .mbr-section-btn {
  color: #878787;
}
.cid-uQtg42APYA .mbr-section-subtitle {
  color: #777777;
}
.cid-uQtg42APYA .mbr-list {
  color: #878787;
}
.cid-uQtg42APYA .mbr-section-title {
  color: #404040;
}
.cid-uQtg42APYA .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uQtj93KpnW.popup-builder {
  background-color: #ffffff;
}
.cid-uQtj93KpnW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQtj93KpnW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQtj93KpnW .modal-content,
.cid-uQtj93KpnW .modal-dialog {
  height: auto;
}
.cid-uQtj93KpnW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQtj93KpnW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQtj93KpnW .form-wrapper .mbr-form .form-group,
  .cid-uQtj93KpnW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQtj93KpnW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQtj93KpnW .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQtj93KpnW .mbr-text {
  text-align: center;
}
.cid-uQtj93KpnW .pt-0 {
  padding-top: 0 !important;
}
.cid-uQtj93KpnW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQtj93KpnW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQtj93KpnW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQtj93KpnW .modal-open {
  overflow: hidden;
}
.cid-uQtj93KpnW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQtj93KpnW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQtj93KpnW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQtj93KpnW .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uQtj93KpnW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQtj93KpnW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQtj93KpnW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQtj93KpnW .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uQtj93KpnW .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQtj93KpnW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQtj93KpnW .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQtj93KpnW .modal-backdrop.show {
  opacity: .5;
}
.cid-uQtj93KpnW .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uQtj93KpnW .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQtj93KpnW .modal-header {
    padding: 1rem;
  }
}
.cid-uQtj93KpnW .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQtj93KpnW .modal-header .close svg {
  fill: #353535;
}
.cid-uQtj93KpnW .modal-header .close:hover {
  opacity: 1;
}
.cid-uQtj93KpnW .modal-header .close:focus {
  outline: none;
}
.cid-uQtj93KpnW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQtj93KpnW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQtj93KpnW .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQtj93KpnW .modal-body {
    padding: 1rem;
  }
}
.cid-uQtj93KpnW .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uQtj93KpnW .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQtj93KpnW .modal-footer {
    padding: 1rem;
  }
}
.cid-uQtj93KpnW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQtj93KpnW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQtj93KpnW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQtj93KpnW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQtj93KpnW .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQtj93KpnW .modal-lg,
  .cid-uQtj93KpnW .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQtj93KpnW .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQtj93KpnW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQtj93KpnW .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uQtj93KpnW .form-group {
  margin-bottom: 1rem;
}
.cid-uQtj93KpnW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQtj93KpnW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQtj93KpnW .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uQtj93KpnW .mbr-section-btn {
  margin: 0;
}
.cid-uQtj93KpnW .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQtjzGcJRw.popup-builder {
  background-color: #ffffff;
}
.cid-uQtjzGcJRw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQtjzGcJRw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQtjzGcJRw .modal-content,
.cid-uQtjzGcJRw .modal-dialog {
  height: auto;
}
.cid-uQtjzGcJRw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQtjzGcJRw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQtjzGcJRw .form-wrapper .mbr-form .form-group,
  .cid-uQtjzGcJRw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQtjzGcJRw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQtjzGcJRw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQtjzGcJRw .mbr-text {
  text-align: center;
}
.cid-uQtjzGcJRw .pt-0 {
  padding-top: 0 !important;
}
.cid-uQtjzGcJRw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQtjzGcJRw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQtjzGcJRw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQtjzGcJRw .modal-open {
  overflow: hidden;
}
.cid-uQtjzGcJRw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQtjzGcJRw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQtjzGcJRw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQtjzGcJRw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uQtjzGcJRw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQtjzGcJRw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQtjzGcJRw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQtjzGcJRw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uQtjzGcJRw .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQtjzGcJRw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQtjzGcJRw .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQtjzGcJRw .modal-backdrop.show {
  opacity: .5;
}
.cid-uQtjzGcJRw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uQtjzGcJRw .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQtjzGcJRw .modal-header {
    padding: 1rem;
  }
}
.cid-uQtjzGcJRw .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQtjzGcJRw .modal-header .close svg {
  fill: #353535;
}
.cid-uQtjzGcJRw .modal-header .close:hover {
  opacity: 1;
}
.cid-uQtjzGcJRw .modal-header .close:focus {
  outline: none;
}
.cid-uQtjzGcJRw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQtjzGcJRw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQtjzGcJRw .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQtjzGcJRw .modal-body {
    padding: 1rem;
  }
}
.cid-uQtjzGcJRw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uQtjzGcJRw .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQtjzGcJRw .modal-footer {
    padding: 1rem;
  }
}
.cid-uQtjzGcJRw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQtjzGcJRw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQtjzGcJRw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQtjzGcJRw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQtjzGcJRw .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQtjzGcJRw .modal-lg,
  .cid-uQtjzGcJRw .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQtjzGcJRw .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQtjzGcJRw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQtjzGcJRw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uQtjzGcJRw .form-group {
  margin-bottom: 1rem;
}
.cid-uQtjzGcJRw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQtjzGcJRw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQtjzGcJRw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uQtjzGcJRw .mbr-section-btn {
  margin: 0;
}
.cid-uQtjzGcJRw .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQtjV8jDqh.popup-builder {
  background-color: #ffffff;
}
.cid-uQtjV8jDqh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQtjV8jDqh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQtjV8jDqh .modal-content,
.cid-uQtjV8jDqh .modal-dialog {
  height: auto;
}
.cid-uQtjV8jDqh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQtjV8jDqh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQtjV8jDqh .form-wrapper .mbr-form .form-group,
  .cid-uQtjV8jDqh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQtjV8jDqh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQtjV8jDqh .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQtjV8jDqh .mbr-text {
  text-align: center;
}
.cid-uQtjV8jDqh .pt-0 {
  padding-top: 0 !important;
}
.cid-uQtjV8jDqh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQtjV8jDqh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQtjV8jDqh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQtjV8jDqh .modal-open {
  overflow: hidden;
}
.cid-uQtjV8jDqh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQtjV8jDqh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQtjV8jDqh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQtjV8jDqh .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uQtjV8jDqh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQtjV8jDqh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQtjV8jDqh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQtjV8jDqh .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uQtjV8jDqh .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQtjV8jDqh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQtjV8jDqh .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQtjV8jDqh .modal-backdrop.show {
  opacity: .5;
}
.cid-uQtjV8jDqh .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uQtjV8jDqh .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQtjV8jDqh .modal-header {
    padding: 1rem;
  }
}
.cid-uQtjV8jDqh .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQtjV8jDqh .modal-header .close svg {
  fill: #353535;
}
.cid-uQtjV8jDqh .modal-header .close:hover {
  opacity: 1;
}
.cid-uQtjV8jDqh .modal-header .close:focus {
  outline: none;
}
.cid-uQtjV8jDqh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQtjV8jDqh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQtjV8jDqh .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQtjV8jDqh .modal-body {
    padding: 1rem;
  }
}
.cid-uQtjV8jDqh .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uQtjV8jDqh .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQtjV8jDqh .modal-footer {
    padding: 1rem;
  }
}
.cid-uQtjV8jDqh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQtjV8jDqh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQtjV8jDqh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQtjV8jDqh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQtjV8jDqh .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQtjV8jDqh .modal-lg,
  .cid-uQtjV8jDqh .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQtjV8jDqh .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQtjV8jDqh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQtjV8jDqh .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uQtjV8jDqh .form-group {
  margin-bottom: 1rem;
}
.cid-uQtjV8jDqh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQtjV8jDqh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQtjV8jDqh .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uQtjV8jDqh .mbr-section-btn {
  margin: 0;
}
.cid-uQtjV8jDqh .mbr-section-btn .btn {
  margin: 0;
}
.cid-sv3eQBnZZK {
  padding-top: 11rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1920x1374.jpg");
}
.cid-sv3eQBnZZK .animate__fadeInUp:before {
  background: #000000;
}
.cid-sv3eQBnZZK .text-wrapper {
  z-index: 11;
}
.cid-sv3eQBnZZK .wrapper {
  display: flex;
  flex-direction: column;
}
.cid-sv3eQBnZZK .animate__fadeInUp:before {
  background: "file:///H:/Martechwaterfilter-com-PAK-08July--2025----01/assets/images/mbr-1920x1374.jpg";
}
.cid-sv3eQBnZZK .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #848abd;
  margin-right: 0rem;
  margin-bottom: 2rem;
}
.cid-sv3eQBnZZK .iconfont-wrapper {
  margin: auto;
}
.cid-sv3eQBnZZK .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sv3eQBnZZK .mbr-text,
.cid-sv3eQBnZZK .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sv3eQBnZZK .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skJYW5Mgnf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f3f4f7;
}
.cid-skJYW5Mgnf .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skJYW5Mgnf .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skJYW5Mgnf .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skJYW5Mgnf .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skJYW5Mgnf .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skJYW5Mgnf .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skJYW5Mgnf .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skJYW5Mgnf .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skJYW5Mgnf .card-title {
  color: #404040;
}
.cid-skJYW5Mgnf .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skJYW5Mgnf .mbr-text,
.cid-skJYW5Mgnf .mbr-section-btn {
  color: #606060;
}
.cid-skA53m6oXF.popup-builder {
  background-color: #ffffff;
}
.cid-skA53m6oXF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skA53m6oXF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skA53m6oXF .modal-content,
.cid-skA53m6oXF .modal-dialog {
  height: auto;
}
.cid-skA53m6oXF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skA53m6oXF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skA53m6oXF .form-wrapper .mbr-form .form-group,
  .cid-skA53m6oXF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skA53m6oXF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skA53m6oXF .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skA53m6oXF .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-skA53m6oXF .pt-0 {
  padding-top: 0 !important;
}
.cid-skA53m6oXF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skA53m6oXF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skA53m6oXF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skA53m6oXF .modal-open {
  overflow: hidden;
}
.cid-skA53m6oXF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skA53m6oXF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skA53m6oXF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skA53m6oXF .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skA53m6oXF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skA53m6oXF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skA53m6oXF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skA53m6oXF .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skA53m6oXF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skA53m6oXF .modal-backdrop.fade {
  opacity: 0;
}
.cid-skA53m6oXF .modal-backdrop.show {
  opacity: .5;
}
.cid-skA53m6oXF .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skA53m6oXF .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skA53m6oXF .modal-header .close:hover {
  opacity: 1;
}
.cid-skA53m6oXF .modal-header .close:focus {
  outline: none;
}
.cid-skA53m6oXF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skA53m6oXF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skA53m6oXF .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skA53m6oXF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skA53m6oXF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skA53m6oXF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skA53m6oXF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skA53m6oXF .modal-sm {
    max-width: 300px;
  }
  .cid-skA53m6oXF .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skA53m6oXF .modal-lg,
  .cid-skA53m6oXF .modal-xl {
    max-width: 800px;
  }
  .cid-skA53m6oXF .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skA53m6oXF .modal-xl {
    max-width: 1140px;
  }
  .cid-skA53m6oXF .container {
    max-width: 1140px;
  }
}
.cid-skA53m6oXF .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skA53m6oXF .container {
    max-width: 720px;
  }
}
.cid-skA53m6oXF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skA53m6oXF .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skA53m6oXF .form-group {
  margin-bottom: 1rem;
}
.cid-skA53m6oXF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skA53m6oXF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skA53m6oXF .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skJYXrSiWB.popup-builder {
  background-color: #ffffff;
}
.cid-skJYXrSiWB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skJYXrSiWB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skJYXrSiWB .modal-content,
.cid-skJYXrSiWB .modal-dialog {
  height: auto;
}
.cid-skJYXrSiWB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skJYXrSiWB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skJYXrSiWB .form-wrapper .mbr-form .form-group,
  .cid-skJYXrSiWB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skJYXrSiWB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skJYXrSiWB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skJYXrSiWB .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-skJYXrSiWB .pt-0 {
  padding-top: 0 !important;
}
.cid-skJYXrSiWB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skJYXrSiWB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skJYXrSiWB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skJYXrSiWB .modal-open {
  overflow: hidden;
}
.cid-skJYXrSiWB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skJYXrSiWB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skJYXrSiWB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skJYXrSiWB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skJYXrSiWB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skJYXrSiWB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skJYXrSiWB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skJYXrSiWB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skJYXrSiWB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skJYXrSiWB .modal-backdrop.fade {
  opacity: 0;
}
.cid-skJYXrSiWB .modal-backdrop.show {
  opacity: .5;
}
.cid-skJYXrSiWB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skJYXrSiWB .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skJYXrSiWB .modal-header .close:hover {
  opacity: 1;
}
.cid-skJYXrSiWB .modal-header .close:focus {
  outline: none;
}
.cid-skJYXrSiWB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skJYXrSiWB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skJYXrSiWB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skJYXrSiWB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skJYXrSiWB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skJYXrSiWB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skJYXrSiWB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skJYXrSiWB .modal-sm {
    max-width: 300px;
  }
  .cid-skJYXrSiWB .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skJYXrSiWB .modal-lg,
  .cid-skJYXrSiWB .modal-xl {
    max-width: 800px;
  }
  .cid-skJYXrSiWB .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skJYXrSiWB .modal-xl {
    max-width: 1140px;
  }
  .cid-skJYXrSiWB .container {
    max-width: 1140px;
  }
}
.cid-skJYXrSiWB .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skJYXrSiWB .container {
    max-width: 720px;
  }
}
.cid-skJYXrSiWB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skJYXrSiWB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skJYXrSiWB .form-group {
  margin-bottom: 1rem;
}
.cid-skJYXrSiWB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skJYXrSiWB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skJYXrSiWB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sjUcGTVSRL .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sjUcGTVSRL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sjUcGTVSRL .navbar.collapsed {
  flex-direction: row !important;
}
.cid-sjUcGTVSRL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sjUcGTVSRL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-sjUcGTVSRL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sjUcGTVSRL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sjUcGTVSRL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sjUcGTVSRL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjUcGTVSRL .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sjUcGTVSRL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sjUcGTVSRL .dropdown-item.active,
.cid-sjUcGTVSRL .dropdown-item:active {
  background-color: transparent;
}
.cid-sjUcGTVSRL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sjUcGTVSRL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjUcGTVSRL ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sjUcGTVSRL .navbar-buttons {
  text-align: left;
}
.cid-sjUcGTVSRL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sjUcGTVSRL a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-sjUcGTVSRL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-link:hover,
.cid-sjUcGTVSRL .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sWRSjyDmdK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWRSjyDmdK .image-wrapper {
  padding: 0;
}
.cid-sWRSjyDmdK .img-item,
.cid-sWRSjyDmdK img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sWRSjyDmdK .container-fluid {
  padding: 0 1rem;
}
.cid-sWRSjyDmdK .wrapper {
  max-width: 550px;
  margin: auto;
  padding: 4rem 0;
}
.cid-sWRSjyDmdK .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 757px) {
  .cid-sWRSjyDmdK .card-wrapper {
    flex-direction: column;
  }
}
.cid-sWRSjyDmdK .mbr-iconfont {
  font-size: 2rem;
}
.cid-sWRSjyDmdK .icon1 {
  color: #999999;
}
.cid-sWRSjyDmdK .icon-wrapper {
  background: #eff1f5;
  border-radius: 50%;
  min-width: 40px;
  height: 40px;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 757px) {
  .cid-sWRSjyDmdK .icon-wrapper {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-sWRSjyDmdK .mbr-text,
.cid-sWRSjyDmdK .mbr-section-btn {
  color: #606060;
}
.cid-sWRSjyDmdK .mbr-section-subtitle {
  color: #777777;
}
.cid-sWRSjyDmdK .mbr-list {
  color: #777777;
}
@media (max-width: 767px) {
  .cid-sWRSjyDmdK .mbr-list {
    justify-content: center;
    display: flex;
  }
}
.cid-sWRSjyDmdK .card-text {
  color: #606060;
}
.cid-sWRSjyDmdK .card-title {
  color: #14191e;
}
.cid-sWRSjyDmdK .mbr-section-title {
  color: #404040;
}
.cid-slwxxQrWLz.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQrWLz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQrWLz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQrWLz .modal-content,
.cid-slwxxQrWLz .modal-dialog {
  height: auto;
}
.cid-slwxxQrWLz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQrWLz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQrWLz .form-wrapper .mbr-form .form-group,
  .cid-slwxxQrWLz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQrWLz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQrWLz .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQrWLz .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQrWLz .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQrWLz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQrWLz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQrWLz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQrWLz .modal-open {
  overflow: hidden;
}
.cid-slwxxQrWLz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQrWLz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQrWLz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQrWLz .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQrWLz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQrWLz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQrWLz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQrWLz .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQrWLz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQrWLz .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQrWLz .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQrWLz .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQrWLz .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQrWLz .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQrWLz .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQrWLz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQrWLz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQrWLz .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQrWLz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQrWLz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQrWLz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQrWLz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQrWLz .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQrWLz .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQrWLz .modal-lg,
  .cid-slwxxQrWLz .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQrWLz .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQrWLz .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQrWLz .container {
    max-width: 1140px;
  }
}
.cid-slwxxQrWLz .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQrWLz .container {
    max-width: 720px;
  }
}
.cid-slwxxQrWLz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQrWLz .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQrWLz .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQrWLz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQrWLz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQrWLz .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQrWLz .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMHjj5.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMHjj5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMHjj5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMHjj5 .modal-content,
.cid-slwygMHjj5 .modal-dialog {
  height: auto;
}
.cid-slwygMHjj5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMHjj5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMHjj5 .form-wrapper .mbr-form .form-group,
  .cid-slwygMHjj5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMHjj5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMHjj5 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMHjj5 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMHjj5 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMHjj5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMHjj5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMHjj5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMHjj5 .modal-open {
  overflow: hidden;
}
.cid-slwygMHjj5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMHjj5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMHjj5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMHjj5 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMHjj5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMHjj5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMHjj5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMHjj5 .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMHjj5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMHjj5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMHjj5 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMHjj5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMHjj5 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMHjj5 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMHjj5 .modal-header .close:focus {
  outline: none;
}
.cid-slwygMHjj5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMHjj5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMHjj5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMHjj5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMHjj5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMHjj5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMHjj5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMHjj5 .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMHjj5 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMHjj5 .modal-lg,
  .cid-slwygMHjj5 .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMHjj5 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMHjj5 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMHjj5 .container {
    max-width: 1140px;
  }
}
.cid-slwygMHjj5 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMHjj5 .container {
    max-width: 720px;
  }
}
.cid-slwygMHjj5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMHjj5 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMHjj5 .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMHjj5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMHjj5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMHjj5 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMHjj5 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sx8maxdz5t {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #eff1f5;
}
.cid-sx8maxdz5t .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(153, 153, 153, 0.15);
  margin-bottom: 16px;
}
.cid-sx8maxdz5t .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sx8maxdz5t .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sx8maxdz5t .main-title.display-2 {
  line-height: 1.375;
}
.cid-sx8maxdz5t .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sx8maxdz5t .mbr-text {
  color: #606060;
}
.cid-sx8maxdz5t .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sx8maxdz5t .mbr-section-btn {
  margin-top: 24px;
}
.cid-sx8maxdz5t .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-sx8maxdz5t .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sx8maxdz5t .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sx8maxdz5t .mbr-section-subtitle,
.cid-sx8maxdz5t .mbr-section-btn {
  color: #57468b;
}
.cid-sx8maxdz5t .main-title,
.cid-sx8maxdz5t .mbr-section-btn {
  color: #4f5b5f;
}
.cid-sx8maxdz5t .badge,
.cid-sx8maxdz5t .badge_wrap,
.cid-sx8maxdz5t .mbr-section-btn {
  color: #1e1e1e;
}
.cid-sx8maxdz5t .mbr-text,
.cid-sx8maxdz5t .mbr-section-btn {
  color: #1e1e1e;
}
.cid-sx8maxdz5t .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slASi5R8WJ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slASi5R8WJ ul {
  padding: 0;
  margin: 0;
}
.cid-slASi5R8WJ ul li {
  list-style: none;
}
.cid-slASi5R8WJ ul li h4 {
  margin: 0;
}
.cid-slASi5R8WJ ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slASi5R8WJ .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slASi5R8WJ .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slASi5R8WJ .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slASi5R8WJ .col-title1 {
  margin-bottom: 40px;
}
.cid-slASi5R8WJ .form-group,
.cid-slASi5R8WJ .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slASi5R8WJ .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slASi5R8WJ .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slASi5R8WJ .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slASi5R8WJ .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slASi5R8WJ .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slASi5R8WJ .col + .mbr-section-btn .btn,
.cid-slASi5R8WJ .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slASi5R8WJ .col + .mbr-section-btn .btn.display-4,
.cid-slASi5R8WJ .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slASi5R8WJ .col + .mbr-section-btn .btn:hover,
.cid-slASi5R8WJ .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slASi5R8WJ .dragArea > *:nth-last-child(2).col,
.cid-slASi5R8WJ .dragArea > *:nth-last-child(2).col-auto,
.cid-slASi5R8WJ .col + .mbr-section-btn,
.cid-slASi5R8WJ .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slASi5R8WJ .form1 {
  margin-top: 30px;
}
.cid-slASi5R8WJ .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slASi5R8WJ .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slASi5R8WJ .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skM34234RE .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skM34234RE .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skM34234RE .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skM34234RE .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skM34234RE .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skM34234RE .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skM34234RE .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skM34234RE .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skM34234RE .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skM34234RE .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skM34234RE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skM34234RE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skM34234RE .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skM34234RE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skM34234RE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skM34234RE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skM34234RE .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skM34234RE .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skM34234RE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skM34234RE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skM34234RE .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skM34234RE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skM34234RE .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skM34234RE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skM34234RE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skM34234RE .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skM34234RE .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skM34234RE .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skM34234RE .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skM34234RE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skM34234RE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skM34234RE .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skM34234RE .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skM34234RE .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skM34234RE .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skM34234RE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skM34234RE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skM34234RE .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skM34234RE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skM34234RE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skM34234RE .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skM34234RE .dropdown-item.active,
.cid-skM34234RE .dropdown-item:active {
  background-color: transparent;
}
.cid-skM34234RE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skM34234RE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skM34234RE .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skM34234RE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skM34234RE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skM34234RE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skM34234RE ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skM34234RE .navbar-buttons {
  text-align: left;
}
.cid-skM34234RE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skM34234RE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skM34234RE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skM34234RE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skM34234RE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skM34234RE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skM34234RE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skM34234RE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skM34234RE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skM34234RE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skM34234RE .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skM34234RE a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skM34234RE .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skM34234RE .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skM34234RE .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skM34234RE .nav-link:hover,
.cid-skM34234RE .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-syfi3A4kUm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f9fafb;
}
.cid-syfi3A4kUm .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-syfi3A4kUm .text-wrapper:hover .mbr-section-title a {
  color: #0e569e !important;
}
.cid-syfi3A4kUm .image-wrapper,
.cid-syfi3A4kUm img {
  width: 100%;
  object-fit: cover;
}
.cid-syfi3A4kUm .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #4f5b5f;
  text-align: center;
}
.cid-syfi3A4kUm .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-syfi3A4kUm .mbr-section-btn .btn-secondary-outline:hover,
.cid-syfi3A4kUm .mbr-section-btn .btn-secondary-outline .active,
.cid-syfi3A4kUm .mbr-section-btn .btn-secondary-outline:focus {
  color: #848abd !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-syfi3A4kUm .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-syfi3A4kUm {
    flex-direction: column;
  }
  .cid-syfi3A4kUm .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syfi3A4kUm .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-syfi3A4kUm .mbr-section-title {
  color: #4f5b5f;
  text-align: center;
}
.cid-syfi3A4kUm .mbr-text,
.cid-syfi3A4kUm .mbr-section-btn {
  color: #4f5b5f;
  text-align: center;
}
.cid-syfi3A4kUm .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxilfLkqVW .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxilfLkqVW .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxilfLkqVW .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxilfLkqVW .hidden {
  display: none;
}
.cid-sxilfLkqVW H10 {
  color: #767676;
}
.cid-skM344pVOr {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skM344pVOr .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skM344pVOr .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skM344pVOr .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skM344pVOr .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skM344pVOr .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skM344pVOr .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skM344pVOr .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skM344pVOr .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skM344pVOr .card-title {
  color: #4f5b5f;
}
.cid-skM344pVOr .mbr-text,
.cid-skM344pVOr .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skM344pVOr .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-svqH61KES0 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/bg-fountain-bev-1920x1364.jpeg");
}
.cid-svqH61KES0 .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-svqH61KES0 .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-svqH61KES0 .mbr-section-btn {
  margin-top: 45px;
}
.cid-svqH61KES0 .mbr-section-btn .btn {
  height: 60px;
  font-weight: 500;
}
.cid-svqH61KES0 img {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-svqH61KES0 .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-svqH61KES0 .mbr-section-btn .btn {
    height: 50px;
  }
  .cid-svqH61KES0 .mbr-text {
    margin-top: 10px;
  }
}
.cid-svqH61KES0 .mbr-text,
.cid-svqH61KES0 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-svqH61KES0 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl9i1NJ30T.popup-builder {
  background-color: #ffffff;
}
.cid-sl9i1NJ30T.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9i1NJ30T.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9i1NJ30T .modal-content,
.cid-sl9i1NJ30T .modal-dialog {
  height: auto;
}
.cid-sl9i1NJ30T .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9i1NJ30T .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9i1NJ30T .form-wrapper .mbr-form .form-group,
  .cid-sl9i1NJ30T .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9i1NJ30T .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9i1NJ30T .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9i1NJ30T .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9i1NJ30T .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9i1NJ30T .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9i1NJ30T .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9i1NJ30T .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9i1NJ30T .modal-open {
  overflow: hidden;
}
.cid-sl9i1NJ30T .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9i1NJ30T .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9i1NJ30T .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9i1NJ30T .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9i1NJ30T .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9i1NJ30T .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9i1NJ30T .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9i1NJ30T .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9i1NJ30T .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9i1NJ30T .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9i1NJ30T .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9i1NJ30T .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9i1NJ30T .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9i1NJ30T .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9i1NJ30T .modal-header .close:focus {
  outline: none;
}
.cid-sl9i1NJ30T .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9i1NJ30T .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9i1NJ30T .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9i1NJ30T .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9i1NJ30T .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9i1NJ30T .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9i1NJ30T .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9i1NJ30T .modal-sm {
    max-width: 300px;
  }
  .cid-sl9i1NJ30T .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9i1NJ30T .modal-lg,
  .cid-sl9i1NJ30T .modal-xl {
    max-width: 800px;
  }
  .cid-sl9i1NJ30T .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9i1NJ30T .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9i1NJ30T .container {
    max-width: 1140px;
  }
}
.cid-sl9i1NJ30T .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9i1NJ30T .container {
    max-width: 720px;
  }
}
.cid-sl9i1NJ30T .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9i1NJ30T .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9i1NJ30T .form-group {
  margin-bottom: 1rem;
}
.cid-sl9i1NJ30T .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9i1NJ30T .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9i1NJ30T .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sxdoFdvcUG {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-sxdoFdvcUG h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sxdoFdvcUG h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-sxdoFdvcUG .media-container-row {
  justify-content: space-between;
}
.cid-sxdoFdvcUG .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxdoFdvcUG .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sxdoFdvcUG .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sxdoFdvcUG a:link {
  text-decoration: none;
}
.cid-sxdoFdvcUG .icon-transition span {
  text-align: center;
  color: #d698b5;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 20%;
  border: 1px solid #d698b5;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-sxdoFdvcUG .icon-transition span:hover {
  background-color: rgba(153, 153, 153, 0.5);
  color: #ffffff;
}
.cid-sxdoFdvcUG .btn {
  min-width: 195px;
}
.cid-sxdoFdvcUG .btn.btn-primary-outline {
  border: 1px solid #848abd;
}
.cid-sxdoFdvcUG .btn.btn-primary-outline:hover {
  background-color: #848abd !important;
  color: #ffffff !important;
}
.cid-sxdoFdvcUG .btn.btn-secondary-outline {
  border: 1px solid #0e569e;
}
.cid-sxdoFdvcUG .btn.btn-secondary-outline:hover {
  background-color: #0e569e !important;
  color: #ffffff !important;
}
.cid-sxdoFdvcUG .btn.btn-success-outline {
  border: 1px solid #ffffff;
}
.cid-sxdoFdvcUG .btn.btn-success-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-sxdoFdvcUG .btn.btn-info-outline {
  border: 1px solid #f3f4f7;
}
.cid-sxdoFdvcUG .btn.btn-info-outline:hover {
  background-color: #f3f4f7 !important;
  color: #ffffff !important;
}
.cid-sxdoFdvcUG .btn.btn-warning-outline {
  border: 1px solid #b97ecd;
}
.cid-sxdoFdvcUG .btn.btn-warning-outline:hover {
  background-color: #b97ecd !important;
  color: #ffffff !important;
}
.cid-sxdoFdvcUG .btn.btn-danger-outline {
  border: 1px solid #000000;
}
.cid-sxdoFdvcUG .btn.btn-danger-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sxdoFdvcUG .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sxdoFdvcUG .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sxdoFdvcUG .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sxdoFdvcUG .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 992px) {
  .cid-sxdoFdvcUG .wrap {
    justify-content: center;
  }
}
.cid-sxdoFdvcUG .mbr-section-title {
  color: #999999;
}
.cid-svqH7QqKS0 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/bev-splash-1920x1000.jpg");
}
.cid-svqH7QqKS0 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(135, 135, 135, 0.15);
  margin-bottom: 16px;
}
.cid-svqH7QqKS0 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svqH7QqKS0 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-svqH7QqKS0 .main-title.display-2 {
  line-height: 1.375;
}
.cid-svqH7QqKS0 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svqH7QqKS0 .mbr-text {
  color: #606060;
}
.cid-svqH7QqKS0 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-svqH7QqKS0 .mbr-section-btn {
  margin-top: 24px;
}
.cid-svqH7QqKS0 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-svqH7QqKS0 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-svqH7QqKS0 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-svqH7QqKS0 .mbr-section-subtitle,
.cid-svqH7QqKS0 .mbr-section-btn {
  color: #ffffff;
}
.cid-svqH7QqKS0 .main-title,
.cid-svqH7QqKS0 .mbr-section-btn {
  color: #ffffff;
}
.cid-svqH7QqKS0 .badge,
.cid-svqH7QqKS0 .badge_wrap,
.cid-svqH7QqKS0 .mbr-section-btn {
  color: #f9fafb;
}
.cid-svqH7QqKS0 .mbr-text,
.cid-svqH7QqKS0 .mbr-section-btn {
  color: #ffffff;
}
.cid-svqH7QqKS0 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skM3460Oo1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skM3460Oo1 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skM3460Oo1 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skM3460Oo1 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skM3460Oo1 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skM3460Oo1 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skM3460Oo1 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skM3460Oo1 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skM3460Oo1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skM3460Oo1 .card-title {
  color: #4f5b5f;
}
.cid-skM3460Oo1 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skM3460Oo1 .mbr-text,
.cid-skM3460Oo1 .mbr-section-btn {
  color: #606060;
}
.cid-sl9ivulSYh.popup-builder {
  background-color: #ffffff;
}
.cid-sl9ivulSYh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9ivulSYh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9ivulSYh .modal-content,
.cid-sl9ivulSYh .modal-dialog {
  height: auto;
}
.cid-sl9ivulSYh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9ivulSYh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9ivulSYh .form-wrapper .mbr-form .form-group,
  .cid-sl9ivulSYh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9ivulSYh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9ivulSYh .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9ivulSYh .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9ivulSYh .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9ivulSYh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9ivulSYh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9ivulSYh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9ivulSYh .modal-open {
  overflow: hidden;
}
.cid-sl9ivulSYh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9ivulSYh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9ivulSYh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9ivulSYh .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9ivulSYh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9ivulSYh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9ivulSYh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9ivulSYh .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9ivulSYh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9ivulSYh .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9ivulSYh .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9ivulSYh .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9ivulSYh .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9ivulSYh .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9ivulSYh .modal-header .close:focus {
  outline: none;
}
.cid-sl9ivulSYh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9ivulSYh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9ivulSYh .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9ivulSYh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9ivulSYh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9ivulSYh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9ivulSYh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9ivulSYh .modal-sm {
    max-width: 300px;
  }
  .cid-sl9ivulSYh .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9ivulSYh .modal-lg,
  .cid-sl9ivulSYh .modal-xl {
    max-width: 800px;
  }
  .cid-sl9ivulSYh .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9ivulSYh .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9ivulSYh .container {
    max-width: 1140px;
  }
}
.cid-sl9ivulSYh .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9ivulSYh .container {
    max-width: 720px;
  }
}
.cid-sl9ivulSYh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9ivulSYh .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9ivulSYh .form-group {
  margin-bottom: 1rem;
}
.cid-sl9ivulSYh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9ivulSYh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9ivulSYh .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-svqHax32qd {
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-svqHax32qd H1 {
  color: #000000;
}
.cid-svqHax32qd .mbr-text,
.cid-svqHax32qd .mbr-section-btn {
  color: #ffffff;
}
.cid-svqHax32qd .mbr-subtitle {
  color: #000000;
}
.cid-svqHax32qd .mbr-text {
  margin-top: 1.5rem;
}
.cid-svqHax32qd .mbr-section-btn {
  margin-top: 2rem;
}
.cid-svqHax32qd .mbr-section-title,
.cid-svqHax32qd .mbr-section-btn {
  color: #ffffff;
}
.cid-svqHax32qd .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skM347wLyO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skM347wLyO .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skM347wLyO .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skM347wLyO .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skM347wLyO .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skM347wLyO .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skM347wLyO .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skM347wLyO .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skM347wLyO .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skM347wLyO .card-title {
  color: #4f5b5f;
}
.cid-skM347wLyO .mbr-text,
.cid-skM347wLyO .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skM347wLyO .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl9jmFhjSF.popup-builder {
  background-color: #ffffff;
}
.cid-sl9jmFhjSF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9jmFhjSF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9jmFhjSF .modal-content,
.cid-sl9jmFhjSF .modal-dialog {
  height: auto;
}
.cid-sl9jmFhjSF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9jmFhjSF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9jmFhjSF .form-wrapper .mbr-form .form-group,
  .cid-sl9jmFhjSF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9jmFhjSF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9jmFhjSF .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9jmFhjSF .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9jmFhjSF .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9jmFhjSF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9jmFhjSF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9jmFhjSF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9jmFhjSF .modal-open {
  overflow: hidden;
}
.cid-sl9jmFhjSF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9jmFhjSF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9jmFhjSF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9jmFhjSF .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9jmFhjSF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9jmFhjSF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9jmFhjSF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9jmFhjSF .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9jmFhjSF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9jmFhjSF .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9jmFhjSF .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9jmFhjSF .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9jmFhjSF .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9jmFhjSF .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9jmFhjSF .modal-header .close:focus {
  outline: none;
}
.cid-sl9jmFhjSF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9jmFhjSF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9jmFhjSF .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9jmFhjSF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9jmFhjSF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9jmFhjSF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9jmFhjSF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9jmFhjSF .modal-sm {
    max-width: 300px;
  }
  .cid-sl9jmFhjSF .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9jmFhjSF .modal-lg,
  .cid-sl9jmFhjSF .modal-xl {
    max-width: 800px;
  }
  .cid-sl9jmFhjSF .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9jmFhjSF .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9jmFhjSF .container {
    max-width: 1140px;
  }
}
.cid-sl9jmFhjSF .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9jmFhjSF .container {
    max-width: 720px;
  }
}
.cid-sl9jmFhjSF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9jmFhjSF .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9jmFhjSF .form-group {
  margin-bottom: 1rem;
}
.cid-sl9jmFhjSF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9jmFhjSF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9jmFhjSF .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-svqHdeo4Iu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-svqHdeo4Iu H1 {
  color: #000000;
}
.cid-svqHdeo4Iu .mbr-text,
.cid-svqHdeo4Iu .mbr-section-btn {
  color: #000000;
}
.cid-svqHdeo4Iu .mbr-subtitle {
  color: #000000;
}
.cid-svqHdeo4Iu .mbr-text {
  margin-top: 1.5rem;
}
.cid-svqHdeo4Iu .mbr-section-btn {
  margin-top: 2rem;
}
.cid-svqHdeo4Iu .mbr-section-title,
.cid-svqHdeo4Iu .mbr-section-btn {
  color: #606060;
}
.cid-svqHdeo4Iu .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwxxQsgrY.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQsgrY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQsgrY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQsgrY .modal-content,
.cid-slwxxQsgrY .modal-dialog {
  height: auto;
}
.cid-slwxxQsgrY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQsgrY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQsgrY .form-wrapper .mbr-form .form-group,
  .cid-slwxxQsgrY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQsgrY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQsgrY .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQsgrY .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQsgrY .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQsgrY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQsgrY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQsgrY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQsgrY .modal-open {
  overflow: hidden;
}
.cid-slwxxQsgrY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQsgrY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQsgrY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQsgrY .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQsgrY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQsgrY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQsgrY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQsgrY .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQsgrY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQsgrY .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQsgrY .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQsgrY .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQsgrY .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQsgrY .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQsgrY .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQsgrY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQsgrY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQsgrY .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQsgrY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQsgrY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQsgrY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQsgrY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQsgrY .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQsgrY .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQsgrY .modal-lg,
  .cid-slwxxQsgrY .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQsgrY .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQsgrY .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQsgrY .container {
    max-width: 1140px;
  }
}
.cid-slwxxQsgrY .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQsgrY .container {
    max-width: 720px;
  }
}
.cid-slwxxQsgrY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQsgrY .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQsgrY .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQsgrY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQsgrY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQsgrY .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQsgrY .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMHIK4.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMHIK4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMHIK4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMHIK4 .modal-content,
.cid-slwygMHIK4 .modal-dialog {
  height: auto;
}
.cid-slwygMHIK4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMHIK4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMHIK4 .form-wrapper .mbr-form .form-group,
  .cid-slwygMHIK4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMHIK4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMHIK4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMHIK4 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMHIK4 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMHIK4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMHIK4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMHIK4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMHIK4 .modal-open {
  overflow: hidden;
}
.cid-slwygMHIK4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMHIK4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMHIK4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMHIK4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMHIK4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMHIK4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMHIK4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMHIK4 .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMHIK4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMHIK4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMHIK4 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMHIK4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMHIK4 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMHIK4 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMHIK4 .modal-header .close:focus {
  outline: none;
}
.cid-slwygMHIK4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMHIK4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMHIK4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMHIK4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMHIK4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMHIK4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMHIK4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMHIK4 .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMHIK4 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMHIK4 .modal-lg,
  .cid-slwygMHIK4 .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMHIK4 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMHIK4 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMHIK4 .container {
    max-width: 1140px;
  }
}
.cid-slwygMHIK4 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMHIK4 .container {
    max-width: 720px;
  }
}
.cid-slwygMHIK4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMHIK4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMHIK4 .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMHIK4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMHIK4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMHIK4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMHIK4 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slARAd8jy5 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slARAd8jy5 ul {
  padding: 0;
  margin: 0;
}
.cid-slARAd8jy5 ul li {
  list-style: none;
}
.cid-slARAd8jy5 ul li h4 {
  margin: 0;
}
.cid-slARAd8jy5 ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slARAd8jy5 .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slARAd8jy5 .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slARAd8jy5 .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slARAd8jy5 .col-title1 {
  margin-bottom: 40px;
}
.cid-slARAd8jy5 .form-group,
.cid-slARAd8jy5 .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slARAd8jy5 .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slARAd8jy5 .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slARAd8jy5 .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slARAd8jy5 .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slARAd8jy5 .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slARAd8jy5 .col + .mbr-section-btn .btn,
.cid-slARAd8jy5 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slARAd8jy5 .col + .mbr-section-btn .btn.display-4,
.cid-slARAd8jy5 .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slARAd8jy5 .col + .mbr-section-btn .btn:hover,
.cid-slARAd8jy5 .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slARAd8jy5 .dragArea > *:nth-last-child(2).col,
.cid-slARAd8jy5 .dragArea > *:nth-last-child(2).col-auto,
.cid-slARAd8jy5 .col + .mbr-section-btn,
.cid-slARAd8jy5 .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slARAd8jy5 .form1 {
  margin-top: 30px;
}
.cid-slARAd8jy5 .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slARAd8jy5 .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slARAd8jy5 .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skLTOrI0hP .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skLTOrI0hP .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skLTOrI0hP .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skLTOrI0hP .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skLTOrI0hP .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skLTOrI0hP .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skLTOrI0hP .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skLTOrI0hP .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skLTOrI0hP .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skLTOrI0hP .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skLTOrI0hP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skLTOrI0hP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skLTOrI0hP .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skLTOrI0hP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skLTOrI0hP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skLTOrI0hP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skLTOrI0hP .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skLTOrI0hP .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skLTOrI0hP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skLTOrI0hP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skLTOrI0hP .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skLTOrI0hP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skLTOrI0hP .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skLTOrI0hP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skLTOrI0hP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skLTOrI0hP .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skLTOrI0hP .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skLTOrI0hP .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skLTOrI0hP .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skLTOrI0hP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skLTOrI0hP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skLTOrI0hP .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skLTOrI0hP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skLTOrI0hP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skLTOrI0hP .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skLTOrI0hP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skLTOrI0hP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skLTOrI0hP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skLTOrI0hP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skLTOrI0hP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skLTOrI0hP .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skLTOrI0hP .dropdown-item.active,
.cid-skLTOrI0hP .dropdown-item:active {
  background-color: transparent;
}
.cid-skLTOrI0hP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skLTOrI0hP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skLTOrI0hP .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skLTOrI0hP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skLTOrI0hP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skLTOrI0hP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skLTOrI0hP ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skLTOrI0hP .navbar-buttons {
  text-align: left;
}
.cid-skLTOrI0hP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skLTOrI0hP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skLTOrI0hP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skLTOrI0hP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skLTOrI0hP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skLTOrI0hP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skLTOrI0hP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skLTOrI0hP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skLTOrI0hP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skLTOrI0hP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skLTOrI0hP .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skLTOrI0hP a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skLTOrI0hP .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skLTOrI0hP .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skLTOrI0hP .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skLTOrI0hP .nav-link:hover,
.cid-skLTOrI0hP .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sWyHGSBuhi {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-sWyHGSBuhi .card {
  background: #ffffff;
  border-radius: 10px;
}
.cid-sWyHGSBuhi img {
  width: 100%;
  border-radius: 10px;
}
.cid-sWyHGSBuhi .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-sWyHGSBuhi .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sWyHGSBuhi .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-sWyHGSBuhi img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-sWyHGSBuhi .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-sWyHGSBuhi img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sWyHGSBuhi img {
    width: 100%;
  }
}
.cid-sWyHGSBuhi .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sWyHGSBuhi .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWyHGSBuhi .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #eff1f5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
  content: "✓";
}
.cid-sWyHGSBuhi .mbr-text,
.cid-sWyHGSBuhi .mbr-section-btn {
  color: #464646;
}
.cid-sWyHGSBuhi .mbr-section-subtitle {
  color: #111111;
}
.cid-sWyHGSBuhi .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWyHGSBuhi .mbr-section-title {
  color: #4f5b5f;
}
.cid-sxil2HrZI8 .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxil2HrZI8 .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxil2HrZI8 .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxil2HrZI8 .hidden {
  display: none;
}
.cid-sxil2HrZI8 H10 {
  color: #767676;
}
.cid-sWyGZ5Zrm8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sWyGZ5Zrm8 [class^="socicon-"]:before,
.cid-sWyGZ5Zrm8 [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWyGZ5Zrm8 .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWyGZ5Zrm8 .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWyGZ5Zrm8 .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWyGZ5Zrm8 .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-skLTOuo550 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skLTOuo550 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skLTOuo550 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skLTOuo550 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skLTOuo550 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skLTOuo550 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skLTOuo550 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skLTOuo550 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skLTOuo550 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skLTOuo550 .card-title {
  color: #4f5b5f;
}
.cid-skLTOuo550 .mbr-text,
.cid-skLTOuo550 .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skLTOuo550 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl9gd8Uc8j.popup-builder {
  background-color: #ffffff;
}
.cid-sl9gd8Uc8j.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9gd8Uc8j.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9gd8Uc8j .modal-content,
.cid-sl9gd8Uc8j .modal-dialog {
  height: auto;
}
.cid-sl9gd8Uc8j .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9gd8Uc8j .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9gd8Uc8j .form-wrapper .mbr-form .form-group,
  .cid-sl9gd8Uc8j .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9gd8Uc8j .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9gd8Uc8j .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9gd8Uc8j .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9gd8Uc8j .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9gd8Uc8j .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9gd8Uc8j .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9gd8Uc8j .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9gd8Uc8j .modal-open {
  overflow: hidden;
}
.cid-sl9gd8Uc8j .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9gd8Uc8j .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9gd8Uc8j .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9gd8Uc8j .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9gd8Uc8j .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9gd8Uc8j .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9gd8Uc8j .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9gd8Uc8j .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9gd8Uc8j .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9gd8Uc8j .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9gd8Uc8j .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9gd8Uc8j .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9gd8Uc8j .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9gd8Uc8j .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9gd8Uc8j .modal-header .close:focus {
  outline: none;
}
.cid-sl9gd8Uc8j .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9gd8Uc8j .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9gd8Uc8j .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9gd8Uc8j .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9gd8Uc8j .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9gd8Uc8j .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9gd8Uc8j .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9gd8Uc8j .modal-sm {
    max-width: 300px;
  }
  .cid-sl9gd8Uc8j .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9gd8Uc8j .modal-lg,
  .cid-sl9gd8Uc8j .modal-xl {
    max-width: 800px;
  }
  .cid-sl9gd8Uc8j .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9gd8Uc8j .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9gd8Uc8j .container {
    max-width: 1140px;
  }
}
.cid-sl9gd8Uc8j .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9gd8Uc8j .container {
    max-width: 720px;
  }
}
.cid-sl9gd8Uc8j .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9gd8Uc8j .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9gd8Uc8j .form-group {
  margin-bottom: 1rem;
}
.cid-sl9gd8Uc8j .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9gd8Uc8j .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9gd8Uc8j .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-svqFxeM4of {
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpeg");
}
.cid-svqFxeM4of H1 {
  color: #000000;
}
.cid-svqFxeM4of .mbr-text,
.cid-svqFxeM4of .mbr-section-btn {
  color: #000000;
}
.cid-svqFxeM4of .mbr-subtitle {
  color: #000000;
}
.cid-svqFxeM4of .mbr-text {
  margin-top: 1.5rem;
}
.cid-svqFxeM4of .mbr-section-btn {
  margin-top: 2rem;
}
.cid-svqFxeM4of .mbr-section-title,
.cid-svqFxeM4of .mbr-section-btn {
  color: #404040;
}
.cid-svqFxeM4of .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLTOw1bUM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skLTOw1bUM .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skLTOw1bUM .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skLTOw1bUM .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skLTOw1bUM .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skLTOw1bUM .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skLTOw1bUM .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skLTOw1bUM .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skLTOw1bUM .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skLTOw1bUM .card-title {
  color: #4f5b5f;
}
.cid-skLTOw1bUM .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLTOw1bUM .mbr-text,
.cid-skLTOw1bUM .mbr-section-btn {
  color: #606060;
}
.cid-sl9gQBpKiZ.popup-builder {
  background-color: #ffffff;
}
.cid-sl9gQBpKiZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9gQBpKiZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9gQBpKiZ .modal-content,
.cid-sl9gQBpKiZ .modal-dialog {
  height: auto;
}
.cid-sl9gQBpKiZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9gQBpKiZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9gQBpKiZ .form-wrapper .mbr-form .form-group,
  .cid-sl9gQBpKiZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9gQBpKiZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9gQBpKiZ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9gQBpKiZ .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9gQBpKiZ .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9gQBpKiZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9gQBpKiZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9gQBpKiZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9gQBpKiZ .modal-open {
  overflow: hidden;
}
.cid-sl9gQBpKiZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9gQBpKiZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9gQBpKiZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9gQBpKiZ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9gQBpKiZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9gQBpKiZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9gQBpKiZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9gQBpKiZ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9gQBpKiZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9gQBpKiZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9gQBpKiZ .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9gQBpKiZ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9gQBpKiZ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9gQBpKiZ .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9gQBpKiZ .modal-header .close:focus {
  outline: none;
}
.cid-sl9gQBpKiZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9gQBpKiZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9gQBpKiZ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9gQBpKiZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9gQBpKiZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9gQBpKiZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9gQBpKiZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9gQBpKiZ .modal-sm {
    max-width: 300px;
  }
  .cid-sl9gQBpKiZ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9gQBpKiZ .modal-lg,
  .cid-sl9gQBpKiZ .modal-xl {
    max-width: 800px;
  }
  .cid-sl9gQBpKiZ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9gQBpKiZ .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9gQBpKiZ .container {
    max-width: 1140px;
  }
}
.cid-sl9gQBpKiZ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9gQBpKiZ .container {
    max-width: 720px;
  }
}
.cid-sl9gQBpKiZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9gQBpKiZ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9gQBpKiZ .form-group {
  margin-bottom: 1rem;
}
.cid-sl9gQBpKiZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9gQBpKiZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9gQBpKiZ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-svqFyApBCs {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1-1920x1080.jpg");
}
.cid-svqFyApBCs .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-svqFyApBCs .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-svqFyApBCs .mbr-section-btn {
  margin-top: 45px;
}
.cid-svqFyApBCs .mbr-section-btn .btn {
  height: 60px;
  font-weight: 500;
}
.cid-svqFyApBCs img {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-svqFyApBCs .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-svqFyApBCs .mbr-section-btn .btn {
    height: 50px;
  }
  .cid-svqFyApBCs .mbr-text {
    margin-top: 10px;
  }
}
.cid-svqFyApBCs .mbr-text,
.cid-svqFyApBCs .mbr-section-btn {
  color: #ffffff;
}
.cid-svqFyApBCs .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLTOxFLTd {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skLTOxFLTd .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skLTOxFLTd .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skLTOxFLTd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skLTOxFLTd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skLTOxFLTd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skLTOxFLTd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skLTOxFLTd .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skLTOxFLTd .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skLTOxFLTd .card-title {
  color: #4f5b5f;
}
.cid-skLTOxFLTd .mbr-text,
.cid-skLTOxFLTd .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skLTOxFLTd .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl9hgSJlTU.popup-builder {
  background-color: #ffffff;
}
.cid-sl9hgSJlTU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9hgSJlTU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9hgSJlTU .modal-content,
.cid-sl9hgSJlTU .modal-dialog {
  height: auto;
}
.cid-sl9hgSJlTU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9hgSJlTU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9hgSJlTU .form-wrapper .mbr-form .form-group,
  .cid-sl9hgSJlTU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9hgSJlTU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9hgSJlTU .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9hgSJlTU .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9hgSJlTU .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9hgSJlTU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9hgSJlTU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9hgSJlTU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9hgSJlTU .modal-open {
  overflow: hidden;
}
.cid-sl9hgSJlTU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9hgSJlTU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9hgSJlTU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9hgSJlTU .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9hgSJlTU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9hgSJlTU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9hgSJlTU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9hgSJlTU .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9hgSJlTU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9hgSJlTU .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9hgSJlTU .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9hgSJlTU .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9hgSJlTU .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9hgSJlTU .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9hgSJlTU .modal-header .close:focus {
  outline: none;
}
.cid-sl9hgSJlTU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9hgSJlTU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9hgSJlTU .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9hgSJlTU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9hgSJlTU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9hgSJlTU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9hgSJlTU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9hgSJlTU .modal-sm {
    max-width: 300px;
  }
  .cid-sl9hgSJlTU .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9hgSJlTU .modal-lg,
  .cid-sl9hgSJlTU .modal-xl {
    max-width: 800px;
  }
  .cid-sl9hgSJlTU .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9hgSJlTU .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9hgSJlTU .container {
    max-width: 1140px;
  }
}
.cid-sl9hgSJlTU .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9hgSJlTU .container {
    max-width: 720px;
  }
}
.cid-sl9hgSJlTU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9hgSJlTU .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9hgSJlTU .form-group {
  margin-bottom: 1rem;
}
.cid-sl9hgSJlTU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9hgSJlTU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9hgSJlTU .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQseat.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQseat.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQseat.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQseat .modal-content,
.cid-slwxxQseat .modal-dialog {
  height: auto;
}
.cid-slwxxQseat .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQseat .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQseat .form-wrapper .mbr-form .form-group,
  .cid-slwxxQseat .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQseat .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQseat .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQseat .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQseat .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQseat .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQseat .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQseat .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQseat .modal-open {
  overflow: hidden;
}
.cid-slwxxQseat .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQseat .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQseat .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQseat .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQseat .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQseat .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQseat .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQseat .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQseat .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQseat .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQseat .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQseat .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQseat .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQseat .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQseat .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQseat .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQseat .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQseat .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQseat .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQseat .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQseat .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQseat .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQseat .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQseat .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQseat .modal-lg,
  .cid-slwxxQseat .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQseat .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQseat .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQseat .container {
    max-width: 1140px;
  }
}
.cid-slwxxQseat .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQseat .container {
    max-width: 720px;
  }
}
.cid-slwxxQseat .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQseat .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQseat .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQseat .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQseat .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQseat .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQseat .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMHvpY.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMHvpY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMHvpY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMHvpY .modal-content,
.cid-slwygMHvpY .modal-dialog {
  height: auto;
}
.cid-slwygMHvpY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMHvpY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMHvpY .form-wrapper .mbr-form .form-group,
  .cid-slwygMHvpY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMHvpY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMHvpY .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMHvpY .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMHvpY .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMHvpY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMHvpY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMHvpY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMHvpY .modal-open {
  overflow: hidden;
}
.cid-slwygMHvpY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMHvpY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMHvpY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMHvpY .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMHvpY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMHvpY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMHvpY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMHvpY .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMHvpY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMHvpY .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMHvpY .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMHvpY .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMHvpY .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMHvpY .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMHvpY .modal-header .close:focus {
  outline: none;
}
.cid-slwygMHvpY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMHvpY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMHvpY .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMHvpY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMHvpY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMHvpY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMHvpY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMHvpY .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMHvpY .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMHvpY .modal-lg,
  .cid-slwygMHvpY .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMHvpY .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMHvpY .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMHvpY .container {
    max-width: 1140px;
  }
}
.cid-slwygMHvpY .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMHvpY .container {
    max-width: 720px;
  }
}
.cid-slwygMHvpY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMHvpY .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMHvpY .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMHvpY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMHvpY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMHvpY .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMHvpY .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sx8IcYcTYC {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sx8IcYcTYC .text-wrapper {
  z-index: 11;
}
.cid-sx8IcYcTYC .wrapper {
  display: flex;
  flex-direction: column;
}
.cid-sx8IcYcTYC .animate__fadeInUp:before {
  background: #ffffff;
}
.cid-sx8IcYcTYC .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #848abd;
  margin-right: 0rem;
  margin-bottom: 2rem;
}
.cid-sx8IcYcTYC .iconfont-wrapper {
  margin: auto;
}
.cid-sx8IcYcTYC .mbr-section-title {
  text-align: center;
  color: #57468b;
}
.cid-sx8IcYcTYC .mbr-text,
.cid-sx8IcYcTYC .mbr-section-btn {
  text-align: center;
  color: #161734;
}
.cid-sx8IcYcTYC .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slARtFLdbp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slARtFLdbp ul {
  padding: 0;
  margin: 0;
}
.cid-slARtFLdbp ul li {
  list-style: none;
}
.cid-slARtFLdbp ul li h4 {
  margin: 0;
}
.cid-slARtFLdbp ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slARtFLdbp .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slARtFLdbp .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slARtFLdbp .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slARtFLdbp .col-title1 {
  margin-bottom: 40px;
}
.cid-slARtFLdbp .form-group,
.cid-slARtFLdbp .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slARtFLdbp .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slARtFLdbp .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slARtFLdbp .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slARtFLdbp .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slARtFLdbp .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slARtFLdbp .col + .mbr-section-btn .btn,
.cid-slARtFLdbp .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slARtFLdbp .col + .mbr-section-btn .btn.display-4,
.cid-slARtFLdbp .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slARtFLdbp .col + .mbr-section-btn .btn:hover,
.cid-slARtFLdbp .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slARtFLdbp .dragArea > *:nth-last-child(2).col,
.cid-slARtFLdbp .dragArea > *:nth-last-child(2).col-auto,
.cid-slARtFLdbp .col + .mbr-section-btn,
.cid-slARtFLdbp .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slARtFLdbp .form1 {
  margin-top: 30px;
}
.cid-slARtFLdbp .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slARtFLdbp .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slARtFLdbp .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-sjUcGTVSRL .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sjUcGTVSRL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sjUcGTVSRL .navbar.collapsed {
  flex-direction: row !important;
}
.cid-sjUcGTVSRL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sjUcGTVSRL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-sjUcGTVSRL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sjUcGTVSRL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sjUcGTVSRL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sjUcGTVSRL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjUcGTVSRL .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sjUcGTVSRL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sjUcGTVSRL .dropdown-item.active,
.cid-sjUcGTVSRL .dropdown-item:active {
  background-color: transparent;
}
.cid-sjUcGTVSRL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sjUcGTVSRL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjUcGTVSRL ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sjUcGTVSRL .navbar-buttons {
  text-align: left;
}
.cid-sjUcGTVSRL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sjUcGTVSRL a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-sjUcGTVSRL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-link:hover,
.cid-sjUcGTVSRL .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sxYyPnQ0dC {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxYyPnQ0dC .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: #f9fafb;
}
.cid-sxYyPnQ0dC img {
  width: 100%;
  box-shadow: 10px 20px 60px 0px white;
  border-radius: 26px;
}
.cid-sxYyPnQ0dC p {
  margin-top: 6rem;
}
.cid-sxYyPnQ0dC .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sxYyPnQ0dC .content-wrapper {
  padding-top: 6rem;
}
.cid-sxYyPnQ0dC h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sxYyPnQ0dC .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sxYyPnQ0dC p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sxYyPnQ0dC .back {
    width: 100%;
    height: 75%;
  }
  .cid-sxYyPnQ0dC .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sxYyPnQ0dC p {
    margin-top: 4rem;
  }
}
.cid-sxYyPnQ0dC .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-sxYyPnQ0dC .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sxYyPnQ0dC .content-wrapper {
    padding-right: 3rem;
  }
  .cid-sxYyPnQ0dC h4 {
    right: 2rem;
  }
}
.cid-sxYyPnQ0dC .mbr-text,
.cid-sxYyPnQ0dC .mbr-section-btn {
  color: #606060;
  text-align: center;
}
.cid-sxYyPnQ0dC H1 {
  color: #4f5b5f;
  text-align: center;
}
.cid-sxYyPnQ0dC H3 {
  color: #000000;
  text-align: center;
}
.cid-sxYyPnQ0dC H4 {
  text-align: left;
  color: #ffffff;
}
.cid-sxYyPnQ0dC .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxikyydyHY .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxikyydyHY .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxikyydyHY .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxikyydyHY .hidden {
  display: none;
}
.cid-sxikyydyHY H10 {
  color: #767676;
}
.cid-skAfYPsB6v {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAfYPsB6v .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAfYPsB6v .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAfYPsB6v .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAfYPsB6v .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAfYPsB6v .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAfYPsB6v .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAfYPsB6v .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAfYPsB6v .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAfYPsB6v .card-title {
  color: #404040;
}
.cid-skAfYPsB6v .mbr-text,
.cid-skAfYPsB6v .mbr-section-btn {
  color: #606060;
}
.cid-skAfYPsB6v .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sve5tXQMkp {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpeg");
}
.cid-sve5tXQMkp H1 {
  color: #000000;
}
.cid-sve5tXQMkp .mbr-text,
.cid-sve5tXQMkp .mbr-section-btn {
  color: #333333;
}
.cid-sve5tXQMkp .mbr-subtitle {
  color: #000000;
}
.cid-sve5tXQMkp .mbr-text {
  margin-top: 1.5rem;
}
.cid-sve5tXQMkp .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sve5tXQMkp .mbr-section-title,
.cid-sve5tXQMkp .mbr-section-btn {
  color: #333333;
}
.cid-sve5tXQMkp .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl90L59ZGV.popup-builder {
  background-color: #ffffff;
}
.cid-sl90L59ZGV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl90L59ZGV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl90L59ZGV .modal-content,
.cid-sl90L59ZGV .modal-dialog {
  height: auto;
}
.cid-sl90L59ZGV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl90L59ZGV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl90L59ZGV .form-wrapper .mbr-form .form-group,
  .cid-sl90L59ZGV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl90L59ZGV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl90L59ZGV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl90L59ZGV .mbr-text {
  text-align: center;
  color: #878787;
}
.cid-sl90L59ZGV .pt-0 {
  padding-top: 0 !important;
}
.cid-sl90L59ZGV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl90L59ZGV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl90L59ZGV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl90L59ZGV .modal-open {
  overflow: hidden;
}
.cid-sl90L59ZGV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl90L59ZGV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl90L59ZGV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl90L59ZGV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl90L59ZGV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl90L59ZGV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl90L59ZGV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl90L59ZGV .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl90L59ZGV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl90L59ZGV .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl90L59ZGV .modal-backdrop.show {
  opacity: .5;
}
.cid-sl90L59ZGV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl90L59ZGV .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl90L59ZGV .modal-header .close:hover {
  opacity: 1;
}
.cid-sl90L59ZGV .modal-header .close:focus {
  outline: none;
}
.cid-sl90L59ZGV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl90L59ZGV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl90L59ZGV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl90L59ZGV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl90L59ZGV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl90L59ZGV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl90L59ZGV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl90L59ZGV .modal-sm {
    max-width: 300px;
  }
  .cid-sl90L59ZGV .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl90L59ZGV .modal-lg,
  .cid-sl90L59ZGV .modal-xl {
    max-width: 800px;
  }
  .cid-sl90L59ZGV .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl90L59ZGV .modal-xl {
    max-width: 1140px;
  }
  .cid-sl90L59ZGV .container {
    max-width: 1140px;
  }
}
.cid-sl90L59ZGV .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl90L59ZGV .container {
    max-width: 720px;
  }
}
.cid-sl90L59ZGV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl90L59ZGV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl90L59ZGV .form-group {
  margin-bottom: 1rem;
}
.cid-sl90L59ZGV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl90L59ZGV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl90L59ZGV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skAoVh7Xrd {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAoVh7Xrd .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAoVh7Xrd .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAoVh7Xrd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAoVh7Xrd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAoVh7Xrd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAoVh7Xrd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAoVh7Xrd .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAoVh7Xrd .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAoVh7Xrd .card-title {
  color: #404040;
}
.cid-skAoVh7Xrd .mbr-text,
.cid-skAoVh7Xrd .mbr-section-btn {
  color: #606060;
}
.cid-skAoVh7Xrd .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWLSeQjfyJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sWLSeQjfyJ [class^="socicon-"]:before,
.cid-sWLSeQjfyJ [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWLSeQjfyJ .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWLSeQjfyJ .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWLSeQjfyJ .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWLSeQjfyJ .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-sve5wC5wq4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-sve5wC5wq4 .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-sve5wC5wq4 .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-sve5wC5wq4 .mbr-section-btn {
  margin-top: 45px;
}
.cid-sve5wC5wq4 .mbr-section-btn .btn {
  height: 60px;
  font-weight: 500;
}
.cid-sve5wC5wq4 img {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-sve5wC5wq4 .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-sve5wC5wq4 .mbr-section-btn .btn {
    height: 50px;
  }
  .cid-sve5wC5wq4 .mbr-text {
    margin-top: 10px;
  }
}
.cid-sve5wC5wq4 .mbr-text,
.cid-sve5wC5wq4 .mbr-section-btn {
  color: #ffffff;
}
.cid-sve5wC5wq4 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl90NKFZwv.popup-builder {
  background-color: #ffffff;
}
.cid-sl90NKFZwv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl90NKFZwv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl90NKFZwv .modal-content,
.cid-sl90NKFZwv .modal-dialog {
  height: auto;
}
.cid-sl90NKFZwv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl90NKFZwv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl90NKFZwv .form-wrapper .mbr-form .form-group,
  .cid-sl90NKFZwv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl90NKFZwv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl90NKFZwv .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl90NKFZwv .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl90NKFZwv .pt-0 {
  padding-top: 0 !important;
}
.cid-sl90NKFZwv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl90NKFZwv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl90NKFZwv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl90NKFZwv .modal-open {
  overflow: hidden;
}
.cid-sl90NKFZwv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl90NKFZwv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl90NKFZwv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl90NKFZwv .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl90NKFZwv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl90NKFZwv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl90NKFZwv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl90NKFZwv .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl90NKFZwv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl90NKFZwv .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl90NKFZwv .modal-backdrop.show {
  opacity: .5;
}
.cid-sl90NKFZwv .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl90NKFZwv .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl90NKFZwv .modal-header .close:hover {
  opacity: 1;
}
.cid-sl90NKFZwv .modal-header .close:focus {
  outline: none;
}
.cid-sl90NKFZwv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl90NKFZwv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl90NKFZwv .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl90NKFZwv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl90NKFZwv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl90NKFZwv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl90NKFZwv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl90NKFZwv .modal-sm {
    max-width: 300px;
  }
  .cid-sl90NKFZwv .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl90NKFZwv .modal-lg,
  .cid-sl90NKFZwv .modal-xl {
    max-width: 800px;
  }
  .cid-sl90NKFZwv .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl90NKFZwv .modal-xl {
    max-width: 1140px;
  }
  .cid-sl90NKFZwv .container {
    max-width: 1140px;
  }
}
.cid-sl90NKFZwv .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl90NKFZwv .container {
    max-width: 720px;
  }
}
.cid-sl90NKFZwv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl90NKFZwv .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl90NKFZwv .form-group {
  margin-bottom: 1rem;
}
.cid-sl90NKFZwv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl90NKFZwv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl90NKFZwv .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sy8mROTTgK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9fafb;
}
.cid-sy8mROTTgK .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #878787;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 20px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-sy8mROTTgK .card-link,
.cid-sy8mROTTgK .link-wrap,
.cid-sy8mROTTgK .card-link:before {
  color: #121212;
  text-align: center;
}
.cid-sy8mROTTgK .card-wrapper {
  overflow: visible;
}
.cid-sy8mROTTgK .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-sy8mROTTgK .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-sy8mROTTgK .card-link:hover {
  color: #848abd;
  transition: all 0.3s;
}
.cid-sy8mROTTgK .card-link:hover:before {
  right: -2rem;
  color: #848abd;
  transition: all 0.3s;
}
.cid-sy8mROTTgK .card-text {
  color: #454545;
}
.cid-sy8mROTTgK .card-title,
.cid-sy8mROTTgK .icon-wrap {
  color: #737373;
  text-align: center;
}
.cid-sy8mROTTgK .mbr-section-title {
  color: #404040;
}
.cid-skAs8W1VZn {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAs8W1VZn .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAs8W1VZn .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAs8W1VZn .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAs8W1VZn .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAs8W1VZn .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAs8W1VZn .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAs8W1VZn .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAs8W1VZn .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAs8W1VZn .card-title {
  color: #404040;
}
.cid-skAs8W1VZn .mbr-text,
.cid-skAs8W1VZn .mbr-section-btn {
  color: #606060;
}
.cid-skAs8W1VZn .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl90PT3kcE.popup-builder {
  background-color: #ffffff;
}
.cid-sl90PT3kcE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl90PT3kcE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl90PT3kcE .modal-content,
.cid-sl90PT3kcE .modal-dialog {
  height: auto;
}
.cid-sl90PT3kcE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl90PT3kcE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl90PT3kcE .form-wrapper .mbr-form .form-group,
  .cid-sl90PT3kcE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl90PT3kcE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl90PT3kcE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl90PT3kcE .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl90PT3kcE .pt-0 {
  padding-top: 0 !important;
}
.cid-sl90PT3kcE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl90PT3kcE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl90PT3kcE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl90PT3kcE .modal-open {
  overflow: hidden;
}
.cid-sl90PT3kcE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl90PT3kcE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl90PT3kcE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl90PT3kcE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl90PT3kcE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl90PT3kcE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl90PT3kcE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl90PT3kcE .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl90PT3kcE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl90PT3kcE .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl90PT3kcE .modal-backdrop.show {
  opacity: .5;
}
.cid-sl90PT3kcE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl90PT3kcE .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl90PT3kcE .modal-header .close:hover {
  opacity: 1;
}
.cid-sl90PT3kcE .modal-header .close:focus {
  outline: none;
}
.cid-sl90PT3kcE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl90PT3kcE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl90PT3kcE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl90PT3kcE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl90PT3kcE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl90PT3kcE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl90PT3kcE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl90PT3kcE .modal-sm {
    max-width: 300px;
  }
  .cid-sl90PT3kcE .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl90PT3kcE .modal-lg,
  .cid-sl90PT3kcE .modal-xl {
    max-width: 800px;
  }
  .cid-sl90PT3kcE .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl90PT3kcE .modal-xl {
    max-width: 1140px;
  }
  .cid-sl90PT3kcE .container {
    max-width: 1140px;
  }
}
.cid-sl90PT3kcE .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl90PT3kcE .container {
    max-width: 720px;
  }
}
.cid-sl90PT3kcE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl90PT3kcE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl90PT3kcE .form-group {
  margin-bottom: 1rem;
}
.cid-sl90PT3kcE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl90PT3kcE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl90PT3kcE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sve5yaB3Bv {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/cherries-2905964-1920-1920x1279.jpg");
}
.cid-sve5yaB3Bv .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
}
.cid-sve5yaB3Bv .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sve5yaB3Bv .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sve5yaB3Bv .main-title.display-2 {
  line-height: 1.375;
}
.cid-sve5yaB3Bv .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sve5yaB3Bv .mbr-text {
  color: #606060;
}
.cid-sve5yaB3Bv .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sve5yaB3Bv .mbr-section-btn {
  margin-top: 24px;
}
.cid-sve5yaB3Bv .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-sve5yaB3Bv .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sve5yaB3Bv .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sve5yaB3Bv .mbr-section-subtitle,
.cid-sve5yaB3Bv .mbr-section-btn {
  color: #ffffff;
}
.cid-sve5yaB3Bv .main-title,
.cid-sve5yaB3Bv .mbr-section-btn {
  color: #ffffff;
}
.cid-sve5yaB3Bv .badge,
.cid-sve5yaB3Bv .badge_wrap,
.cid-sve5yaB3Bv .mbr-section-btn {
  color: #ffffff;
}
.cid-sve5yaB3Bv .mbr-text,
.cid-sve5yaB3Bv .mbr-section-btn {
  color: #ffffff;
}
.cid-sve5yaB3Bv .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skAtFYc5ma {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAtFYc5ma .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAtFYc5ma .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAtFYc5ma .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAtFYc5ma .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAtFYc5ma .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAtFYc5ma .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAtFYc5ma .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAtFYc5ma .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAtFYc5ma .card-title {
  color: #404040;
}
.cid-skAtFYc5ma .mbr-text,
.cid-skAtFYc5ma .mbr-section-btn {
  color: #606060;
}
.cid-skAtFYc5ma .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl90R74lwQ.popup-builder {
  background-color: #ffffff;
}
.cid-sl90R74lwQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl90R74lwQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl90R74lwQ .modal-content,
.cid-sl90R74lwQ .modal-dialog {
  height: auto;
}
.cid-sl90R74lwQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl90R74lwQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl90R74lwQ .form-wrapper .mbr-form .form-group,
  .cid-sl90R74lwQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl90R74lwQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl90R74lwQ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl90R74lwQ .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl90R74lwQ .pt-0 {
  padding-top: 0 !important;
}
.cid-sl90R74lwQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl90R74lwQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl90R74lwQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl90R74lwQ .modal-open {
  overflow: hidden;
}
.cid-sl90R74lwQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl90R74lwQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl90R74lwQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl90R74lwQ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl90R74lwQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl90R74lwQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl90R74lwQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl90R74lwQ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl90R74lwQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl90R74lwQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl90R74lwQ .modal-backdrop.show {
  opacity: .5;
}
.cid-sl90R74lwQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl90R74lwQ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl90R74lwQ .modal-header .close:hover {
  opacity: 1;
}
.cid-sl90R74lwQ .modal-header .close:focus {
  outline: none;
}
.cid-sl90R74lwQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl90R74lwQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl90R74lwQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl90R74lwQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl90R74lwQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl90R74lwQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl90R74lwQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl90R74lwQ .modal-sm {
    max-width: 300px;
  }
  .cid-sl90R74lwQ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl90R74lwQ .modal-lg,
  .cid-sl90R74lwQ .modal-xl {
    max-width: 800px;
  }
  .cid-sl90R74lwQ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl90R74lwQ .modal-xl {
    max-width: 1140px;
  }
  .cid-sl90R74lwQ .container {
    max-width: 1140px;
  }
}
.cid-sl90R74lwQ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl90R74lwQ .container {
    max-width: 720px;
  }
}
.cid-sl90R74lwQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl90R74lwQ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl90R74lwQ .form-group {
  margin-bottom: 1rem;
}
.cid-sl90R74lwQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl90R74lwQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl90R74lwQ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQsaMm.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQsaMm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQsaMm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQsaMm .modal-content,
.cid-slwxxQsaMm .modal-dialog {
  height: auto;
}
.cid-slwxxQsaMm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQsaMm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQsaMm .form-wrapper .mbr-form .form-group,
  .cid-slwxxQsaMm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQsaMm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQsaMm .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQsaMm .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQsaMm .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQsaMm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQsaMm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQsaMm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQsaMm .modal-open {
  overflow: hidden;
}
.cid-slwxxQsaMm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQsaMm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQsaMm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQsaMm .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQsaMm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQsaMm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQsaMm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQsaMm .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQsaMm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQsaMm .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQsaMm .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQsaMm .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQsaMm .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQsaMm .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQsaMm .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQsaMm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQsaMm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQsaMm .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQsaMm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQsaMm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQsaMm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQsaMm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQsaMm .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQsaMm .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQsaMm .modal-lg,
  .cid-slwxxQsaMm .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQsaMm .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQsaMm .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQsaMm .container {
    max-width: 1140px;
  }
}
.cid-slwxxQsaMm .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQsaMm .container {
    max-width: 720px;
  }
}
.cid-slwxxQsaMm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQsaMm .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQsaMm .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQsaMm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQsaMm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQsaMm .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQsaMm .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMIEkr.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMIEkr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMIEkr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMIEkr .modal-content,
.cid-slwygMIEkr .modal-dialog {
  height: auto;
}
.cid-slwygMIEkr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMIEkr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMIEkr .form-wrapper .mbr-form .form-group,
  .cid-slwygMIEkr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMIEkr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMIEkr .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMIEkr .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMIEkr .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMIEkr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMIEkr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMIEkr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMIEkr .modal-open {
  overflow: hidden;
}
.cid-slwygMIEkr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMIEkr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMIEkr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMIEkr .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMIEkr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMIEkr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMIEkr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMIEkr .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMIEkr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMIEkr .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMIEkr .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMIEkr .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMIEkr .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMIEkr .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMIEkr .modal-header .close:focus {
  outline: none;
}
.cid-slwygMIEkr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMIEkr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMIEkr .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMIEkr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMIEkr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMIEkr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMIEkr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMIEkr .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMIEkr .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMIEkr .modal-lg,
  .cid-slwygMIEkr .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMIEkr .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMIEkr .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMIEkr .container {
    max-width: 1140px;
  }
}
.cid-slwygMIEkr .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMIEkr .container {
    max-width: 720px;
  }
}
.cid-slwygMIEkr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMIEkr .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMIEkr .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMIEkr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMIEkr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMIEkr .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMIEkr .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slAQJPy04w {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAQJPy04w ul {
  padding: 0;
  margin: 0;
}
.cid-slAQJPy04w ul li {
  list-style: none;
}
.cid-slAQJPy04w ul li h4 {
  margin: 0;
}
.cid-slAQJPy04w ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAQJPy04w .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAQJPy04w .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAQJPy04w .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAQJPy04w .col-title1 {
  margin-bottom: 40px;
}
.cid-slAQJPy04w .form-group,
.cid-slAQJPy04w .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAQJPy04w .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAQJPy04w .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAQJPy04w .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAQJPy04w .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAQJPy04w .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAQJPy04w .col + .mbr-section-btn .btn,
.cid-slAQJPy04w .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAQJPy04w .col + .mbr-section-btn .btn.display-4,
.cid-slAQJPy04w .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAQJPy04w .col + .mbr-section-btn .btn:hover,
.cid-slAQJPy04w .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAQJPy04w .dragArea > *:nth-last-child(2).col,
.cid-slAQJPy04w .dragArea > *:nth-last-child(2).col-auto,
.cid-slAQJPy04w .col + .mbr-section-btn,
.cid-slAQJPy04w .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAQJPy04w .form1 {
  margin-top: 30px;
}
.cid-slAQJPy04w .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAQJPy04w .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAQJPy04w .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skAEidmc3k .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skAEidmc3k .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skAEidmc3k .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skAEidmc3k .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skAEidmc3k .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skAEidmc3k .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skAEidmc3k .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skAEidmc3k .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skAEidmc3k .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skAEidmc3k .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skAEidmc3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skAEidmc3k .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skAEidmc3k .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skAEidmc3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skAEidmc3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skAEidmc3k .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skAEidmc3k .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skAEidmc3k .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skAEidmc3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skAEidmc3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skAEidmc3k .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skAEidmc3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skAEidmc3k .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skAEidmc3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skAEidmc3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skAEidmc3k .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skAEidmc3k .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skAEidmc3k .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skAEidmc3k .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skAEidmc3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skAEidmc3k .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skAEidmc3k .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skAEidmc3k .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skAEidmc3k .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skAEidmc3k .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skAEidmc3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skAEidmc3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skAEidmc3k .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skAEidmc3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skAEidmc3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skAEidmc3k .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skAEidmc3k .dropdown-item.active,
.cid-skAEidmc3k .dropdown-item:active {
  background-color: transparent;
}
.cid-skAEidmc3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skAEidmc3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skAEidmc3k .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skAEidmc3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skAEidmc3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skAEidmc3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skAEidmc3k ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skAEidmc3k .navbar-buttons {
  text-align: left;
}
.cid-skAEidmc3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skAEidmc3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skAEidmc3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skAEidmc3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skAEidmc3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skAEidmc3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skAEidmc3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skAEidmc3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skAEidmc3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skAEidmc3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skAEidmc3k .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skAEidmc3k a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skAEidmc3k .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skAEidmc3k .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skAEidmc3k .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skAEidmc3k .nav-link:hover,
.cid-skAEidmc3k .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sxeouLGEjZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxeouLGEjZ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sxeouLGEjZ .mbr-section-title {
  color: #3c71d3;
  text-align: center;
}
.cid-sxeouLGEjZ .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-sy4b6qmQL4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f9fafb;
}
.cid-sy4b6qmQL4 .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-sy4b6qmQL4 .text-wrapper:hover .mbr-section-title a {
  color: #0e569e !important;
}
.cid-sy4b6qmQL4 .image-wrapper,
.cid-sy4b6qmQL4 img {
  width: 100%;
  object-fit: cover;
}
.cid-sy4b6qmQL4 .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #404040;
  text-align: center;
}
.cid-sy4b6qmQL4 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sy4b6qmQL4 .mbr-section-btn .btn-secondary-outline:hover,
.cid-sy4b6qmQL4 .mbr-section-btn .btn-secondary-outline .active,
.cid-sy4b6qmQL4 .mbr-section-btn .btn-secondary-outline:focus {
  color: #848abd !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sy4b6qmQL4 .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-sy4b6qmQL4 {
    flex-direction: column;
  }
  .cid-sy4b6qmQL4 .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sy4b6qmQL4 .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-sy4b6qmQL4 .mbr-section-title {
  color: #4f5b5f;
  text-align: center;
}
.cid-sy4b6qmQL4 .mbr-text,
.cid-sy4b6qmQL4 .mbr-section-btn {
  color: #606060;
  text-align: center;
}
.cid-sxikI39LQJ .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxikI39LQJ .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxikI39LQJ .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxikI39LQJ .hidden {
  display: none;
}
.cid-sxikI39LQJ H10 {
  color: #767676;
}
.cid-skAEieUXV0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAEieUXV0 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAEieUXV0 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAEieUXV0 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAEieUXV0 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAEieUXV0 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAEieUXV0 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAEieUXV0 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAEieUXV0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAEieUXV0 .card-title {
  color: #4f5b5f;
}
.cid-skAEieUXV0 .mbr-text,
.cid-skAEieUXV0 .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skAEieUXV0 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLmTe9xId.popup-builder {
  background-color: #ffffff;
}
.cid-skLmTe9xId.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLmTe9xId.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLmTe9xId .modal-content,
.cid-skLmTe9xId .modal-dialog {
  height: auto;
}
.cid-skLmTe9xId .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLmTe9xId .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLmTe9xId .form-wrapper .mbr-form .form-group,
  .cid-skLmTe9xId .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLmTe9xId .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLmTe9xId .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLmTe9xId .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLmTe9xId .pt-0 {
  padding-top: 0 !important;
}
.cid-skLmTe9xId .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLmTe9xId .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLmTe9xId .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLmTe9xId .modal-open {
  overflow: hidden;
}
.cid-skLmTe9xId .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLmTe9xId .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLmTe9xId .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLmTe9xId .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLmTe9xId .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLmTe9xId .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLmTe9xId .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLmTe9xId .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLmTe9xId .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLmTe9xId .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLmTe9xId .modal-backdrop.show {
  opacity: .5;
}
.cid-skLmTe9xId .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLmTe9xId .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLmTe9xId .modal-header .close:hover {
  opacity: 1;
}
.cid-skLmTe9xId .modal-header .close:focus {
  outline: none;
}
.cid-skLmTe9xId .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLmTe9xId .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLmTe9xId .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLmTe9xId .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLmTe9xId .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLmTe9xId .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLmTe9xId .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLmTe9xId .modal-sm {
    max-width: 300px;
  }
  .cid-skLmTe9xId .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLmTe9xId .modal-lg,
  .cid-skLmTe9xId .modal-xl {
    max-width: 800px;
  }
  .cid-skLmTe9xId .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLmTe9xId .modal-xl {
    max-width: 1140px;
  }
  .cid-skLmTe9xId .container {
    max-width: 1140px;
  }
}
.cid-skLmTe9xId .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLmTe9xId .container {
    max-width: 720px;
  }
}
.cid-skLmTe9xId .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLmTe9xId .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLmTe9xId .form-group {
  margin-bottom: 1rem;
}
.cid-skLmTe9xId .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLmTe9xId .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLmTe9xId .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sWLUvZoH0a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sWLUvZoH0a [class^="socicon-"]:before,
.cid-sWLUvZoH0a [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWLUvZoH0a .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWLUvZoH0a .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWLUvZoH0a .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWLUvZoH0a .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-skAEignGbi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAEignGbi .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAEignGbi .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAEignGbi .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAEignGbi .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAEignGbi .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAEignGbi .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAEignGbi .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAEignGbi .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAEignGbi .card-title {
  color: #4f5b5f;
}
.cid-skAEignGbi .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skAEignGbi .mbr-text,
.cid-skAEignGbi .mbr-section-btn {
  color: #4f5b5f;
}
.cid-swK6mLTeWl {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1237.jpg");
}
.cid-swK6mLTeWl H1 {
  color: #000000;
}
.cid-swK6mLTeWl .mbr-text,
.cid-swK6mLTeWl .mbr-section-btn {
  color: #ffffff;
}
.cid-swK6mLTeWl .mbr-subtitle {
  color: #000000;
}
.cid-swK6mLTeWl .mbr-text {
  margin-top: 1.5rem;
}
.cid-swK6mLTeWl .mbr-section-btn {
  margin-top: 2rem;
}
.cid-swK6mLTeWl .mbr-section-title,
.cid-swK6mLTeWl .mbr-section-btn {
  color: #ffffff;
}
.cid-swK6mLTeWl .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLnpamkOH.popup-builder {
  background-color: #ffffff;
}
.cid-skLnpamkOH.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLnpamkOH.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLnpamkOH .modal-content,
.cid-skLnpamkOH .modal-dialog {
  height: auto;
}
.cid-skLnpamkOH .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLnpamkOH .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLnpamkOH .form-wrapper .mbr-form .form-group,
  .cid-skLnpamkOH .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLnpamkOH .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLnpamkOH .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLnpamkOH .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLnpamkOH .pt-0 {
  padding-top: 0 !important;
}
.cid-skLnpamkOH .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLnpamkOH .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLnpamkOH .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLnpamkOH .modal-open {
  overflow: hidden;
}
.cid-skLnpamkOH .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLnpamkOH .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLnpamkOH .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLnpamkOH .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLnpamkOH .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLnpamkOH .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLnpamkOH .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLnpamkOH .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLnpamkOH .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLnpamkOH .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLnpamkOH .modal-backdrop.show {
  opacity: .5;
}
.cid-skLnpamkOH .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLnpamkOH .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLnpamkOH .modal-header .close:hover {
  opacity: 1;
}
.cid-skLnpamkOH .modal-header .close:focus {
  outline: none;
}
.cid-skLnpamkOH .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLnpamkOH .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLnpamkOH .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLnpamkOH .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLnpamkOH .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLnpamkOH .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLnpamkOH .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLnpamkOH .modal-sm {
    max-width: 300px;
  }
  .cid-skLnpamkOH .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLnpamkOH .modal-lg,
  .cid-skLnpamkOH .modal-xl {
    max-width: 800px;
  }
  .cid-skLnpamkOH .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLnpamkOH .modal-xl {
    max-width: 1140px;
  }
  .cid-skLnpamkOH .container {
    max-width: 1140px;
  }
}
.cid-skLnpamkOH .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLnpamkOH .container {
    max-width: 720px;
  }
}
.cid-skLnpamkOH .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLnpamkOH .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLnpamkOH .form-group {
  margin-bottom: 1rem;
}
.cid-skLnpamkOH .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLnpamkOH .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLnpamkOH .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skAGQOBs8P {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAGQOBs8P .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAGQOBs8P .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAGQOBs8P .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAGQOBs8P .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAGQOBs8P .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAGQOBs8P .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAGQOBs8P .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAGQOBs8P .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAGQOBs8P .card-title {
  color: #4f5b5f;
}
.cid-skAGQOBs8P .mbr-text,
.cid-skAGQOBs8P .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skAGQOBs8P .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLnXouwKo.popup-builder {
  background-color: #ffffff;
}
.cid-skLnXouwKo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLnXouwKo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLnXouwKo .modal-content,
.cid-skLnXouwKo .modal-dialog {
  height: auto;
}
.cid-skLnXouwKo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLnXouwKo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLnXouwKo .form-wrapper .mbr-form .form-group,
  .cid-skLnXouwKo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLnXouwKo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLnXouwKo .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLnXouwKo .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLnXouwKo .pt-0 {
  padding-top: 0 !important;
}
.cid-skLnXouwKo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLnXouwKo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLnXouwKo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLnXouwKo .modal-open {
  overflow: hidden;
}
.cid-skLnXouwKo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLnXouwKo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLnXouwKo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLnXouwKo .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLnXouwKo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLnXouwKo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLnXouwKo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLnXouwKo .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLnXouwKo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLnXouwKo .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLnXouwKo .modal-backdrop.show {
  opacity: .5;
}
.cid-skLnXouwKo .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLnXouwKo .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLnXouwKo .modal-header .close:hover {
  opacity: 1;
}
.cid-skLnXouwKo .modal-header .close:focus {
  outline: none;
}
.cid-skLnXouwKo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLnXouwKo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLnXouwKo .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLnXouwKo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLnXouwKo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLnXouwKo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLnXouwKo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLnXouwKo .modal-sm {
    max-width: 300px;
  }
  .cid-skLnXouwKo .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLnXouwKo .modal-lg,
  .cid-skLnXouwKo .modal-xl {
    max-width: 800px;
  }
  .cid-skLnXouwKo .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLnXouwKo .modal-xl {
    max-width: 1140px;
  }
  .cid-skLnXouwKo .container {
    max-width: 1140px;
  }
}
.cid-skLnXouwKo .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLnXouwKo .container {
    max-width: 720px;
  }
}
.cid-skLnXouwKo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLnXouwKo .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLnXouwKo .form-group {
  margin-bottom: 1rem;
}
.cid-skLnXouwKo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLnXouwKo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLnXouwKo .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQtz7T.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQtz7T.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQtz7T.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQtz7T .modal-content,
.cid-slwxxQtz7T .modal-dialog {
  height: auto;
}
.cid-slwxxQtz7T .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQtz7T .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQtz7T .form-wrapper .mbr-form .form-group,
  .cid-slwxxQtz7T .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQtz7T .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQtz7T .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQtz7T .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQtz7T .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQtz7T .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQtz7T .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQtz7T .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQtz7T .modal-open {
  overflow: hidden;
}
.cid-slwxxQtz7T .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQtz7T .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQtz7T .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQtz7T .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQtz7T .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQtz7T .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQtz7T .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQtz7T .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQtz7T .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQtz7T .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQtz7T .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQtz7T .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQtz7T .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQtz7T .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQtz7T .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQtz7T .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQtz7T .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQtz7T .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQtz7T .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQtz7T .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQtz7T .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQtz7T .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQtz7T .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQtz7T .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQtz7T .modal-lg,
  .cid-slwxxQtz7T .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQtz7T .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQtz7T .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQtz7T .container {
    max-width: 1140px;
  }
}
.cid-slwxxQtz7T .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQtz7T .container {
    max-width: 720px;
  }
}
.cid-slwxxQtz7T .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQtz7T .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQtz7T .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQtz7T .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQtz7T .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQtz7T .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQtz7T .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMIqE1.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMIqE1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMIqE1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMIqE1 .modal-content,
.cid-slwygMIqE1 .modal-dialog {
  height: auto;
}
.cid-slwygMIqE1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMIqE1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMIqE1 .form-wrapper .mbr-form .form-group,
  .cid-slwygMIqE1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMIqE1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMIqE1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMIqE1 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMIqE1 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMIqE1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMIqE1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMIqE1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMIqE1 .modal-open {
  overflow: hidden;
}
.cid-slwygMIqE1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMIqE1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMIqE1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMIqE1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMIqE1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMIqE1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMIqE1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMIqE1 .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMIqE1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMIqE1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMIqE1 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMIqE1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMIqE1 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMIqE1 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMIqE1 .modal-header .close:focus {
  outline: none;
}
.cid-slwygMIqE1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMIqE1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMIqE1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMIqE1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMIqE1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMIqE1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMIqE1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMIqE1 .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMIqE1 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMIqE1 .modal-lg,
  .cid-slwygMIqE1 .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMIqE1 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMIqE1 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMIqE1 .container {
    max-width: 1140px;
  }
}
.cid-slwygMIqE1 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMIqE1 .container {
    max-width: 720px;
  }
}
.cid-slwygMIqE1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMIqE1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMIqE1 .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMIqE1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMIqE1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMIqE1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMIqE1 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-swK6igNBOb {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #f3f4f7;
}
.cid-swK6igNBOb .card {
  -webkit-align-items: center;
  align-items: center;
}
.cid-swK6igNBOb .card-box {
  width: 100%;
}
.cid-swK6igNBOb .card-img {
  padding: 1rem;
  border: 1px solid #999999;
  border-radius: 100%;
  height: 80px;
  width: 80px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-swK6igNBOb .card-img span {
  color: #878787;
  font-size: 2.4rem;
}
.cid-swK6igNBOb p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-swK6igNBOb .card {
    margin-bottom: 2rem;
  }
}
.cid-swK6igNBOb .mbr-section-tag {
  color: #4f5b5f;
  margin-bottom: 0.4375rem;
  text-align: center;
}
.cid-swK6igNBOb .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-swK6igNBOb .mbr-section-title b:last-child,
.cid-swK6igNBOb .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-swK6igNBOb .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-swK6igNBOb .mbr-text {
  color: #4f5b5f;
}
.cid-swK6igNBOb .card-title,
.cid-swK6igNBOb .card-img {
  color: #000000;
}
.cid-slAS4IagXR {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAS4IagXR ul {
  padding: 0;
  margin: 0;
}
.cid-slAS4IagXR ul li {
  list-style: none;
}
.cid-slAS4IagXR ul li h4 {
  margin: 0;
}
.cid-slAS4IagXR ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAS4IagXR .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAS4IagXR .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAS4IagXR .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAS4IagXR .col-title1 {
  margin-bottom: 40px;
}
.cid-slAS4IagXR .form-group,
.cid-slAS4IagXR .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAS4IagXR .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAS4IagXR .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAS4IagXR .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAS4IagXR .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAS4IagXR .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAS4IagXR .col + .mbr-section-btn .btn,
.cid-slAS4IagXR .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAS4IagXR .col + .mbr-section-btn .btn.display-4,
.cid-slAS4IagXR .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAS4IagXR .col + .mbr-section-btn .btn:hover,
.cid-slAS4IagXR .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAS4IagXR .dragArea > *:nth-last-child(2).col,
.cid-slAS4IagXR .dragArea > *:nth-last-child(2).col-auto,
.cid-slAS4IagXR .col + .mbr-section-btn,
.cid-slAS4IagXR .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAS4IagXR .form1 {
  margin-top: 30px;
}
.cid-slAS4IagXR .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAS4IagXR .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAS4IagXR .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skLuDOLaZe .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skLuDOLaZe .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skLuDOLaZe .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skLuDOLaZe .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skLuDOLaZe .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skLuDOLaZe .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skLuDOLaZe .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skLuDOLaZe .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skLuDOLaZe .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skLuDOLaZe .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skLuDOLaZe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skLuDOLaZe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skLuDOLaZe .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skLuDOLaZe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skLuDOLaZe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skLuDOLaZe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skLuDOLaZe .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skLuDOLaZe .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skLuDOLaZe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skLuDOLaZe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skLuDOLaZe .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skLuDOLaZe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skLuDOLaZe .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skLuDOLaZe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skLuDOLaZe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skLuDOLaZe .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skLuDOLaZe .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skLuDOLaZe .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skLuDOLaZe .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skLuDOLaZe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skLuDOLaZe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skLuDOLaZe .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skLuDOLaZe .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skLuDOLaZe .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skLuDOLaZe .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skLuDOLaZe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skLuDOLaZe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skLuDOLaZe .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skLuDOLaZe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skLuDOLaZe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skLuDOLaZe .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skLuDOLaZe .dropdown-item.active,
.cid-skLuDOLaZe .dropdown-item:active {
  background-color: transparent;
}
.cid-skLuDOLaZe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skLuDOLaZe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skLuDOLaZe .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skLuDOLaZe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skLuDOLaZe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skLuDOLaZe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skLuDOLaZe ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skLuDOLaZe .navbar-buttons {
  text-align: left;
}
.cid-skLuDOLaZe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skLuDOLaZe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skLuDOLaZe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skLuDOLaZe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skLuDOLaZe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skLuDOLaZe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skLuDOLaZe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skLuDOLaZe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skLuDOLaZe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skLuDOLaZe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skLuDOLaZe .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skLuDOLaZe a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skLuDOLaZe .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skLuDOLaZe .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skLuDOLaZe .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skLuDOLaZe .nav-link:hover,
.cid-skLuDOLaZe .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sy3WY9FruP {
  padding-top: 4.4rem;
  padding-bottom: 0rem;
  background-color: #f9fafb;
}
.cid-sy3WY9FruP .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-sy3WY9FruP .text-wrapper:hover .mbr-section-title a {
  color: #0e569e !important;
}
.cid-sy3WY9FruP .image-wrapper,
.cid-sy3WY9FruP img {
  width: 100%;
  object-fit: cover;
}
.cid-sy3WY9FruP .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #4f5b5f;
  text-align: center;
}
.cid-sy3WY9FruP .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sy3WY9FruP .mbr-section-btn .btn-secondary-outline:hover,
.cid-sy3WY9FruP .mbr-section-btn .btn-secondary-outline .active,
.cid-sy3WY9FruP .mbr-section-btn .btn-secondary-outline:focus {
  color: #848abd !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sy3WY9FruP .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-sy3WY9FruP {
    flex-direction: column;
  }
  .cid-sy3WY9FruP .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sy3WY9FruP .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-sy3WY9FruP .mbr-section-title {
  color: #4f5b5f;
  text-align: center;
}
.cid-sy3WY9FruP .mbr-text,
.cid-sy3WY9FruP .mbr-section-btn {
  color: #606060;
  text-align: center;
}
.cid-sxikF30LNi .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxikF30LNi .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxikF30LNi .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxikF30LNi .hidden {
  display: none;
}
.cid-sxikF30LNi H10 {
  color: #767676;
}
.cid-sWLTcfKTNs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sWLTcfKTNs [class^="socicon-"]:before,
.cid-sWLTcfKTNs [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWLTcfKTNs .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWLTcfKTNs .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWLTcfKTNs .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWLTcfKTNs .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-skLuDQY9hQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skLuDQY9hQ .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skLuDQY9hQ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skLuDQY9hQ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skLuDQY9hQ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skLuDQY9hQ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skLuDQY9hQ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skLuDQY9hQ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skLuDQY9hQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skLuDQY9hQ .card-title {
  color: #4f5b5f;
}
.cid-skLuDQY9hQ .mbr-text,
.cid-skLuDQY9hQ .mbr-section-btn {
  color: #606060;
}
.cid-skLuDQY9hQ .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sw9SnmUZmu {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-sw9SnmUZmu .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-sw9SnmUZmu .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-sw9SnmUZmu .mbr-section-btn {
  margin-top: 45px;
}
.cid-sw9SnmUZmu .mbr-section-btn .btn {
  height: 60px;
  font-weight: 500;
}
.cid-sw9SnmUZmu img {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-sw9SnmUZmu .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-sw9SnmUZmu .mbr-section-btn .btn {
    height: 50px;
  }
  .cid-sw9SnmUZmu .mbr-text {
    margin-top: 10px;
  }
}
.cid-sw9SnmUZmu .mbr-text,
.cid-sw9SnmUZmu .mbr-section-btn {
  color: #ffffff;
}
.cid-sw9SnmUZmu .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLuDRp224.popup-builder {
  background-color: #ffffff;
}
.cid-skLuDRp224.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLuDRp224.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLuDRp224 .modal-content,
.cid-skLuDRp224 .modal-dialog {
  height: auto;
}
.cid-skLuDRp224 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLuDRp224 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLuDRp224 .form-wrapper .mbr-form .form-group,
  .cid-skLuDRp224 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLuDRp224 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLuDRp224 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLuDRp224 .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLuDRp224 .pt-0 {
  padding-top: 0 !important;
}
.cid-skLuDRp224 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLuDRp224 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLuDRp224 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLuDRp224 .modal-open {
  overflow: hidden;
}
.cid-skLuDRp224 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLuDRp224 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLuDRp224 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLuDRp224 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLuDRp224 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLuDRp224 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLuDRp224 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLuDRp224 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLuDRp224 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLuDRp224 .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLuDRp224 .modal-backdrop.show {
  opacity: .5;
}
.cid-skLuDRp224 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLuDRp224 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLuDRp224 .modal-header .close:hover {
  opacity: 1;
}
.cid-skLuDRp224 .modal-header .close:focus {
  outline: none;
}
.cid-skLuDRp224 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLuDRp224 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLuDRp224 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLuDRp224 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLuDRp224 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLuDRp224 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLuDRp224 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLuDRp224 .modal-sm {
    max-width: 300px;
  }
  .cid-skLuDRp224 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLuDRp224 .modal-lg,
  .cid-skLuDRp224 .modal-xl {
    max-width: 800px;
  }
  .cid-skLuDRp224 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLuDRp224 .modal-xl {
    max-width: 1140px;
  }
  .cid-skLuDRp224 .container {
    max-width: 1140px;
  }
}
.cid-skLuDRp224 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLuDRp224 .container {
    max-width: 720px;
  }
}
.cid-skLuDRp224 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLuDRp224 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLuDRp224 .form-group {
  margin-bottom: 1rem;
}
.cid-skLuDRp224 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLuDRp224 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLuDRp224 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skLuDSomqd {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skLuDSomqd .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skLuDSomqd .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skLuDSomqd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skLuDSomqd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skLuDSomqd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skLuDSomqd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skLuDSomqd .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skLuDSomqd .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skLuDSomqd .card-title {
  color: #4f5b5f;
}
.cid-skLuDSomqd .mbr-text,
.cid-skLuDSomqd .mbr-section-btn {
  color: #606060;
}
.cid-skLuDSomqd .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sx2swJNBrV {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sx2swJNBrV H1 {
  color: #000000;
}
.cid-sx2swJNBrV .mbr-text,
.cid-sx2swJNBrV .mbr-section-btn {
  color: #000000;
}
.cid-sx2swJNBrV .mbr-subtitle {
  color: #000000;
}
.cid-sx2swJNBrV .mbr-text {
  margin-top: 1.5rem;
}
.cid-sx2swJNBrV .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sx2swJNBrV .mbr-section-title,
.cid-sx2swJNBrV .mbr-section-btn {
  color: #404040;
}
.cid-sx2swJNBrV .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLuDSPLxM.popup-builder {
  background-color: #ffffff;
}
.cid-skLuDSPLxM.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLuDSPLxM.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLuDSPLxM .modal-content,
.cid-skLuDSPLxM .modal-dialog {
  height: auto;
}
.cid-skLuDSPLxM .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLuDSPLxM .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLuDSPLxM .form-wrapper .mbr-form .form-group,
  .cid-skLuDSPLxM .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLuDSPLxM .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLuDSPLxM .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLuDSPLxM .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLuDSPLxM .pt-0 {
  padding-top: 0 !important;
}
.cid-skLuDSPLxM .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLuDSPLxM .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLuDSPLxM .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLuDSPLxM .modal-open {
  overflow: hidden;
}
.cid-skLuDSPLxM .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLuDSPLxM .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLuDSPLxM .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLuDSPLxM .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLuDSPLxM .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLuDSPLxM .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLuDSPLxM .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLuDSPLxM .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLuDSPLxM .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLuDSPLxM .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLuDSPLxM .modal-backdrop.show {
  opacity: .5;
}
.cid-skLuDSPLxM .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLuDSPLxM .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLuDSPLxM .modal-header .close:hover {
  opacity: 1;
}
.cid-skLuDSPLxM .modal-header .close:focus {
  outline: none;
}
.cid-skLuDSPLxM .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLuDSPLxM .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLuDSPLxM .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLuDSPLxM .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLuDSPLxM .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLuDSPLxM .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLuDSPLxM .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLuDSPLxM .modal-sm {
    max-width: 300px;
  }
  .cid-skLuDSPLxM .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLuDSPLxM .modal-lg,
  .cid-skLuDSPLxM .modal-xl {
    max-width: 800px;
  }
  .cid-skLuDSPLxM .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLuDSPLxM .modal-xl {
    max-width: 1140px;
  }
  .cid-skLuDSPLxM .container {
    max-width: 1140px;
  }
}
.cid-skLuDSPLxM .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLuDSPLxM .container {
    max-width: 720px;
  }
}
.cid-skLuDSPLxM .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLuDSPLxM .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLuDSPLxM .form-group {
  margin-bottom: 1rem;
}
.cid-skLuDSPLxM .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLuDSPLxM .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLuDSPLxM .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQtgVk.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQtgVk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQtgVk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQtgVk .modal-content,
.cid-slwxxQtgVk .modal-dialog {
  height: auto;
}
.cid-slwxxQtgVk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQtgVk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQtgVk .form-wrapper .mbr-form .form-group,
  .cid-slwxxQtgVk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQtgVk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQtgVk .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQtgVk .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQtgVk .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQtgVk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQtgVk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQtgVk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQtgVk .modal-open {
  overflow: hidden;
}
.cid-slwxxQtgVk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQtgVk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQtgVk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQtgVk .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQtgVk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQtgVk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQtgVk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQtgVk .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQtgVk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQtgVk .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQtgVk .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQtgVk .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQtgVk .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQtgVk .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQtgVk .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQtgVk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQtgVk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQtgVk .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQtgVk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQtgVk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQtgVk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQtgVk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQtgVk .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQtgVk .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQtgVk .modal-lg,
  .cid-slwxxQtgVk .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQtgVk .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQtgVk .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQtgVk .container {
    max-width: 1140px;
  }
}
.cid-slwxxQtgVk .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQtgVk .container {
    max-width: 720px;
  }
}
.cid-slwxxQtgVk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQtgVk .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQtgVk .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQtgVk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQtgVk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQtgVk .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQtgVk .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMICJD.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMICJD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMICJD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMICJD .modal-content,
.cid-slwygMICJD .modal-dialog {
  height: auto;
}
.cid-slwygMICJD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMICJD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMICJD .form-wrapper .mbr-form .form-group,
  .cid-slwygMICJD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMICJD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMICJD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMICJD .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMICJD .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMICJD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMICJD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMICJD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMICJD .modal-open {
  overflow: hidden;
}
.cid-slwygMICJD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMICJD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMICJD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMICJD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMICJD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMICJD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMICJD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMICJD .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMICJD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMICJD .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMICJD .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMICJD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMICJD .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMICJD .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMICJD .modal-header .close:focus {
  outline: none;
}
.cid-slwygMICJD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMICJD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMICJD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMICJD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMICJD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMICJD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMICJD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMICJD .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMICJD .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMICJD .modal-lg,
  .cid-slwygMICJD .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMICJD .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMICJD .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMICJD .container {
    max-width: 1140px;
  }
}
.cid-slwygMICJD .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMICJD .container {
    max-width: 720px;
  }
}
.cid-slwygMICJD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMICJD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMICJD .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMICJD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMICJD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMICJD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMICJD .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slARZzlyem {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slARZzlyem ul {
  padding: 0;
  margin: 0;
}
.cid-slARZzlyem ul li {
  list-style: none;
}
.cid-slARZzlyem ul li h4 {
  margin: 0;
}
.cid-slARZzlyem ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slARZzlyem .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slARZzlyem .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slARZzlyem .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slARZzlyem .col-title1 {
  margin-bottom: 40px;
}
.cid-slARZzlyem .form-group,
.cid-slARZzlyem .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slARZzlyem .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slARZzlyem .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slARZzlyem .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slARZzlyem .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slARZzlyem .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slARZzlyem .col + .mbr-section-btn .btn,
.cid-slARZzlyem .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slARZzlyem .col + .mbr-section-btn .btn.display-4,
.cid-slARZzlyem .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slARZzlyem .col + .mbr-section-btn .btn:hover,
.cid-slARZzlyem .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slARZzlyem .dragArea > *:nth-last-child(2).col,
.cid-slARZzlyem .dragArea > *:nth-last-child(2).col-auto,
.cid-slARZzlyem .col + .mbr-section-btn,
.cid-slARZzlyem .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slARZzlyem .form1 {
  margin-top: 30px;
}
.cid-slARZzlyem .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slARZzlyem .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slARZzlyem .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skAxGCp2KZ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skAxGCp2KZ .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skAxGCp2KZ .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skAxGCp2KZ .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skAxGCp2KZ .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skAxGCp2KZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skAxGCp2KZ .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skAxGCp2KZ .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skAxGCp2KZ .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skAxGCp2KZ .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skAxGCp2KZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skAxGCp2KZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skAxGCp2KZ .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skAxGCp2KZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skAxGCp2KZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skAxGCp2KZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skAxGCp2KZ .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skAxGCp2KZ .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skAxGCp2KZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skAxGCp2KZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skAxGCp2KZ .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skAxGCp2KZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skAxGCp2KZ .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skAxGCp2KZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skAxGCp2KZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skAxGCp2KZ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skAxGCp2KZ .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skAxGCp2KZ .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skAxGCp2KZ .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skAxGCp2KZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skAxGCp2KZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skAxGCp2KZ .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skAxGCp2KZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skAxGCp2KZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skAxGCp2KZ .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skAxGCp2KZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skAxGCp2KZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skAxGCp2KZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skAxGCp2KZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skAxGCp2KZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skAxGCp2KZ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skAxGCp2KZ .dropdown-item.active,
.cid-skAxGCp2KZ .dropdown-item:active {
  background-color: transparent;
}
.cid-skAxGCp2KZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skAxGCp2KZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skAxGCp2KZ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skAxGCp2KZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skAxGCp2KZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skAxGCp2KZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skAxGCp2KZ ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skAxGCp2KZ .navbar-buttons {
  text-align: left;
}
.cid-skAxGCp2KZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skAxGCp2KZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skAxGCp2KZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skAxGCp2KZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skAxGCp2KZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skAxGCp2KZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skAxGCp2KZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skAxGCp2KZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skAxGCp2KZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skAxGCp2KZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skAxGCp2KZ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skAxGCp2KZ a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skAxGCp2KZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skAxGCp2KZ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skAxGCp2KZ .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skAxGCp2KZ .nav-link:hover,
.cid-skAxGCp2KZ .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sy3agaInvF {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy3agaInvF .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: #f9fafb;
}
.cid-sy3agaInvF img {
  width: 100%;
  box-shadow: 10px 20px 60px 0px white;
  border-radius: 26px;
}
.cid-sy3agaInvF p {
  margin-top: 6rem;
}
.cid-sy3agaInvF .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sy3agaInvF .content-wrapper {
  padding-top: 6rem;
}
.cid-sy3agaInvF h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sy3agaInvF .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sy3agaInvF p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sy3agaInvF .back {
    width: 100%;
    height: 75%;
  }
  .cid-sy3agaInvF .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sy3agaInvF p {
    margin-top: 4rem;
  }
}
.cid-sy3agaInvF .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-sy3agaInvF .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sy3agaInvF .content-wrapper {
    padding-right: 3rem;
  }
  .cid-sy3agaInvF h4 {
    right: 2rem;
  }
}
.cid-sy3agaInvF .mbr-text,
.cid-sy3agaInvF .mbr-section-btn {
  color: #404040;
  text-align: center;
}
.cid-sy3agaInvF H1 {
  color: #4f5b5f;
  text-align: center;
}
.cid-sy3agaInvF H3 {
  color: #878787;
  text-align: center;
}
.cid-sy3agaInvF H4 {
  text-align: left;
  color: #999999;
}
.cid-sxikBMay5u .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxikBMay5u .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxikBMay5u .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxikBMay5u .hidden {
  display: none;
}
.cid-sxikBMay5u H10 {
  color: #767676;
}
.cid-skAxGE6fxH {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAxGE6fxH .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAxGE6fxH .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAxGE6fxH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAxGE6fxH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAxGE6fxH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAxGE6fxH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAxGE6fxH .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAxGE6fxH .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAxGE6fxH .card-title {
  color: #404040;
}
.cid-skAxGE6fxH .mbr-text,
.cid-skAxGE6fxH .mbr-section-btn {
  color: #606060;
}
.cid-skAxGE6fxH .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWLSRWQrpb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sWLSRWQrpb [class^="socicon-"]:before,
.cid-sWLSRWQrpb [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWLSRWQrpb .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWLSRWQrpb .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWLSRWQrpb .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWLSRWQrpb .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-sw9K5IQYQY {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/blake-richard-verdoorn-gm-rfqszk98-unsplash-1920x1280.jpg");
}
.cid-sw9K5IQYQY H1 {
  color: #000000;
}
.cid-sw9K5IQYQY .mbr-text,
.cid-sw9K5IQYQY .mbr-section-btn {
  color: #ffffff;
}
.cid-sw9K5IQYQY .mbr-subtitle {
  color: #000000;
}
.cid-sw9K5IQYQY .mbr-text {
  margin-top: 1.5rem;
}
.cid-sw9K5IQYQY .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sw9K5IQYQY .mbr-section-title,
.cid-sw9K5IQYQY .mbr-section-btn {
  color: #ffffff;
}
.cid-sw9K5IQYQY .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLacXVwkW.popup-builder {
  background-color: #ffffff;
}
.cid-skLacXVwkW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLacXVwkW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLacXVwkW .modal-content,
.cid-skLacXVwkW .modal-dialog {
  height: auto;
}
.cid-skLacXVwkW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLacXVwkW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLacXVwkW .form-wrapper .mbr-form .form-group,
  .cid-skLacXVwkW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLacXVwkW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLacXVwkW .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLacXVwkW .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLacXVwkW .pt-0 {
  padding-top: 0 !important;
}
.cid-skLacXVwkW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLacXVwkW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLacXVwkW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLacXVwkW .modal-open {
  overflow: hidden;
}
.cid-skLacXVwkW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLacXVwkW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLacXVwkW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLacXVwkW .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLacXVwkW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLacXVwkW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLacXVwkW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLacXVwkW .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLacXVwkW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLacXVwkW .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLacXVwkW .modal-backdrop.show {
  opacity: .5;
}
.cid-skLacXVwkW .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLacXVwkW .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLacXVwkW .modal-header .close:hover {
  opacity: 1;
}
.cid-skLacXVwkW .modal-header .close:focus {
  outline: none;
}
.cid-skLacXVwkW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLacXVwkW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLacXVwkW .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLacXVwkW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLacXVwkW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLacXVwkW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLacXVwkW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLacXVwkW .modal-sm {
    max-width: 300px;
  }
  .cid-skLacXVwkW .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLacXVwkW .modal-lg,
  .cid-skLacXVwkW .modal-xl {
    max-width: 800px;
  }
  .cid-skLacXVwkW .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLacXVwkW .modal-xl {
    max-width: 1140px;
  }
  .cid-skLacXVwkW .container {
    max-width: 1140px;
  }
}
.cid-skLacXVwkW .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLacXVwkW .container {
    max-width: 720px;
  }
}
.cid-skLacXVwkW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLacXVwkW .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLacXVwkW .form-group {
  margin-bottom: 1rem;
}
.cid-skLacXVwkW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLacXVwkW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLacXVwkW .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skAxGFJWHb {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAxGFJWHb .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAxGFJWHb .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAxGFJWHb .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAxGFJWHb .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAxGFJWHb .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAxGFJWHb .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAxGFJWHb .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAxGFJWHb .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAxGFJWHb .card-title {
  color: #404040;
}
.cid-skAxGFJWHb .mbr-text,
.cid-skAxGFJWHb .mbr-section-btn {
  color: #606060;
}
.cid-skAxGFJWHb .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLazzK7A0.popup-builder {
  background-color: #ffffff;
}
.cid-skLazzK7A0.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLazzK7A0.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLazzK7A0 .modal-content,
.cid-skLazzK7A0 .modal-dialog {
  height: auto;
}
.cid-skLazzK7A0 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLazzK7A0 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLazzK7A0 .form-wrapper .mbr-form .form-group,
  .cid-skLazzK7A0 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLazzK7A0 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLazzK7A0 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLazzK7A0 .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLazzK7A0 .pt-0 {
  padding-top: 0 !important;
}
.cid-skLazzK7A0 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLazzK7A0 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLazzK7A0 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLazzK7A0 .modal-open {
  overflow: hidden;
}
.cid-skLazzK7A0 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLazzK7A0 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLazzK7A0 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLazzK7A0 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLazzK7A0 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLazzK7A0 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLazzK7A0 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLazzK7A0 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLazzK7A0 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLazzK7A0 .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLazzK7A0 .modal-backdrop.show {
  opacity: .5;
}
.cid-skLazzK7A0 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLazzK7A0 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLazzK7A0 .modal-header .close:hover {
  opacity: 1;
}
.cid-skLazzK7A0 .modal-header .close:focus {
  outline: none;
}
.cid-skLazzK7A0 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLazzK7A0 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLazzK7A0 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLazzK7A0 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLazzK7A0 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLazzK7A0 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLazzK7A0 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLazzK7A0 .modal-sm {
    max-width: 300px;
  }
  .cid-skLazzK7A0 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLazzK7A0 .modal-lg,
  .cid-skLazzK7A0 .modal-xl {
    max-width: 800px;
  }
  .cid-skLazzK7A0 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLazzK7A0 .modal-xl {
    max-width: 1140px;
  }
  .cid-skLazzK7A0 .container {
    max-width: 1140px;
  }
}
.cid-skLazzK7A0 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLazzK7A0 .container {
    max-width: 720px;
  }
}
.cid-skLazzK7A0 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLazzK7A0 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLazzK7A0 .form-group {
  margin-bottom: 1rem;
}
.cid-skLazzK7A0 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLazzK7A0 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLazzK7A0 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sw9JEsFpFO {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sw9JEsFpFO .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(153, 153, 153, 0.15);
  margin-bottom: 16px;
}
.cid-sw9JEsFpFO .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sw9JEsFpFO .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sw9JEsFpFO .main-title.display-2 {
  line-height: 1.375;
}
.cid-sw9JEsFpFO .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sw9JEsFpFO .mbr-text {
  color: #606060;
}
.cid-sw9JEsFpFO .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sw9JEsFpFO .mbr-section-btn {
  margin-top: 24px;
}
.cid-sw9JEsFpFO .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-sw9JEsFpFO .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sw9JEsFpFO .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sw9JEsFpFO .mbr-section-subtitle,
.cid-sw9JEsFpFO .mbr-section-btn {
  color: #57468b;
}
.cid-sw9JEsFpFO .main-title,
.cid-sw9JEsFpFO .mbr-section-btn {
  color: #606060;
}
.cid-sw9JEsFpFO .badge,
.cid-sw9JEsFpFO .badge_wrap,
.cid-sw9JEsFpFO .mbr-section-btn {
  color: #404040;
}
.cid-sw9JEsFpFO .mbr-text,
.cid-sw9JEsFpFO .mbr-section-btn {
  color: #111111;
}
.cid-sw9JEsFpFO .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwxxQtouV.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQtouV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQtouV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQtouV .modal-content,
.cid-slwxxQtouV .modal-dialog {
  height: auto;
}
.cid-slwxxQtouV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQtouV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQtouV .form-wrapper .mbr-form .form-group,
  .cid-slwxxQtouV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQtouV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQtouV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQtouV .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQtouV .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQtouV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQtouV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQtouV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQtouV .modal-open {
  overflow: hidden;
}
.cid-slwxxQtouV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQtouV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQtouV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQtouV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQtouV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQtouV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQtouV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQtouV .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQtouV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQtouV .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQtouV .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQtouV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQtouV .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQtouV .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQtouV .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQtouV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQtouV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQtouV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQtouV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQtouV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQtouV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQtouV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQtouV .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQtouV .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQtouV .modal-lg,
  .cid-slwxxQtouV .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQtouV .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQtouV .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQtouV .container {
    max-width: 1140px;
  }
}
.cid-slwxxQtouV .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQtouV .container {
    max-width: 720px;
  }
}
.cid-slwxxQtouV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQtouV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQtouV .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQtouV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQtouV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQtouV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQtouV .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMJU8j.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMJU8j.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMJU8j.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMJU8j .modal-content,
.cid-slwygMJU8j .modal-dialog {
  height: auto;
}
.cid-slwygMJU8j .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMJU8j .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMJU8j .form-wrapper .mbr-form .form-group,
  .cid-slwygMJU8j .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMJU8j .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMJU8j .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMJU8j .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMJU8j .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMJU8j .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMJU8j .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMJU8j .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMJU8j .modal-open {
  overflow: hidden;
}
.cid-slwygMJU8j .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMJU8j .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMJU8j .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMJU8j .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMJU8j .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMJU8j .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMJU8j .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMJU8j .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMJU8j .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMJU8j .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMJU8j .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMJU8j .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMJU8j .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMJU8j .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMJU8j .modal-header .close:focus {
  outline: none;
}
.cid-slwygMJU8j .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMJU8j .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMJU8j .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMJU8j .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMJU8j .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMJU8j .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMJU8j .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMJU8j .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMJU8j .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMJU8j .modal-lg,
  .cid-slwygMJU8j .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMJU8j .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMJU8j .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMJU8j .container {
    max-width: 1140px;
  }
}
.cid-slwygMJU8j .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMJU8j .container {
    max-width: 720px;
  }
}
.cid-slwygMJU8j .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMJU8j .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMJU8j .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMJU8j .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMJU8j .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMJU8j .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMJU8j .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slARX11Lgc {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slARX11Lgc ul {
  padding: 0;
  margin: 0;
}
.cid-slARX11Lgc ul li {
  list-style: none;
}
.cid-slARX11Lgc ul li h4 {
  margin: 0;
}
.cid-slARX11Lgc ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slARX11Lgc .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slARX11Lgc .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slARX11Lgc .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slARX11Lgc .col-title1 {
  margin-bottom: 40px;
}
.cid-slARX11Lgc .form-group,
.cid-slARX11Lgc .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slARX11Lgc .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slARX11Lgc .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slARX11Lgc .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slARX11Lgc .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slARX11Lgc .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slARX11Lgc .col + .mbr-section-btn .btn,
.cid-slARX11Lgc .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slARX11Lgc .col + .mbr-section-btn .btn.display-4,
.cid-slARX11Lgc .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slARX11Lgc .col + .mbr-section-btn .btn:hover,
.cid-slARX11Lgc .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slARX11Lgc .dragArea > *:nth-last-child(2).col,
.cid-slARX11Lgc .dragArea > *:nth-last-child(2).col-auto,
.cid-slARX11Lgc .col + .mbr-section-btn,
.cid-slARX11Lgc .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slARX11Lgc .form1 {
  margin-top: 30px;
}
.cid-slARX11Lgc .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slARX11Lgc .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slARX11Lgc .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skMcKSo3oI .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skMcKSo3oI .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skMcKSo3oI .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skMcKSo3oI .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skMcKSo3oI .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skMcKSo3oI .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skMcKSo3oI .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skMcKSo3oI .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skMcKSo3oI .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skMcKSo3oI .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skMcKSo3oI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skMcKSo3oI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skMcKSo3oI .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skMcKSo3oI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skMcKSo3oI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skMcKSo3oI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skMcKSo3oI .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skMcKSo3oI .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skMcKSo3oI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skMcKSo3oI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skMcKSo3oI .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skMcKSo3oI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skMcKSo3oI .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skMcKSo3oI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skMcKSo3oI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skMcKSo3oI .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skMcKSo3oI .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skMcKSo3oI .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skMcKSo3oI .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skMcKSo3oI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skMcKSo3oI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skMcKSo3oI .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skMcKSo3oI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skMcKSo3oI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skMcKSo3oI .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skMcKSo3oI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skMcKSo3oI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skMcKSo3oI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skMcKSo3oI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skMcKSo3oI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skMcKSo3oI .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skMcKSo3oI .dropdown-item.active,
.cid-skMcKSo3oI .dropdown-item:active {
  background-color: transparent;
}
.cid-skMcKSo3oI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skMcKSo3oI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skMcKSo3oI .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skMcKSo3oI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skMcKSo3oI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skMcKSo3oI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skMcKSo3oI ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skMcKSo3oI .navbar-buttons {
  text-align: left;
}
.cid-skMcKSo3oI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skMcKSo3oI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skMcKSo3oI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skMcKSo3oI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skMcKSo3oI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skMcKSo3oI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skMcKSo3oI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skMcKSo3oI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skMcKSo3oI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skMcKSo3oI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skMcKSo3oI .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skMcKSo3oI a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skMcKSo3oI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skMcKSo3oI .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skMcKSo3oI .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skMcKSo3oI .nav-link:hover,
.cid-skMcKSo3oI .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-syfvQHFsZl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f9fafb;
}
.cid-syfvQHFsZl .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-syfvQHFsZl .text-wrapper:hover .mbr-section-title a {
  color: #0e569e !important;
}
.cid-syfvQHFsZl .image-wrapper,
.cid-syfvQHFsZl img {
  width: 100%;
  object-fit: cover;
}
.cid-syfvQHFsZl .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #404040;
  text-align: center;
}
.cid-syfvQHFsZl .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-syfvQHFsZl .mbr-section-btn .btn-secondary-outline:hover,
.cid-syfvQHFsZl .mbr-section-btn .btn-secondary-outline .active,
.cid-syfvQHFsZl .mbr-section-btn .btn-secondary-outline:focus {
  color: #848abd !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-syfvQHFsZl .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-syfvQHFsZl {
    flex-direction: column;
  }
  .cid-syfvQHFsZl .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syfvQHFsZl .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-syfvQHFsZl .mbr-section-title {
  color: #4f5b5f;
  text-align: center;
}
.cid-syfvQHFsZl .mbr-text,
.cid-syfvQHFsZl .mbr-section-btn {
  text-align: center;
  color: #4f5b5f;
}
.cid-syfvQHFsZl .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxilkmFboB .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxilkmFboB .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxilkmFboB .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxilkmFboB .hidden {
  display: none;
}
.cid-sxilkmFboB H10 {
  color: #767676;
}
.cid-sWDScyZvNn {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-sWDScyZvNn h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sWDScyZvNn h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-sWDScyZvNn .media-container-row {
  justify-content: space-between;
}
.cid-sWDScyZvNn .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWDScyZvNn .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sWDScyZvNn .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sWDScyZvNn a:link {
  text-decoration: none;
}
.cid-sWDScyZvNn .icon-transition span {
  text-align: center;
  color: #d698b5;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 20%;
  border: 1px solid #d698b5;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-sWDScyZvNn .icon-transition span:hover {
  background-color: rgba(153, 153, 153, 0.5);
  color: #ffffff;
}
.cid-sWDScyZvNn .btn {
  min-width: 195px;
}
.cid-sWDScyZvNn .btn.btn-primary-outline {
  border: 1px solid #848abd;
}
.cid-sWDScyZvNn .btn.btn-primary-outline:hover {
  background-color: #848abd !important;
  color: #ffffff !important;
}
.cid-sWDScyZvNn .btn.btn-secondary-outline {
  border: 1px solid #0e569e;
}
.cid-sWDScyZvNn .btn.btn-secondary-outline:hover {
  background-color: #0e569e !important;
  color: #ffffff !important;
}
.cid-sWDScyZvNn .btn.btn-success-outline {
  border: 1px solid #ffffff;
}
.cid-sWDScyZvNn .btn.btn-success-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-sWDScyZvNn .btn.btn-info-outline {
  border: 1px solid #f3f4f7;
}
.cid-sWDScyZvNn .btn.btn-info-outline:hover {
  background-color: #f3f4f7 !important;
  color: #ffffff !important;
}
.cid-sWDScyZvNn .btn.btn-warning-outline {
  border: 1px solid #b97ecd;
}
.cid-sWDScyZvNn .btn.btn-warning-outline:hover {
  background-color: #b97ecd !important;
  color: #ffffff !important;
}
.cid-sWDScyZvNn .btn.btn-danger-outline {
  border: 1px solid #000000;
}
.cid-sWDScyZvNn .btn.btn-danger-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDScyZvNn .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sWDScyZvNn .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDScyZvNn .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sWDScyZvNn .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 992px) {
  .cid-sWDScyZvNn .wrap {
    justify-content: center;
  }
}
.cid-sWDScyZvNn .mbr-section-title {
  color: #999999;
}
.cid-skMcKV8VCP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skMcKV8VCP .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skMcKV8VCP .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skMcKV8VCP .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skMcKV8VCP .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skMcKV8VCP .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skMcKV8VCP .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skMcKV8VCP .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skMcKV8VCP .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skMcKV8VCP .card-title {
  color: #4f5b5f;
}
.cid-skMcKV8VCP .mbr-text,
.cid-skMcKV8VCP .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skMcKV8VCP .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxebexNPHL {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/kindpng-6069000-min-1260x552.png");
}
.cid-sxebexNPHL .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(153, 153, 153, 0.15);
  margin-bottom: 16px;
}
.cid-sxebexNPHL .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sxebexNPHL .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sxebexNPHL .main-title.display-2 {
  line-height: 1.375;
}
.cid-sxebexNPHL .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sxebexNPHL .mbr-text {
  color: #606060;
}
.cid-sxebexNPHL .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sxebexNPHL .mbr-section-btn {
  margin-top: 24px;
}
.cid-sxebexNPHL .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-sxebexNPHL .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sxebexNPHL .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sxebexNPHL .mbr-section-subtitle,
.cid-sxebexNPHL .mbr-section-btn {
  color: #4f5b5f;
}
.cid-sxebexNPHL .main-title,
.cid-sxebexNPHL .mbr-section-btn {
  color: #000000;
}
.cid-sxebexNPHL .badge,
.cid-sxebexNPHL .badge_wrap,
.cid-sxebexNPHL .mbr-section-btn {
  color: #000000;
}
.cid-sxebexNPHL .mbr-text,
.cid-sxebexNPHL .mbr-section-btn {
  color: #000000;
}
.cid-sxebexNPHL .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slk4PU1d2F.popup-builder {
  background-color: #ffffff;
}
.cid-slk4PU1d2F.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slk4PU1d2F.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slk4PU1d2F .modal-content,
.cid-slk4PU1d2F .modal-dialog {
  height: auto;
}
.cid-slk4PU1d2F .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slk4PU1d2F .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slk4PU1d2F .form-wrapper .mbr-form .form-group,
  .cid-slk4PU1d2F .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slk4PU1d2F .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slk4PU1d2F .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slk4PU1d2F .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-slk4PU1d2F .pt-0 {
  padding-top: 0 !important;
}
.cid-slk4PU1d2F .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slk4PU1d2F .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slk4PU1d2F .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slk4PU1d2F .modal-open {
  overflow: hidden;
}
.cid-slk4PU1d2F .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slk4PU1d2F .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slk4PU1d2F .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slk4PU1d2F .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slk4PU1d2F .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slk4PU1d2F .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slk4PU1d2F .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slk4PU1d2F .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slk4PU1d2F .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slk4PU1d2F .modal-backdrop.fade {
  opacity: 0;
}
.cid-slk4PU1d2F .modal-backdrop.show {
  opacity: .5;
}
.cid-slk4PU1d2F .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slk4PU1d2F .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slk4PU1d2F .modal-header .close:hover {
  opacity: 1;
}
.cid-slk4PU1d2F .modal-header .close:focus {
  outline: none;
}
.cid-slk4PU1d2F .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-slk4PU1d2F .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slk4PU1d2F .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slk4PU1d2F .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slk4PU1d2F .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slk4PU1d2F .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slk4PU1d2F .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slk4PU1d2F .modal-sm {
    max-width: 300px;
  }
  .cid-slk4PU1d2F .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slk4PU1d2F .modal-lg,
  .cid-slk4PU1d2F .modal-xl {
    max-width: 800px;
  }
  .cid-slk4PU1d2F .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slk4PU1d2F .modal-xl {
    max-width: 1140px;
  }
  .cid-slk4PU1d2F .container {
    max-width: 1140px;
  }
}
.cid-slk4PU1d2F .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slk4PU1d2F .container {
    max-width: 720px;
  }
}
.cid-slk4PU1d2F .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slk4PU1d2F .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slk4PU1d2F .form-group {
  margin-bottom: 1rem;
}
.cid-slk4PU1d2F .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slk4PU1d2F .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slk4PU1d2F .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skMcKWNayK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skMcKWNayK .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skMcKWNayK .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skMcKWNayK .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skMcKWNayK .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skMcKWNayK .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skMcKWNayK .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skMcKWNayK .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skMcKWNayK .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skMcKWNayK .card-title {
  color: #4f5b5f;
}
.cid-skMcKWNayK .mbr-text,
.cid-skMcKWNayK .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skMcKWNayK .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl9l6DbDRa.popup-builder {
  background-color: #ffffff;
}
.cid-sl9l6DbDRa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9l6DbDRa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9l6DbDRa .modal-content,
.cid-sl9l6DbDRa .modal-dialog {
  height: auto;
}
.cid-sl9l6DbDRa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9l6DbDRa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9l6DbDRa .form-wrapper .mbr-form .form-group,
  .cid-sl9l6DbDRa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9l6DbDRa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9l6DbDRa .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9l6DbDRa .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9l6DbDRa .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9l6DbDRa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9l6DbDRa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9l6DbDRa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9l6DbDRa .modal-open {
  overflow: hidden;
}
.cid-sl9l6DbDRa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9l6DbDRa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9l6DbDRa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9l6DbDRa .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9l6DbDRa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9l6DbDRa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9l6DbDRa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9l6DbDRa .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9l6DbDRa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9l6DbDRa .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9l6DbDRa .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9l6DbDRa .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9l6DbDRa .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9l6DbDRa .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9l6DbDRa .modal-header .close:focus {
  outline: none;
}
.cid-sl9l6DbDRa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9l6DbDRa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9l6DbDRa .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9l6DbDRa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9l6DbDRa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9l6DbDRa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9l6DbDRa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9l6DbDRa .modal-sm {
    max-width: 300px;
  }
  .cid-sl9l6DbDRa .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9l6DbDRa .modal-lg,
  .cid-sl9l6DbDRa .modal-xl {
    max-width: 800px;
  }
  .cid-sl9l6DbDRa .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9l6DbDRa .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9l6DbDRa .container {
    max-width: 1140px;
  }
}
.cid-sl9l6DbDRa .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9l6DbDRa .container {
    max-width: 720px;
  }
}
.cid-sl9l6DbDRa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9l6DbDRa .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9l6DbDRa .form-group {
  margin-bottom: 1rem;
}
.cid-sl9l6DbDRa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9l6DbDRa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9l6DbDRa .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQtzEt.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQtzEt.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQtzEt.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQtzEt .modal-content,
.cid-slwxxQtzEt .modal-dialog {
  height: auto;
}
.cid-slwxxQtzEt .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQtzEt .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQtzEt .form-wrapper .mbr-form .form-group,
  .cid-slwxxQtzEt .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQtzEt .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQtzEt .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQtzEt .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQtzEt .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQtzEt .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQtzEt .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQtzEt .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQtzEt .modal-open {
  overflow: hidden;
}
.cid-slwxxQtzEt .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQtzEt .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQtzEt .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQtzEt .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQtzEt .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQtzEt .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQtzEt .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQtzEt .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQtzEt .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQtzEt .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQtzEt .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQtzEt .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQtzEt .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQtzEt .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQtzEt .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQtzEt .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQtzEt .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQtzEt .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQtzEt .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQtzEt .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQtzEt .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQtzEt .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQtzEt .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQtzEt .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQtzEt .modal-lg,
  .cid-slwxxQtzEt .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQtzEt .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQtzEt .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQtzEt .container {
    max-width: 1140px;
  }
}
.cid-slwxxQtzEt .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQtzEt .container {
    max-width: 720px;
  }
}
.cid-slwxxQtzEt .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQtzEt .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQtzEt .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQtzEt .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQtzEt .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQtzEt .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQtzEt .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMJsbH.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMJsbH.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMJsbH.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMJsbH .modal-content,
.cid-slwygMJsbH .modal-dialog {
  height: auto;
}
.cid-slwygMJsbH .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMJsbH .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMJsbH .form-wrapper .mbr-form .form-group,
  .cid-slwygMJsbH .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMJsbH .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMJsbH .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMJsbH .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMJsbH .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMJsbH .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMJsbH .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMJsbH .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMJsbH .modal-open {
  overflow: hidden;
}
.cid-slwygMJsbH .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMJsbH .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMJsbH .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMJsbH .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMJsbH .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMJsbH .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMJsbH .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMJsbH .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMJsbH .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMJsbH .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMJsbH .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMJsbH .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMJsbH .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMJsbH .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMJsbH .modal-header .close:focus {
  outline: none;
}
.cid-slwygMJsbH .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMJsbH .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMJsbH .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMJsbH .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMJsbH .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMJsbH .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMJsbH .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMJsbH .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMJsbH .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMJsbH .modal-lg,
  .cid-slwygMJsbH .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMJsbH .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMJsbH .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMJsbH .container {
    max-width: 1140px;
  }
}
.cid-slwygMJsbH .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMJsbH .container {
    max-width: 720px;
  }
}
.cid-slwygMJsbH .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMJsbH .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMJsbH .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMJsbH .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMJsbH .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMJsbH .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMJsbH .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxeb8g1D0I {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sxeb8g1D0I .text-wrapper {
  z-index: 11;
}
.cid-sxeb8g1D0I .wrapper {
  display: flex;
  flex-direction: column;
}
.cid-sxeb8g1D0I .animate__fadeInUp:before {
  background: #ffffff;
}
.cid-sxeb8g1D0I .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #848abd;
  margin-right: 0rem;
  margin-bottom: 2rem;
}
.cid-sxeb8g1D0I .iconfont-wrapper {
  margin: auto;
}
.cid-sxeb8g1D0I .mbr-section-title {
  text-align: center;
  color: #57468b;
}
.cid-sxeb8g1D0I .mbr-text,
.cid-sxeb8g1D0I .mbr-section-btn {
  text-align: center;
  color: #161734;
}
.cid-sxeb8g1D0I .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slARFY1YHF {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slARFY1YHF ul {
  padding: 0;
  margin: 0;
}
.cid-slARFY1YHF ul li {
  list-style: none;
}
.cid-slARFY1YHF ul li h4 {
  margin: 0;
}
.cid-slARFY1YHF ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slARFY1YHF .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slARFY1YHF .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slARFY1YHF .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slARFY1YHF .col-title1 {
  margin-bottom: 40px;
}
.cid-slARFY1YHF .form-group,
.cid-slARFY1YHF .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slARFY1YHF .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slARFY1YHF .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slARFY1YHF .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slARFY1YHF .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slARFY1YHF .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slARFY1YHF .col + .mbr-section-btn .btn,
.cid-slARFY1YHF .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slARFY1YHF .col + .mbr-section-btn .btn.display-4,
.cid-slARFY1YHF .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slARFY1YHF .col + .mbr-section-btn .btn:hover,
.cid-slARFY1YHF .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slARFY1YHF .dragArea > *:nth-last-child(2).col,
.cid-slARFY1YHF .dragArea > *:nth-last-child(2).col-auto,
.cid-slARFY1YHF .col + .mbr-section-btn,
.cid-slARFY1YHF .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slARFY1YHF .form1 {
  margin-top: 30px;
}
.cid-slARFY1YHF .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slARFY1YHF .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slARFY1YHF .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skMn1L09m4 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skMn1L09m4 .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skMn1L09m4 .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skMn1L09m4 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skMn1L09m4 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skMn1L09m4 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skMn1L09m4 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skMn1L09m4 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skMn1L09m4 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skMn1L09m4 .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skMn1L09m4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skMn1L09m4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skMn1L09m4 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skMn1L09m4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skMn1L09m4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skMn1L09m4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skMn1L09m4 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skMn1L09m4 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skMn1L09m4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skMn1L09m4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skMn1L09m4 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skMn1L09m4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skMn1L09m4 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skMn1L09m4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skMn1L09m4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skMn1L09m4 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skMn1L09m4 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skMn1L09m4 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skMn1L09m4 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skMn1L09m4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skMn1L09m4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skMn1L09m4 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skMn1L09m4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skMn1L09m4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skMn1L09m4 .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skMn1L09m4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skMn1L09m4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skMn1L09m4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skMn1L09m4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skMn1L09m4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skMn1L09m4 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skMn1L09m4 .dropdown-item.active,
.cid-skMn1L09m4 .dropdown-item:active {
  background-color: transparent;
}
.cid-skMn1L09m4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skMn1L09m4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skMn1L09m4 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skMn1L09m4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skMn1L09m4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skMn1L09m4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skMn1L09m4 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skMn1L09m4 .navbar-buttons {
  text-align: left;
}
.cid-skMn1L09m4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skMn1L09m4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skMn1L09m4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skMn1L09m4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skMn1L09m4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skMn1L09m4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skMn1L09m4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skMn1L09m4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skMn1L09m4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skMn1L09m4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skMn1L09m4 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skMn1L09m4 a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skMn1L09m4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skMn1L09m4 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skMn1L09m4 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skMn1L09m4 .nav-link:hover,
.cid-skMn1L09m4 .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sy9TRA4tPT {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #f9fafb;
}
.cid-sy9TRA4tPT .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: #ffffff;
}
.cid-sy9TRA4tPT img {
  width: 100%;
  box-shadow: 10px 20px 60px 0px white;
  border-radius: 26px;
}
.cid-sy9TRA4tPT p {
  margin-top: 6rem;
}
.cid-sy9TRA4tPT .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sy9TRA4tPT .content-wrapper {
  padding-top: 6rem;
}
.cid-sy9TRA4tPT h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sy9TRA4tPT .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sy9TRA4tPT p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sy9TRA4tPT .back {
    width: 100%;
    height: 75%;
  }
  .cid-sy9TRA4tPT .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sy9TRA4tPT p {
    margin-top: 4rem;
  }
}
.cid-sy9TRA4tPT .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-sy9TRA4tPT .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sy9TRA4tPT .content-wrapper {
    padding-right: 3rem;
  }
  .cid-sy9TRA4tPT h4 {
    right: 2rem;
  }
}
.cid-sy9TRA4tPT .mbr-text,
.cid-sy9TRA4tPT .mbr-section-btn {
  color: #4f5b5f;
  text-align: center;
}
.cid-sy9TRA4tPT H1 {
  color: #4f5b5f;
  text-align: center;
}
.cid-sy9TRA4tPT H3 {
  color: #333333;
  text-align: center;
}
.cid-sy9TRA4tPT H4 {
  text-align: left;
  color: #999999;
}
.cid-sy9TRA4tPT .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxil6DvHxt .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxil6DvHxt .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxil6DvHxt .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxil6DvHxt .hidden {
  display: none;
}
.cid-sxil6DvHxt H10 {
  color: #767676;
}
.cid-sWyIXf7z6b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sWyIXf7z6b [class^="socicon-"]:before,
.cid-sWyIXf7z6b [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWyIXf7z6b .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWyIXf7z6b .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWyIXf7z6b .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWyIXf7z6b .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-skMn1NEwJl {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skMn1NEwJl .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skMn1NEwJl .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skMn1NEwJl .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skMn1NEwJl .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skMn1NEwJl .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skMn1NEwJl .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skMn1NEwJl .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skMn1NEwJl .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skMn1NEwJl .card-title {
  color: #4f5b5f;
}
.cid-skMn1NEwJl .mbr-text,
.cid-skMn1NEwJl .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skMn1NEwJl .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-svI9PTwGps {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/blake-richard-verdoorn-gm-rfqszk98-unsplash-1920x1280.jpg");
}
.cid-svI9PTwGps H1 {
  color: #000000;
}
.cid-svI9PTwGps .mbr-text,
.cid-svI9PTwGps .mbr-section-btn {
  color: #ffffff;
}
.cid-svI9PTwGps .mbr-subtitle {
  color: #000000;
}
.cid-svI9PTwGps .mbr-text {
  margin-top: 1.5rem;
}
.cid-svI9PTwGps .mbr-section-btn {
  margin-top: 2rem;
}
.cid-svI9PTwGps .mbr-section-title,
.cid-svI9PTwGps .mbr-section-btn {
  color: #ffffff;
}
.cid-svI9PTwGps .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl9mgQiOLp.popup-builder {
  background-color: #ffffff;
}
.cid-sl9mgQiOLp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9mgQiOLp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9mgQiOLp .modal-content,
.cid-sl9mgQiOLp .modal-dialog {
  height: auto;
}
.cid-sl9mgQiOLp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9mgQiOLp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9mgQiOLp .form-wrapper .mbr-form .form-group,
  .cid-sl9mgQiOLp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9mgQiOLp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9mgQiOLp .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9mgQiOLp .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9mgQiOLp .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9mgQiOLp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9mgQiOLp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9mgQiOLp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9mgQiOLp .modal-open {
  overflow: hidden;
}
.cid-sl9mgQiOLp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9mgQiOLp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9mgQiOLp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9mgQiOLp .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9mgQiOLp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9mgQiOLp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9mgQiOLp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9mgQiOLp .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9mgQiOLp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9mgQiOLp .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9mgQiOLp .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9mgQiOLp .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9mgQiOLp .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9mgQiOLp .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9mgQiOLp .modal-header .close:focus {
  outline: none;
}
.cid-sl9mgQiOLp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9mgQiOLp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9mgQiOLp .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9mgQiOLp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9mgQiOLp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9mgQiOLp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9mgQiOLp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9mgQiOLp .modal-sm {
    max-width: 300px;
  }
  .cid-sl9mgQiOLp .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9mgQiOLp .modal-lg,
  .cid-sl9mgQiOLp .modal-xl {
    max-width: 800px;
  }
  .cid-sl9mgQiOLp .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9mgQiOLp .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9mgQiOLp .container {
    max-width: 1140px;
  }
}
.cid-sl9mgQiOLp .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9mgQiOLp .container {
    max-width: 720px;
  }
}
.cid-sl9mgQiOLp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9mgQiOLp .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9mgQiOLp .form-group {
  margin-bottom: 1rem;
}
.cid-sl9mgQiOLp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9mgQiOLp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9mgQiOLp .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sl9lZdp1hx.popup-builder {
  background-color: #ffffff;
}
.cid-sl9lZdp1hx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9lZdp1hx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9lZdp1hx .modal-content,
.cid-sl9lZdp1hx .modal-dialog {
  height: auto;
}
.cid-sl9lZdp1hx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9lZdp1hx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9lZdp1hx .form-wrapper .mbr-form .form-group,
  .cid-sl9lZdp1hx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9lZdp1hx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9lZdp1hx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9lZdp1hx .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9lZdp1hx .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9lZdp1hx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9lZdp1hx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9lZdp1hx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9lZdp1hx .modal-open {
  overflow: hidden;
}
.cid-sl9lZdp1hx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9lZdp1hx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9lZdp1hx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9lZdp1hx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9lZdp1hx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9lZdp1hx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9lZdp1hx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9lZdp1hx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9lZdp1hx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9lZdp1hx .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9lZdp1hx .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9lZdp1hx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9lZdp1hx .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9lZdp1hx .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9lZdp1hx .modal-header .close:focus {
  outline: none;
}
.cid-sl9lZdp1hx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9lZdp1hx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9lZdp1hx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9lZdp1hx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9lZdp1hx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9lZdp1hx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9lZdp1hx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9lZdp1hx .modal-sm {
    max-width: 300px;
  }
  .cid-sl9lZdp1hx .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9lZdp1hx .modal-lg,
  .cid-sl9lZdp1hx .modal-xl {
    max-width: 800px;
  }
  .cid-sl9lZdp1hx .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9lZdp1hx .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9lZdp1hx .container {
    max-width: 1140px;
  }
}
.cid-sl9lZdp1hx .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9lZdp1hx .container {
    max-width: 720px;
  }
}
.cid-sl9lZdp1hx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9lZdp1hx .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9lZdp1hx .form-group {
  margin-bottom: 1rem;
}
.cid-sl9lZdp1hx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9lZdp1hx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9lZdp1hx .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skMHImZ08N {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skMHImZ08N .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skMHImZ08N .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skMHImZ08N .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skMHImZ08N .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skMHImZ08N .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skMHImZ08N .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skMHImZ08N .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skMHImZ08N .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skMHImZ08N .card-title {
  color: #4f5b5f;
}
.cid-skMHImZ08N .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skMHImZ08N .mbr-text,
.cid-skMHImZ08N .mbr-section-btn {
  color: #606060;
}
.cid-sl9mR9sBoj.popup-builder {
  background-color: #ffffff;
}
.cid-sl9mR9sBoj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9mR9sBoj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9mR9sBoj .modal-content,
.cid-sl9mR9sBoj .modal-dialog {
  height: auto;
}
.cid-sl9mR9sBoj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9mR9sBoj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9mR9sBoj .form-wrapper .mbr-form .form-group,
  .cid-sl9mR9sBoj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9mR9sBoj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9mR9sBoj .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9mR9sBoj .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl9mR9sBoj .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9mR9sBoj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9mR9sBoj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9mR9sBoj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9mR9sBoj .modal-open {
  overflow: hidden;
}
.cid-sl9mR9sBoj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9mR9sBoj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9mR9sBoj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9mR9sBoj .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9mR9sBoj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9mR9sBoj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9mR9sBoj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9mR9sBoj .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9mR9sBoj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9mR9sBoj .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9mR9sBoj .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9mR9sBoj .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9mR9sBoj .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9mR9sBoj .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9mR9sBoj .modal-header .close:focus {
  outline: none;
}
.cid-sl9mR9sBoj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9mR9sBoj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9mR9sBoj .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9mR9sBoj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9mR9sBoj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9mR9sBoj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9mR9sBoj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9mR9sBoj .modal-sm {
    max-width: 300px;
  }
  .cid-sl9mR9sBoj .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9mR9sBoj .modal-lg,
  .cid-sl9mR9sBoj .modal-xl {
    max-width: 800px;
  }
  .cid-sl9mR9sBoj .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9mR9sBoj .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9mR9sBoj .container {
    max-width: 1140px;
  }
}
.cid-sl9mR9sBoj .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9mR9sBoj .container {
    max-width: 720px;
  }
}
.cid-sl9mR9sBoj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9mR9sBoj .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9mR9sBoj .form-group {
  margin-bottom: 1rem;
}
.cid-sl9mR9sBoj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9mR9sBoj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9mR9sBoj .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQunEV.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQunEV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQunEV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQunEV .modal-content,
.cid-slwxxQunEV .modal-dialog {
  height: auto;
}
.cid-slwxxQunEV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQunEV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQunEV .form-wrapper .mbr-form .form-group,
  .cid-slwxxQunEV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQunEV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQunEV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQunEV .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQunEV .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQunEV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQunEV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQunEV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQunEV .modal-open {
  overflow: hidden;
}
.cid-slwxxQunEV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQunEV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQunEV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQunEV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQunEV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQunEV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQunEV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQunEV .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQunEV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQunEV .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQunEV .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQunEV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQunEV .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQunEV .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQunEV .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQunEV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQunEV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQunEV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQunEV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQunEV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQunEV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQunEV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQunEV .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQunEV .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQunEV .modal-lg,
  .cid-slwxxQunEV .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQunEV .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQunEV .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQunEV .container {
    max-width: 1140px;
  }
}
.cid-slwxxQunEV .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQunEV .container {
    max-width: 720px;
  }
}
.cid-slwxxQunEV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQunEV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQunEV .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQunEV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQunEV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQunEV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQunEV .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMKqZL.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMKqZL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMKqZL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMKqZL .modal-content,
.cid-slwygMKqZL .modal-dialog {
  height: auto;
}
.cid-slwygMKqZL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMKqZL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMKqZL .form-wrapper .mbr-form .form-group,
  .cid-slwygMKqZL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMKqZL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMKqZL .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMKqZL .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMKqZL .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMKqZL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMKqZL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMKqZL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMKqZL .modal-open {
  overflow: hidden;
}
.cid-slwygMKqZL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMKqZL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMKqZL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMKqZL .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMKqZL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMKqZL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMKqZL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMKqZL .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMKqZL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMKqZL .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMKqZL .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMKqZL .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMKqZL .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMKqZL .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMKqZL .modal-header .close:focus {
  outline: none;
}
.cid-slwygMKqZL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMKqZL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMKqZL .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMKqZL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMKqZL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMKqZL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMKqZL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMKqZL .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMKqZL .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMKqZL .modal-lg,
  .cid-slwygMKqZL .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMKqZL .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMKqZL .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMKqZL .container {
    max-width: 1140px;
  }
}
.cid-slwygMKqZL .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMKqZL .container {
    max-width: 720px;
  }
}
.cid-slwygMKqZL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMKqZL .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMKqZL .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMKqZL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMKqZL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMKqZL .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMKqZL .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slARIqfIGb {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slARIqfIGb ul {
  padding: 0;
  margin: 0;
}
.cid-slARIqfIGb ul li {
  list-style: none;
}
.cid-slARIqfIGb ul li h4 {
  margin: 0;
}
.cid-slARIqfIGb ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slARIqfIGb .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slARIqfIGb .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slARIqfIGb .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slARIqfIGb .col-title1 {
  margin-bottom: 40px;
}
.cid-slARIqfIGb .form-group,
.cid-slARIqfIGb .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slARIqfIGb .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slARIqfIGb .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slARIqfIGb .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slARIqfIGb .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slARIqfIGb .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slARIqfIGb .col + .mbr-section-btn .btn,
.cid-slARIqfIGb .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slARIqfIGb .col + .mbr-section-btn .btn.display-4,
.cid-slARIqfIGb .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slARIqfIGb .col + .mbr-section-btn .btn:hover,
.cid-slARIqfIGb .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slARIqfIGb .dragArea > *:nth-last-child(2).col,
.cid-slARIqfIGb .dragArea > *:nth-last-child(2).col-auto,
.cid-slARIqfIGb .col + .mbr-section-btn,
.cid-slARIqfIGb .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slARIqfIGb .form1 {
  margin-top: 30px;
}
.cid-slARIqfIGb .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slARIqfIGb .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slARIqfIGb .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skPinX1jg7 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skPinX1jg7 .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skPinX1jg7 .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skPinX1jg7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skPinX1jg7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skPinX1jg7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skPinX1jg7 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skPinX1jg7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skPinX1jg7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skPinX1jg7 .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skPinX1jg7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skPinX1jg7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skPinX1jg7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skPinX1jg7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skPinX1jg7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skPinX1jg7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skPinX1jg7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skPinX1jg7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skPinX1jg7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skPinX1jg7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skPinX1jg7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skPinX1jg7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skPinX1jg7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skPinX1jg7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skPinX1jg7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skPinX1jg7 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skPinX1jg7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skPinX1jg7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skPinX1jg7 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skPinX1jg7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skPinX1jg7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skPinX1jg7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skPinX1jg7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skPinX1jg7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skPinX1jg7 .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skPinX1jg7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skPinX1jg7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skPinX1jg7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skPinX1jg7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skPinX1jg7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skPinX1jg7 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skPinX1jg7 .dropdown-item.active,
.cid-skPinX1jg7 .dropdown-item:active {
  background-color: transparent;
}
.cid-skPinX1jg7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skPinX1jg7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skPinX1jg7 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skPinX1jg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skPinX1jg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skPinX1jg7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skPinX1jg7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skPinX1jg7 .navbar-buttons {
  text-align: left;
}
.cid-skPinX1jg7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skPinX1jg7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skPinX1jg7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skPinX1jg7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skPinX1jg7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skPinX1jg7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skPinX1jg7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skPinX1jg7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skPinX1jg7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skPinX1jg7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skPinX1jg7 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skPinX1jg7 a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skPinX1jg7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skPinX1jg7 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skPinX1jg7 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skPinX1jg7 .nav-link:hover,
.cid-skPinX1jg7 .dropdown-item:hover {
  color: #c8ced9 !important;
}
#hrblock-block-133 hr {
  margin: 0;
}
.cid-sWY2IqLzuF {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #f9fafb;
}
.cid-sWY2IqLzuF .card {
  background: #ffffff;
  border-radius: 10px;
}
.cid-sWY2IqLzuF img {
  width: 100%;
  border-radius: 10px;
}
.cid-sWY2IqLzuF .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-sWY2IqLzuF .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sWY2IqLzuF .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-sWY2IqLzuF img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-sWY2IqLzuF .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-sWY2IqLzuF img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sWY2IqLzuF img {
    width: 100%;
  }
}
.cid-sWY2IqLzuF .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sWY2IqLzuF .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWY2IqLzuF .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ecedee;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-sWY2IqLzuF .mbr-text,
.cid-sWY2IqLzuF .mbr-section-btn {
  color: #464646;
}
.cid-sWY2IqLzuF .mbr-section-subtitle {
  color: #777777;
}
.cid-sWY2IqLzuF .mbr-section-title {
  color: #404040;
}
.cid-sWY2IqLzuF .mbr-list {
  color: #4f5b5f;
}
.cid-sxSeMoUtA2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sxSeMoUtA2 .mbr-section-title {
  margin-bottom: 25px;
  color: #404040;
}
.cid-sxSeMoUtA2 .mbr-section-btn {
  margin-top: 60px;
}
.cid-sxSeMoUtA2 .mbr-section-btn .btn {
  height: 60px;
  padding: 0 40px;
  font-weight: 700;
}
.cid-sxSeMoUtA2 .mbr-section-subtitle {
  opacity: .7;
  margin-bottom: 0;
  color: #919dab;
}
@media (min-width: 768px) {
  .cid-sxSeMoUtA2 .bottom__block {
    margin-top: 80px;
  }
}
.cid-sxSeMoUtA2 .bottom__card {
  margin-top: 30px;
  height: 100%;
  align-items: center;
}
.cid-sxSeMoUtA2 .bottom__card:first-child .separate {
  border-left: none;
}
.cid-sxSeMoUtA2 .bottom__card:last-child .separate2 {
  border-left: none;
}
.cid-sxSeMoUtA2 .mbr-text {
  text-align: center;
  font-weight: 500;
  margin-top: 25px;
  color: #919dab;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .cid-sxSeMoUtA2 .mbr-text {
    margin: 25px 65px 0 !important;
  }
}
.cid-sxSeMoUtA2 .image {
  display: flex;
  justify-content: center;
}
.cid-sxSeMoUtA2 .image img {
  border-radius: 10px;
  padding: 0.5rem;
  border: 5px solid rgba(0, 0, 0, 0.1);
  object-fit: cover;
  width: 230px;
  height: 170px;
}
.cid-sxSeMoUtA2 .separate,
.cid-sxSeMoUtA2 .separate2 {
  border-left: 0.5px solid #e5e5e5;
  height: 190px;
  position: absolute;
}
.cid-sxSeMoUtA2 .separate {
  left: 0;
}
.cid-sxSeMoUtA2 .separate2 {
  right: 0;
}
@media (max-width: 767px) {
  .cid-sxSeMoUtA2 .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-sxSeMoUtA2 .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-sxSeMoUtA2 .separate,
  .cid-sxSeMoUtA2 .separate2 {
    border-left: none;
  }
}
.cid-sxilCLe51Q .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxilCLe51Q .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxilCLe51Q .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxilCLe51Q .hidden {
  display: none;
}
.cid-sxilCLe51Q H10 {
  color: #767676;
}
.cid-suXbCrJ36J {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #f9fafb;
}
.cid-suXbCrJ36J .card {
  -webkit-align-items: center;
  align-items: center;
}
.cid-suXbCrJ36J .card-box {
  width: 100%;
}
.cid-suXbCrJ36J .card-img {
  padding: 1rem;
  border: 1px solid #999999;
  border-radius: 100%;
  height: 80px;
  width: 80px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-suXbCrJ36J .card-img span {
  color: #878787;
  font-size: 2.2rem;
}
.cid-suXbCrJ36J p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-suXbCrJ36J .card {
    margin-bottom: 2rem;
  }
}
.cid-suXbCrJ36J .mbr-section-tag {
  color: #4f5b5f;
  margin-bottom: 0.4375rem;
  text-align: center;
}
.cid-suXbCrJ36J .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-suXbCrJ36J .mbr-section-title b:last-child,
.cid-suXbCrJ36J .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-suXbCrJ36J .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-suXbCrJ36J .mbr-text {
  color: #404040;
}
.cid-suXbCrJ36J .card-title,
.cid-suXbCrJ36J .card-img {
  color: #404040;
}
.cid-suQKBVw0gR {
  padding-top: 210px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/glass-bg-724x483.jpg");
}
.cid-suQKBVw0gR img {
  width: 90%;
}
.cid-suQKBVw0gR .mbr-text,
.cid-suQKBVw0gR .mbr-section-btn {
  color: #eff1f5;
  text-align: left;
}
.cid-suQKBVw0gR h2 {
  padding-left: 11rem;
}
.cid-suQKBVw0gR p {
  padding-right: 8rem;
}
.cid-suQKBVw0gR .separator {
  margin-bottom: 1px;
  margin-top: 38px;
  margin-left: 0;
  margin-right: auto;
  width: 30%;
}
.cid-suQKBVw0gR .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  min-width: 10%;
}
.cid-suQKBVw0gR .separator .sep-holder .sep-line {
  border-color: #7b7b7b !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 2px solid #ebebeb;
  position: relative;
  top: 1px;
}
@media (max-width: 992px) {
  .cid-suQKBVw0gR h2 {
    text-align: center;
    padding-left: 0;
  }
  .cid-suQKBVw0gR img {
    width: 100%;
  }
  .cid-suQKBVw0gR .pb-5 {
    padding-bottom: 1rem !important;
  }
  .cid-suQKBVw0gR p {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-suQKBVw0gR h2 {
    text-align: left !important;
    padding-left: 0 !important;
  }
  .cid-suQKBVw0gR p {
    text-align: left !important;
    position: relative;
  }
}
.cid-suQKBVw0gR H2 {
  text-align: left;
  color: #f5fffa;
}
.cid-sl935LtsNV.popup-builder {
  background-color: #ffffff;
}
.cid-sl935LtsNV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl935LtsNV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl935LtsNV .modal-content,
.cid-sl935LtsNV .modal-dialog {
  height: auto;
}
.cid-sl935LtsNV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl935LtsNV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl935LtsNV .form-wrapper .mbr-form .form-group,
  .cid-sl935LtsNV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl935LtsNV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl935LtsNV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl935LtsNV .mbr-text {
  text-align: center;
  color: #878787;
}
.cid-sl935LtsNV .pt-0 {
  padding-top: 0 !important;
}
.cid-sl935LtsNV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl935LtsNV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl935LtsNV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl935LtsNV .modal-open {
  overflow: hidden;
}
.cid-sl935LtsNV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl935LtsNV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl935LtsNV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl935LtsNV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl935LtsNV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl935LtsNV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl935LtsNV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl935LtsNV .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl935LtsNV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl935LtsNV .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl935LtsNV .modal-backdrop.show {
  opacity: .5;
}
.cid-sl935LtsNV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl935LtsNV .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl935LtsNV .modal-header .close:hover {
  opacity: 1;
}
.cid-sl935LtsNV .modal-header .close:focus {
  outline: none;
}
.cid-sl935LtsNV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl935LtsNV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl935LtsNV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl935LtsNV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl935LtsNV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl935LtsNV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl935LtsNV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl935LtsNV .modal-sm {
    max-width: 300px;
  }
  .cid-sl935LtsNV .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl935LtsNV .modal-lg,
  .cid-sl935LtsNV .modal-xl {
    max-width: 800px;
  }
  .cid-sl935LtsNV .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl935LtsNV .modal-xl {
    max-width: 1140px;
  }
  .cid-sl935LtsNV .container {
    max-width: 1140px;
  }
}
.cid-sl935LtsNV .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl935LtsNV .container {
    max-width: 720px;
  }
}
.cid-sl935LtsNV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl935LtsNV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl935LtsNV .form-group {
  margin-bottom: 1rem;
}
.cid-sl935LtsNV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl935LtsNV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl935LtsNV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skPinZeZnJ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f9fafb;
}
.cid-skPinZeZnJ .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skPinZeZnJ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skPinZeZnJ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skPinZeZnJ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skPinZeZnJ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skPinZeZnJ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skPinZeZnJ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skPinZeZnJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skPinZeZnJ .card-title {
  color: #4f5b5f;
}
.cid-skPinZeZnJ .mbr-text,
.cid-skPinZeZnJ .mbr-section-btn {
  color: #000000;
}
.cid-skPinZeZnJ .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWDSDVKAsP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-sWDSDVKAsP h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sWDSDVKAsP h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-sWDSDVKAsP .media-container-row {
  justify-content: space-between;
}
.cid-sWDSDVKAsP .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWDSDVKAsP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sWDSDVKAsP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sWDSDVKAsP a:link {
  text-decoration: none;
}
.cid-sWDSDVKAsP .icon-transition span {
  text-align: center;
  color: #d698b5;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 20%;
  border: 1px solid #d698b5;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-sWDSDVKAsP .icon-transition span:hover {
  background-color: rgba(153, 153, 153, 0.5);
  color: #ffffff;
}
.cid-sWDSDVKAsP .btn {
  min-width: 195px;
}
.cid-sWDSDVKAsP .btn.btn-primary-outline {
  border: 1px solid #848abd;
}
.cid-sWDSDVKAsP .btn.btn-primary-outline:hover {
  background-color: #848abd !important;
  color: #ffffff !important;
}
.cid-sWDSDVKAsP .btn.btn-secondary-outline {
  border: 1px solid #0e569e;
}
.cid-sWDSDVKAsP .btn.btn-secondary-outline:hover {
  background-color: #0e569e !important;
  color: #ffffff !important;
}
.cid-sWDSDVKAsP .btn.btn-success-outline {
  border: 1px solid #ffffff;
}
.cid-sWDSDVKAsP .btn.btn-success-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-sWDSDVKAsP .btn.btn-info-outline {
  border: 1px solid #f3f4f7;
}
.cid-sWDSDVKAsP .btn.btn-info-outline:hover {
  background-color: #f3f4f7 !important;
  color: #ffffff !important;
}
.cid-sWDSDVKAsP .btn.btn-warning-outline {
  border: 1px solid #b97ecd;
}
.cid-sWDSDVKAsP .btn.btn-warning-outline:hover {
  background-color: #b97ecd !important;
  color: #ffffff !important;
}
.cid-sWDSDVKAsP .btn.btn-danger-outline {
  border: 1px solid #000000;
}
.cid-sWDSDVKAsP .btn.btn-danger-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDSDVKAsP .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sWDSDVKAsP .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDSDVKAsP .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sWDSDVKAsP .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 992px) {
  .cid-sWDSDVKAsP .wrap {
    justify-content: center;
  }
}
.cid-sWDSDVKAsP .mbr-section-title {
  color: #999999;
}
.cid-sl937Rdbmd.popup-builder {
  background-color: #ffffff;
}
.cid-sl937Rdbmd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl937Rdbmd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl937Rdbmd .modal-content,
.cid-sl937Rdbmd .modal-dialog {
  height: auto;
}
.cid-sl937Rdbmd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl937Rdbmd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl937Rdbmd .form-wrapper .mbr-form .form-group,
  .cid-sl937Rdbmd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl937Rdbmd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl937Rdbmd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl937Rdbmd .mbr-text {
  text-align: center;
  color: #878787;
}
.cid-sl937Rdbmd .pt-0 {
  padding-top: 0 !important;
}
.cid-sl937Rdbmd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl937Rdbmd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl937Rdbmd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl937Rdbmd .modal-open {
  overflow: hidden;
}
.cid-sl937Rdbmd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl937Rdbmd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl937Rdbmd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl937Rdbmd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl937Rdbmd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl937Rdbmd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl937Rdbmd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl937Rdbmd .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl937Rdbmd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl937Rdbmd .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl937Rdbmd .modal-backdrop.show {
  opacity: .5;
}
.cid-sl937Rdbmd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl937Rdbmd .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl937Rdbmd .modal-header .close:hover {
  opacity: 1;
}
.cid-sl937Rdbmd .modal-header .close:focus {
  outline: none;
}
.cid-sl937Rdbmd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl937Rdbmd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl937Rdbmd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl937Rdbmd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl937Rdbmd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl937Rdbmd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl937Rdbmd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl937Rdbmd .modal-sm {
    max-width: 300px;
  }
  .cid-sl937Rdbmd .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl937Rdbmd .modal-lg,
  .cid-sl937Rdbmd .modal-xl {
    max-width: 800px;
  }
  .cid-sl937Rdbmd .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl937Rdbmd .modal-xl {
    max-width: 1140px;
  }
  .cid-sl937Rdbmd .container {
    max-width: 1140px;
  }
}
.cid-sl937Rdbmd .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl937Rdbmd .container {
    max-width: 720px;
  }
}
.cid-sl937Rdbmd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl937Rdbmd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl937Rdbmd .form-group {
  margin-bottom: 1rem;
}
.cid-sl937Rdbmd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl937Rdbmd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl937Rdbmd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sl939oMBNJ.popup-builder {
  background-color: #ffffff;
}
.cid-sl939oMBNJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl939oMBNJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl939oMBNJ .modal-content,
.cid-sl939oMBNJ .modal-dialog {
  height: auto;
}
.cid-sl939oMBNJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl939oMBNJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl939oMBNJ .form-wrapper .mbr-form .form-group,
  .cid-sl939oMBNJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl939oMBNJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl939oMBNJ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl939oMBNJ .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-sl939oMBNJ .pt-0 {
  padding-top: 0 !important;
}
.cid-sl939oMBNJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl939oMBNJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl939oMBNJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl939oMBNJ .modal-open {
  overflow: hidden;
}
.cid-sl939oMBNJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl939oMBNJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl939oMBNJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl939oMBNJ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl939oMBNJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl939oMBNJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl939oMBNJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl939oMBNJ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl939oMBNJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl939oMBNJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl939oMBNJ .modal-backdrop.show {
  opacity: .5;
}
.cid-sl939oMBNJ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl939oMBNJ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl939oMBNJ .modal-header .close:hover {
  opacity: 1;
}
.cid-sl939oMBNJ .modal-header .close:focus {
  outline: none;
}
.cid-sl939oMBNJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl939oMBNJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl939oMBNJ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl939oMBNJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl939oMBNJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl939oMBNJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl939oMBNJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl939oMBNJ .modal-sm {
    max-width: 300px;
  }
  .cid-sl939oMBNJ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl939oMBNJ .modal-lg,
  .cid-sl939oMBNJ .modal-xl {
    max-width: 800px;
  }
  .cid-sl939oMBNJ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl939oMBNJ .modal-xl {
    max-width: 1140px;
  }
  .cid-sl939oMBNJ .container {
    max-width: 1140px;
  }
}
.cid-sl939oMBNJ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl939oMBNJ .container {
    max-width: 720px;
  }
}
.cid-sl939oMBNJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl939oMBNJ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl939oMBNJ .form-group {
  margin-bottom: 1rem;
}
.cid-sl939oMBNJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl939oMBNJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl939oMBNJ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skPio0GOeo {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skPio0GOeo .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skPio0GOeo .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skPio0GOeo .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skPio0GOeo .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skPio0GOeo .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skPio0GOeo .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skPio0GOeo .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skPio0GOeo .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skPio0GOeo .card-title {
  color: #4f5b5f;
}
.cid-skPio0GOeo .mbr-text,
.cid-skPio0GOeo .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skPio0GOeo .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxSkIxhZbU {
  padding-top: 80px;
  background-image: url("../../../assets/images/pngaaa.com-120379-1153x394.png");
}
.cid-sxSkIxhZbU .container {
  margin-bottom: 15%;
}
.cid-sxSkIxhZbU .content-container .btn-bgr {
  z-index: 0;
}
.cid-sxSkIxhZbU .container-boxes {
  padding-bottom: 75px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #f9fafb;
}
.cid-sxSkIxhZbU .icon-block-top span {
  background-color: #ffffff;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
  box-shadow: 0px 0px 0px 3px #f6f6f6;
}
.cid-sxSkIxhZbU .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 14px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sxSkIxhZbU .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sxSkIxhZbU .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sxSkIxhZbU .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sxSkIxhZbU .box-item-text,
.cid-sxSkIxhZbU .mbr-section-btn {
  color: #606060;
}
.cid-sxSkIxhZbU .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sxSkIxhZbU .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sxSkIxhZbU .box-list li:last-child {
  border-bottom: none;
}
.cid-sxSkIxhZbU .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sxSkIxhZbU .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sxSkIxhZbU .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sxSkIxhZbU .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sxSkIxhZbU .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sxSkIxhZbU .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sxSkIxhZbU .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sxSkIxhZbU .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sxSkIxhZbU .mbr-text {
  color: #efefef;
}
.cid-sxSkIxhZbU H1 {
  color: #ffffff;
}
.cid-sl93aWDqhg.popup-builder {
  background-color: #ffffff;
}
.cid-sl93aWDqhg.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl93aWDqhg.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl93aWDqhg .modal-content,
.cid-sl93aWDqhg .modal-dialog {
  height: auto;
}
.cid-sl93aWDqhg .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl93aWDqhg .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl93aWDqhg .form-wrapper .mbr-form .form-group,
  .cid-sl93aWDqhg .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl93aWDqhg .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl93aWDqhg .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl93aWDqhg .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-sl93aWDqhg .pt-0 {
  padding-top: 0 !important;
}
.cid-sl93aWDqhg .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl93aWDqhg .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl93aWDqhg .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl93aWDqhg .modal-open {
  overflow: hidden;
}
.cid-sl93aWDqhg .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl93aWDqhg .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl93aWDqhg .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl93aWDqhg .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl93aWDqhg .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl93aWDqhg .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl93aWDqhg .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl93aWDqhg .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl93aWDqhg .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl93aWDqhg .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl93aWDqhg .modal-backdrop.show {
  opacity: .5;
}
.cid-sl93aWDqhg .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl93aWDqhg .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl93aWDqhg .modal-header .close:hover {
  opacity: 1;
}
.cid-sl93aWDqhg .modal-header .close:focus {
  outline: none;
}
.cid-sl93aWDqhg .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl93aWDqhg .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl93aWDqhg .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl93aWDqhg .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl93aWDqhg .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl93aWDqhg .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl93aWDqhg .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl93aWDqhg .modal-sm {
    max-width: 300px;
  }
  .cid-sl93aWDqhg .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl93aWDqhg .modal-lg,
  .cid-sl93aWDqhg .modal-xl {
    max-width: 800px;
  }
  .cid-sl93aWDqhg .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl93aWDqhg .modal-xl {
    max-width: 1140px;
  }
  .cid-sl93aWDqhg .container {
    max-width: 1140px;
  }
}
.cid-sl93aWDqhg .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl93aWDqhg .container {
    max-width: 720px;
  }
}
.cid-sl93aWDqhg .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl93aWDqhg .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl93aWDqhg .form-group {
  margin-bottom: 1rem;
}
.cid-sl93aWDqhg .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl93aWDqhg .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl93aWDqhg .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sl93bV8dH2.popup-builder {
  background-color: #ffffff;
}
.cid-sl93bV8dH2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl93bV8dH2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl93bV8dH2 .modal-content,
.cid-sl93bV8dH2 .modal-dialog {
  height: auto;
}
.cid-sl93bV8dH2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl93bV8dH2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl93bV8dH2 .form-wrapper .mbr-form .form-group,
  .cid-sl93bV8dH2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl93bV8dH2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl93bV8dH2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl93bV8dH2 .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-sl93bV8dH2 .pt-0 {
  padding-top: 0 !important;
}
.cid-sl93bV8dH2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl93bV8dH2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl93bV8dH2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl93bV8dH2 .modal-open {
  overflow: hidden;
}
.cid-sl93bV8dH2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl93bV8dH2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl93bV8dH2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl93bV8dH2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl93bV8dH2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl93bV8dH2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl93bV8dH2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl93bV8dH2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl93bV8dH2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl93bV8dH2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl93bV8dH2 .modal-backdrop.show {
  opacity: .5;
}
.cid-sl93bV8dH2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl93bV8dH2 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl93bV8dH2 .modal-header .close:hover {
  opacity: 1;
}
.cid-sl93bV8dH2 .modal-header .close:focus {
  outline: none;
}
.cid-sl93bV8dH2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl93bV8dH2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl93bV8dH2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl93bV8dH2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl93bV8dH2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl93bV8dH2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl93bV8dH2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl93bV8dH2 .modal-sm {
    max-width: 300px;
  }
  .cid-sl93bV8dH2 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl93bV8dH2 .modal-lg,
  .cid-sl93bV8dH2 .modal-xl {
    max-width: 800px;
  }
  .cid-sl93bV8dH2 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl93bV8dH2 .modal-xl {
    max-width: 1140px;
  }
  .cid-sl93bV8dH2 .container {
    max-width: 1140px;
  }
}
.cid-sl93bV8dH2 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl93bV8dH2 .container {
    max-width: 720px;
  }
}
.cid-sl93bV8dH2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl93bV8dH2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl93bV8dH2 .form-group {
  margin-bottom: 1rem;
}
.cid-sl93bV8dH2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl93bV8dH2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl93bV8dH2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQu0d3.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQu0d3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQu0d3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQu0d3 .modal-content,
.cid-slwxxQu0d3 .modal-dialog {
  height: auto;
}
.cid-slwxxQu0d3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQu0d3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQu0d3 .form-wrapper .mbr-form .form-group,
  .cid-slwxxQu0d3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQu0d3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQu0d3 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQu0d3 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQu0d3 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQu0d3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQu0d3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQu0d3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQu0d3 .modal-open {
  overflow: hidden;
}
.cid-slwxxQu0d3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQu0d3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQu0d3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQu0d3 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQu0d3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQu0d3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQu0d3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQu0d3 .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQu0d3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQu0d3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQu0d3 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQu0d3 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQu0d3 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQu0d3 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQu0d3 .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQu0d3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQu0d3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQu0d3 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQu0d3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQu0d3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQu0d3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQu0d3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQu0d3 .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQu0d3 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQu0d3 .modal-lg,
  .cid-slwxxQu0d3 .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQu0d3 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQu0d3 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQu0d3 .container {
    max-width: 1140px;
  }
}
.cid-slwxxQu0d3 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQu0d3 .container {
    max-width: 720px;
  }
}
.cid-slwxxQu0d3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQu0d3 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQu0d3 .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQu0d3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQu0d3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQu0d3 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQu0d3 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMKq5i.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMKq5i.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMKq5i.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMKq5i .modal-content,
.cid-slwygMKq5i .modal-dialog {
  height: auto;
}
.cid-slwygMKq5i .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMKq5i .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMKq5i .form-wrapper .mbr-form .form-group,
  .cid-slwygMKq5i .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMKq5i .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMKq5i .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMKq5i .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMKq5i .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMKq5i .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMKq5i .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMKq5i .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMKq5i .modal-open {
  overflow: hidden;
}
.cid-slwygMKq5i .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMKq5i .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMKq5i .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMKq5i .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMKq5i .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMKq5i .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMKq5i .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMKq5i .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMKq5i .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMKq5i .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMKq5i .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMKq5i .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMKq5i .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMKq5i .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMKq5i .modal-header .close:focus {
  outline: none;
}
.cid-slwygMKq5i .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMKq5i .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMKq5i .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMKq5i .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMKq5i .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMKq5i .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMKq5i .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMKq5i .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMKq5i .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMKq5i .modal-lg,
  .cid-slwygMKq5i .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMKq5i .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMKq5i .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMKq5i .container {
    max-width: 1140px;
  }
}
.cid-slwygMKq5i .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMKq5i .container {
    max-width: 720px;
  }
}
.cid-slwygMKq5i .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMKq5i .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMKq5i .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMKq5i .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMKq5i .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMKq5i .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMKq5i .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slAQPG2ohg {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAQPG2ohg ul {
  padding: 0;
  margin: 0;
}
.cid-slAQPG2ohg ul li {
  list-style: none;
}
.cid-slAQPG2ohg ul li h4 {
  margin: 0;
}
.cid-slAQPG2ohg ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAQPG2ohg .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAQPG2ohg .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAQPG2ohg .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAQPG2ohg .col-title1 {
  margin-bottom: 40px;
}
.cid-slAQPG2ohg .form-group,
.cid-slAQPG2ohg .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAQPG2ohg .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAQPG2ohg .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAQPG2ohg .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAQPG2ohg .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAQPG2ohg .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAQPG2ohg .col + .mbr-section-btn .btn,
.cid-slAQPG2ohg .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAQPG2ohg .col + .mbr-section-btn .btn.display-4,
.cid-slAQPG2ohg .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAQPG2ohg .col + .mbr-section-btn .btn:hover,
.cid-slAQPG2ohg .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAQPG2ohg .dragArea > *:nth-last-child(2).col,
.cid-slAQPG2ohg .dragArea > *:nth-last-child(2).col-auto,
.cid-slAQPG2ohg .col + .mbr-section-btn,
.cid-slAQPG2ohg .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAQPG2ohg .form1 {
  margin-top: 30px;
}
.cid-slAQPG2ohg .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAQPG2ohg .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAQPG2ohg .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skPs6CRdCP .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skPs6CRdCP .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skPs6CRdCP .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skPs6CRdCP .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skPs6CRdCP .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skPs6CRdCP .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skPs6CRdCP .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skPs6CRdCP .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skPs6CRdCP .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skPs6CRdCP .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skPs6CRdCP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skPs6CRdCP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skPs6CRdCP .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skPs6CRdCP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skPs6CRdCP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skPs6CRdCP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skPs6CRdCP .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skPs6CRdCP .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skPs6CRdCP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skPs6CRdCP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skPs6CRdCP .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skPs6CRdCP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skPs6CRdCP .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skPs6CRdCP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skPs6CRdCP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skPs6CRdCP .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skPs6CRdCP .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skPs6CRdCP .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skPs6CRdCP .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skPs6CRdCP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skPs6CRdCP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skPs6CRdCP .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skPs6CRdCP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skPs6CRdCP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skPs6CRdCP .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skPs6CRdCP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skPs6CRdCP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skPs6CRdCP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skPs6CRdCP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skPs6CRdCP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skPs6CRdCP .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skPs6CRdCP .dropdown-item.active,
.cid-skPs6CRdCP .dropdown-item:active {
  background-color: transparent;
}
.cid-skPs6CRdCP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skPs6CRdCP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skPs6CRdCP .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skPs6CRdCP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skPs6CRdCP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skPs6CRdCP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skPs6CRdCP ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skPs6CRdCP .navbar-buttons {
  text-align: left;
}
.cid-skPs6CRdCP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skPs6CRdCP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skPs6CRdCP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skPs6CRdCP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skPs6CRdCP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skPs6CRdCP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skPs6CRdCP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skPs6CRdCP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skPs6CRdCP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skPs6CRdCP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skPs6CRdCP .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skPs6CRdCP a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skPs6CRdCP .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skPs6CRdCP .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skPs6CRdCP .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skPs6CRdCP .nav-link:hover,
.cid-skPs6CRdCP .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sX3r83sxSx {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-sX3r83sxSx .card {
  background: #ffffff;
  border-radius: 10px;
}
.cid-sX3r83sxSx img {
  width: 100%;
  border-radius: 10px;
}
.cid-sX3r83sxSx .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-sX3r83sxSx .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sX3r83sxSx .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-sX3r83sxSx img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-sX3r83sxSx .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-sX3r83sxSx img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sX3r83sxSx img {
    width: 100%;
  }
}
.cid-sX3r83sxSx .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sX3r83sxSx .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sX3r83sxSx .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #eff1f5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-sX3r83sxSx .mbr-text,
.cid-sX3r83sxSx .mbr-section-btn {
  color: #464646;
}
.cid-sX3r83sxSx .mbr-section-subtitle {
  color: #777777;
}
.cid-sX3r83sxSx .mbr-section-title {
  color: #4f5b5f;
}
.cid-sX3r83sxSx .mbr-list {
  color: #4f5b5f;
}
.cid-sxilU101kc .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxilU101kc .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxilU101kc .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxilU101kc .hidden {
  display: none;
}
.cid-sxilU101kc H10 {
  color: #767676;
}
.cid-sWM4G65hnB {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-sWM4G65hnB h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sWM4G65hnB h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-sWM4G65hnB .media-container-row {
  justify-content: space-between;
}
.cid-sWM4G65hnB .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWM4G65hnB .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sWM4G65hnB .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sWM4G65hnB a:link {
  text-decoration: none;
}
.cid-sWM4G65hnB .icon-transition span {
  text-align: center;
  color: #d698b5;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 20%;
  border: 1px solid #999999;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-sWM4G65hnB .icon-transition span:hover {
  background-color: rgba(153, 153, 153, 0.5);
  color: #ffffff;
}
.cid-sWM4G65hnB .btn {
  min-width: 195px;
}
.cid-sWM4G65hnB .btn.btn-primary-outline {
  border: 1px solid #848abd;
}
.cid-sWM4G65hnB .btn.btn-primary-outline:hover {
  background-color: #848abd !important;
  color: #ffffff !important;
}
.cid-sWM4G65hnB .btn.btn-secondary-outline {
  border: 1px solid #0e569e;
}
.cid-sWM4G65hnB .btn.btn-secondary-outline:hover {
  background-color: #0e569e !important;
  color: #ffffff !important;
}
.cid-sWM4G65hnB .btn.btn-success-outline {
  border: 1px solid #ffffff;
}
.cid-sWM4G65hnB .btn.btn-success-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-sWM4G65hnB .btn.btn-info-outline {
  border: 1px solid #f3f4f7;
}
.cid-sWM4G65hnB .btn.btn-info-outline:hover {
  background-color: #f3f4f7 !important;
  color: #ffffff !important;
}
.cid-sWM4G65hnB .btn.btn-warning-outline {
  border: 1px solid #b97ecd;
}
.cid-sWM4G65hnB .btn.btn-warning-outline:hover {
  background-color: #b97ecd !important;
  color: #ffffff !important;
}
.cid-sWM4G65hnB .btn.btn-danger-outline {
  border: 1px solid #000000;
}
.cid-sWM4G65hnB .btn.btn-danger-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWM4G65hnB .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sWM4G65hnB .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWM4G65hnB .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sWM4G65hnB .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 992px) {
  .cid-sWM4G65hnB .wrap {
    justify-content: center;
  }
}
.cid-sWM4G65hnB .mbr-section-title {
  color: #999999;
}
.cid-sv2YO1I0jC {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-sv2YO1I0jC .title__block {
  margin-bottom: 55px;
}
.cid-sv2YO1I0jC .mbr-section-title {
  margin-bottom: 16px;
  color: #4f5b5f;
}
.cid-sv2YO1I0jC .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-sv2YO1I0jC .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-sv2YO1I0jC .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-sv2YO1I0jC .card__content {
  display: block;
  width: 100%;
}
.cid-sv2YO1I0jC .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  color: #000000;
}
.cid-sv2YO1I0jC .card__text {
  margin-bottom: 0;
  color: #606060;
}
@media (max-width: 991px) {
  .cid-sv2YO1I0jC .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-sv2YO1I0jC .card__wrap {
    margin-bottom: 40px;
  }
  .cid-sv2YO1I0jC .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-sv2YO1I0jC .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-sv2YO1I0jC .card__image {
    max-width: 90px;
  }
  .cid-sv2YO1I0jC .card__image img {
    width: 70%;
  }
}
.cid-svl3jS4mIf {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/m-water-1920x800.jpg");
}
.cid-svl3jS4mIf .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #606060;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 20px 24px -2px rgba(119, 139, 165, 0.9);
}
.cid-svl3jS4mIf .card-link,
.cid-svl3jS4mIf .link-wrap,
.cid-svl3jS4mIf .card-link:before {
  color: #121212;
  text-align: center;
}
.cid-svl3jS4mIf .card-wrapper {
  overflow: visible;
}
.cid-svl3jS4mIf .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-svl3jS4mIf .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-svl3jS4mIf .card-link:hover {
  color: #848abd;
  transition: all 0.3s;
}
.cid-svl3jS4mIf .card-link:hover:before {
  right: -2rem;
  color: #848abd;
  transition: all 0.3s;
}
.cid-svl3jS4mIf .card-text {
  color: #454545;
}
.cid-svl3jS4mIf .card-title,
.cid-svl3jS4mIf .icon-wrap {
  color: #000000;
  text-align: center;
}
.cid-svl3jS4mIf .mbr-section-title {
  color: #4f5b5f;
}
.cid-skPs6F6kMm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skPs6F6kMm .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skPs6F6kMm .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skPs6F6kMm .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skPs6F6kMm .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skPs6F6kMm .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skPs6F6kMm .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skPs6F6kMm .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skPs6F6kMm .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skPs6F6kMm .card-title {
  color: #4f5b5f;
}
.cid-skPs6F6kMm .mbr-text,
.cid-skPs6F6kMm .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skPs6F6kMm .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl97bVurgy.popup-builder {
  background-color: #ffffff;
}
.cid-sl97bVurgy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl97bVurgy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl97bVurgy .modal-content,
.cid-sl97bVurgy .modal-dialog {
  height: auto;
}
.cid-sl97bVurgy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl97bVurgy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl97bVurgy .form-wrapper .mbr-form .form-group,
  .cid-sl97bVurgy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl97bVurgy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl97bVurgy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl97bVurgy .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-sl97bVurgy .pt-0 {
  padding-top: 0 !important;
}
.cid-sl97bVurgy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl97bVurgy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl97bVurgy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl97bVurgy .modal-open {
  overflow: hidden;
}
.cid-sl97bVurgy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl97bVurgy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl97bVurgy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl97bVurgy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl97bVurgy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl97bVurgy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl97bVurgy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl97bVurgy .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl97bVurgy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl97bVurgy .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl97bVurgy .modal-backdrop.show {
  opacity: .5;
}
.cid-sl97bVurgy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl97bVurgy .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl97bVurgy .modal-header .close:hover {
  opacity: 1;
}
.cid-sl97bVurgy .modal-header .close:focus {
  outline: none;
}
.cid-sl97bVurgy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl97bVurgy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl97bVurgy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl97bVurgy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl97bVurgy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl97bVurgy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl97bVurgy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl97bVurgy .modal-sm {
    max-width: 300px;
  }
  .cid-sl97bVurgy .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl97bVurgy .modal-lg,
  .cid-sl97bVurgy .modal-xl {
    max-width: 800px;
  }
  .cid-sl97bVurgy .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl97bVurgy .modal-xl {
    max-width: 1140px;
  }
  .cid-sl97bVurgy .container {
    max-width: 1140px;
  }
}
.cid-sl97bVurgy .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl97bVurgy .container {
    max-width: 720px;
  }
}
.cid-sl97bVurgy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl97bVurgy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl97bVurgy .form-group {
  margin-bottom: 1rem;
}
.cid-sl97bVurgy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl97bVurgy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl97bVurgy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sl97dxijD5.popup-builder {
  background-color: #ffffff;
}
.cid-sl97dxijD5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl97dxijD5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl97dxijD5 .modal-content,
.cid-sl97dxijD5 .modal-dialog {
  height: auto;
}
.cid-sl97dxijD5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl97dxijD5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl97dxijD5 .form-wrapper .mbr-form .form-group,
  .cid-sl97dxijD5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl97dxijD5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl97dxijD5 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl97dxijD5 .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-sl97dxijD5 .pt-0 {
  padding-top: 0 !important;
}
.cid-sl97dxijD5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl97dxijD5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl97dxijD5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl97dxijD5 .modal-open {
  overflow: hidden;
}
.cid-sl97dxijD5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl97dxijD5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl97dxijD5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl97dxijD5 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl97dxijD5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl97dxijD5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl97dxijD5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl97dxijD5 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl97dxijD5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl97dxijD5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl97dxijD5 .modal-backdrop.show {
  opacity: .5;
}
.cid-sl97dxijD5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl97dxijD5 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl97dxijD5 .modal-header .close:hover {
  opacity: 1;
}
.cid-sl97dxijD5 .modal-header .close:focus {
  outline: none;
}
.cid-sl97dxijD5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl97dxijD5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl97dxijD5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl97dxijD5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl97dxijD5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl97dxijD5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl97dxijD5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl97dxijD5 .modal-sm {
    max-width: 300px;
  }
  .cid-sl97dxijD5 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl97dxijD5 .modal-lg,
  .cid-sl97dxijD5 .modal-xl {
    max-width: 800px;
  }
  .cid-sl97dxijD5 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl97dxijD5 .modal-xl {
    max-width: 1140px;
  }
  .cid-sl97dxijD5 .container {
    max-width: 1140px;
  }
}
.cid-sl97dxijD5 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl97dxijD5 .container {
    max-width: 720px;
  }
}
.cid-sl97dxijD5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl97dxijD5 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl97dxijD5 .form-group {
  margin-bottom: 1rem;
}
.cid-sl97dxijD5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl97dxijD5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl97dxijD5 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQu9KN.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQu9KN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQu9KN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQu9KN .modal-content,
.cid-slwxxQu9KN .modal-dialog {
  height: auto;
}
.cid-slwxxQu9KN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQu9KN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQu9KN .form-wrapper .mbr-form .form-group,
  .cid-slwxxQu9KN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQu9KN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQu9KN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQu9KN .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQu9KN .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQu9KN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQu9KN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQu9KN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQu9KN .modal-open {
  overflow: hidden;
}
.cid-slwxxQu9KN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQu9KN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQu9KN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQu9KN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQu9KN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQu9KN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQu9KN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQu9KN .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQu9KN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQu9KN .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQu9KN .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQu9KN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQu9KN .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQu9KN .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQu9KN .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQu9KN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQu9KN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQu9KN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQu9KN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQu9KN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQu9KN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQu9KN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQu9KN .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQu9KN .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQu9KN .modal-lg,
  .cid-slwxxQu9KN .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQu9KN .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQu9KN .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQu9KN .container {
    max-width: 1140px;
  }
}
.cid-slwxxQu9KN .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQu9KN .container {
    max-width: 720px;
  }
}
.cid-slwxxQu9KN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQu9KN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQu9KN .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQu9KN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQu9KN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQu9KN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQu9KN .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMKMx0.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMKMx0.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMKMx0.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMKMx0 .modal-content,
.cid-slwygMKMx0 .modal-dialog {
  height: auto;
}
.cid-slwygMKMx0 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMKMx0 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMKMx0 .form-wrapper .mbr-form .form-group,
  .cid-slwygMKMx0 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMKMx0 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMKMx0 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMKMx0 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMKMx0 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMKMx0 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMKMx0 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMKMx0 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMKMx0 .modal-open {
  overflow: hidden;
}
.cid-slwygMKMx0 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMKMx0 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMKMx0 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMKMx0 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMKMx0 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMKMx0 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMKMx0 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMKMx0 .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMKMx0 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMKMx0 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMKMx0 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMKMx0 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMKMx0 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMKMx0 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMKMx0 .modal-header .close:focus {
  outline: none;
}
.cid-slwygMKMx0 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMKMx0 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMKMx0 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMKMx0 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMKMx0 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMKMx0 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMKMx0 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMKMx0 .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMKMx0 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMKMx0 .modal-lg,
  .cid-slwygMKMx0 .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMKMx0 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMKMx0 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMKMx0 .container {
    max-width: 1140px;
  }
}
.cid-slwygMKMx0 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMKMx0 .container {
    max-width: 720px;
  }
}
.cid-slwygMKMx0 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMKMx0 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMKMx0 .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMKMx0 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMKMx0 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMKMx0 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMKMx0 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-svl3bCgJFq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-svl3bCgJFq .card {
  -webkit-align-items: center;
  align-items: center;
}
.cid-svl3bCgJFq .card-box {
  width: 100%;
}
.cid-svl3bCgJFq .card-img {
  padding: 1rem;
  border: 1px solid #d698b5;
  border-radius: 100%;
  height: 80px;
  width: 80px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-svl3bCgJFq .card-img span {
  color: #878787;
  font-size: 2.2rem;
}
.cid-svl3bCgJFq p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-svl3bCgJFq .card {
    margin-bottom: 2rem;
  }
}
.cid-svl3bCgJFq .mbr-section-tag {
  color: #404040;
  margin-bottom: 0.4375rem;
  text-align: center;
}
.cid-svl3bCgJFq .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-svl3bCgJFq .mbr-section-title b:last-child,
.cid-svl3bCgJFq .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-svl3bCgJFq .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-svl3bCgJFq .mbr-text {
  color: #606060;
}
.cid-svl3bCgJFq .card-title,
.cid-svl3bCgJFq .card-img {
  color: #000000;
}
.cid-slAQYUGyyy {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAQYUGyyy ul {
  padding: 0;
  margin: 0;
}
.cid-slAQYUGyyy ul li {
  list-style: none;
}
.cid-slAQYUGyyy ul li h4 {
  margin: 0;
}
.cid-slAQYUGyyy ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAQYUGyyy .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAQYUGyyy .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAQYUGyyy .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAQYUGyyy .col-title1 {
  margin-bottom: 40px;
}
.cid-slAQYUGyyy .form-group,
.cid-slAQYUGyyy .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAQYUGyyy .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAQYUGyyy .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAQYUGyyy .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAQYUGyyy .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAQYUGyyy .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAQYUGyyy .col + .mbr-section-btn .btn,
.cid-slAQYUGyyy .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAQYUGyyy .col + .mbr-section-btn .btn.display-4,
.cid-slAQYUGyyy .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAQYUGyyy .col + .mbr-section-btn .btn:hover,
.cid-slAQYUGyyy .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAQYUGyyy .dragArea > *:nth-last-child(2).col,
.cid-slAQYUGyyy .dragArea > *:nth-last-child(2).col-auto,
.cid-slAQYUGyyy .col + .mbr-section-btn,
.cid-slAQYUGyyy .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAQYUGyyy .form1 {
  margin-top: 30px;
}
.cid-slAQYUGyyy .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAQYUGyyy .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAQYUGyyy .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skQB7FdoSV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skQB7FdoSV .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skQB7FdoSV .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skQB7FdoSV .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skQB7FdoSV .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skQB7FdoSV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skQB7FdoSV .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skQB7FdoSV .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skQB7FdoSV .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skQB7FdoSV .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skQB7FdoSV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skQB7FdoSV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skQB7FdoSV .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skQB7FdoSV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skQB7FdoSV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skQB7FdoSV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skQB7FdoSV .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skQB7FdoSV .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skQB7FdoSV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skQB7FdoSV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skQB7FdoSV .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skQB7FdoSV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skQB7FdoSV .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skQB7FdoSV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skQB7FdoSV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skQB7FdoSV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skQB7FdoSV .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skQB7FdoSV .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skQB7FdoSV .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skQB7FdoSV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skQB7FdoSV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skQB7FdoSV .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skQB7FdoSV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skQB7FdoSV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skQB7FdoSV .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skQB7FdoSV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skQB7FdoSV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skQB7FdoSV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skQB7FdoSV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skQB7FdoSV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skQB7FdoSV .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skQB7FdoSV .dropdown-item.active,
.cid-skQB7FdoSV .dropdown-item:active {
  background-color: transparent;
}
.cid-skQB7FdoSV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skQB7FdoSV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skQB7FdoSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skQB7FdoSV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skQB7FdoSV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skQB7FdoSV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skQB7FdoSV ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skQB7FdoSV .navbar-buttons {
  text-align: left;
}
.cid-skQB7FdoSV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skQB7FdoSV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skQB7FdoSV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skQB7FdoSV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skQB7FdoSV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skQB7FdoSV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skQB7FdoSV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skQB7FdoSV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skQB7FdoSV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skQB7FdoSV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skQB7FdoSV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skQB7FdoSV a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skQB7FdoSV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skQB7FdoSV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skQB7FdoSV .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skQB7FdoSV .nav-link:hover,
.cid-skQB7FdoSV .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-syf5czAiZE {
  padding-top: 4.44rem;
  padding-bottom: 0rem;
  background-color: #f9fafb;
}
.cid-syf5czAiZE .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-syf5czAiZE .text-wrapper:hover .mbr-section-title a {
  color: #0e569e !important;
}
.cid-syf5czAiZE .image-wrapper,
.cid-syf5czAiZE img {
  width: 100%;
  object-fit: cover;
}
.cid-syf5czAiZE .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #404040;
  text-align: center;
}
.cid-syf5czAiZE .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-syf5czAiZE .mbr-section-btn .btn-secondary-outline:hover,
.cid-syf5czAiZE .mbr-section-btn .btn-secondary-outline .active,
.cid-syf5czAiZE .mbr-section-btn .btn-secondary-outline:focus {
  color: #848abd !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-syf5czAiZE .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-syf5czAiZE {
    flex-direction: column;
  }
  .cid-syf5czAiZE .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syf5czAiZE .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-syf5czAiZE .mbr-section-title {
  color: #4f5b5f;
  text-align: center;
}
.cid-syf5czAiZE .mbr-text,
.cid-syf5czAiZE .mbr-section-btn {
  color: #4f5b5f;
  text-align: center;
}
.cid-syf5czAiZE .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxilb2t68d .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxilb2t68d .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxilb2t68d .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxilb2t68d .hidden {
  display: none;
}
.cid-sxilb2t68d H10 {
  color: #767676;
}
.cid-sWDRYYY0Da {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sWDRYYY0Da [class^="socicon-"]:before,
.cid-sWDRYYY0Da [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWDRYYY0Da .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWDRYYY0Da .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWDRYYY0Da .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWDRYYY0Da .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-sl9uH7zG4g {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-sl9uH7zG4g .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sl9uH7zG4g .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sl9uH7zG4g .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sl9uH7zG4g .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sl9uH7zG4g .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sl9uH7zG4g .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sl9uH7zG4g .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sl9uH7zG4g .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-sl9uH7zG4g .card-title {
  color: #4f5b5f;
}
.cid-sl9uH7zG4g .mbr-text,
.cid-sl9uH7zG4g .mbr-section-btn {
  color: #4f5b5f;
}
.cid-sl9uH7zG4g .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-swK151UYFA {
  padding-top: 11rem;
  padding-bottom: 11rem;
  background-image: url("../../../assets/images/mbr-1920x1374.jpg");
}
.cid-swK151UYFA .animate__fadeInUp:before {
  background: #f6f3ee;
}
.cid-swK151UYFA .text-wrapper {
  z-index: 11;
}
.cid-swK151UYFA .wrapper {
  display: flex;
  flex-direction: column;
}
.cid-swK151UYFA .animate__fadeInUp:before {
  background: "file:///H:/Martechwaterfilter-com-PAK-08July--2025----01/assets/images/mbr-1920x1374.jpg";
}
.cid-swK151UYFA .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #848abd;
  margin-right: 0rem;
  margin-bottom: 2rem;
}
.cid-swK151UYFA .iconfont-wrapper {
  margin: auto;
}
.cid-swK151UYFA .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-swK151UYFA .mbr-text,
.cid-swK151UYFA .mbr-section-btn {
  text-align: center;
  color: #161734;
}
.cid-swK151UYFA .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sle46xGQNI.popup-builder {
  background-color: #ffffff;
}
.cid-sle46xGQNI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sle46xGQNI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sle46xGQNI .modal-content,
.cid-sle46xGQNI .modal-dialog {
  height: auto;
}
.cid-sle46xGQNI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sle46xGQNI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sle46xGQNI .form-wrapper .mbr-form .form-group,
  .cid-sle46xGQNI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sle46xGQNI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sle46xGQNI .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sle46xGQNI .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sle46xGQNI .pt-0 {
  padding-top: 0 !important;
}
.cid-sle46xGQNI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sle46xGQNI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sle46xGQNI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sle46xGQNI .modal-open {
  overflow: hidden;
}
.cid-sle46xGQNI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sle46xGQNI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sle46xGQNI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sle46xGQNI .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sle46xGQNI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sle46xGQNI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sle46xGQNI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sle46xGQNI .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sle46xGQNI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sle46xGQNI .modal-backdrop.fade {
  opacity: 0;
}
.cid-sle46xGQNI .modal-backdrop.show {
  opacity: .5;
}
.cid-sle46xGQNI .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sle46xGQNI .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sle46xGQNI .modal-header .close:hover {
  opacity: 1;
}
.cid-sle46xGQNI .modal-header .close:focus {
  outline: none;
}
.cid-sle46xGQNI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sle46xGQNI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sle46xGQNI .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sle46xGQNI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sle46xGQNI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sle46xGQNI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sle46xGQNI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sle46xGQNI .modal-sm {
    max-width: 300px;
  }
  .cid-sle46xGQNI .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sle46xGQNI .modal-lg,
  .cid-sle46xGQNI .modal-xl {
    max-width: 800px;
  }
  .cid-sle46xGQNI .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sle46xGQNI .modal-xl {
    max-width: 1140px;
  }
  .cid-sle46xGQNI .container {
    max-width: 1140px;
  }
}
.cid-sle46xGQNI .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sle46xGQNI .container {
    max-width: 720px;
  }
}
.cid-sle46xGQNI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sle46xGQNI .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sle46xGQNI .form-group {
  margin-bottom: 1rem;
}
.cid-sle46xGQNI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sle46xGQNI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sle46xGQNI .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sle47dqrAw.popup-builder {
  background-color: #ffffff;
}
.cid-sle47dqrAw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sle47dqrAw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sle47dqrAw .modal-content,
.cid-sle47dqrAw .modal-dialog {
  height: auto;
}
.cid-sle47dqrAw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sle47dqrAw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sle47dqrAw .form-wrapper .mbr-form .form-group,
  .cid-sle47dqrAw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sle47dqrAw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sle47dqrAw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sle47dqrAw .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sle47dqrAw .pt-0 {
  padding-top: 0 !important;
}
.cid-sle47dqrAw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sle47dqrAw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sle47dqrAw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sle47dqrAw .modal-open {
  overflow: hidden;
}
.cid-sle47dqrAw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sle47dqrAw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sle47dqrAw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sle47dqrAw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sle47dqrAw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sle47dqrAw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sle47dqrAw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sle47dqrAw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sle47dqrAw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sle47dqrAw .modal-backdrop.fade {
  opacity: 0;
}
.cid-sle47dqrAw .modal-backdrop.show {
  opacity: .5;
}
.cid-sle47dqrAw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sle47dqrAw .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sle47dqrAw .modal-header .close:hover {
  opacity: 1;
}
.cid-sle47dqrAw .modal-header .close:focus {
  outline: none;
}
.cid-sle47dqrAw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sle47dqrAw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sle47dqrAw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sle47dqrAw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sle47dqrAw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sle47dqrAw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sle47dqrAw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sle47dqrAw .modal-sm {
    max-width: 300px;
  }
  .cid-sle47dqrAw .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sle47dqrAw .modal-lg,
  .cid-sle47dqrAw .modal-xl {
    max-width: 800px;
  }
  .cid-sle47dqrAw .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sle47dqrAw .modal-xl {
    max-width: 1140px;
  }
  .cid-sle47dqrAw .container {
    max-width: 1140px;
  }
}
.cid-sle47dqrAw .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sle47dqrAw .container {
    max-width: 720px;
  }
}
.cid-sle47dqrAw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sle47dqrAw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sle47dqrAw .form-group {
  margin-bottom: 1rem;
}
.cid-sle47dqrAw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sle47dqrAw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sle47dqrAw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sl9uTFlFHz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-sl9uTFlFHz .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sl9uTFlFHz .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sl9uTFlFHz .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sl9uTFlFHz .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sl9uTFlFHz .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sl9uTFlFHz .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sl9uTFlFHz .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sl9uTFlFHz .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-sl9uTFlFHz .card-title {
  color: #4f5b5f;
}
.cid-sl9uTFlFHz .mbr-text,
.cid-sl9uTFlFHz .mbr-section-btn {
  color: #4f5b5f;
}
.cid-sl9uTFlFHz .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-syfb3zWyBL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-syfb3zWyBL .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #999999;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 20px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-syfb3zWyBL .card-link,
.cid-syfb3zWyBL .link-wrap,
.cid-syfb3zWyBL .card-link:before {
  color: #121212;
  text-align: center;
}
.cid-syfb3zWyBL .card-wrapper {
  overflow: visible;
}
.cid-syfb3zWyBL .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-syfb3zWyBL .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-syfb3zWyBL .card-link:hover {
  color: #848abd;
  transition: all 0.3s;
}
.cid-syfb3zWyBL .card-link:hover:before {
  right: -2rem;
  color: #848abd;
  transition: all 0.3s;
}
.cid-syfb3zWyBL .card-text {
  color: #454545;
}
.cid-syfb3zWyBL .card-title,
.cid-syfb3zWyBL .icon-wrap {
  color: #737373;
  text-align: center;
}
.cid-syfb3zWyBL .mbr-section-title {
  color: #4f5b5f;
}
.cid-sle4W7Bm7b.popup-builder {
  background-color: #ffffff;
}
.cid-sle4W7Bm7b.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sle4W7Bm7b.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sle4W7Bm7b .modal-content,
.cid-sle4W7Bm7b .modal-dialog {
  height: auto;
}
.cid-sle4W7Bm7b .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sle4W7Bm7b .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sle4W7Bm7b .form-wrapper .mbr-form .form-group,
  .cid-sle4W7Bm7b .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sle4W7Bm7b .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sle4W7Bm7b .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sle4W7Bm7b .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sle4W7Bm7b .pt-0 {
  padding-top: 0 !important;
}
.cid-sle4W7Bm7b .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sle4W7Bm7b .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sle4W7Bm7b .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sle4W7Bm7b .modal-open {
  overflow: hidden;
}
.cid-sle4W7Bm7b .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sle4W7Bm7b .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sle4W7Bm7b .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sle4W7Bm7b .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sle4W7Bm7b .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sle4W7Bm7b .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sle4W7Bm7b .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sle4W7Bm7b .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sle4W7Bm7b .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sle4W7Bm7b .modal-backdrop.fade {
  opacity: 0;
}
.cid-sle4W7Bm7b .modal-backdrop.show {
  opacity: .5;
}
.cid-sle4W7Bm7b .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sle4W7Bm7b .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sle4W7Bm7b .modal-header .close:hover {
  opacity: 1;
}
.cid-sle4W7Bm7b .modal-header .close:focus {
  outline: none;
}
.cid-sle4W7Bm7b .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sle4W7Bm7b .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sle4W7Bm7b .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sle4W7Bm7b .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sle4W7Bm7b .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sle4W7Bm7b .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sle4W7Bm7b .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sle4W7Bm7b .modal-sm {
    max-width: 300px;
  }
  .cid-sle4W7Bm7b .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sle4W7Bm7b .modal-lg,
  .cid-sle4W7Bm7b .modal-xl {
    max-width: 800px;
  }
  .cid-sle4W7Bm7b .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sle4W7Bm7b .modal-xl {
    max-width: 1140px;
  }
  .cid-sle4W7Bm7b .container {
    max-width: 1140px;
  }
}
.cid-sle4W7Bm7b .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sle4W7Bm7b .container {
    max-width: 720px;
  }
}
.cid-sle4W7Bm7b .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sle4W7Bm7b .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sle4W7Bm7b .form-group {
  margin-bottom: 1rem;
}
.cid-sle4W7Bm7b .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sle4W7Bm7b .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sle4W7Bm7b .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQvRZc.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQvRZc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQvRZc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQvRZc .modal-content,
.cid-slwxxQvRZc .modal-dialog {
  height: auto;
}
.cid-slwxxQvRZc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQvRZc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQvRZc .form-wrapper .mbr-form .form-group,
  .cid-slwxxQvRZc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQvRZc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQvRZc .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQvRZc .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQvRZc .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQvRZc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQvRZc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQvRZc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQvRZc .modal-open {
  overflow: hidden;
}
.cid-slwxxQvRZc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQvRZc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQvRZc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQvRZc .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQvRZc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQvRZc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQvRZc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQvRZc .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQvRZc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQvRZc .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQvRZc .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQvRZc .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQvRZc .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQvRZc .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQvRZc .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQvRZc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQvRZc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQvRZc .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQvRZc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQvRZc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQvRZc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQvRZc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQvRZc .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQvRZc .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQvRZc .modal-lg,
  .cid-slwxxQvRZc .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQvRZc .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQvRZc .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQvRZc .container {
    max-width: 1140px;
  }
}
.cid-slwxxQvRZc .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQvRZc .container {
    max-width: 720px;
  }
}
.cid-slwxxQvRZc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQvRZc .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQvRZc .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQvRZc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQvRZc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQvRZc .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQvRZc .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMLW9r.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMLW9r.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMLW9r.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMLW9r .modal-content,
.cid-slwygMLW9r .modal-dialog {
  height: auto;
}
.cid-slwygMLW9r .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMLW9r .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMLW9r .form-wrapper .mbr-form .form-group,
  .cid-slwygMLW9r .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMLW9r .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMLW9r .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMLW9r .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMLW9r .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMLW9r .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMLW9r .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMLW9r .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMLW9r .modal-open {
  overflow: hidden;
}
.cid-slwygMLW9r .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMLW9r .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMLW9r .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMLW9r .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMLW9r .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMLW9r .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMLW9r .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMLW9r .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMLW9r .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMLW9r .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMLW9r .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMLW9r .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMLW9r .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMLW9r .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMLW9r .modal-header .close:focus {
  outline: none;
}
.cid-slwygMLW9r .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMLW9r .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMLW9r .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMLW9r .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMLW9r .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMLW9r .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMLW9r .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMLW9r .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMLW9r .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMLW9r .modal-lg,
  .cid-slwygMLW9r .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMLW9r .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMLW9r .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMLW9r .container {
    max-width: 1140px;
  }
}
.cid-slwygMLW9r .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMLW9r .container {
    max-width: 720px;
  }
}
.cid-slwygMLW9r .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMLW9r .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMLW9r .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMLW9r .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMLW9r .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMLW9r .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMLW9r .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slARLbcFnl {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slARLbcFnl ul {
  padding: 0;
  margin: 0;
}
.cid-slARLbcFnl ul li {
  list-style: none;
}
.cid-slARLbcFnl ul li h4 {
  margin: 0;
}
.cid-slARLbcFnl ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slARLbcFnl .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slARLbcFnl .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slARLbcFnl .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slARLbcFnl .col-title1 {
  margin-bottom: 40px;
}
.cid-slARLbcFnl .form-group,
.cid-slARLbcFnl .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slARLbcFnl .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slARLbcFnl .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slARLbcFnl .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slARLbcFnl .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slARLbcFnl .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slARLbcFnl .col + .mbr-section-btn .btn,
.cid-slARLbcFnl .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slARLbcFnl .col + .mbr-section-btn .btn.display-4,
.cid-slARLbcFnl .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slARLbcFnl .col + .mbr-section-btn .btn:hover,
.cid-slARLbcFnl .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slARLbcFnl .dragArea > *:nth-last-child(2).col,
.cid-slARLbcFnl .dragArea > *:nth-last-child(2).col-auto,
.cid-slARLbcFnl .col + .mbr-section-btn,
.cid-slARLbcFnl .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slARLbcFnl .form1 {
  margin-top: 30px;
}
.cid-slARLbcFnl .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slARLbcFnl .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slARLbcFnl .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skAIUV7b7k .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skAIUV7b7k .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skAIUV7b7k .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skAIUV7b7k .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skAIUV7b7k .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skAIUV7b7k .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skAIUV7b7k .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skAIUV7b7k .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skAIUV7b7k .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skAIUV7b7k .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skAIUV7b7k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skAIUV7b7k .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skAIUV7b7k .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skAIUV7b7k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skAIUV7b7k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skAIUV7b7k .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skAIUV7b7k .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skAIUV7b7k .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skAIUV7b7k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skAIUV7b7k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skAIUV7b7k .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skAIUV7b7k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skAIUV7b7k .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skAIUV7b7k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skAIUV7b7k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skAIUV7b7k .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skAIUV7b7k .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skAIUV7b7k .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skAIUV7b7k .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skAIUV7b7k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skAIUV7b7k .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skAIUV7b7k .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skAIUV7b7k .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skAIUV7b7k .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skAIUV7b7k .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skAIUV7b7k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skAIUV7b7k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skAIUV7b7k .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skAIUV7b7k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skAIUV7b7k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skAIUV7b7k .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skAIUV7b7k .dropdown-item.active,
.cid-skAIUV7b7k .dropdown-item:active {
  background-color: transparent;
}
.cid-skAIUV7b7k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skAIUV7b7k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skAIUV7b7k .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skAIUV7b7k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skAIUV7b7k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skAIUV7b7k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skAIUV7b7k ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skAIUV7b7k .navbar-buttons {
  text-align: left;
}
.cid-skAIUV7b7k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skAIUV7b7k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skAIUV7b7k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skAIUV7b7k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skAIUV7b7k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skAIUV7b7k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skAIUV7b7k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skAIUV7b7k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skAIUV7b7k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skAIUV7b7k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skAIUV7b7k .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skAIUV7b7k a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skAIUV7b7k .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skAIUV7b7k .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skAIUV7b7k .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skAIUV7b7k .nav-link:hover,
.cid-skAIUV7b7k .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sxekGiHsqJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxekGiHsqJ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sxekGiHsqJ .mbr-section-title {
  color: #3c71d3;
  text-align: center;
}
.cid-sxekGiHsqJ .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-sy4jxa2MxC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9fafb;
}
.cid-sy4jxa2MxC .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-sy4jxa2MxC .text-wrapper:hover .mbr-section-title a {
  color: #0e569e !important;
}
.cid-sy4jxa2MxC .image-wrapper,
.cid-sy4jxa2MxC img {
  width: 100%;
  object-fit: cover;
}
.cid-sy4jxa2MxC .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #404040;
  text-align: center;
}
.cid-sy4jxa2MxC .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sy4jxa2MxC .mbr-section-btn .btn-secondary-outline:hover,
.cid-sy4jxa2MxC .mbr-section-btn .btn-secondary-outline .active,
.cid-sy4jxa2MxC .mbr-section-btn .btn-secondary-outline:focus {
  color: #848abd !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sy4jxa2MxC .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-sy4jxa2MxC {
    flex-direction: column;
  }
  .cid-sy4jxa2MxC .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sy4jxa2MxC .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-sy4jxa2MxC .mbr-section-title {
  color: #4f5b5f;
  text-align: center;
}
.cid-sy4jxa2MxC .mbr-text,
.cid-sy4jxa2MxC .mbr-section-btn {
  text-align: center;
  color: #404040;
}
.cid-sxikLq8CfQ .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxikLq8CfQ .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxikLq8CfQ .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxikLq8CfQ .hidden {
  display: none;
}
.cid-sxikLq8CfQ H10 {
  color: #767676;
}
.cid-skAIUWEvlT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAIUWEvlT .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAIUWEvlT .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAIUWEvlT .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAIUWEvlT .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAIUWEvlT .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAIUWEvlT .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAIUWEvlT .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAIUWEvlT .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAIUWEvlT .card-title {
  color: #4f5b5f;
}
.cid-skAIUWEvlT .mbr-text,
.cid-skAIUWEvlT .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skAIUWEvlT .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skLqDXaHR4.popup-builder {
  background-color: #ffffff;
}
.cid-skLqDXaHR4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLqDXaHR4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLqDXaHR4 .modal-content,
.cid-skLqDXaHR4 .modal-dialog {
  height: auto;
}
.cid-skLqDXaHR4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLqDXaHR4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLqDXaHR4 .form-wrapper .mbr-form .form-group,
  .cid-skLqDXaHR4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLqDXaHR4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLqDXaHR4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLqDXaHR4 .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLqDXaHR4 .pt-0 {
  padding-top: 0 !important;
}
.cid-skLqDXaHR4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLqDXaHR4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLqDXaHR4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLqDXaHR4 .modal-open {
  overflow: hidden;
}
.cid-skLqDXaHR4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLqDXaHR4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLqDXaHR4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLqDXaHR4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLqDXaHR4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLqDXaHR4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLqDXaHR4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLqDXaHR4 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLqDXaHR4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLqDXaHR4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLqDXaHR4 .modal-backdrop.show {
  opacity: .5;
}
.cid-skLqDXaHR4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLqDXaHR4 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLqDXaHR4 .modal-header .close:hover {
  opacity: 1;
}
.cid-skLqDXaHR4 .modal-header .close:focus {
  outline: none;
}
.cid-skLqDXaHR4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLqDXaHR4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLqDXaHR4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLqDXaHR4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLqDXaHR4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLqDXaHR4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLqDXaHR4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLqDXaHR4 .modal-sm {
    max-width: 300px;
  }
  .cid-skLqDXaHR4 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLqDXaHR4 .modal-lg,
  .cid-skLqDXaHR4 .modal-xl {
    max-width: 800px;
  }
  .cid-skLqDXaHR4 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLqDXaHR4 .modal-xl {
    max-width: 1140px;
  }
  .cid-skLqDXaHR4 .container {
    max-width: 1140px;
  }
}
.cid-skLqDXaHR4 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLqDXaHR4 .container {
    max-width: 720px;
  }
}
.cid-skLqDXaHR4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLqDXaHR4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLqDXaHR4 .form-group {
  margin-bottom: 1rem;
}
.cid-skLqDXaHR4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLqDXaHR4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLqDXaHR4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-swK53xzUSN {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1281x1920.jpeg");
}
.cid-swK53xzUSN .animate__fadeInUp:before {
  background: #000000;
}
.cid-swK53xzUSN .text-wrapper {
  z-index: 11;
}
.cid-swK53xzUSN .wrapper {
  display: flex;
  flex-direction: column;
}
.cid-swK53xzUSN .animate__fadeInUp:before {
  background: "file:///H:/Martechwaterfilter-com-PAK-08July--2025----01/assets/images/mbr-1281x1920.jpeg";
}
.cid-swK53xzUSN .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #848abd;
  margin-right: 0rem;
  margin-bottom: 2rem;
}
.cid-swK53xzUSN .iconfont-wrapper {
  margin: auto;
}
.cid-swK53xzUSN .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-swK53xzUSN .mbr-text,
.cid-swK53xzUSN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-swK53xzUSN .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skAIUYapnK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAIUYapnK .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAIUYapnK .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAIUYapnK .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAIUYapnK .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAIUYapnK .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAIUYapnK .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAIUYapnK .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAIUYapnK .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAIUYapnK .card-title {
  color: #4f5b5f;
}
.cid-skAIUYapnK .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-skAIUYapnK .mbr-text,
.cid-skAIUYapnK .mbr-section-btn {
  color: #4f5b5f;
}
.cid-sWLUY0gUme {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sWLUY0gUme [class^="socicon-"]:before,
.cid-sWLUY0gUme [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWLUY0gUme .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWLUY0gUme .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWLUY0gUme .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWLUY0gUme .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-skLraE5uBY.popup-builder {
  background-color: #ffffff;
}
.cid-skLraE5uBY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLraE5uBY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLraE5uBY .modal-content,
.cid-skLraE5uBY .modal-dialog {
  height: auto;
}
.cid-skLraE5uBY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLraE5uBY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLraE5uBY .form-wrapper .mbr-form .form-group,
  .cid-skLraE5uBY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLraE5uBY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLraE5uBY .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLraE5uBY .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLraE5uBY .pt-0 {
  padding-top: 0 !important;
}
.cid-skLraE5uBY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLraE5uBY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLraE5uBY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLraE5uBY .modal-open {
  overflow: hidden;
}
.cid-skLraE5uBY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLraE5uBY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLraE5uBY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLraE5uBY .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLraE5uBY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLraE5uBY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLraE5uBY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLraE5uBY .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLraE5uBY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLraE5uBY .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLraE5uBY .modal-backdrop.show {
  opacity: .5;
}
.cid-skLraE5uBY .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLraE5uBY .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLraE5uBY .modal-header .close:hover {
  opacity: 1;
}
.cid-skLraE5uBY .modal-header .close:focus {
  outline: none;
}
.cid-skLraE5uBY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLraE5uBY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLraE5uBY .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLraE5uBY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLraE5uBY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLraE5uBY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLraE5uBY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLraE5uBY .modal-sm {
    max-width: 300px;
  }
  .cid-skLraE5uBY .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLraE5uBY .modal-lg,
  .cid-skLraE5uBY .modal-xl {
    max-width: 800px;
  }
  .cid-skLraE5uBY .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLraE5uBY .modal-xl {
    max-width: 1140px;
  }
  .cid-skLraE5uBY .container {
    max-width: 1140px;
  }
}
.cid-skLraE5uBY .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLraE5uBY .container {
    max-width: 720px;
  }
}
.cid-skLraE5uBY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLraE5uBY .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLraE5uBY .form-group {
  margin-bottom: 1rem;
}
.cid-skLraE5uBY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLraE5uBY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLraE5uBY .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skAIUZAjxd {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skAIUZAjxd .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skAIUZAjxd .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skAIUZAjxd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skAIUZAjxd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skAIUZAjxd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skAIUZAjxd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skAIUZAjxd .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skAIUZAjxd .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skAIUZAjxd .card-title {
  color: #4f5b5f;
}
.cid-skAIUZAjxd .mbr-text,
.cid-skAIUZAjxd .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skAIUZAjxd .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sy8thTqcsm {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sy8thTqcsm .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #878787;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 20px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-sy8thTqcsm .card-link,
.cid-sy8thTqcsm .link-wrap,
.cid-sy8thTqcsm .card-link:before {
  color: #121212;
  text-align: center;
}
.cid-sy8thTqcsm .card-wrapper {
  overflow: visible;
}
.cid-sy8thTqcsm .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-sy8thTqcsm .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-sy8thTqcsm .card-link:hover {
  color: #848abd;
  transition: all 0.3s;
}
.cid-sy8thTqcsm .card-link:hover:before {
  right: -2rem;
  color: #848abd;
  transition: all 0.3s;
}
.cid-sy8thTqcsm .card-text {
  color: #454545;
}
.cid-sy8thTqcsm .card-title,
.cid-sy8thTqcsm .icon-wrap {
  color: #737373;
  text-align: center;
}
.cid-sy8thTqcsm .mbr-section-title {
  color: #4f5b5f;
}
.cid-skLrxPLUcf.popup-builder {
  background-color: #ffffff;
}
.cid-skLrxPLUcf.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-skLrxPLUcf.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-skLrxPLUcf .modal-content,
.cid-skLrxPLUcf .modal-dialog {
  height: auto;
}
.cid-skLrxPLUcf .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-skLrxPLUcf .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-skLrxPLUcf .form-wrapper .mbr-form .form-group,
  .cid-skLrxPLUcf .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-skLrxPLUcf .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-skLrxPLUcf .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-skLrxPLUcf .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-skLrxPLUcf .pt-0 {
  padding-top: 0 !important;
}
.cid-skLrxPLUcf .pb-0 {
  padding-bottom: 0 !important;
}
.cid-skLrxPLUcf .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-skLrxPLUcf .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-skLrxPLUcf .modal-open {
  overflow: hidden;
}
.cid-skLrxPLUcf .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-skLrxPLUcf .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-skLrxPLUcf .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-skLrxPLUcf .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-skLrxPLUcf .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-skLrxPLUcf .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-skLrxPLUcf .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-skLrxPLUcf .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-skLrxPLUcf .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-skLrxPLUcf .modal-backdrop.fade {
  opacity: 0;
}
.cid-skLrxPLUcf .modal-backdrop.show {
  opacity: .5;
}
.cid-skLrxPLUcf .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-skLrxPLUcf .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-skLrxPLUcf .modal-header .close:hover {
  opacity: 1;
}
.cid-skLrxPLUcf .modal-header .close:focus {
  outline: none;
}
.cid-skLrxPLUcf .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-skLrxPLUcf .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-skLrxPLUcf .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-skLrxPLUcf .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-skLrxPLUcf .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-skLrxPLUcf .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-skLrxPLUcf .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-skLrxPLUcf .modal-sm {
    max-width: 300px;
  }
  .cid-skLrxPLUcf .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-skLrxPLUcf .modal-lg,
  .cid-skLrxPLUcf .modal-xl {
    max-width: 800px;
  }
  .cid-skLrxPLUcf .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-skLrxPLUcf .modal-xl {
    max-width: 1140px;
  }
  .cid-skLrxPLUcf .container {
    max-width: 1140px;
  }
}
.cid-skLrxPLUcf .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-skLrxPLUcf .container {
    max-width: 720px;
  }
}
.cid-skLrxPLUcf .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-skLrxPLUcf .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-skLrxPLUcf .form-group {
  margin-bottom: 1rem;
}
.cid-skLrxPLUcf .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-skLrxPLUcf .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-skLrxPLUcf .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQvTXX.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQvTXX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQvTXX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQvTXX .modal-content,
.cid-slwxxQvTXX .modal-dialog {
  height: auto;
}
.cid-slwxxQvTXX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQvTXX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQvTXX .form-wrapper .mbr-form .form-group,
  .cid-slwxxQvTXX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQvTXX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQvTXX .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQvTXX .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQvTXX .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQvTXX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQvTXX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQvTXX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQvTXX .modal-open {
  overflow: hidden;
}
.cid-slwxxQvTXX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQvTXX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQvTXX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQvTXX .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQvTXX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQvTXX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQvTXX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQvTXX .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQvTXX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQvTXX .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQvTXX .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQvTXX .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQvTXX .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQvTXX .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQvTXX .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQvTXX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQvTXX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQvTXX .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQvTXX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQvTXX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQvTXX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQvTXX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQvTXX .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQvTXX .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQvTXX .modal-lg,
  .cid-slwxxQvTXX .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQvTXX .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQvTXX .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQvTXX .container {
    max-width: 1140px;
  }
}
.cid-slwxxQvTXX .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQvTXX .container {
    max-width: 720px;
  }
}
.cid-slwxxQvTXX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQvTXX .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQvTXX .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQvTXX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQvTXX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQvTXX .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQvTXX .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMLzM1.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMLzM1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMLzM1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMLzM1 .modal-content,
.cid-slwygMLzM1 .modal-dialog {
  height: auto;
}
.cid-slwygMLzM1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMLzM1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMLzM1 .form-wrapper .mbr-form .form-group,
  .cid-slwygMLzM1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMLzM1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMLzM1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMLzM1 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMLzM1 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMLzM1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMLzM1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMLzM1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMLzM1 .modal-open {
  overflow: hidden;
}
.cid-slwygMLzM1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMLzM1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMLzM1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMLzM1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMLzM1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMLzM1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMLzM1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMLzM1 .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMLzM1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMLzM1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMLzM1 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMLzM1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMLzM1 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMLzM1 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMLzM1 .modal-header .close:focus {
  outline: none;
}
.cid-slwygMLzM1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMLzM1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMLzM1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMLzM1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMLzM1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMLzM1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMLzM1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMLzM1 .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMLzM1 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMLzM1 .modal-lg,
  .cid-slwygMLzM1 .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMLzM1 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMLzM1 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMLzM1 .container {
    max-width: 1140px;
  }
}
.cid-slwygMLzM1 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMLzM1 .container {
    max-width: 720px;
  }
}
.cid-slwygMLzM1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMLzM1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMLzM1 .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMLzM1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMLzM1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMLzM1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMLzM1 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slASaJCrAN {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slASaJCrAN ul {
  padding: 0;
  margin: 0;
}
.cid-slASaJCrAN ul li {
  list-style: none;
}
.cid-slASaJCrAN ul li h4 {
  margin: 0;
}
.cid-slASaJCrAN ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slASaJCrAN .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slASaJCrAN .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slASaJCrAN .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slASaJCrAN .col-title1 {
  margin-bottom: 40px;
}
.cid-slASaJCrAN .form-group,
.cid-slASaJCrAN .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slASaJCrAN .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slASaJCrAN .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slASaJCrAN .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slASaJCrAN .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slASaJCrAN .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slASaJCrAN .col + .mbr-section-btn .btn,
.cid-slASaJCrAN .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slASaJCrAN .col + .mbr-section-btn .btn.display-4,
.cid-slASaJCrAN .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slASaJCrAN .col + .mbr-section-btn .btn:hover,
.cid-slASaJCrAN .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slASaJCrAN .dragArea > *:nth-last-child(2).col,
.cid-slASaJCrAN .dragArea > *:nth-last-child(2).col-auto,
.cid-slASaJCrAN .col + .mbr-section-btn,
.cid-slASaJCrAN .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slASaJCrAN .form1 {
  margin-top: 30px;
}
.cid-slASaJCrAN .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slASaJCrAN .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slASaJCrAN .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skReMpciBd .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skReMpciBd .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skReMpciBd .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skReMpciBd .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skReMpciBd .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skReMpciBd .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skReMpciBd .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skReMpciBd .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skReMpciBd .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skReMpciBd .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skReMpciBd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skReMpciBd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skReMpciBd .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skReMpciBd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skReMpciBd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skReMpciBd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skReMpciBd .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skReMpciBd .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skReMpciBd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skReMpciBd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skReMpciBd .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skReMpciBd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skReMpciBd .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skReMpciBd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skReMpciBd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skReMpciBd .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skReMpciBd .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skReMpciBd .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skReMpciBd .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skReMpciBd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skReMpciBd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skReMpciBd .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skReMpciBd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skReMpciBd .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skReMpciBd .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skReMpciBd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skReMpciBd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skReMpciBd .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skReMpciBd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skReMpciBd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skReMpciBd .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skReMpciBd .dropdown-item.active,
.cid-skReMpciBd .dropdown-item:active {
  background-color: transparent;
}
.cid-skReMpciBd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skReMpciBd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skReMpciBd .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skReMpciBd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skReMpciBd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skReMpciBd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skReMpciBd ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skReMpciBd .navbar-buttons {
  text-align: left;
}
.cid-skReMpciBd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skReMpciBd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skReMpciBd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skReMpciBd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skReMpciBd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skReMpciBd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skReMpciBd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skReMpciBd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skReMpciBd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skReMpciBd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skReMpciBd .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skReMpciBd a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skReMpciBd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skReMpciBd .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skReMpciBd .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skReMpciBd .nav-link:hover,
.cid-skReMpciBd .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sxMmZE0tDR {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #f9fafb;
}
.cid-sxMmZE0tDR .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: #ffffff;
}
.cid-sxMmZE0tDR img {
  width: 100%;
  box-shadow: 10px 20px 40px 0px white;
  border-radius: 26px;
}
.cid-sxMmZE0tDR p {
  margin-top: 6rem;
}
.cid-sxMmZE0tDR .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sxMmZE0tDR .content-wrapper {
  padding-top: 6rem;
}
.cid-sxMmZE0tDR h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sxMmZE0tDR .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sxMmZE0tDR p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sxMmZE0tDR .back {
    width: 100%;
    height: 75%;
  }
  .cid-sxMmZE0tDR .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sxMmZE0tDR p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sxMmZE0tDR .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sxMmZE0tDR h4 {
    right: 2rem;
  }
}
.cid-sxMmZE0tDR .mbr-text,
.cid-sxMmZE0tDR .mbr-section-btn {
  color: #4f5b5f;
  text-align: center;
}
.cid-sxMmZE0tDR H1 {
  color: #4f5b5f;
  text-align: center;
}
.cid-sxMmZE0tDR H3 {
  color: #4f5b5f;
  text-align: center;
}
.cid-sxMmZE0tDR H4 {
  text-align: left;
}
.cid-sxMmZE0tDR .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWDTDaXAh0 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-sWDTDaXAh0 h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sWDTDaXAh0 h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-sWDTDaXAh0 .media-container-row {
  justify-content: space-between;
}
.cid-sWDTDaXAh0 .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWDTDaXAh0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sWDTDaXAh0 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sWDTDaXAh0 a:link {
  text-decoration: none;
}
.cid-sWDTDaXAh0 .icon-transition span {
  text-align: center;
  color: #d698b5;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 20%;
  border: 1px solid #d698b5;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-sWDTDaXAh0 .icon-transition span:hover {
  background-color: rgba(153, 153, 153, 0.5);
  color: #ffffff;
}
.cid-sWDTDaXAh0 .btn {
  min-width: 195px;
}
.cid-sWDTDaXAh0 .btn.btn-primary-outline {
  border: 1px solid #848abd;
}
.cid-sWDTDaXAh0 .btn.btn-primary-outline:hover {
  background-color: #848abd !important;
  color: #ffffff !important;
}
.cid-sWDTDaXAh0 .btn.btn-secondary-outline {
  border: 1px solid #0e569e;
}
.cid-sWDTDaXAh0 .btn.btn-secondary-outline:hover {
  background-color: #0e569e !important;
  color: #ffffff !important;
}
.cid-sWDTDaXAh0 .btn.btn-success-outline {
  border: 1px solid #ffffff;
}
.cid-sWDTDaXAh0 .btn.btn-success-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-sWDTDaXAh0 .btn.btn-info-outline {
  border: 1px solid #f3f4f7;
}
.cid-sWDTDaXAh0 .btn.btn-info-outline:hover {
  background-color: #f3f4f7 !important;
  color: #ffffff !important;
}
.cid-sWDTDaXAh0 .btn.btn-warning-outline {
  border: 1px solid #b97ecd;
}
.cid-sWDTDaXAh0 .btn.btn-warning-outline:hover {
  background-color: #b97ecd !important;
  color: #ffffff !important;
}
.cid-sWDTDaXAh0 .btn.btn-danger-outline {
  border: 1px solid #000000;
}
.cid-sWDTDaXAh0 .btn.btn-danger-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDTDaXAh0 .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sWDTDaXAh0 .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDTDaXAh0 .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sWDTDaXAh0 .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 992px) {
  .cid-sWDTDaXAh0 .wrap {
    justify-content: center;
  }
}
.cid-sWDTDaXAh0 .mbr-section-title {
  color: #999999;
}
.cid-sxilJePGyI .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxilJePGyI .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxilJePGyI .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxilJePGyI .hidden {
  display: none;
}
.cid-sxilJePGyI H10 {
  color: #767676;
}
.cid-skReMs5rNu {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skReMs5rNu .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skReMs5rNu .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skReMs5rNu .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skReMs5rNu .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skReMs5rNu .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skReMs5rNu .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skReMs5rNu .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skReMs5rNu .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skReMs5rNu .card-title {
  color: #4f5b5f;
}
.cid-skReMs5rNu .mbr-text,
.cid-skReMs5rNu .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skReMs5rNu .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxuIVjDf03 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/shower-filter-4-1920x800.jpg");
}
.cid-sxuIVjDf03 .main-wrapper .icon-main:hover .process-icon .wrapper .icon-container a .icon-wrapper,
.cid-sxuIVjDf03 .main-wrapper .icon-main:hover .process-icon-without-before .wrapper .icon-container a .icon-wrapper,
.cid-sxuIVjDf03 .main-wrapper .icon-main:hover .process-icon .wrapper-without-before .icon-container a .icon-wrapper,
.cid-sxuIVjDf03 .main-wrapper .icon-main:hover .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper {
  background-color: #000000 !important;
}
.cid-sxuIVjDf03 .mbr-section-subtitle {
  color: #404040;
  text-align: center;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sxuIVjDf03 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-sxuIVjDf03 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sxuIVjDf03 .mbr-section-title {
  margin: 0;
  font-weight: 500;
}
.cid-sxuIVjDf03 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sxuIVjDf03 .main-wrapper {
  padding: 56px 0 0 0;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon::before {
  display: block;
  position: absolute;
  top: 1.9rem;
  left: 0;
  font-family: "mobirise-icons-bold" !important;
  content: "\e967";
  color: #3c71d3;
}
@media (max-width: 992px) {
  .cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon::before {
    display: none;
  }
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-first::before {
  display: none;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before {
  position: relative;
  margin-bottom: 20px;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container a,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a {
  display: inherit;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 80px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  font-weight: normal;
  width: 80px;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon1,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon1,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon1,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon1 {
  background-color: rgba(236, 237, 238, 0.3);
  color: #ecedee;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon2,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon2,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon2,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon2 {
  background-color: rgba(4, 4, 4, 0.3);
  color: #040404;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon3,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon3,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon3,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon3 {
  background-color: rgba(4, 4, 4, 0.3);
  color: #040404;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon4,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon4,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon4,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon4 {
  background-color: rgba(4, 4, 4, 0.3);
  color: #040404;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step {
  position: absolute;
  bottom: -3px;
  left: 11px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 11px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_1,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_1,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_1,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_1 {
  background: #ecedee;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_2,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_2,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_2,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_2 {
  background: #040404;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_3,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_3,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_3,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_3 {
  background: #040404;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_4,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_4,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_4,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_4 {
  background: #040404;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .subicon-title,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .subicon-title {
  color: #404040;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .subicon-text,
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon-without-before .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #606060;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cid-sxuIVjDf03 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sxuIVjDf03 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .subicon-title {
  color: #102f62;
  text-align: center;
}
.cid-sxuIVjDf03 .mbr-section-title,
.cid-sxuIVjDf03 .underline {
  color: #606060;
}
.cid-sxuIVjDf03 .main-wrapper .icon-main .process-icon .subicon-text {
  color: #000000;
  text-align: center;
}
.cid-svqxBK59gR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #3b67d9;
}
@media (min-width: 1500px) {
  .cid-svqxBK59gR .container {
    max-width: 1400px;
  }
}
.cid-svqxBK59gR .row {
  justify-content: center;
}
.cid-svqxBK59gR .mbr-section-tag {
  color: #ffffff;
}
.cid-svqxBK59gR .card-title {
  margin-bottom: 0.875rem;
  color: #ffffff;
}
.cid-svqxBK59gR .card {
  margin-top: 3rem;
}
.cid-svqxBK59gR .card-wrapper {
  padding-left: 2.0625rem;
  border-left: 0.5px solid #d698b5;
}
.cid-svqxBK59gR .mbr-section-btn .btn {
  margin-top: 0.5625rem !important;
  margin-right: 2rem;
  outline: none;
}
.cid-svqxBK59gR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-svqxBK59gR .card-text,
.cid-svqxBK59gR .mbr-section-btn {
  color: #f9fafb;
}
.cid-swJX9XpBR2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9fafb;
}
.cid-swJX9XpBR2 .card {
  -webkit-align-items: center;
  align-items: center;
}
.cid-swJX9XpBR2 .card-box {
  width: 100%;
}
.cid-swJX9XpBR2 .card-img {
  padding: 1rem;
  border: 1px solid #999999;
  border-radius: 100%;
  height: 80px;
  width: 80px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-swJX9XpBR2 .card-img span {
  color: #878787;
  font-size: 2.4rem;
}
.cid-swJX9XpBR2 p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-swJX9XpBR2 .card {
    margin-bottom: 2rem;
  }
}
.cid-swJX9XpBR2 .mbr-section-tag {
  color: #404040;
  margin-bottom: 0.4375rem;
  text-align: center;
}
.cid-swJX9XpBR2 .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-swJX9XpBR2 .mbr-section-title b:last-child,
.cid-swJX9XpBR2 .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-swJX9XpBR2 .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-swJX9XpBR2 .mbr-text {
  color: #404040;
}
.cid-swJX9XpBR2 .card-title,
.cid-swJX9XpBR2 .card-img {
  color: #000000;
}
.cid-sl98IeXjJ1.popup-builder {
  background-color: #ffffff;
}
.cid-sl98IeXjJ1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl98IeXjJ1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl98IeXjJ1 .modal-content,
.cid-sl98IeXjJ1 .modal-dialog {
  height: auto;
}
.cid-sl98IeXjJ1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl98IeXjJ1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl98IeXjJ1 .form-wrapper .mbr-form .form-group,
  .cid-sl98IeXjJ1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl98IeXjJ1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl98IeXjJ1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl98IeXjJ1 .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sl98IeXjJ1 .pt-0 {
  padding-top: 0 !important;
}
.cid-sl98IeXjJ1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl98IeXjJ1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl98IeXjJ1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl98IeXjJ1 .modal-open {
  overflow: hidden;
}
.cid-sl98IeXjJ1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl98IeXjJ1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl98IeXjJ1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl98IeXjJ1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl98IeXjJ1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl98IeXjJ1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl98IeXjJ1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl98IeXjJ1 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl98IeXjJ1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl98IeXjJ1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl98IeXjJ1 .modal-backdrop.show {
  opacity: .5;
}
.cid-sl98IeXjJ1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl98IeXjJ1 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl98IeXjJ1 .modal-header .close:hover {
  opacity: 1;
}
.cid-sl98IeXjJ1 .modal-header .close:focus {
  outline: none;
}
.cid-sl98IeXjJ1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl98IeXjJ1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl98IeXjJ1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl98IeXjJ1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl98IeXjJ1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl98IeXjJ1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl98IeXjJ1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl98IeXjJ1 .modal-sm {
    max-width: 300px;
  }
  .cid-sl98IeXjJ1 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl98IeXjJ1 .modal-lg,
  .cid-sl98IeXjJ1 .modal-xl {
    max-width: 800px;
  }
  .cid-sl98IeXjJ1 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl98IeXjJ1 .modal-xl {
    max-width: 1140px;
  }
  .cid-sl98IeXjJ1 .container {
    max-width: 1140px;
  }
}
.cid-sl98IeXjJ1 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl98IeXjJ1 .container {
    max-width: 720px;
  }
}
.cid-sl98IeXjJ1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl98IeXjJ1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl98IeXjJ1 .form-group {
  margin-bottom: 1rem;
}
.cid-sl98IeXjJ1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl98IeXjJ1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl98IeXjJ1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQv91Y.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQv91Y.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQv91Y.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQv91Y .modal-content,
.cid-slwxxQv91Y .modal-dialog {
  height: auto;
}
.cid-slwxxQv91Y .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQv91Y .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQv91Y .form-wrapper .mbr-form .form-group,
  .cid-slwxxQv91Y .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQv91Y .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQv91Y .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQv91Y .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQv91Y .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQv91Y .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQv91Y .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQv91Y .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQv91Y .modal-open {
  overflow: hidden;
}
.cid-slwxxQv91Y .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQv91Y .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQv91Y .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQv91Y .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQv91Y .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQv91Y .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQv91Y .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQv91Y .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQv91Y .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQv91Y .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQv91Y .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQv91Y .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQv91Y .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQv91Y .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQv91Y .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQv91Y .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQv91Y .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQv91Y .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQv91Y .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQv91Y .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQv91Y .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQv91Y .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQv91Y .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQv91Y .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQv91Y .modal-lg,
  .cid-slwxxQv91Y .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQv91Y .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQv91Y .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQv91Y .container {
    max-width: 1140px;
  }
}
.cid-slwxxQv91Y .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQv91Y .container {
    max-width: 720px;
  }
}
.cid-slwxxQv91Y .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQv91Y .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQv91Y .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQv91Y .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQv91Y .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQv91Y .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQv91Y .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMLV7u.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMLV7u.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMLV7u.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMLV7u .modal-content,
.cid-slwygMLV7u .modal-dialog {
  height: auto;
}
.cid-slwygMLV7u .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMLV7u .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMLV7u .form-wrapper .mbr-form .form-group,
  .cid-slwygMLV7u .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMLV7u .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMLV7u .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMLV7u .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMLV7u .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMLV7u .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMLV7u .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMLV7u .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMLV7u .modal-open {
  overflow: hidden;
}
.cid-slwygMLV7u .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMLV7u .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMLV7u .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMLV7u .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMLV7u .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMLV7u .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMLV7u .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMLV7u .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMLV7u .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMLV7u .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMLV7u .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMLV7u .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMLV7u .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMLV7u .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMLV7u .modal-header .close:focus {
  outline: none;
}
.cid-slwygMLV7u .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMLV7u .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMLV7u .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMLV7u .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMLV7u .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMLV7u .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMLV7u .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMLV7u .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMLV7u .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMLV7u .modal-lg,
  .cid-slwygMLV7u .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMLV7u .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMLV7u .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMLV7u .container {
    max-width: 1140px;
  }
}
.cid-slwygMLV7u .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMLV7u .container {
    max-width: 720px;
  }
}
.cid-slwygMLV7u .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMLV7u .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMLV7u .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMLV7u .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMLV7u .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMLV7u .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMLV7u .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slAR7PaiZL {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAR7PaiZL ul {
  padding: 0;
  margin: 0;
}
.cid-slAR7PaiZL ul li {
  list-style: none;
}
.cid-slAR7PaiZL ul li h4 {
  margin: 0;
}
.cid-slAR7PaiZL ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAR7PaiZL .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAR7PaiZL .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAR7PaiZL .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAR7PaiZL .col-title1 {
  margin-bottom: 40px;
}
.cid-slAR7PaiZL .form-group,
.cid-slAR7PaiZL .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAR7PaiZL .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAR7PaiZL .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAR7PaiZL .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAR7PaiZL .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAR7PaiZL .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAR7PaiZL .col + .mbr-section-btn .btn,
.cid-slAR7PaiZL .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAR7PaiZL .col + .mbr-section-btn .btn.display-4,
.cid-slAR7PaiZL .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAR7PaiZL .col + .mbr-section-btn .btn:hover,
.cid-slAR7PaiZL .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAR7PaiZL .dragArea > *:nth-last-child(2).col,
.cid-slAR7PaiZL .dragArea > *:nth-last-child(2).col-auto,
.cid-slAR7PaiZL .col + .mbr-section-btn,
.cid-slAR7PaiZL .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAR7PaiZL .form1 {
  margin-top: 30px;
}
.cid-slAR7PaiZL .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAR7PaiZL .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAR7PaiZL .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skRjihLhds .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skRjihLhds .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skRjihLhds .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skRjihLhds .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skRjihLhds .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skRjihLhds .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skRjihLhds .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skRjihLhds .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skRjihLhds .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skRjihLhds .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skRjihLhds .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skRjihLhds .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skRjihLhds .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skRjihLhds .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skRjihLhds .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skRjihLhds .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skRjihLhds .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skRjihLhds .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skRjihLhds .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skRjihLhds .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skRjihLhds .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skRjihLhds .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skRjihLhds .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skRjihLhds .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skRjihLhds .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skRjihLhds .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skRjihLhds .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skRjihLhds .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skRjihLhds .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skRjihLhds .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skRjihLhds .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skRjihLhds .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skRjihLhds .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skRjihLhds .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skRjihLhds .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skRjihLhds .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skRjihLhds .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skRjihLhds .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skRjihLhds .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skRjihLhds .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skRjihLhds .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skRjihLhds .dropdown-item.active,
.cid-skRjihLhds .dropdown-item:active {
  background-color: transparent;
}
.cid-skRjihLhds .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skRjihLhds .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skRjihLhds .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skRjihLhds .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skRjihLhds .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skRjihLhds .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skRjihLhds ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skRjihLhds .navbar-buttons {
  text-align: left;
}
.cid-skRjihLhds button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skRjihLhds button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skRjihLhds button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skRjihLhds button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skRjihLhds button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skRjihLhds button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skRjihLhds nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skRjihLhds nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skRjihLhds nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skRjihLhds nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skRjihLhds .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skRjihLhds a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skRjihLhds .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skRjihLhds .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skRjihLhds .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skRjihLhds .nav-link:hover,
.cid-skRjihLhds .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sX3lCWtBsP {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #f9fafb;
}
.cid-sX3lCWtBsP .card {
  background: #ffffff;
  border-radius: 10px;
}
.cid-sX3lCWtBsP img {
  width: 100%;
  border-radius: 10px;
}
.cid-sX3lCWtBsP .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-sX3lCWtBsP .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sX3lCWtBsP .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-sX3lCWtBsP img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-sX3lCWtBsP .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-sX3lCWtBsP img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sX3lCWtBsP img {
    width: 100%;
  }
}
.cid-sX3lCWtBsP .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sX3lCWtBsP .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sX3lCWtBsP .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-sX3lCWtBsP .mbr-text,
.cid-sX3lCWtBsP .mbr-section-btn {
  color: #464646;
}
.cid-sX3lCWtBsP .mbr-section-subtitle {
  color: #777777;
}
.cid-sX3lCWtBsP .mbr-section-title {
  color: #4f5b5f;
}
.cid-sX3lCWtBsP .mbr-list {
  color: #4f5b5f;
}
.cid-sxubgLEAU0 {
  background-image: url("../../../assets/images/water-softner-only-image-header-feb2022-copy-1920x800.jpg");
}
.cid-sxubgLEAU0 .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
}
.cid-sxubgLEAU0 .mbr-section-title {
  color: #232323;
}
.cid-sxubgLEAU0 .mbr-text {
  color: #232323;
  letter-spacing: 5px;
  font-weight: 100;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxubgLEAU0 .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-sxilYZs3X2 .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxilYZs3X2 .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxilYZs3X2 .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxilYZs3X2 .hidden {
  display: none;
}
.cid-sxilYZs3X2 H10 {
  color: #767676;
}
.cid-skRjikcFSU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skRjikcFSU .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skRjikcFSU .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skRjikcFSU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skRjikcFSU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skRjikcFSU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skRjikcFSU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skRjikcFSU .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skRjikcFSU .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skRjikcFSU .card-title {
  color: #404040;
}
.cid-skRjikcFSU .mbr-text,
.cid-skRjikcFSU .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skRjikcFSU .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-svqwMRSKZh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svqwMRSKZh .card {
  -webkit-align-items: center;
  align-items: center;
}
.cid-svqwMRSKZh .card-box {
  width: 100%;
}
.cid-svqwMRSKZh .card-img {
  padding: 1rem;
  border: 1px solid #d698b5;
  border-radius: 100%;
  height: 80px;
  width: 80px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-svqwMRSKZh .card-img span {
  color: #878787;
  font-size: 2.2rem;
}
.cid-svqwMRSKZh p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-svqwMRSKZh .card {
    margin-bottom: 2rem;
  }
}
.cid-svqwMRSKZh .mbr-section-tag {
  color: #4f5b5f;
  margin-bottom: 0.4375rem;
  text-align: center;
}
.cid-svqwMRSKZh .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-svqwMRSKZh .mbr-section-title b:last-child,
.cid-svqwMRSKZh .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-svqwMRSKZh .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-svqwMRSKZh .mbr-text {
  color: #878787;
}
.cid-svqwMRSKZh .card-title,
.cid-svqwMRSKZh .card-img {
  color: #000000;
}
.cid-sxRQRhxlr5 {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-sxRQRhxlr5 .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 25rem;
}
.cid-sxRQRhxlr5 .row {
  flex-direction: row-reverse;
}
.cid-sxRQRhxlr5 img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-sxRQRhxlr5 .container-fluid {
  padding: 0 !important;
}
.cid-sWDV6sZ5TS {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f8f8f8;
}
@media (min-width: 400px) {
  .cid-sWDV6sZ5TS h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sWDV6sZ5TS h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-sWDV6sZ5TS .media-container-row {
  justify-content: space-between;
}
.cid-sWDV6sZ5TS .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWDV6sZ5TS .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sWDV6sZ5TS .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sWDV6sZ5TS a:link {
  text-decoration: none;
}
.cid-sWDV6sZ5TS .icon-transition span {
  text-align: center;
  color: #d698b5;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 20%;
  border: 1px solid #e2d5d5;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-sWDV6sZ5TS .icon-transition span:hover {
  background-color: rgba(153, 153, 153, 0.5);
  color: #ffffff;
}
.cid-sWDV6sZ5TS .btn {
  min-width: 195px;
}
.cid-sWDV6sZ5TS .btn.btn-primary-outline {
  border: 1px solid #848abd;
}
.cid-sWDV6sZ5TS .btn.btn-primary-outline:hover {
  background-color: #848abd !important;
  color: #ffffff !important;
}
.cid-sWDV6sZ5TS .btn.btn-secondary-outline {
  border: 1px solid #0e569e;
}
.cid-sWDV6sZ5TS .btn.btn-secondary-outline:hover {
  background-color: #0e569e !important;
  color: #ffffff !important;
}
.cid-sWDV6sZ5TS .btn.btn-success-outline {
  border: 1px solid #ffffff;
}
.cid-sWDV6sZ5TS .btn.btn-success-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-sWDV6sZ5TS .btn.btn-info-outline {
  border: 1px solid #f3f4f7;
}
.cid-sWDV6sZ5TS .btn.btn-info-outline:hover {
  background-color: #f3f4f7 !important;
  color: #ffffff !important;
}
.cid-sWDV6sZ5TS .btn.btn-warning-outline {
  border: 1px solid #b97ecd;
}
.cid-sWDV6sZ5TS .btn.btn-warning-outline:hover {
  background-color: #b97ecd !important;
  color: #ffffff !important;
}
.cid-sWDV6sZ5TS .btn.btn-danger-outline {
  border: 1px solid #000000;
}
.cid-sWDV6sZ5TS .btn.btn-danger-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDV6sZ5TS .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sWDV6sZ5TS .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDV6sZ5TS .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sWDV6sZ5TS .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 992px) {
  .cid-sWDV6sZ5TS .wrap {
    justify-content: center;
  }
}
.cid-sWDV6sZ5TS .mbr-section-title {
  color: #999999;
  text-align: right;
}
.cid-sy8TExYrzw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sy8TExYrzw .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #878787;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 20px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-sy8TExYrzw .card-link,
.cid-sy8TExYrzw .link-wrap,
.cid-sy8TExYrzw .card-link:before {
  color: #121212;
  text-align: center;
}
.cid-sy8TExYrzw .card-wrapper {
  overflow: visible;
}
.cid-sy8TExYrzw .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-sy8TExYrzw .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-sy8TExYrzw .card-link:hover {
  color: #848abd;
  transition: all 0.3s;
}
.cid-sy8TExYrzw .card-link:hover:before {
  right: -2rem;
  color: #848abd;
  transition: all 0.3s;
}
.cid-sy8TExYrzw .card-text {
  color: #454545;
}
.cid-sy8TExYrzw .card-title,
.cid-sy8TExYrzw .icon-wrap {
  color: #737373;
  text-align: center;
}
.cid-sy8TExYrzw .mbr-section-title {
  color: #606060;
}
.cid-sxudcCPqgq {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f9fafb;
}
.cid-sxudcCPqgq .main-wrapper .icon-main:hover .process-icon .wrapper .icon-container a .icon-wrapper,
.cid-sxudcCPqgq .main-wrapper .icon-main:hover .process-icon-without-before .wrapper .icon-container a .icon-wrapper,
.cid-sxudcCPqgq .main-wrapper .icon-main:hover .process-icon .wrapper-without-before .icon-container a .icon-wrapper,
.cid-sxudcCPqgq .main-wrapper .icon-main:hover .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper {
  background-color: #000000 !important;
}
.cid-sxudcCPqgq .mbr-section-subtitle {
  color: #404040;
  text-align: center;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sxudcCPqgq .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-sxudcCPqgq .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sxudcCPqgq .mbr-section-title {
  margin: 0;
  font-weight: 500;
}
.cid-sxudcCPqgq .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sxudcCPqgq .main-wrapper {
  padding: 56px 0 0 0;
}
.cid-sxudcCPqgq .main-wrapper .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon::before {
  display: block;
  position: absolute;
  top: 1.9rem;
  left: 0;
  font-family: "mobirise-icons-bold" !important;
  content: "\e967";
  color: #d698b5;
}
@media (max-width: 992px) {
  .cid-sxudcCPqgq .main-wrapper .icon-main .process-icon::before {
    display: none;
  }
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-first::before {
  display: none;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before {
  position: relative;
  margin-bottom: 20px;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container a,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a {
  display: inherit;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 80px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  font-weight: normal;
  width: 80px;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon1,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon1,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon1,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon1 {
  background-color: rgba(153, 153, 153, 0.3);
  color: #999999;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon2,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon2,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon2,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon2 {
  background-color: rgba(153, 153, 153, 0.3);
  color: #999999;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon3,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon3,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon3,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon3 {
  background-color: rgba(153, 153, 153, 0.3);
  color: #999999;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon4,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon4,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon4,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon4 {
  background-color: rgba(153, 153, 153, 0.3);
  color: #999999;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container .step,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step {
  position: absolute;
  bottom: -3px;
  left: 11px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 11px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_1,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_1,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_1,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_1 {
  background: #999999;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_2,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_2,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_2,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_2 {
  background: #999999;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_3,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_3,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_3,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_3 {
  background: #999999;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_4,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_4,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_4,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_4 {
  background: #999999;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .subicon-title,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .subicon-title {
  color: #404040;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .subicon-text,
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon-without-before .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #606060;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cid-sxudcCPqgq .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sxudcCPqgq .third-elem .wrapper:before {
    display: none;
  }
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .subicon-title {
  color: #000000;
}
.cid-sxudcCPqgq .mbr-section-title,
.cid-sxudcCPqgq .underline {
  color: #606060;
}
.cid-sxudcCPqgq .main-wrapper .icon-main .process-icon .subicon-text {
  color: #606060;
}
.cid-sl9aj4xpEL.popup-builder {
  background-color: #ffffff;
}
.cid-sl9aj4xpEL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9aj4xpEL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9aj4xpEL .modal-content,
.cid-sl9aj4xpEL .modal-dialog {
  height: auto;
}
.cid-sl9aj4xpEL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9aj4xpEL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9aj4xpEL .form-wrapper .mbr-form .form-group,
  .cid-sl9aj4xpEL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9aj4xpEL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9aj4xpEL .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9aj4xpEL .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-sl9aj4xpEL .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9aj4xpEL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9aj4xpEL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9aj4xpEL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9aj4xpEL .modal-open {
  overflow: hidden;
}
.cid-sl9aj4xpEL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9aj4xpEL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9aj4xpEL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9aj4xpEL .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9aj4xpEL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9aj4xpEL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9aj4xpEL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9aj4xpEL .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9aj4xpEL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9aj4xpEL .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9aj4xpEL .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9aj4xpEL .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9aj4xpEL .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9aj4xpEL .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9aj4xpEL .modal-header .close:focus {
  outline: none;
}
.cid-sl9aj4xpEL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9aj4xpEL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9aj4xpEL .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9aj4xpEL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9aj4xpEL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9aj4xpEL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9aj4xpEL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9aj4xpEL .modal-sm {
    max-width: 300px;
  }
  .cid-sl9aj4xpEL .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9aj4xpEL .modal-lg,
  .cid-sl9aj4xpEL .modal-xl {
    max-width: 800px;
  }
  .cid-sl9aj4xpEL .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9aj4xpEL .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9aj4xpEL .container {
    max-width: 1140px;
  }
}
.cid-sl9aj4xpEL .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9aj4xpEL .container {
    max-width: 720px;
  }
}
.cid-sl9aj4xpEL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9aj4xpEL .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9aj4xpEL .form-group {
  margin-bottom: 1rem;
}
.cid-sl9aj4xpEL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9aj4xpEL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9aj4xpEL .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sl9aPlmbAe.popup-builder {
  background-color: #ffffff;
}
.cid-sl9aPlmbAe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9aPlmbAe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9aPlmbAe .modal-content,
.cid-sl9aPlmbAe .modal-dialog {
  height: auto;
}
.cid-sl9aPlmbAe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9aPlmbAe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9aPlmbAe .form-wrapper .mbr-form .form-group,
  .cid-sl9aPlmbAe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9aPlmbAe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9aPlmbAe .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9aPlmbAe .mbr-text {
  text-align: left;
  color: #878787;
}
.cid-sl9aPlmbAe .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9aPlmbAe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9aPlmbAe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9aPlmbAe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9aPlmbAe .modal-open {
  overflow: hidden;
}
.cid-sl9aPlmbAe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9aPlmbAe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9aPlmbAe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9aPlmbAe .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9aPlmbAe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9aPlmbAe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9aPlmbAe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9aPlmbAe .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9aPlmbAe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9aPlmbAe .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9aPlmbAe .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9aPlmbAe .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9aPlmbAe .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9aPlmbAe .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9aPlmbAe .modal-header .close:focus {
  outline: none;
}
.cid-sl9aPlmbAe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9aPlmbAe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9aPlmbAe .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9aPlmbAe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9aPlmbAe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9aPlmbAe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9aPlmbAe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9aPlmbAe .modal-sm {
    max-width: 300px;
  }
  .cid-sl9aPlmbAe .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9aPlmbAe .modal-lg,
  .cid-sl9aPlmbAe .modal-xl {
    max-width: 800px;
  }
  .cid-sl9aPlmbAe .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9aPlmbAe .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9aPlmbAe .container {
    max-width: 1140px;
  }
}
.cid-sl9aPlmbAe .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9aPlmbAe .container {
    max-width: 720px;
  }
}
.cid-sl9aPlmbAe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9aPlmbAe .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9aPlmbAe .form-group {
  margin-bottom: 1rem;
}
.cid-sl9aPlmbAe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9aPlmbAe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9aPlmbAe .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQvQLl.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQvQLl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQvQLl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQvQLl .modal-content,
.cid-slwxxQvQLl .modal-dialog {
  height: auto;
}
.cid-slwxxQvQLl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQvQLl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQvQLl .form-wrapper .mbr-form .form-group,
  .cid-slwxxQvQLl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQvQLl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQvQLl .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQvQLl .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQvQLl .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQvQLl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQvQLl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQvQLl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQvQLl .modal-open {
  overflow: hidden;
}
.cid-slwxxQvQLl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQvQLl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQvQLl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQvQLl .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQvQLl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQvQLl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQvQLl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQvQLl .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQvQLl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQvQLl .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQvQLl .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQvQLl .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQvQLl .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQvQLl .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQvQLl .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQvQLl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQvQLl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQvQLl .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQvQLl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQvQLl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQvQLl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQvQLl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQvQLl .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQvQLl .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQvQLl .modal-lg,
  .cid-slwxxQvQLl .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQvQLl .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQvQLl .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQvQLl .container {
    max-width: 1140px;
  }
}
.cid-slwxxQvQLl .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQvQLl .container {
    max-width: 720px;
  }
}
.cid-slwxxQvQLl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQvQLl .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQvQLl .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQvQLl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQvQLl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQvQLl .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQvQLl .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygML8x2.popup-builder {
  background-color: #ffffff;
}
.cid-slwygML8x2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygML8x2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygML8x2 .modal-content,
.cid-slwygML8x2 .modal-dialog {
  height: auto;
}
.cid-slwygML8x2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygML8x2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygML8x2 .form-wrapper .mbr-form .form-group,
  .cid-slwygML8x2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygML8x2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygML8x2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygML8x2 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygML8x2 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygML8x2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygML8x2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygML8x2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygML8x2 .modal-open {
  overflow: hidden;
}
.cid-slwygML8x2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygML8x2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygML8x2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygML8x2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygML8x2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygML8x2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygML8x2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygML8x2 .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygML8x2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygML8x2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygML8x2 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygML8x2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygML8x2 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygML8x2 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygML8x2 .modal-header .close:focus {
  outline: none;
}
.cid-slwygML8x2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygML8x2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygML8x2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygML8x2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygML8x2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygML8x2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygML8x2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygML8x2 .modal-sm {
    max-width: 300px;
  }
  .cid-slwygML8x2 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygML8x2 .modal-lg,
  .cid-slwygML8x2 .modal-xl {
    max-width: 800px;
  }
  .cid-slwygML8x2 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygML8x2 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygML8x2 .container {
    max-width: 1140px;
  }
}
.cid-slwygML8x2 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygML8x2 .container {
    max-width: 720px;
  }
}
.cid-slwygML8x2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygML8x2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygML8x2 .form-group {
  margin-bottom: 1rem;
}
.cid-slwygML8x2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygML8x2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygML8x2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygML8x2 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slARij82vT {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slARij82vT ul {
  padding: 0;
  margin: 0;
}
.cid-slARij82vT ul li {
  list-style: none;
}
.cid-slARij82vT ul li h4 {
  margin: 0;
}
.cid-slARij82vT ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slARij82vT .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slARij82vT .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slARij82vT .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slARij82vT .col-title1 {
  margin-bottom: 40px;
}
.cid-slARij82vT .form-group,
.cid-slARij82vT .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slARij82vT .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slARij82vT .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slARij82vT .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slARij82vT .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slARij82vT .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slARij82vT .col + .mbr-section-btn .btn,
.cid-slARij82vT .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slARij82vT .col + .mbr-section-btn .btn.display-4,
.cid-slARij82vT .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slARij82vT .col + .mbr-section-btn .btn:hover,
.cid-slARij82vT .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slARij82vT .dragArea > *:nth-last-child(2).col,
.cid-slARij82vT .dragArea > *:nth-last-child(2).col-auto,
.cid-slARij82vT .col + .mbr-section-btn,
.cid-slARij82vT .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slARij82vT .form1 {
  margin-top: 30px;
}
.cid-slARij82vT .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slARij82vT .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slARij82vT .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-skRT3rqsvU .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-skRT3rqsvU .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-skRT3rqsvU .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-skRT3rqsvU .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-skRT3rqsvU .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-skRT3rqsvU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-skRT3rqsvU .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-skRT3rqsvU .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-skRT3rqsvU .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-skRT3rqsvU .navbar.collapsed {
  flex-direction: row !important;
}
.cid-skRT3rqsvU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-skRT3rqsvU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-skRT3rqsvU .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-skRT3rqsvU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-skRT3rqsvU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-skRT3rqsvU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-skRT3rqsvU .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-skRT3rqsvU .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-skRT3rqsvU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-skRT3rqsvU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-skRT3rqsvU .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-skRT3rqsvU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-skRT3rqsvU .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-skRT3rqsvU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-skRT3rqsvU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-skRT3rqsvU .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-skRT3rqsvU .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-skRT3rqsvU .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-skRT3rqsvU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-skRT3rqsvU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-skRT3rqsvU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-skRT3rqsvU .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-skRT3rqsvU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-skRT3rqsvU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-skRT3rqsvU .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-skRT3rqsvU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-skRT3rqsvU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-skRT3rqsvU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-skRT3rqsvU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-skRT3rqsvU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-skRT3rqsvU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-skRT3rqsvU .dropdown-item.active,
.cid-skRT3rqsvU .dropdown-item:active {
  background-color: transparent;
}
.cid-skRT3rqsvU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-skRT3rqsvU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-skRT3rqsvU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-skRT3rqsvU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-skRT3rqsvU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-skRT3rqsvU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-skRT3rqsvU ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-skRT3rqsvU .navbar-buttons {
  text-align: left;
}
.cid-skRT3rqsvU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-skRT3rqsvU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-skRT3rqsvU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-skRT3rqsvU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skRT3rqsvU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-skRT3rqsvU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-skRT3rqsvU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skRT3rqsvU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-skRT3rqsvU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-skRT3rqsvU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-skRT3rqsvU .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-skRT3rqsvU a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-skRT3rqsvU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-skRT3rqsvU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-skRT3rqsvU .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-skRT3rqsvU .nav-link:hover,
.cid-skRT3rqsvU .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sXfpM5f3kM {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-sXfpM5f3kM .card {
  background: #ffffff;
  border-radius: 10px;
}
.cid-sXfpM5f3kM img {
  width: 100%;
  border-radius: 10px;
}
.cid-sXfpM5f3kM .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-sXfpM5f3kM .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sXfpM5f3kM .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-sXfpM5f3kM img {
    width: 175%;
    z-index: 2;
    position: relative;
  }
  .cid-sXfpM5f3kM .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-sXfpM5f3kM img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sXfpM5f3kM img {
    width: 100%;
  }
}
.cid-sXfpM5f3kM .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sXfpM5f3kM .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sXfpM5f3kM .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #eff1f5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-sXfpM5f3kM .mbr-text,
.cid-sXfpM5f3kM .mbr-section-btn {
  color: #464646;
}
.cid-sXfpM5f3kM .mbr-section-subtitle {
  color: #777777;
}
.cid-sXfpM5f3kM .mbr-section-title {
  color: #4f5b5f;
}
.cid-sXfpM5f3kM .mbr-list {
  color: #4f5b5f;
}
.cid-sxim6dCHxM .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxim6dCHxM .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxim6dCHxM .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxim6dCHxM .hidden {
  display: none;
}
.cid-sxim6dCHxM H10 {
  color: #767676;
}
.cid-sxRxsU4EqX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-sxRxsU4EqX .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 35rem;
}
.cid-sxRxsU4EqX .row {
  flex-direction: row-reverse;
}
.cid-sxRxsU4EqX img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-sxRxsU4EqX .container-fluid {
  padding: 0 !important;
}
.cid-skRT3udtTH {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skRT3udtTH .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skRT3udtTH .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skRT3udtTH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skRT3udtTH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skRT3udtTH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skRT3udtTH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skRT3udtTH .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skRT3udtTH .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skRT3udtTH .card-title {
  color: #4f5b5f;
}
.cid-skRT3udtTH .mbr-text,
.cid-skRT3udtTH .mbr-section-btn {
  color: #606060;
}
.cid-skRT3udtTH .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWDVXxpxKC {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-sWDVXxpxKC h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sWDVXxpxKC h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-sWDVXxpxKC .media-container-row {
  justify-content: space-between;
}
.cid-sWDVXxpxKC .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWDVXxpxKC .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sWDVXxpxKC .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sWDVXxpxKC a:link {
  text-decoration: none;
}
.cid-sWDVXxpxKC .icon-transition span {
  text-align: center;
  color: #d698b5;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 20%;
  border: 1px solid #e2d5d5;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-sWDVXxpxKC .icon-transition span:hover {
  background-color: rgba(153, 153, 153, 0.5);
  color: #ffffff;
}
.cid-sWDVXxpxKC .btn {
  min-width: 195px;
}
.cid-sWDVXxpxKC .btn.btn-primary-outline {
  border: 1px solid #848abd;
}
.cid-sWDVXxpxKC .btn.btn-primary-outline:hover {
  background-color: #848abd !important;
  color: #ffffff !important;
}
.cid-sWDVXxpxKC .btn.btn-secondary-outline {
  border: 1px solid #0e569e;
}
.cid-sWDVXxpxKC .btn.btn-secondary-outline:hover {
  background-color: #0e569e !important;
  color: #ffffff !important;
}
.cid-sWDVXxpxKC .btn.btn-success-outline {
  border: 1px solid #ffffff;
}
.cid-sWDVXxpxKC .btn.btn-success-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-sWDVXxpxKC .btn.btn-info-outline {
  border: 1px solid #f3f4f7;
}
.cid-sWDVXxpxKC .btn.btn-info-outline:hover {
  background-color: #f3f4f7 !important;
  color: #ffffff !important;
}
.cid-sWDVXxpxKC .btn.btn-warning-outline {
  border: 1px solid #b97ecd;
}
.cid-sWDVXxpxKC .btn.btn-warning-outline:hover {
  background-color: #b97ecd !important;
  color: #ffffff !important;
}
.cid-sWDVXxpxKC .btn.btn-danger-outline {
  border: 1px solid #000000;
}
.cid-sWDVXxpxKC .btn.btn-danger-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDVXxpxKC .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sWDVXxpxKC .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDVXxpxKC .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sWDVXxpxKC .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 992px) {
  .cid-sWDVXxpxKC .wrap {
    justify-content: center;
  }
}
.cid-sWDVXxpxKC .mbr-section-title {
  color: #999999;
}
.cid-svqDS5QkHt {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1153.jpg");
}
.cid-svqDS5QkHt .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}
.cid-svqDS5QkHt .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svqDS5QkHt .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-svqDS5QkHt .main-title.display-2 {
  line-height: 1.375;
}
.cid-svqDS5QkHt .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svqDS5QkHt .mbr-text {
  color: #606060;
}
.cid-svqDS5QkHt .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-svqDS5QkHt .mbr-section-btn {
  margin-top: 24px;
}
.cid-svqDS5QkHt .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-svqDS5QkHt .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-svqDS5QkHt .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-svqDS5QkHt .mbr-section-subtitle,
.cid-svqDS5QkHt .mbr-section-btn {
  color: #f5f4f4;
}
.cid-svqDS5QkHt .main-title,
.cid-svqDS5QkHt .mbr-section-btn {
  color: #dfdfdf;
}
.cid-svqDS5QkHt .badge,
.cid-svqDS5QkHt .badge_wrap,
.cid-svqDS5QkHt .mbr-section-btn {
  color: #f5f4f4;
}
.cid-svqDS5QkHt .mbr-text,
.cid-svqDS5QkHt .mbr-section-btn {
  color: #ffffff;
}
.cid-svqDS5QkHt .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl9bMCT15j.popup-builder {
  background-color: #ffffff;
}
.cid-sl9bMCT15j.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9bMCT15j.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9bMCT15j .modal-content,
.cid-sl9bMCT15j .modal-dialog {
  height: auto;
}
.cid-sl9bMCT15j .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9bMCT15j .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9bMCT15j .form-wrapper .mbr-form .form-group,
  .cid-sl9bMCT15j .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9bMCT15j .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9bMCT15j .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9bMCT15j .mbr-text {
  text-align: center;
  color: #878787;
}
.cid-sl9bMCT15j .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9bMCT15j .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9bMCT15j .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9bMCT15j .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9bMCT15j .modal-open {
  overflow: hidden;
}
.cid-sl9bMCT15j .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9bMCT15j .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9bMCT15j .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9bMCT15j .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9bMCT15j .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9bMCT15j .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9bMCT15j .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9bMCT15j .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9bMCT15j .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9bMCT15j .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9bMCT15j .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9bMCT15j .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9bMCT15j .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9bMCT15j .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9bMCT15j .modal-header .close:focus {
  outline: none;
}
.cid-sl9bMCT15j .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9bMCT15j .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9bMCT15j .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9bMCT15j .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9bMCT15j .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9bMCT15j .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9bMCT15j .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9bMCT15j .modal-sm {
    max-width: 300px;
  }
  .cid-sl9bMCT15j .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9bMCT15j .modal-lg,
  .cid-sl9bMCT15j .modal-xl {
    max-width: 800px;
  }
  .cid-sl9bMCT15j .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9bMCT15j .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9bMCT15j .container {
    max-width: 1140px;
  }
}
.cid-sl9bMCT15j .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9bMCT15j .container {
    max-width: 720px;
  }
}
.cid-sl9bMCT15j .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9bMCT15j .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9bMCT15j .form-group {
  margin-bottom: 1rem;
}
.cid-sl9bMCT15j .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9bMCT15j .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9bMCT15j .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sl9bNsua7W.popup-builder {
  background-color: #ffffff;
}
.cid-sl9bNsua7W.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9bNsua7W.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9bNsua7W .modal-content,
.cid-sl9bNsua7W .modal-dialog {
  height: auto;
}
.cid-sl9bNsua7W .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9bNsua7W .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9bNsua7W .form-wrapper .mbr-form .form-group,
  .cid-sl9bNsua7W .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9bNsua7W .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9bNsua7W .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9bNsua7W .mbr-text {
  text-align: center;
  color: #878787;
}
.cid-sl9bNsua7W .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9bNsua7W .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9bNsua7W .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9bNsua7W .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9bNsua7W .modal-open {
  overflow: hidden;
}
.cid-sl9bNsua7W .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9bNsua7W .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9bNsua7W .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9bNsua7W .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9bNsua7W .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9bNsua7W .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9bNsua7W .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9bNsua7W .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9bNsua7W .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9bNsua7W .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9bNsua7W .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9bNsua7W .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9bNsua7W .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9bNsua7W .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9bNsua7W .modal-header .close:focus {
  outline: none;
}
.cid-sl9bNsua7W .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9bNsua7W .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9bNsua7W .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9bNsua7W .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9bNsua7W .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9bNsua7W .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9bNsua7W .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9bNsua7W .modal-sm {
    max-width: 300px;
  }
  .cid-sl9bNsua7W .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9bNsua7W .modal-lg,
  .cid-sl9bNsua7W .modal-xl {
    max-width: 800px;
  }
  .cid-sl9bNsua7W .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9bNsua7W .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9bNsua7W .container {
    max-width: 1140px;
  }
}
.cid-sl9bNsua7W .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9bNsua7W .container {
    max-width: 720px;
  }
}
.cid-sl9bNsua7W .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9bNsua7W .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9bNsua7W .form-group {
  margin-bottom: 1rem;
}
.cid-sl9bNsua7W .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9bNsua7W .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9bNsua7W .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-skRYdAQdrE {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-skRYdAQdrE .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-skRYdAQdrE .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-skRYdAQdrE .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skRYdAQdrE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-skRYdAQdrE .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-skRYdAQdrE .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-skRYdAQdrE .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-skRYdAQdrE .image-wrapper img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
  border-radius: 26px;
}
.cid-skRYdAQdrE .card-title {
  color: #4f5b5f;
}
.cid-skRYdAQdrE .mbr-text,
.cid-skRYdAQdrE .mbr-section-btn {
  color: #4f5b5f;
}
.cid-skRYdAQdrE .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sl9eyQ3ocw.popup-builder {
  background-color: #ffffff;
}
.cid-sl9eyQ3ocw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sl9eyQ3ocw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sl9eyQ3ocw .modal-content,
.cid-sl9eyQ3ocw .modal-dialog {
  height: auto;
}
.cid-sl9eyQ3ocw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sl9eyQ3ocw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sl9eyQ3ocw .form-wrapper .mbr-form .form-group,
  .cid-sl9eyQ3ocw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sl9eyQ3ocw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sl9eyQ3ocw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sl9eyQ3ocw .mbr-text {
  text-align: center;
  color: #878787;
}
.cid-sl9eyQ3ocw .pt-0 {
  padding-top: 0 !important;
}
.cid-sl9eyQ3ocw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sl9eyQ3ocw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sl9eyQ3ocw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sl9eyQ3ocw .modal-open {
  overflow: hidden;
}
.cid-sl9eyQ3ocw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sl9eyQ3ocw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sl9eyQ3ocw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sl9eyQ3ocw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sl9eyQ3ocw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sl9eyQ3ocw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sl9eyQ3ocw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sl9eyQ3ocw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sl9eyQ3ocw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sl9eyQ3ocw .modal-backdrop.fade {
  opacity: 0;
}
.cid-sl9eyQ3ocw .modal-backdrop.show {
  opacity: .5;
}
.cid-sl9eyQ3ocw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sl9eyQ3ocw .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sl9eyQ3ocw .modal-header .close:hover {
  opacity: 1;
}
.cid-sl9eyQ3ocw .modal-header .close:focus {
  outline: none;
}
.cid-sl9eyQ3ocw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sl9eyQ3ocw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sl9eyQ3ocw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sl9eyQ3ocw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sl9eyQ3ocw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sl9eyQ3ocw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sl9eyQ3ocw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sl9eyQ3ocw .modal-sm {
    max-width: 300px;
  }
  .cid-sl9eyQ3ocw .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sl9eyQ3ocw .modal-lg,
  .cid-sl9eyQ3ocw .modal-xl {
    max-width: 800px;
  }
  .cid-sl9eyQ3ocw .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sl9eyQ3ocw .modal-xl {
    max-width: 1140px;
  }
  .cid-sl9eyQ3ocw .container {
    max-width: 1140px;
  }
}
.cid-sl9eyQ3ocw .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sl9eyQ3ocw .container {
    max-width: 720px;
  }
}
.cid-sl9eyQ3ocw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sl9eyQ3ocw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sl9eyQ3ocw .form-group {
  margin-bottom: 1rem;
}
.cid-sl9eyQ3ocw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sl9eyQ3ocw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sl9eyQ3ocw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-syIfBSZ4K5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-syIfBSZ4K5 .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #606060;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 20px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-syIfBSZ4K5 .card-link,
.cid-syIfBSZ4K5 .link-wrap,
.cid-syIfBSZ4K5 .card-link:before {
  color: #121212;
  text-align: center;
}
.cid-syIfBSZ4K5 .card-wrapper {
  overflow: visible;
}
.cid-syIfBSZ4K5 .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-syIfBSZ4K5 .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-syIfBSZ4K5 .card-link:hover {
  color: #848abd;
  transition: all 0.3s;
}
.cid-syIfBSZ4K5 .card-link:hover:before {
  right: -2rem;
  color: #848abd;
  transition: all 0.3s;
}
.cid-syIfBSZ4K5 .card-text {
  color: #454545;
}
.cid-syIfBSZ4K5 .card-title,
.cid-syIfBSZ4K5 .icon-wrap {
  color: #737373;
  text-align: center;
}
.cid-syIfBSZ4K5 .mbr-section-title {
  color: #606060;
}
.cid-slwxxQwytv.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQwytv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQwytv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQwytv .modal-content,
.cid-slwxxQwytv .modal-dialog {
  height: auto;
}
.cid-slwxxQwytv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQwytv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQwytv .form-wrapper .mbr-form .form-group,
  .cid-slwxxQwytv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQwytv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQwytv .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQwytv .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQwytv .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQwytv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQwytv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQwytv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQwytv .modal-open {
  overflow: hidden;
}
.cid-slwxxQwytv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQwytv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQwytv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQwytv .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQwytv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQwytv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQwytv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQwytv .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQwytv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQwytv .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQwytv .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQwytv .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQwytv .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQwytv .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQwytv .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQwytv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQwytv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQwytv .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQwytv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQwytv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQwytv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQwytv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQwytv .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQwytv .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQwytv .modal-lg,
  .cid-slwxxQwytv .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQwytv .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQwytv .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQwytv .container {
    max-width: 1140px;
  }
}
.cid-slwxxQwytv .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQwytv .container {
    max-width: 720px;
  }
}
.cid-slwxxQwytv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQwytv .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQwytv .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQwytv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQwytv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQwytv .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQwytv .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMMKu5.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMMKu5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMMKu5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMMKu5 .modal-content,
.cid-slwygMMKu5 .modal-dialog {
  height: auto;
}
.cid-slwygMMKu5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMMKu5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMMKu5 .form-wrapper .mbr-form .form-group,
  .cid-slwygMMKu5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMMKu5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMMKu5 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMMKu5 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMMKu5 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMMKu5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMMKu5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMMKu5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMMKu5 .modal-open {
  overflow: hidden;
}
.cid-slwygMMKu5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMMKu5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMMKu5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMMKu5 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMMKu5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMMKu5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMMKu5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMMKu5 .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMMKu5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMMKu5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMMKu5 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMMKu5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMMKu5 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMMKu5 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMMKu5 .modal-header .close:focus {
  outline: none;
}
.cid-slwygMMKu5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMMKu5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMMKu5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMMKu5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMMKu5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMMKu5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMMKu5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMMKu5 .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMMKu5 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMMKu5 .modal-lg,
  .cid-slwygMMKu5 .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMMKu5 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMMKu5 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMMKu5 .container {
    max-width: 1140px;
  }
}
.cid-slwygMMKu5 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMMKu5 .container {
    max-width: 720px;
  }
}
.cid-slwygMMKu5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMMKu5 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMMKu5 .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMMKu5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMMKu5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMMKu5 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMMKu5 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slARotcGjl {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slARotcGjl ul {
  padding: 0;
  margin: 0;
}
.cid-slARotcGjl ul li {
  list-style: none;
}
.cid-slARotcGjl ul li h4 {
  margin: 0;
}
.cid-slARotcGjl ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slARotcGjl .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slARotcGjl .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slARotcGjl .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slARotcGjl .col-title1 {
  margin-bottom: 40px;
}
.cid-slARotcGjl .form-group,
.cid-slARotcGjl .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slARotcGjl .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slARotcGjl .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slARotcGjl .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slARotcGjl .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slARotcGjl .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slARotcGjl .col + .mbr-section-btn .btn,
.cid-slARotcGjl .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slARotcGjl .col + .mbr-section-btn .btn.display-4,
.cid-slARotcGjl .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slARotcGjl .col + .mbr-section-btn .btn:hover,
.cid-slARotcGjl .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slARotcGjl .dragArea > *:nth-last-child(2).col,
.cid-slARotcGjl .dragArea > *:nth-last-child(2).col-auto,
.cid-slARotcGjl .col + .mbr-section-btn,
.cid-slARotcGjl .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slARotcGjl .form1 {
  margin-top: 30px;
}
.cid-slARotcGjl .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slARotcGjl .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slARotcGjl .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-sjUcGTVSRL .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sjUcGTVSRL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sjUcGTVSRL .navbar.collapsed {
  flex-direction: row !important;
}
.cid-sjUcGTVSRL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sjUcGTVSRL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-sjUcGTVSRL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sjUcGTVSRL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sjUcGTVSRL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sjUcGTVSRL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjUcGTVSRL .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sjUcGTVSRL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sjUcGTVSRL .dropdown-item.active,
.cid-sjUcGTVSRL .dropdown-item:active {
  background-color: transparent;
}
.cid-sjUcGTVSRL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sjUcGTVSRL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjUcGTVSRL ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sjUcGTVSRL .navbar-buttons {
  text-align: left;
}
.cid-sjUcGTVSRL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sjUcGTVSRL a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-sjUcGTVSRL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-link:hover,
.cid-sjUcGTVSRL .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sjUPFngIC2 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #fac769;
}
.cid-sjUPFngIC2 .mbr-section-subtitle {
  color: #767676;
}
.cid-sjUPFngIC2 .mbr-section-title {
  color: #ffffff;
}
.cid-syI7ZiZdz0 {
  padding-top: 195px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/cherries-2905964-1920-1920x1279.jpg");
}
.cid-syI7ZiZdz0 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-syI7ZiZdz0 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-syI7ZiZdz0 .mbr-section-title,
.cid-syI7ZiZdz0 .icon-wrap,
.cid-syI7ZiZdz0 .mbr-section-btn {
  color: #f9fafb;
}
.cid-sximcvr0PD .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sximcvr0PD .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sximcvr0PD .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sximcvr0PD .hidden {
  display: none;
}
.cid-sximcvr0PD H10 {
  color: #767676;
}
.cid-syI2w14Gtm {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #f9fafb;
}
.cid-syI2w14Gtm .mbr-section-title {
  color: #404040;
}
.cid-syI2w14Gtm .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-syI2w14Gtm .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-syI2w14Gtm .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-syI2w14Gtm .mbr-section-title,
.cid-syI2w14Gtm .icon-wrap,
.cid-syI2w14Gtm .mbr-section-btn {
  color: #4f5b5f;
}
.cid-uQnQb9BmlE {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uQnQb9BmlE ul {
  list-style: none;
  margin: 0;
  padding-left: 1.6rem;
}
.cid-uQnQb9BmlE li {
  position: relative;
  margin-bottom: 0.625rem;
  margin-top: 0.625rem;
}
.cid-uQnQb9BmlE ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "–";
}
.cid-uQnQb9BmlE .mbr-section-tag {
  color: #000000;
  margin-bottom: 0.4375rem;
  text-align: center;
}
.cid-uQnQb9BmlE .mbr-section-title {
  margin-bottom: 1rem;
  color: #404040;
  text-align: center;
}
.cid-uQnQb9BmlE .mbr-section-title b:last-child,
.cid-uQnQb9BmlE .mbr-section-title strong:last-child {
  color: #3c71d3;
}
.cid-uQnQb9BmlE .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-uQnQb9BmlE .list {
  margin-top: 2.3125rem;
}
.cid-uQnQb9BmlE .icon-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 546px) {
  .cid-uQnQb9BmlE .icon-wrap {
    width: 100% !important;
  }
}
.cid-uQnQb9BmlE .icons-wrap,
.cid-uQnQb9BmlE .icon-wrap {
  display: flex;
}
.cid-uQnQb9BmlE .mbr-icon-title {
  margin-top: 0.6875rem;
  margin-bottom: 0.375rem;
}
.cid-uQnQb9BmlE .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 546px) {
  .cid-uQnQb9BmlE .icons-wrap {
    border-left: 1px solid #eddae3;
    padding-left: 0.8125rem !important;
  }
}
.cid-uQnQb9BmlE .mbr-text {
  margin-bottom: 0;
}
.cid-uQnQb9BmlE .mbr-section-btn {
  margin-top: 28px;
}
.cid-uQnQb9BmlE .mbr-section-btn a {
  margin-top: 0;
}
.cid-uQnQb9BmlE .mbr-icon-title,
.cid-uQnQb9BmlE .mbr-iconfont {
  text-align: center;
  color: #000000;
}
.cid-uQnQb9BmlE .mbr-icon-text {
  text-align: center;
  color: #606060;
}
.cid-uQnQb9BmlE .mbr-section-subtitle,
.cid-uQnQb9BmlE .mbr-section-btn {
  color: #5849aa;
  text-align: center;
}
.cid-uQnQb9BmlE .mbr-section-title DIV {
  text-align: center;
}
.cid-syI5wVx172 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-syI5wVx172 .mbr-section-title {
  color: #404040;
}
.cid-syI5wVx172 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-syI5wVx172 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-syI5wVx172 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-syI5wVx172 .mbr-section-title,
.cid-syI5wVx172 .icon-wrap,
.cid-syI5wVx172 .mbr-section-btn {
  color: #4f5b5f;
}
.cid-slzVmn8eL0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-slzVmn8eL0 ul {
  list-style: none;
  margin: 0;
  padding-left: 1.6rem;
}
.cid-slzVmn8eL0 li {
  position: relative;
  margin-bottom: 0.625rem;
  margin-top: 0.625rem;
}
.cid-slzVmn8eL0 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "–";
}
.cid-slzVmn8eL0 .mbr-section-tag {
  color: #000000;
  margin-bottom: 0.4375rem;
  text-align: center;
}
.cid-slzVmn8eL0 .mbr-section-title {
  margin-bottom: 1rem;
  color: #404040;
  text-align: center;
}
.cid-slzVmn8eL0 .mbr-section-title b:last-child,
.cid-slzVmn8eL0 .mbr-section-title strong:last-child {
  color: #3c71d3;
}
.cid-slzVmn8eL0 .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-slzVmn8eL0 .list {
  margin-top: 2.3125rem;
}
.cid-slzVmn8eL0 .icon-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 546px) {
  .cid-slzVmn8eL0 .icon-wrap {
    width: 100% !important;
  }
}
.cid-slzVmn8eL0 .icons-wrap,
.cid-slzVmn8eL0 .icon-wrap {
  display: flex;
}
.cid-slzVmn8eL0 .mbr-icon-title {
  margin-top: 0.6875rem;
  margin-bottom: 0.375rem;
}
.cid-slzVmn8eL0 .mbr-iconfont {
  font-size: 3rem;
}
@media (min-width: 546px) {
  .cid-slzVmn8eL0 .icons-wrap {
    border-left: 1px solid #eddae3;
    padding-left: 1.8125rem !important;
  }
}
.cid-slzVmn8eL0 .mbr-text {
  margin-bottom: 0;
}
.cid-slzVmn8eL0 .mbr-section-btn {
  margin-top: 28px;
}
.cid-slzVmn8eL0 .mbr-section-btn a {
  margin-top: 0;
}
.cid-slzVmn8eL0 .mbr-icon-title,
.cid-slzVmn8eL0 .mbr-iconfont {
  text-align: center;
  color: #000000;
}
.cid-slzVmn8eL0 .mbr-icon-text {
  text-align: center;
  color: #7b7b7b;
}
.cid-slzVmn8eL0 .mbr-section-subtitle,
.cid-slzVmn8eL0 .mbr-section-btn {
  color: #3c71d3;
  text-align: center;
}
.cid-slzVmn8eL0 .mbr-section-title DIV {
  text-align: center;
}
.cid-sX392YiEEh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-sX392YiEEh .mbr-section-title {
  color: #404040;
}
.cid-sX392YiEEh .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sX392YiEEh .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sX392YiEEh .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sX392YiEEh .mbr-section-title,
.cid-sX392YiEEh .icon-wrap,
.cid-sX392YiEEh .mbr-section-btn {
  color: #404040;
}
.cid-sX392YiEEh .mbr-text,
.cid-sX392YiEEh .mbr-section-btn {
  color: #4f5b5f;
}
.cid-uQtbpcG3La {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uQtbpcG3La .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uQtbpcG3La .team-card:hover {
  transform: translateY(-10px);
}
.cid-uQtbpcG3La .card-wrap {
  background: #f3f4f7;
  border-radius: 15px;
  padding-top: 2rem;
}
@media (max-width: 991px) {
  .cid-uQtbpcG3La .card-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uQtbpcG3La .card-wrap .image-wrap img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 5%;
}
@media (min-width: 768px) {
  .cid-uQtbpcG3La .card-wrap .content-wrap {
    padding: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-uQtbpcG3La .card-wrap .content-wrap {
    padding: 1rem;
    padding-bottom: 0;
  }
}
.cid-uQtbpcG3La .social-row {
  text-align: center;
  padding-top: 2rem;
}
.cid-uQtbpcG3La .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-top-right-radius: 20%;
  border-top-left-radius: 20%;
  margin-right: 0.6rem;
  padding: 0.8rem;
  background: #ffffff;
  transition: all 0.3s;
}
.cid-uQtbpcG3La .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #999999;
  font-size: 1rem;
}
.cid-uQtbpcG3La .social-row .soc-item:hover {
  background-color: grey;
}
.cid-uQtbpcG3La .social-row .soc-item:hover .mbr-iconfont {
  color: white;
}
.cid-uQtbpcG3La .mbr-role,
.cid-uQtbpcG3La .social-row {
  color: #000000;
  text-align: center;
}
.cid-uQtbpcG3La .mbr-section-subtitle {
  color: #000000;
}
.cid-uQtbpcG3La .card-title,
.cid-uQtbpcG3La .social-row {
  text-align: center;
  color: #7b7b7b;
}
.cid-uQtbpcG3La .mbr-section-title {
  color: #7b7b7b;
}
.cid-uQnNF1t8ZI {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uQnNF1t8ZI .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uQnNF1t8ZI .team-card:hover {
  transform: translateY(-10px);
}
.cid-uQnNF1t8ZI .card-wrap {
  background: #f3f4f7;
  border-radius: 15px;
  padding-top: 2rem;
}
@media (max-width: 991px) {
  .cid-uQnNF1t8ZI .card-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uQnNF1t8ZI .card-wrap .image-wrap img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 5%;
}
@media (min-width: 768px) {
  .cid-uQnNF1t8ZI .card-wrap .content-wrap {
    padding: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-uQnNF1t8ZI .card-wrap .content-wrap {
    padding: 1rem;
    padding-bottom: 0;
  }
}
.cid-uQnNF1t8ZI .social-row {
  text-align: center;
  padding-top: 2rem;
}
.cid-uQnNF1t8ZI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-top-right-radius: 20%;
  border-top-left-radius: 20%;
  margin-right: 0.6rem;
  padding: 0.8rem;
  background: #ffffff;
  transition: all 0.3s;
}
.cid-uQnNF1t8ZI .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #333333;
  font-size: 1rem;
}
.cid-uQnNF1t8ZI .social-row .soc-item:hover {
  background-color: grey;
}
.cid-uQnNF1t8ZI .social-row .soc-item:hover .mbr-iconfont {
  color: white;
}
.cid-uQnNF1t8ZI .mbr-role,
.cid-uQnNF1t8ZI .social-row {
  color: #000000;
  text-align: center;
}
.cid-uQnNF1t8ZI .mbr-section-subtitle {
  color: #000000;
}
.cid-uQnNF1t8ZI .card-title,
.cid-uQnNF1t8ZI .social-row {
  text-align: center;
  color: #7b7b7b;
}
.cid-uQnNF1t8ZI .mbr-section-title {
  color: #7b7b7b;
}
.cid-syI9BTKMig {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #f3f4f7;
}
.cid-syI9BTKMig .mbr-section-title {
  color: #404040;
}
.cid-syI9BTKMig .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-syI9BTKMig .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-syI9BTKMig .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sGmXqG1UTp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9fafb;
}
.cid-sGmXqG1UTp .google-map {
  height: 24rem;
  position: relative;
}
.cid-sGmXqG1UTp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sGmXqG1UTp .google-map [data-state-details] {
  color: #6b6763;
  font-family: 'PT Sans';
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sGmXqG1UTp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sGmXqG1UTp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (min-width: 768px) {
  .cid-sGmXqG1UTp .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sGmXqG1UTp .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sGmXqG1UTp .google-map {
    padding-bottom: 2rem;
  }
}
.cid-sGmXqG1UTp .card-wrap {
  background-color: #3c71d3;
  padding: 3rem 2.5rem;
}
@media (min-width: 992px) {
  .cid-sGmXqG1UTp .card-wrap {
    width: calc(100% + 10rem);
    margin-left: -10rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sGmXqG1UTp .card-wrap {
    margin: auto;
    padding: 1rem;
  }
}
.cid-sGmXqG1UTp H2 {
  text-align: left;
}
.cid-sGmXqG1UTp .mbr-section-text,
.cid-sGmXqG1UTp .mbr-section-btn {
  text-align: left;
  color: #f9fafb;
}
.cid-sGmXqG1UTp .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sGmXqG1UTp .mbr-card-title {
  text-align: left;
  color: #ffffff;
}
.cid-slwxxQwyzr.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQwyzr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQwyzr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQwyzr .modal-content,
.cid-slwxxQwyzr .modal-dialog {
  height: auto;
}
.cid-slwxxQwyzr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQwyzr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQwyzr .form-wrapper .mbr-form .form-group,
  .cid-slwxxQwyzr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQwyzr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQwyzr .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQwyzr .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQwyzr .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQwyzr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQwyzr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQwyzr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQwyzr .modal-open {
  overflow: hidden;
}
.cid-slwxxQwyzr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQwyzr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQwyzr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQwyzr .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQwyzr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQwyzr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQwyzr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQwyzr .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQwyzr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQwyzr .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQwyzr .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQwyzr .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQwyzr .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQwyzr .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQwyzr .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQwyzr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQwyzr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQwyzr .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQwyzr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQwyzr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQwyzr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQwyzr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQwyzr .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQwyzr .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQwyzr .modal-lg,
  .cid-slwxxQwyzr .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQwyzr .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQwyzr .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQwyzr .container {
    max-width: 1140px;
  }
}
.cid-slwxxQwyzr .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQwyzr .container {
    max-width: 720px;
  }
}
.cid-slwxxQwyzr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQwyzr .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQwyzr .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQwyzr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQwyzr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQwyzr .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQwyzr .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMMILo.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMMILo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMMILo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMMILo .modal-content,
.cid-slwygMMILo .modal-dialog {
  height: auto;
}
.cid-slwygMMILo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMMILo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMMILo .form-wrapper .mbr-form .form-group,
  .cid-slwygMMILo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMMILo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMMILo .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMMILo .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMMILo .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMMILo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMMILo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMMILo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMMILo .modal-open {
  overflow: hidden;
}
.cid-slwygMMILo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMMILo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMMILo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMMILo .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMMILo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMMILo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMMILo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMMILo .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMMILo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMMILo .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMMILo .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMMILo .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMMILo .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMMILo .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMMILo .modal-header .close:focus {
  outline: none;
}
.cid-slwygMMILo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMMILo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMMILo .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMMILo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMMILo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMMILo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMMILo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMMILo .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMMILo .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMMILo .modal-lg,
  .cid-slwygMMILo .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMMILo .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMMILo .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMMILo .container {
    max-width: 1140px;
  }
}
.cid-slwygMMILo .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMMILo .container {
    max-width: 720px;
  }
}
.cid-slwygMMILo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMMILo .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMMILo .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMMILo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMMILo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMMILo .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMMILo .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slASsS3xQo {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slASsS3xQo ul {
  padding: 0;
  margin: 0;
}
.cid-slASsS3xQo ul li {
  list-style: none;
}
.cid-slASsS3xQo ul li h4 {
  margin: 0;
}
.cid-slASsS3xQo ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slASsS3xQo .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slASsS3xQo .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slASsS3xQo .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slASsS3xQo .col-title1 {
  margin-bottom: 40px;
}
.cid-slASsS3xQo .form-group,
.cid-slASsS3xQo .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slASsS3xQo .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slASsS3xQo .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slASsS3xQo .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slASsS3xQo .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slASsS3xQo .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slASsS3xQo .col + .mbr-section-btn .btn,
.cid-slASsS3xQo .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slASsS3xQo .col + .mbr-section-btn .btn.display-4,
.cid-slASsS3xQo .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slASsS3xQo .col + .mbr-section-btn .btn:hover,
.cid-slASsS3xQo .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slASsS3xQo .dragArea > *:nth-last-child(2).col,
.cid-slASsS3xQo .dragArea > *:nth-last-child(2).col-auto,
.cid-slASsS3xQo .col + .mbr-section-btn,
.cid-slASsS3xQo .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slASsS3xQo .form1 {
  margin-top: 30px;
}
.cid-slASsS3xQo .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slASsS3xQo .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slASsS3xQo .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-sjUcGTVSRL .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sjUcGTVSRL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sjUcGTVSRL .navbar.collapsed {
  flex-direction: row !important;
}
.cid-sjUcGTVSRL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sjUcGTVSRL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-sjUcGTVSRL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sjUcGTVSRL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sjUcGTVSRL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sjUcGTVSRL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjUcGTVSRL .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sjUcGTVSRL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sjUcGTVSRL .dropdown-item.active,
.cid-sjUcGTVSRL .dropdown-item:active {
  background-color: transparent;
}
.cid-sjUcGTVSRL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sjUcGTVSRL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjUcGTVSRL ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sjUcGTVSRL .navbar-buttons {
  text-align: left;
}
.cid-sjUcGTVSRL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sjUcGTVSRL a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-sjUcGTVSRL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-link:hover,
.cid-sjUcGTVSRL .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sxXMMzubKV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1d4c97;
}
.cid-sxXMMzubKV .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 40px;
}
.cid-sxXMMzubKV .dentaura-top-spacer {
  margin-left: auto;
  margin-right: auto;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: transparent;
  border-style: solid;
  border-width: 0px 0px 0 0px;
  border-bottom-width: 1px;
  border-color: #f2f2f0;
}
@media (max-width: 768px) {
  .cid-sxXMMzubKV .dentaura-top-spacer {
    height: 80px;
  }
}
@media (min-width: 769px) {
  .cid-sxXMMzubKV .dentaura-top-spacer {
    height: 75px;
  }
}
@media (min-width: 992px) {
  .cid-sxXMMzubKV .dentaura-top-spacer {
    height: 85px;
  }
}
.cid-sxXNZ80TsI {
  background-image: url("../../../assets/images/3m-food-services-1-1920x800.jpg");
  background-position: right;
}
.cid-sxXNZ80TsI .wrapper {
  position: relative;
  border-top: 0px solid #ffffff;
  border-right: 0px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 1.5rem 1.5rem;
}
.cid-sxXNZ80TsI .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 260px);
  height: 3px;
  right: 0;
}
.cid-sxXNZ80TsI .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sxXNZ80TsI img {
  position: absolute;
  left: 10%;
  bottom: -10px;
  width: 260px;
}
@media (max-width: 767px) {
  .cid-sxXNZ80TsI .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sxikoOSFE4 .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxikoOSFE4 .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxikoOSFE4 .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxikoOSFE4 .hidden {
  display: none;
}
.cid-sxikoOSFE4 H10 {
  color: #767676;
}
.cid-sWXvlmEjpW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-sWXvlmEjpW .row {
  background: #ffffff;
  padding: 3rem 2rem;
  margin: 0rem;
}
@media (max-width: 767px) {
  .cid-sWXvlmEjpW .row {
    padding: 1rem 0rem;
  }
}
.cid-sWXvlmEjpW img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-sWXvlmEjpW img {
    width: 100%;
  }
}
.cid-sWXvlmEjpW .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sWXvlmEjpW .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWXvlmEjpW .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #eff1f5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-sWXvlmEjpW .mbr-text,
.cid-sWXvlmEjpW .mbr-section-btn {
  color: #777777;
}
.cid-sWXvlmEjpW .mbr-section-subtitle {
  color: #ff0000;
}
.cid-sWXvlmEjpW .mbr-section-title {
  color: #606060;
}
.cid-sWXvlmEjpW .mbr-list {
  color: #878787;
}
.cid-sWXvlmEjpW .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slq8nLTljq.popup-builder {
  background-color: #ffffff;
}
.cid-slq8nLTljq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slq8nLTljq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slq8nLTljq .modal-content,
.cid-slq8nLTljq .modal-dialog {
  height: auto;
}
.cid-slq8nLTljq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slq8nLTljq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slq8nLTljq .form-wrapper .mbr-form .form-group,
  .cid-slq8nLTljq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slq8nLTljq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slq8nLTljq .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slq8nLTljq .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-slq8nLTljq .pt-0 {
  padding-top: 0 !important;
}
.cid-slq8nLTljq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slq8nLTljq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slq8nLTljq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slq8nLTljq .modal-open {
  overflow: hidden;
}
.cid-slq8nLTljq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slq8nLTljq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slq8nLTljq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slq8nLTljq .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slq8nLTljq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slq8nLTljq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slq8nLTljq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slq8nLTljq .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slq8nLTljq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slq8nLTljq .modal-backdrop.fade {
  opacity: 0;
}
.cid-slq8nLTljq .modal-backdrop.show {
  opacity: .5;
}
.cid-slq8nLTljq .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slq8nLTljq .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slq8nLTljq .modal-header .close:hover {
  opacity: 1;
}
.cid-slq8nLTljq .modal-header .close:focus {
  outline: none;
}
.cid-slq8nLTljq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-slq8nLTljq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slq8nLTljq .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slq8nLTljq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slq8nLTljq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slq8nLTljq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slq8nLTljq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slq8nLTljq .modal-sm {
    max-width: 300px;
  }
  .cid-slq8nLTljq .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slq8nLTljq .modal-lg,
  .cid-slq8nLTljq .modal-xl {
    max-width: 800px;
  }
  .cid-slq8nLTljq .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slq8nLTljq .modal-xl {
    max-width: 1140px;
  }
  .cid-slq8nLTljq .container {
    max-width: 1140px;
  }
}
.cid-slq8nLTljq .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slq8nLTljq .container {
    max-width: 720px;
  }
}
.cid-slq8nLTljq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slq8nLTljq .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slq8nLTljq .form-group {
  margin-bottom: 1rem;
}
.cid-slq8nLTljq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slq8nLTljq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slq8nLTljq .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sWXvsIjJ30 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sWXvsIjJ30 [class^="socicon-"]:before,
.cid-sWXvsIjJ30 [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sWXvsIjJ30 .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWXvsIjJ30 .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sWXvsIjJ30 .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sWXvsIjJ30 .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-suLfpkmFQZ {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1374.jpg");
}
.cid-suLfpkmFQZ .animate__fadeInUp:before {
  background: #000000;
}
.cid-suLfpkmFQZ .text-wrapper {
  z-index: 11;
}
.cid-suLfpkmFQZ .wrapper {
  display: flex;
  flex-direction: column;
}
.cid-suLfpkmFQZ .animate__fadeInUp:before {
  background: "file:///H:/Martechwaterfilter-com-PAK-08July--2025----01/assets/images/mbr-1920x1374.jpg";
}
.cid-suLfpkmFQZ .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #848abd;
  margin-right: 0rem;
  margin-bottom: 2rem;
}
.cid-suLfpkmFQZ .iconfont-wrapper {
  margin: auto;
}
.cid-suLfpkmFQZ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-suLfpkmFQZ .mbr-text,
.cid-suLfpkmFQZ .mbr-section-btn {
  text-align: center;
  color: #161734;
}
.cid-suLfpkmFQZ .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-stDsV8Rs86 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-stDsV8Rs86 .title__block {
  margin-bottom: 55px;
}
.cid-stDsV8Rs86 .mbr-section-title {
  margin-bottom: 16px;
  color: #102f62;
}
.cid-stDsV8Rs86 .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-stDsV8Rs86 .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-stDsV8Rs86 .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-stDsV8Rs86 .card__content {
  display: block;
  width: 100%;
}
.cid-stDsV8Rs86 .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  color: #102f62;
}
.cid-stDsV8Rs86 .card__text {
  margin-bottom: 0;
  color: #404040;
}
@media (max-width: 991px) {
  .cid-stDsV8Rs86 .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-stDsV8Rs86 .card__wrap {
    margin-bottom: 40px;
  }
  .cid-stDsV8Rs86 .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-stDsV8Rs86 .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-stDsV8Rs86 .card__image {
    max-width: 90px;
  }
  .cid-stDsV8Rs86 .card__image img {
    width: 70%;
  }
}
.cid-sxXS6KgvtX.popup-builder {
  background-color: #ffffff;
}
.cid-sxXS6KgvtX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxXS6KgvtX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxXS6KgvtX .modal-content,
.cid-sxXS6KgvtX .modal-dialog {
  height: auto;
}
.cid-sxXS6KgvtX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxXS6KgvtX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxXS6KgvtX .form-wrapper .mbr-form .form-group,
  .cid-sxXS6KgvtX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxXS6KgvtX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxXS6KgvtX .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxXS6KgvtX .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sxXS6KgvtX .pt-0 {
  padding-top: 0 !important;
}
.cid-sxXS6KgvtX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxXS6KgvtX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxXS6KgvtX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxXS6KgvtX .modal-open {
  overflow: hidden;
}
.cid-sxXS6KgvtX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxXS6KgvtX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxXS6KgvtX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxXS6KgvtX .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxXS6KgvtX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxXS6KgvtX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxXS6KgvtX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxXS6KgvtX .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxXS6KgvtX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxXS6KgvtX .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxXS6KgvtX .modal-backdrop.show {
  opacity: .5;
}
.cid-sxXS6KgvtX .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxXS6KgvtX .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxXS6KgvtX .modal-header .close:hover {
  opacity: 1;
}
.cid-sxXS6KgvtX .modal-header .close:focus {
  outline: none;
}
.cid-sxXS6KgvtX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sxXS6KgvtX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxXS6KgvtX .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxXS6KgvtX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxXS6KgvtX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxXS6KgvtX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxXS6KgvtX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxXS6KgvtX .modal-sm {
    max-width: 300px;
  }
  .cid-sxXS6KgvtX .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxXS6KgvtX .modal-lg,
  .cid-sxXS6KgvtX .modal-xl {
    max-width: 800px;
  }
  .cid-sxXS6KgvtX .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxXS6KgvtX .modal-xl {
    max-width: 1140px;
  }
  .cid-sxXS6KgvtX .container {
    max-width: 1140px;
  }
}
.cid-sxXS6KgvtX .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxXS6KgvtX .container {
    max-width: 720px;
  }
}
.cid-sxXS6KgvtX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxXS6KgvtX .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxXS6KgvtX .form-group {
  margin-bottom: 1rem;
}
.cid-sxXS6KgvtX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxXS6KgvtX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxXS6KgvtX .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sucqKkdWac {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-sucqKkdWac .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 20rem;
}
.cid-sucqKkdWac .row {
  flex-direction: row-reverse;
}
.cid-sucqKkdWac img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-sucqKkdWac .container-fluid {
  padding: 0 !important;
}
.cid-sxAdZgskPt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9fafb;
}
.cid-sxAdZgskPt .container-fluid {
  padding: 0 3rem;
}
.cid-sxAdZgskPt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #848abd, #0e569e);
  display: inline-block;
}
.cid-sxAdZgskPt .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-sxAdZgskPt .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxAdZgskPt .card .card-wrapper {
  height: 1%;
}
.cid-sxAdZgskPt .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-sxAdZgskPt .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxAdZgskPt .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-sxAdZgskPt .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sxAdZgskPt .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-sxAdZgskPt .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sxAdZgskPt .mbr-section-title,
.cid-sxAdZgskPt .underline {
  text-align: center;
  color: #4f5b5f;
}
.cid-sxAdZgskPt .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxAgFPmdWo {
  padding-top: 5px;
  padding-bottom: 45px;
  background-color: #f9fafb;
}
.cid-sxAgFPmdWo .container-fluid {
  padding: 0 3rem;
}
.cid-sxAgFPmdWo .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #848abd, #0e569e);
  display: inline-block;
}
.cid-sxAgFPmdWo .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-sxAgFPmdWo .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxAgFPmdWo .card .card-wrapper {
  height: 1%;
}
.cid-sxAgFPmdWo .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-sxAgFPmdWo .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxAgFPmdWo .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-sxAgFPmdWo .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sxAgFPmdWo .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-sxAgFPmdWo .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sxAgFPmdWo .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-svew2DCkIA {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svew2DCkIA .mbr-section-subtitle {
  color: #4f5b5f;
  text-align: center;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svew2DCkIA .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-svew2DCkIA .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svew2DCkIA .mbr-section-title {
  margin: 0;
  font-weight: 500;
}
.cid-svew2DCkIA .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-svew2DCkIA .main-wrapper {
  padding: 56px 0 0 0;
}
.cid-svew2DCkIA .main-wrapper .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon::before {
  display: block;
  position: absolute;
  top: 1.9rem;
  left: 0;
  font-family: "mobirise-icons-bold" !important;
  content: "\e967";
  color: #999999;
}
@media (max-width: 992px) {
  .cid-svew2DCkIA .main-wrapper .icon-main .process-icon::before {
    display: none;
  }
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-first::before {
  display: none;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before {
  position: relative;
  margin-bottom: 20px;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container a,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a {
  display: inherit;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 80px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  font-weight: normal;
  width: 80px;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon1,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon1,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon1,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon1 {
  background-color: rgba(0, 0, 0, 0.3);
  color: #000000;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon2,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon2,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon2,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon2 {
  background-color: rgba(4, 4, 4, 0.3);
  color: #040404;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon3,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon3,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon3,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon3 {
  background-color: rgba(4, 4, 4, 0.3);
  color: #040404;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon4,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon4,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon4,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon4 {
  background-color: rgba(4, 4, 4, 0.3);
  color: #040404;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container .step,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step {
  position: absolute;
  bottom: -3px;
  left: 11px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 11px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_1,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_1,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_1,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_1 {
  background: #000000;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_2,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_2,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_2,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_2 {
  background: #040404;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_3,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_3,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_3,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_3 {
  background: #040404;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_4,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_4,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_4,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_4 {
  background: #040404;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .subicon-title,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .subicon-title {
  color: #404040;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .subicon-text,
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon-without-before .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #606060;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cid-svew2DCkIA .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-svew2DCkIA .third-elem .wrapper:before {
    display: none;
  }
}
.cid-svew2DCkIA .main-wrapper .icon-main .process-icon .subicon-title {
  color: #102f62;
}
.cid-svew2DCkIA .mbr-section-title,
.cid-svew2DCkIA .underline {
  color: #606060;
}
.cid-slwxxQwsql.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQwsql.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQwsql.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQwsql .modal-content,
.cid-slwxxQwsql .modal-dialog {
  height: auto;
}
.cid-slwxxQwsql .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQwsql .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQwsql .form-wrapper .mbr-form .form-group,
  .cid-slwxxQwsql .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQwsql .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQwsql .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQwsql .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQwsql .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQwsql .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQwsql .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQwsql .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQwsql .modal-open {
  overflow: hidden;
}
.cid-slwxxQwsql .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQwsql .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQwsql .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQwsql .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQwsql .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQwsql .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQwsql .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQwsql .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQwsql .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQwsql .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQwsql .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQwsql .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQwsql .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQwsql .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQwsql .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQwsql .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQwsql .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQwsql .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQwsql .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQwsql .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQwsql .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQwsql .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQwsql .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQwsql .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQwsql .modal-lg,
  .cid-slwxxQwsql .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQwsql .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQwsql .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQwsql .container {
    max-width: 1140px;
  }
}
.cid-slwxxQwsql .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQwsql .container {
    max-width: 720px;
  }
}
.cid-slwxxQwsql .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQwsql .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQwsql .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQwsql .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQwsql .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQwsql .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQwsql .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMM2U1.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMM2U1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMM2U1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMM2U1 .modal-content,
.cid-slwygMM2U1 .modal-dialog {
  height: auto;
}
.cid-slwygMM2U1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMM2U1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMM2U1 .form-wrapper .mbr-form .form-group,
  .cid-slwygMM2U1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMM2U1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMM2U1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMM2U1 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMM2U1 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMM2U1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMM2U1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMM2U1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMM2U1 .modal-open {
  overflow: hidden;
}
.cid-slwygMM2U1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMM2U1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMM2U1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMM2U1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMM2U1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMM2U1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMM2U1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMM2U1 .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMM2U1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMM2U1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMM2U1 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMM2U1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMM2U1 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMM2U1 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMM2U1 .modal-header .close:focus {
  outline: none;
}
.cid-slwygMM2U1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMM2U1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMM2U1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMM2U1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMM2U1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMM2U1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMM2U1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMM2U1 .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMM2U1 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMM2U1 .modal-lg,
  .cid-slwygMM2U1 .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMM2U1 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMM2U1 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMM2U1 .container {
    max-width: 1140px;
  }
}
.cid-slwygMM2U1 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMM2U1 .container {
    max-width: 720px;
  }
}
.cid-slwygMM2U1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMM2U1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMM2U1 .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMM2U1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMM2U1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMM2U1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMM2U1 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slAQy1WmQJ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAQy1WmQJ ul {
  padding: 0;
  margin: 0;
}
.cid-slAQy1WmQJ ul li {
  list-style: none;
}
.cid-slAQy1WmQJ ul li h4 {
  margin: 0;
}
.cid-slAQy1WmQJ ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAQy1WmQJ .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAQy1WmQJ .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAQy1WmQJ .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAQy1WmQJ .col-title1 {
  margin-bottom: 40px;
}
.cid-slAQy1WmQJ .form-group,
.cid-slAQy1WmQJ .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAQy1WmQJ .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAQy1WmQJ .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAQy1WmQJ .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAQy1WmQJ .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAQy1WmQJ .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAQy1WmQJ .col + .mbr-section-btn .btn,
.cid-slAQy1WmQJ .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAQy1WmQJ .col + .mbr-section-btn .btn.display-4,
.cid-slAQy1WmQJ .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAQy1WmQJ .col + .mbr-section-btn .btn:hover,
.cid-slAQy1WmQJ .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAQy1WmQJ .dragArea > *:nth-last-child(2).col,
.cid-slAQy1WmQJ .dragArea > *:nth-last-child(2).col-auto,
.cid-slAQy1WmQJ .col + .mbr-section-btn,
.cid-slAQy1WmQJ .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAQy1WmQJ .form1 {
  margin-top: 30px;
}
.cid-slAQy1WmQJ .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAQy1WmQJ .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAQy1WmQJ .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-sltMoCIBpU .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-sltMoCIBpU .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-sltMoCIBpU .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-sltMoCIBpU .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sltMoCIBpU .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sltMoCIBpU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sltMoCIBpU .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sltMoCIBpU .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-sltMoCIBpU .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sltMoCIBpU .navbar.collapsed {
  flex-direction: row !important;
}
.cid-sltMoCIBpU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sltMoCIBpU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-sltMoCIBpU .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sltMoCIBpU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sltMoCIBpU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sltMoCIBpU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sltMoCIBpU .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-sltMoCIBpU .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sltMoCIBpU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sltMoCIBpU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-sltMoCIBpU .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-sltMoCIBpU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sltMoCIBpU .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sltMoCIBpU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sltMoCIBpU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sltMoCIBpU .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sltMoCIBpU .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-sltMoCIBpU .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sltMoCIBpU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sltMoCIBpU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sltMoCIBpU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-sltMoCIBpU .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sltMoCIBpU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sltMoCIBpU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sltMoCIBpU .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-sltMoCIBpU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sltMoCIBpU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sltMoCIBpU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sltMoCIBpU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sltMoCIBpU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sltMoCIBpU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sltMoCIBpU .dropdown-item.active,
.cid-sltMoCIBpU .dropdown-item:active {
  background-color: transparent;
}
.cid-sltMoCIBpU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sltMoCIBpU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sltMoCIBpU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sltMoCIBpU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-sltMoCIBpU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sltMoCIBpU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sltMoCIBpU ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sltMoCIBpU .navbar-buttons {
  text-align: left;
}
.cid-sltMoCIBpU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-sltMoCIBpU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sltMoCIBpU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sltMoCIBpU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sltMoCIBpU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sltMoCIBpU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sltMoCIBpU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sltMoCIBpU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sltMoCIBpU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sltMoCIBpU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sltMoCIBpU .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sltMoCIBpU a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-sltMoCIBpU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sltMoCIBpU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-sltMoCIBpU .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sltMoCIBpU .nav-link:hover,
.cid-sltMoCIBpU .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sWyyvGWAqx {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #f9fafb;
}
.cid-sWyyvGWAqx .card {
  background: #ffffff;
  border-radius: 10px;
}
.cid-sWyyvGWAqx img {
  width: 100%;
  border-radius: 10px;
}
.cid-sWyyvGWAqx .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-sWyyvGWAqx .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sWyyvGWAqx .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-sWyyvGWAqx img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-sWyyvGWAqx .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-sWyyvGWAqx img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sWyyvGWAqx img {
    width: 100%;
  }
}
.cid-sWyyvGWAqx .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sWyyvGWAqx .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWyyvGWAqx .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #eff1f5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-sWyyvGWAqx .mbr-text,
.cid-sWyyvGWAqx .mbr-section-btn {
  color: #878787;
}
.cid-sWyyvGWAqx .mbr-section-subtitle {
  color: #000000;
}
.cid-sWyyvGWAqx .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWyyvGWAqx .mbr-section-title {
  color: #4f5b5f;
}
.cid-sy9DDWrotd.popup-builder {
  background-color: #ffffff;
}
.cid-sy9DDWrotd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sy9DDWrotd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sy9DDWrotd .modal-content,
.cid-sy9DDWrotd .modal-dialog {
  height: auto;
}
.cid-sy9DDWrotd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sy9DDWrotd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sy9DDWrotd .form-wrapper .mbr-form .form-group,
  .cid-sy9DDWrotd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sy9DDWrotd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sy9DDWrotd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sy9DDWrotd .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sy9DDWrotd .pt-0 {
  padding-top: 0 !important;
}
.cid-sy9DDWrotd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sy9DDWrotd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sy9DDWrotd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sy9DDWrotd .modal-open {
  overflow: hidden;
}
.cid-sy9DDWrotd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sy9DDWrotd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sy9DDWrotd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sy9DDWrotd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sy9DDWrotd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sy9DDWrotd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sy9DDWrotd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sy9DDWrotd .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sy9DDWrotd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sy9DDWrotd .modal-backdrop.fade {
  opacity: 0;
}
.cid-sy9DDWrotd .modal-backdrop.show {
  opacity: .5;
}
.cid-sy9DDWrotd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sy9DDWrotd .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sy9DDWrotd .modal-header .close:hover {
  opacity: 1;
}
.cid-sy9DDWrotd .modal-header .close:focus {
  outline: none;
}
.cid-sy9DDWrotd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sy9DDWrotd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sy9DDWrotd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sy9DDWrotd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sy9DDWrotd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sy9DDWrotd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sy9DDWrotd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sy9DDWrotd .modal-sm {
    max-width: 300px;
  }
  .cid-sy9DDWrotd .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sy9DDWrotd .modal-lg,
  .cid-sy9DDWrotd .modal-xl {
    max-width: 800px;
  }
  .cid-sy9DDWrotd .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sy9DDWrotd .modal-xl {
    max-width: 1140px;
  }
  .cid-sy9DDWrotd .container {
    max-width: 1140px;
  }
}
.cid-sy9DDWrotd .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sy9DDWrotd .container {
    max-width: 720px;
  }
}
.cid-sy9DDWrotd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sy9DDWrotd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sy9DDWrotd .form-group {
  margin-bottom: 1rem;
}
.cid-sy9DDWrotd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sy9DDWrotd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sy9DDWrotd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sxikYT2l9T .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxikYT2l9T .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxikYT2l9T .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxikYT2l9T .hidden {
  display: none;
}
.cid-sxikYT2l9T H10 {
  color: #767676;
}
.cid-sXfG9kiZvc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sXfG9kiZvc [class^="socicon-"]:before,
.cid-sXfG9kiZvc [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sXfG9kiZvc .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sXfG9kiZvc .soc-item {
  width: 50px;
  height: 50px;
  background: #ebebe8;
  border-radius: 20%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  box-shadow: 0 10px 15px rgba(199, 199, 191, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sXfG9kiZvc .soc-item span {
  font-size: 1.4rem;
  color: #999999 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sXfG9kiZvc .soc-item:hover span {
  color: #1b2026 !important;
}
.cid-sWXPSz8pnf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-sWXPSz8pnf .row {
  background: #ffffff;
  padding: 3rem 2rem;
  margin: 0rem;
}
@media (max-width: 767px) {
  .cid-sWXPSz8pnf .row {
    padding: 1rem 0rem;
  }
}
.cid-sWXPSz8pnf img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-sWXPSz8pnf img {
    width: 100%;
  }
}
.cid-sWXPSz8pnf .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sWXPSz8pnf .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWXPSz8pnf .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #f3f4f7;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
  content: "✓";
}
.cid-sWXPSz8pnf .mbr-text,
.cid-sWXPSz8pnf .mbr-section-btn {
  color: #606060;
}
.cid-sWXPSz8pnf .mbr-section-subtitle {
  color: #777777;
}
.cid-sWXPSz8pnf .mbr-list {
  color: #606060;
}
.cid-sWXPSz8pnf .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWXPSz8pnf .mbr-section-title {
  color: #4f5b5f;
}
.cid-sy9EXSekHZ {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sy9EXSekHZ .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #999999;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 20px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-sy9EXSekHZ .card-link,
.cid-sy9EXSekHZ .link-wrap,
.cid-sy9EXSekHZ .card-link:before {
  color: #121212;
  text-align: center;
}
.cid-sy9EXSekHZ .card-wrapper {
  overflow: visible;
}
.cid-sy9EXSekHZ .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-sy9EXSekHZ .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-sy9EXSekHZ .card-link:hover {
  color: #848abd;
  transition: all 0.3s;
}
.cid-sy9EXSekHZ .card-link:hover:before {
  right: -2rem;
  color: #848abd;
  transition: all 0.3s;
}
.cid-sy9EXSekHZ .card-text {
  color: #454545;
}
.cid-sy9EXSekHZ .card-title,
.cid-sy9EXSekHZ .icon-wrap {
  color: #737373;
  text-align: center;
}
.cid-sy9EXSekHZ .mbr-section-title {
  color: #606060;
}
.cid-sltNadEtS6.popup-builder {
  background-color: #ffffff;
}
.cid-sltNadEtS6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sltNadEtS6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sltNadEtS6 .modal-content,
.cid-sltNadEtS6 .modal-dialog {
  height: auto;
}
.cid-sltNadEtS6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sltNadEtS6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sltNadEtS6 .form-wrapper .mbr-form .form-group,
  .cid-sltNadEtS6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sltNadEtS6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sltNadEtS6 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sltNadEtS6 .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sltNadEtS6 .pt-0 {
  padding-top: 0 !important;
}
.cid-sltNadEtS6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sltNadEtS6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sltNadEtS6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sltNadEtS6 .modal-open {
  overflow: hidden;
}
.cid-sltNadEtS6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sltNadEtS6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sltNadEtS6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sltNadEtS6 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sltNadEtS6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sltNadEtS6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sltNadEtS6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sltNadEtS6 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sltNadEtS6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sltNadEtS6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sltNadEtS6 .modal-backdrop.show {
  opacity: .5;
}
.cid-sltNadEtS6 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sltNadEtS6 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sltNadEtS6 .modal-header .close:hover {
  opacity: 1;
}
.cid-sltNadEtS6 .modal-header .close:focus {
  outline: none;
}
.cid-sltNadEtS6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #000000;
}
.cid-sltNadEtS6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sltNadEtS6 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sltNadEtS6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sltNadEtS6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sltNadEtS6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sltNadEtS6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sltNadEtS6 .modal-sm {
    max-width: 300px;
  }
  .cid-sltNadEtS6 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sltNadEtS6 .modal-lg,
  .cid-sltNadEtS6 .modal-xl {
    max-width: 800px;
  }
  .cid-sltNadEtS6 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sltNadEtS6 .modal-xl {
    max-width: 1140px;
  }
  .cid-sltNadEtS6 .container {
    max-width: 1140px;
  }
}
.cid-sltNadEtS6 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sltNadEtS6 .container {
    max-width: 720px;
  }
}
.cid-sltNadEtS6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sltNadEtS6 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sltNadEtS6 .form-group {
  margin-bottom: 1rem;
}
.cid-sltNadEtS6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sltNadEtS6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sltNadEtS6 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-suJ564q9gj {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-suJ564q9gj .title__block {
  margin-bottom: 55px;
}
.cid-suJ564q9gj .mbr-section-title {
  margin-bottom: 16px;
  color: #4f5b5f;
}
.cid-suJ564q9gj .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-suJ564q9gj .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-suJ564q9gj .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-suJ564q9gj .card__content {
  display: block;
  width: 100%;
}
.cid-suJ564q9gj .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  color: #000000;
}
.cid-suJ564q9gj .card__text {
  margin-bottom: 0;
  color: #606060;
}
@media (max-width: 991px) {
  .cid-suJ564q9gj .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-suJ564q9gj .card__wrap {
    margin-bottom: 40px;
  }
  .cid-suJ564q9gj .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-suJ564q9gj .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-suJ564q9gj .card__image {
    max-width: 90px;
  }
  .cid-suJ564q9gj .card__image img {
    width: 70%;
  }
}
.cid-svdGhMkOaU {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1920x1190.jpg");
}
.cid-svdGhMkOaU .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-svdGhMkOaU .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-svdGhMkOaU .mbr-section-btn {
  margin-top: 45px;
}
.cid-svdGhMkOaU .mbr-section-btn .btn {
  height: 60px;
  font-weight: 500;
}
.cid-svdGhMkOaU img {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-svdGhMkOaU .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-svdGhMkOaU .mbr-section-btn .btn {
    height: 50px;
  }
  .cid-svdGhMkOaU .mbr-text {
    margin-top: 10px;
  }
}
.cid-svdGhMkOaU .mbr-text,
.cid-svdGhMkOaU .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-svdGhMkOaU .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-syfxwSL6Sl {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #f9fafb;
}
.cid-syfxwSL6Sl .container-fluid {
  padding: 0 3rem;
}
.cid-syfxwSL6Sl .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #848abd, #0e569e);
  display: inline-block;
}
.cid-syfxwSL6Sl .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-syfxwSL6Sl .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-syfxwSL6Sl .card .card-wrapper {
  height: 1%;
}
.cid-syfxwSL6Sl .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-syfxwSL6Sl .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-syfxwSL6Sl .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-syfxwSL6Sl .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-syfxwSL6Sl .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-syfxwSL6Sl .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syfxwSL6Sl .mbr-section-title,
.cid-syfxwSL6Sl .underline {
  text-align: center;
  color: #4f5b5f;
}
.cid-syfxwSL6Sl .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-syfxxIDxNM {
  padding-top: 5px;
  padding-bottom: 35px;
  background-color: #f9fafb;
}
.cid-syfxxIDxNM .container-fluid {
  padding: 0 3rem;
}
.cid-syfxxIDxNM .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #848abd, #0e569e);
  display: inline-block;
}
.cid-syfxxIDxNM .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-syfxxIDxNM .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-syfxxIDxNM .card .card-wrapper {
  height: 1%;
}
.cid-syfxxIDxNM .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-syfxxIDxNM .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-syfxxIDxNM .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-syfxxIDxNM .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-syfxxIDxNM .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-syfxxIDxNM .container-fluid {
    padding: 0 1rem;
  }
}
.cid-syfxxIDxNM .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwxxQw6UV.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQw6UV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQw6UV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQw6UV .modal-content,
.cid-slwxxQw6UV .modal-dialog {
  height: auto;
}
.cid-slwxxQw6UV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQw6UV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQw6UV .form-wrapper .mbr-form .form-group,
  .cid-slwxxQw6UV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQw6UV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQw6UV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQw6UV .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQw6UV .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQw6UV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQw6UV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQw6UV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQw6UV .modal-open {
  overflow: hidden;
}
.cid-slwxxQw6UV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQw6UV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQw6UV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQw6UV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQw6UV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQw6UV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQw6UV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQw6UV .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQw6UV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQw6UV .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQw6UV .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQw6UV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQw6UV .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQw6UV .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQw6UV .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQw6UV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQw6UV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQw6UV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQw6UV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQw6UV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQw6UV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQw6UV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQw6UV .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQw6UV .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQw6UV .modal-lg,
  .cid-slwxxQw6UV .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQw6UV .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQw6UV .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQw6UV .container {
    max-width: 1140px;
  }
}
.cid-slwxxQw6UV .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQw6UV .container {
    max-width: 720px;
  }
}
.cid-slwxxQw6UV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQw6UV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQw6UV .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQw6UV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQw6UV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQw6UV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQw6UV .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMMaKW.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMMaKW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMMaKW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMMaKW .modal-content,
.cid-slwygMMaKW .modal-dialog {
  height: auto;
}
.cid-slwygMMaKW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMMaKW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMMaKW .form-wrapper .mbr-form .form-group,
  .cid-slwygMMaKW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMMaKW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMMaKW .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMMaKW .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMMaKW .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMMaKW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMMaKW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMMaKW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMMaKW .modal-open {
  overflow: hidden;
}
.cid-slwygMMaKW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMMaKW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMMaKW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMMaKW .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMMaKW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMMaKW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMMaKW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMMaKW .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMMaKW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMMaKW .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMMaKW .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMMaKW .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMMaKW .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMMaKW .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMMaKW .modal-header .close:focus {
  outline: none;
}
.cid-slwygMMaKW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMMaKW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMMaKW .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMMaKW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMMaKW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMMaKW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMMaKW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMMaKW .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMMaKW .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMMaKW .modal-lg,
  .cid-slwygMMaKW .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMMaKW .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMMaKW .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMMaKW .container {
    max-width: 1140px;
  }
}
.cid-slwygMMaKW .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMMaKW .container {
    max-width: 720px;
  }
}
.cid-slwygMMaKW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMMaKW .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMMaKW .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMMaKW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMMaKW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMMaKW .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMMaKW .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slAQDSScNO {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAQDSScNO ul {
  padding: 0;
  margin: 0;
}
.cid-slAQDSScNO ul li {
  list-style: none;
}
.cid-slAQDSScNO ul li h4 {
  margin: 0;
}
.cid-slAQDSScNO ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAQDSScNO .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAQDSScNO .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAQDSScNO .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAQDSScNO .col-title1 {
  margin-bottom: 40px;
}
.cid-slAQDSScNO .form-group,
.cid-slAQDSScNO .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAQDSScNO .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAQDSScNO .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAQDSScNO .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAQDSScNO .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAQDSScNO .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAQDSScNO .col + .mbr-section-btn .btn,
.cid-slAQDSScNO .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAQDSScNO .col + .mbr-section-btn .btn.display-4,
.cid-slAQDSScNO .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAQDSScNO .col + .mbr-section-btn .btn:hover,
.cid-slAQDSScNO .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAQDSScNO .dragArea > *:nth-last-child(2).col,
.cid-slAQDSScNO .dragArea > *:nth-last-child(2).col-auto,
.cid-slAQDSScNO .col + .mbr-section-btn,
.cid-slAQDSScNO .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAQDSScNO .form1 {
  margin-top: 30px;
}
.cid-slAQDSScNO .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAQDSScNO .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAQDSScNO .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-sltYSOdnKu .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-sltYSOdnKu .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-sltYSOdnKu .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-sltYSOdnKu .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sltYSOdnKu .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sltYSOdnKu .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sltYSOdnKu .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sltYSOdnKu .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-sltYSOdnKu .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sltYSOdnKu .navbar.collapsed {
  flex-direction: row !important;
}
.cid-sltYSOdnKu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sltYSOdnKu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-sltYSOdnKu .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sltYSOdnKu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sltYSOdnKu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sltYSOdnKu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sltYSOdnKu .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-sltYSOdnKu .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sltYSOdnKu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sltYSOdnKu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-sltYSOdnKu .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-sltYSOdnKu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sltYSOdnKu .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sltYSOdnKu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sltYSOdnKu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sltYSOdnKu .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sltYSOdnKu .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-sltYSOdnKu .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sltYSOdnKu .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sltYSOdnKu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sltYSOdnKu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-sltYSOdnKu .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sltYSOdnKu .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sltYSOdnKu .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sltYSOdnKu .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-sltYSOdnKu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sltYSOdnKu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sltYSOdnKu .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sltYSOdnKu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sltYSOdnKu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sltYSOdnKu .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sltYSOdnKu .dropdown-item.active,
.cid-sltYSOdnKu .dropdown-item:active {
  background-color: transparent;
}
.cid-sltYSOdnKu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sltYSOdnKu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sltYSOdnKu .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sltYSOdnKu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-sltYSOdnKu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sltYSOdnKu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sltYSOdnKu ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sltYSOdnKu .navbar-buttons {
  text-align: left;
}
.cid-sltYSOdnKu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-sltYSOdnKu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sltYSOdnKu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sltYSOdnKu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sltYSOdnKu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sltYSOdnKu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sltYSOdnKu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sltYSOdnKu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sltYSOdnKu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sltYSOdnKu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sltYSOdnKu .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sltYSOdnKu a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-sltYSOdnKu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sltYSOdnKu .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-sltYSOdnKu .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sltYSOdnKu .nav-link:hover,
.cid-sltYSOdnKu .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sxB1LRpww6 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #f9fafb;
}
.cid-sxB1LRpww6 .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #ffffff;
}
.cid-sxB1LRpww6 img {
  width: 100%;
  box-shadow: 10px 20px 60px 0px white;
  border-radius: 26px;
}
.cid-sxB1LRpww6 p {
  margin-top: 6rem;
}
.cid-sxB1LRpww6 .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sxB1LRpww6 .content-wrapper {
  padding-top: 6rem;
}
.cid-sxB1LRpww6 h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 6rem;
  transform: rotate(270deg);
  transform-origin: bottom left;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sxB1LRpww6 .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sxB1LRpww6 p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sxB1LRpww6 .back {
    width: 100%;
    height: 75%;
  }
  .cid-sxB1LRpww6 .content-wrapper {
    padding: 0 3rem;
    padding-bottom: 4rem;
  }
  .cid-sxB1LRpww6 .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-sxB1LRpww6 p {
    margin-top: 4rem;
  }
}
.cid-sxB1LRpww6 .content-wrapper {
  padding-left: 8rem;
}
@media (max-width: 767px) {
  .cid-sxB1LRpww6 .content-wrapper {
    padding: 0rem;
    padding-bottom: 4rem;
  }
  .cid-sxB1LRpww6 .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-sxB1LRpww6 .content-wrapper {
    padding-left: 3rem;
  }
  .cid-sxB1LRpww6 h4 {
    left: 2rem;
  }
}
.cid-sxB1LRpww6 .mbr-text,
.cid-sxB1LRpww6 .mbr-section-btn {
  color: #4f5b5f;
  text-align: center;
}
.cid-sxB1LRpww6 H1 {
  color: #4f5b5f;
  text-align: center;
}
.cid-sxB1LRpww6 H3 {
  color: #999999;
  text-align: center;
}
.cid-sxB1LRpww6 H4 {
  text-align: left;
  color: #999999;
}
.cid-sxB1LRpww6 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxim2QSeG3 .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxim2QSeG3 .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxim2QSeG3 .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxim2QSeG3 .hidden {
  display: none;
}
.cid-sxim2QSeG3 H10 {
  color: #767676;
}
.cid-sxB7cCr3jO.popup-builder {
  background-color: #ffffff;
}
.cid-sxB7cCr3jO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxB7cCr3jO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxB7cCr3jO .modal-content,
.cid-sxB7cCr3jO .modal-dialog {
  height: auto;
}
.cid-sxB7cCr3jO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxB7cCr3jO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxB7cCr3jO .form-wrapper .mbr-form .form-group,
  .cid-sxB7cCr3jO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxB7cCr3jO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxB7cCr3jO .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxB7cCr3jO .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sxB7cCr3jO .pt-0 {
  padding-top: 0 !important;
}
.cid-sxB7cCr3jO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxB7cCr3jO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxB7cCr3jO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxB7cCr3jO .modal-open {
  overflow: hidden;
}
.cid-sxB7cCr3jO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxB7cCr3jO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxB7cCr3jO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxB7cCr3jO .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxB7cCr3jO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxB7cCr3jO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxB7cCr3jO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxB7cCr3jO .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxB7cCr3jO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxB7cCr3jO .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxB7cCr3jO .modal-backdrop.show {
  opacity: .5;
}
.cid-sxB7cCr3jO .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxB7cCr3jO .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxB7cCr3jO .modal-header .close:hover {
  opacity: 1;
}
.cid-sxB7cCr3jO .modal-header .close:focus {
  outline: none;
}
.cid-sxB7cCr3jO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sxB7cCr3jO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxB7cCr3jO .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxB7cCr3jO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxB7cCr3jO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxB7cCr3jO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxB7cCr3jO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxB7cCr3jO .modal-sm {
    max-width: 300px;
  }
  .cid-sxB7cCr3jO .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxB7cCr3jO .modal-lg,
  .cid-sxB7cCr3jO .modal-xl {
    max-width: 800px;
  }
  .cid-sxB7cCr3jO .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxB7cCr3jO .modal-xl {
    max-width: 1140px;
  }
  .cid-sxB7cCr3jO .container {
    max-width: 1140px;
  }
}
.cid-sxB7cCr3jO .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxB7cCr3jO .container {
    max-width: 720px;
  }
}
.cid-sxB7cCr3jO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxB7cCr3jO .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxB7cCr3jO .form-group {
  margin-bottom: 1rem;
}
.cid-sxB7cCr3jO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxB7cCr3jO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxB7cCr3jO .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sXePFoso4I {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}
.cid-sXePFoso4I .card {
  background: #ffffff;
  border-radius: 10px;
}
.cid-sXePFoso4I img {
  width: 100%;
  border-radius: 10px;
}
.cid-sXePFoso4I .wrapper {
  padding: 1rem 1rem;
}
@media (max-width: 767px) {
  .cid-sXePFoso4I .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sXePFoso4I .wrapper {
    max-width: 530px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-sXePFoso4I img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-sXePFoso4I .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-sXePFoso4I img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sXePFoso4I img {
    width: 100%;
  }
}
.cid-sXePFoso4I .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sXePFoso4I .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sXePFoso4I .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-sXePFoso4I .mbr-text,
.cid-sXePFoso4I .mbr-section-btn {
  color: #d75959;
}
.cid-sXePFoso4I .mbr-section-subtitle {
  color: #777777;
}
.cid-sXePFoso4I .mbr-section-title {
  color: #4f5b5f;
}
.cid-sXePFoso4I .mbr-list {
  color: #4f5b5f;
}
.cid-sXeLhGjUPc {
  padding-top: 105px;
  padding-bottom: 105px;
  position: relative;
  background-color: #ffffff;
}
.cid-sXeLhGjUPc .card-header {
  background: transparent;
}
.cid-sXeLhGjUPc img {
  width: 90%;
  box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0);
  margin: auto;
}
@media (max-width: 992px) {
  .cid-sXeLhGjUPc .wrapper {
    padding: 0;
  }
  .cid-sXeLhGjUPc img {
    width: 100%;
    padding: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-sXeLhGjUPc .mbr-iconfont {
  font-size: 1rem !important;
  font-family: "Moririse2" !important;
}
.cid-sXeLhGjUPc .mbr-iconfont:before {
  content: "\e960";
}
.cid-sXeLhGjUPc .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sXeLhGjUPc .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sXeLhGjUPc .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sXeLhGjUPc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sXeLhGjUPc .card .card-header a.panel-title h5 .sign {
  padding-right: 1rem;
}
.cid-sXeLhGjUPc .card .panel-body {
  color: #767676;
  padding-top: 1rem;
}
.cid-sXeLhGjUPc h5 {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0rem;
  border-bottom: 1px solid #bbbbbb;
  padding: 1rem 0rem;
}
@media (max-width: 767px) {
  .cid-sXeLhGjUPc .wrapper {
    padding: 2rem 1rem;
  }
  .cid-sXeLhGjUPc h5 {
    padding: 1rem 0rem;
  }
}
.cid-sXeLhGjUPc .mbr-text,
.cid-sXeLhGjUPc .mbr-section-btn {
  color: #ffffff;
}
.cid-sXeLhGjUPc .panel-text {
  color: #555555;
}
.cid-sXeLhGjUPc H4 {
  color: #ffffff;
}
.cid-sXeLhGjUPc H5 {
  color: #404040;
}
.cid-sXeLhGjUPc H3 {
  color: #404040;
}
.cid-slwokYQokM.popup-builder {
  background-color: #ffffff;
}
.cid-slwokYQokM.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwokYQokM.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwokYQokM .modal-content,
.cid-slwokYQokM .modal-dialog {
  height: auto;
}
.cid-slwokYQokM .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwokYQokM .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwokYQokM .form-wrapper .mbr-form .form-group,
  .cid-slwokYQokM .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwokYQokM .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwokYQokM .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwokYQokM .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-slwokYQokM .pt-0 {
  padding-top: 0 !important;
}
.cid-slwokYQokM .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwokYQokM .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwokYQokM .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwokYQokM .modal-open {
  overflow: hidden;
}
.cid-slwokYQokM .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwokYQokM .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwokYQokM .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwokYQokM .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwokYQokM .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwokYQokM .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwokYQokM .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwokYQokM .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwokYQokM .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwokYQokM .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwokYQokM .modal-backdrop.show {
  opacity: .5;
}
.cid-slwokYQokM .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwokYQokM .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwokYQokM .modal-header .close:hover {
  opacity: 1;
}
.cid-slwokYQokM .modal-header .close:focus {
  outline: none;
}
.cid-slwokYQokM .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-slwokYQokM .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwokYQokM .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwokYQokM .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwokYQokM .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwokYQokM .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwokYQokM .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwokYQokM .modal-sm {
    max-width: 300px;
  }
  .cid-slwokYQokM .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwokYQokM .modal-lg,
  .cid-slwokYQokM .modal-xl {
    max-width: 800px;
  }
  .cid-slwokYQokM .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwokYQokM .modal-xl {
    max-width: 1140px;
  }
  .cid-slwokYQokM .container {
    max-width: 1140px;
  }
}
.cid-slwokYQokM .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwokYQokM .container {
    max-width: 720px;
  }
}
.cid-slwokYQokM .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwokYQokM .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwokYQokM .form-group {
  margin-bottom: 1rem;
}
.cid-slwokYQokM .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwokYQokM .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwokYQokM .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sltYSRUIfy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-sltYSRUIfy .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 20rem;
}
.cid-sltYSRUIfy .row {
  flex-direction: row-reverse;
}
.cid-sltYSRUIfy img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-sltYSRUIfy .container-fluid {
  padding: 0 !important;
}
.cid-svdZNRSNoZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9fafb;
}
.cid-svdZNRSNoZ .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #848abd;
  background-color: rgba(92, 167, 219, 0.15);
  margin-bottom: 16px;
}
.cid-svdZNRSNoZ .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-svdZNRSNoZ .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-svdZNRSNoZ .main-title.display-2 {
  line-height: 1.375;
}
.cid-svdZNRSNoZ .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-svdZNRSNoZ .mbr-text {
  color: #606060;
}
.cid-svdZNRSNoZ .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-svdZNRSNoZ .mbr-section-btn {
  margin-top: 24px;
}
.cid-svdZNRSNoZ .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-svdZNRSNoZ .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-svdZNRSNoZ .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-svdZNRSNoZ .mbr-section-subtitle,
.cid-svdZNRSNoZ .mbr-section-btn {
  color: #4f5b5f;
}
.cid-svdZNRSNoZ .main-title,
.cid-svdZNRSNoZ .mbr-section-btn {
  color: #4f5b5f;
}
.cid-svdZNRSNoZ .badge,
.cid-svdZNRSNoZ .badge_wrap,
.cid-svdZNRSNoZ .mbr-section-btn {
  color: #4f5b5f;
}
.cid-svdZNRSNoZ .mbr-text,
.cid-svdZNRSNoZ .mbr-section-btn {
  color: #4f5b5f;
}
.cid-svdZNRSNoZ .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxtG7dOVT5 {
  background-color: #f9fafb;
}
.cid-sxtG7dOVT5 .wave1 {
  fill: #ffffff;
}
.cid-sxtG7dOVT5 .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-sxtG7dOVT5 .wave3,
.cid-sxtG7dOVT5 .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-suPiPdUynq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-suPiPdUynq .title__block {
  margin-bottom: 55px;
}
.cid-suPiPdUynq .mbr-section-title {
  margin-bottom: 16px;
  color: #606060;
}
.cid-suPiPdUynq .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-suPiPdUynq .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-suPiPdUynq .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-suPiPdUynq .card__content {
  display: block;
  width: 100%;
}
.cid-suPiPdUynq .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  color: #000000;
}
.cid-suPiPdUynq .card__text {
  margin-bottom: 0;
  color: #878787;
}
@media (max-width: 991px) {
  .cid-suPiPdUynq .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-suPiPdUynq .card__wrap {
    margin-bottom: 40px;
  }
  .cid-suPiPdUynq .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-suPiPdUynq .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-suPiPdUynq .card__image {
    max-width: 90px;
  }
  .cid-suPiPdUynq .card__image img {
    width: 70%;
  }
}
.cid-sy8YicGpqK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9fafb;
}
.cid-sy8YicGpqK .container-fluid {
  padding: 0 3rem;
}
.cid-sy8YicGpqK .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #848abd, #0e569e);
  display: inline-block;
}
.cid-sy8YicGpqK .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-sy8YicGpqK .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sy8YicGpqK .card .card-wrapper {
  height: 1%;
}
.cid-sy8YicGpqK .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-sy8YicGpqK .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sy8YicGpqK .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-sy8YicGpqK .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sy8YicGpqK .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-sy8YicGpqK .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sy8YicGpqK .mbr-section-title,
.cid-sy8YicGpqK .underline {
  text-align: center;
  color: #606060;
}
.cid-sy8YicGpqK .img-text {
  text-align: left;
}
.cid-sy8YicGpqK .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sy8YicGpqK .mbr-card-text,
.cid-sy8YicGpqK .mbr-section-btn {
  color: #606060;
}
.cid-svdZXTiJda {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-svdZXTiJda .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 0;
  color: #404040;
}
.cid-svdZXTiJda .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-svdZXTiJda .mbr-section-btn {
  margin-top: 45px;
}
.cid-svdZXTiJda .mbr-section-btn .btn {
  height: 60px;
  font-weight: 500;
}
.cid-svdZXTiJda img {
  width: 280px;
  height: 140px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 10px 10px #f6f6f6;
}
@media (max-width: 767px) {
  .cid-svdZXTiJda .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-svdZXTiJda .mbr-section-btn .btn {
    height: 50px;
  }
  .cid-svdZXTiJda .mbr-text {
    margin-top: 10px;
  }
}
.cid-svdZXTiJda .mbr-text,
.cid-svdZXTiJda .mbr-section-btn {
  color: #4f5b5f;
}
.cid-svdZXTiJda .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwxxQxKHE.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQxKHE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQxKHE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQxKHE .modal-content,
.cid-slwxxQxKHE .modal-dialog {
  height: auto;
}
.cid-slwxxQxKHE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQxKHE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQxKHE .form-wrapper .mbr-form .form-group,
  .cid-slwxxQxKHE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQxKHE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQxKHE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQxKHE .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQxKHE .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQxKHE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQxKHE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQxKHE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQxKHE .modal-open {
  overflow: hidden;
}
.cid-slwxxQxKHE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQxKHE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQxKHE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQxKHE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQxKHE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQxKHE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQxKHE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQxKHE .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQxKHE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQxKHE .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQxKHE .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQxKHE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQxKHE .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQxKHE .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQxKHE .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQxKHE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQxKHE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQxKHE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQxKHE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQxKHE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQxKHE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQxKHE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQxKHE .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQxKHE .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQxKHE .modal-lg,
  .cid-slwxxQxKHE .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQxKHE .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQxKHE .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQxKHE .container {
    max-width: 1140px;
  }
}
.cid-slwxxQxKHE .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQxKHE .container {
    max-width: 720px;
  }
}
.cid-slwxxQxKHE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQxKHE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQxKHE .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQxKHE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQxKHE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQxKHE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQxKHE .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMMt4U.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMMt4U.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMMt4U.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMMt4U .modal-content,
.cid-slwygMMt4U .modal-dialog {
  height: auto;
}
.cid-slwygMMt4U .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMMt4U .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMMt4U .form-wrapper .mbr-form .form-group,
  .cid-slwygMMt4U .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMMt4U .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMMt4U .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMMt4U .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMMt4U .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMMt4U .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMMt4U .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMMt4U .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMMt4U .modal-open {
  overflow: hidden;
}
.cid-slwygMMt4U .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMMt4U .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMMt4U .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMMt4U .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMMt4U .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMMt4U .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMMt4U .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMMt4U .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMMt4U .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMMt4U .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMMt4U .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMMt4U .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMMt4U .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMMt4U .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMMt4U .modal-header .close:focus {
  outline: none;
}
.cid-slwygMMt4U .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMMt4U .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMMt4U .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMMt4U .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMMt4U .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMMt4U .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMMt4U .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMMt4U .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMMt4U .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMMt4U .modal-lg,
  .cid-slwygMMt4U .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMMt4U .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMMt4U .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMMt4U .container {
    max-width: 1140px;
  }
}
.cid-slwygMMt4U .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMMt4U .container {
    max-width: 720px;
  }
}
.cid-slwygMMt4U .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMMt4U .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMMt4U .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMMt4U .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMMt4U .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMMt4U .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMMt4U .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slAQGGcii6 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAQGGcii6 ul {
  padding: 0;
  margin: 0;
}
.cid-slAQGGcii6 ul li {
  list-style: none;
}
.cid-slAQGGcii6 ul li h4 {
  margin: 0;
}
.cid-slAQGGcii6 ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAQGGcii6 .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAQGGcii6 .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAQGGcii6 .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAQGGcii6 .col-title1 {
  margin-bottom: 40px;
}
.cid-slAQGGcii6 .form-group,
.cid-slAQGGcii6 .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAQGGcii6 .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAQGGcii6 .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAQGGcii6 .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAQGGcii6 .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAQGGcii6 .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAQGGcii6 .col + .mbr-section-btn .btn,
.cid-slAQGGcii6 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAQGGcii6 .col + .mbr-section-btn .btn.display-4,
.cid-slAQGGcii6 .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAQGGcii6 .col + .mbr-section-btn .btn:hover,
.cid-slAQGGcii6 .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAQGGcii6 .dragArea > *:nth-last-child(2).col,
.cid-slAQGGcii6 .dragArea > *:nth-last-child(2).col-auto,
.cid-slAQGGcii6 .col + .mbr-section-btn,
.cid-slAQGGcii6 .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAQGGcii6 .form1 {
  margin-top: 30px;
}
.cid-slAQGGcii6 .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAQGGcii6 .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAQGGcii6 .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-slugN4HLhq .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-slugN4HLhq .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-slugN4HLhq .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-slugN4HLhq .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-slugN4HLhq .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-slugN4HLhq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-slugN4HLhq .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-slugN4HLhq .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-slugN4HLhq .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-slugN4HLhq .navbar.collapsed {
  flex-direction: row !important;
}
.cid-slugN4HLhq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slugN4HLhq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-slugN4HLhq .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-slugN4HLhq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slugN4HLhq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slugN4HLhq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slugN4HLhq .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-slugN4HLhq .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-slugN4HLhq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slugN4HLhq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-slugN4HLhq .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-slugN4HLhq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slugN4HLhq .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-slugN4HLhq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slugN4HLhq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slugN4HLhq .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slugN4HLhq .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-slugN4HLhq .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-slugN4HLhq .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-slugN4HLhq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slugN4HLhq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-slugN4HLhq .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-slugN4HLhq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slugN4HLhq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-slugN4HLhq .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-slugN4HLhq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-slugN4HLhq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slugN4HLhq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slugN4HLhq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slugN4HLhq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slugN4HLhq .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-slugN4HLhq .dropdown-item.active,
.cid-slugN4HLhq .dropdown-item:active {
  background-color: transparent;
}
.cid-slugN4HLhq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slugN4HLhq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slugN4HLhq .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slugN4HLhq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-slugN4HLhq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-slugN4HLhq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slugN4HLhq ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-slugN4HLhq .navbar-buttons {
  text-align: left;
}
.cid-slugN4HLhq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-slugN4HLhq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-slugN4HLhq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-slugN4HLhq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slugN4HLhq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slugN4HLhq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-slugN4HLhq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slugN4HLhq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-slugN4HLhq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-slugN4HLhq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slugN4HLhq .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-slugN4HLhq a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-slugN4HLhq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-slugN4HLhq .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-slugN4HLhq .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-slugN4HLhq .nav-link:hover,
.cid-slugN4HLhq .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sXe8WgFQZh {
  padding-top: 50px;
  padding-bottom: 0px;
  overflow: hidden;
  background: #ffffff;
}
@media (min-width: 1330px) {
  .cid-sXe8WgFQZh .container {
    max-width: 1330px !important;
  }
}
.cid-sXe8WgFQZh .content-wrap {
  background-color: #f9fafb;
}
.cid-sXe8WgFQZh .card-wrap {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sXe8WgFQZh .card-wrap {
    width: calc(100% + 10rem);
    margin-left: 46px;
    margin-left: -12.6rem;
  }
}
@media (max-width: 767px) {
  .cid-sXe8WgFQZh .card-wrap {
    margin-top: 0;
    margin-bottom: 0;
    padding: 48px 20px 48px 20px;
  }
}
.cid-sXe8WgFQZh .img-wrap {
  height: 100%;
}
.cid-sXe8WgFQZh .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sXe8WgFQZh .mbr-section-subtitle {
  animation-delay: .2s;
}
.cid-sXe8WgFQZh .mbr-section-btn {
  margin-top: 2rem;
  margin-bottom: -0.25rem;
  animation-delay: .4s;
}
.cid-sXe8WgFQZh [class*="col"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 992px) {
  .cid-sXe8WgFQZh .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-sXe8WgFQZh .mbr-section-subtitle,
.cid-sXe8WgFQZh .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-sXe8WgFQZh H1 {
  text-align: left;
  color: #4f5b5f;
}
.cid-sXe8WgFQZh .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWDSsCnvei {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-sWDSsCnvei h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sWDSsCnvei h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-sWDSsCnvei .media-container-row {
  justify-content: space-between;
}
.cid-sWDSsCnvei .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWDSsCnvei .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sWDSsCnvei .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sWDSsCnvei a:link {
  text-decoration: none;
}
.cid-sWDSsCnvei .icon-transition span {
  text-align: center;
  color: #d698b5;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 20%;
  border: 1px solid #d698b5;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-sWDSsCnvei .icon-transition span:hover {
  background-color: rgba(153, 153, 153, 0.5);
  color: #ffffff;
}
.cid-sWDSsCnvei .btn {
  min-width: 195px;
}
.cid-sWDSsCnvei .btn.btn-primary-outline {
  border: 1px solid #848abd;
}
.cid-sWDSsCnvei .btn.btn-primary-outline:hover {
  background-color: #848abd !important;
  color: #ffffff !important;
}
.cid-sWDSsCnvei .btn.btn-secondary-outline {
  border: 1px solid #0e569e;
}
.cid-sWDSsCnvei .btn.btn-secondary-outline:hover {
  background-color: #0e569e !important;
  color: #ffffff !important;
}
.cid-sWDSsCnvei .btn.btn-success-outline {
  border: 1px solid #ffffff;
}
.cid-sWDSsCnvei .btn.btn-success-outline:hover {
  background-color: #ffffff !important;
  color: #ffffff !important;
}
.cid-sWDSsCnvei .btn.btn-info-outline {
  border: 1px solid #f3f4f7;
}
.cid-sWDSsCnvei .btn.btn-info-outline:hover {
  background-color: #f3f4f7 !important;
  color: #ffffff !important;
}
.cid-sWDSsCnvei .btn.btn-warning-outline {
  border: 1px solid #b97ecd;
}
.cid-sWDSsCnvei .btn.btn-warning-outline:hover {
  background-color: #b97ecd !important;
  color: #ffffff !important;
}
.cid-sWDSsCnvei .btn.btn-danger-outline {
  border: 1px solid #000000;
}
.cid-sWDSsCnvei .btn.btn-danger-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDSsCnvei .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sWDSsCnvei .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sWDSsCnvei .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sWDSsCnvei .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 992px) {
  .cid-sWDSsCnvei .wrap {
    justify-content: center;
  }
}
.cid-sWDSsCnvei .mbr-section-title {
  color: #999999;
}
.cid-sxilyDkpdw .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-sxilyDkpdw .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxilyDkpdw .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxilyDkpdw .hidden {
  display: none;
}
.cid-sxilyDkpdw H10 {
  color: #767676;
}
.cid-sxofqUCFjI {
  background-color: #ffffff;
}
.cid-sxofqUCFjI .wave1 {
  fill: #f9fafb;
}
.cid-sxofqUCFjI .wave2 {
  fill: #f9fafb;
  opacity: 0.5;
}
.cid-sxofqUCFjI .wave3,
.cid-sxofqUCFjI .wave4 {
  fill: #f9fafb;
  opacity: 0.35;
}
.cid-sucvWmvzSK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9fafb;
}
.cid-sucvWmvzSK .title__block {
  margin-bottom: 55px;
}
.cid-sucvWmvzSK .mbr-section-title {
  margin-bottom: 16px;
  color: #4f5b5f;
}
.cid-sucvWmvzSK .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-sucvWmvzSK .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-sucvWmvzSK .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-sucvWmvzSK .card__content {
  display: block;
  width: 100%;
}
.cid-sucvWmvzSK .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  color: #404040;
  text-align: left;
}
.cid-sucvWmvzSK .card__text {
  margin-bottom: 0;
  color: #4f5b5f;
}
@media (max-width: 991px) {
  .cid-sucvWmvzSK .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-sucvWmvzSK .card__wrap {
    margin-bottom: 40px;
  }
  .cid-sucvWmvzSK .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-sucvWmvzSK .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-sucvWmvzSK .card__image {
    max-width: 90px;
  }
  .cid-sucvWmvzSK .card__image img {
    width: 70%;
  }
}
.cid-sxMFNqzZuw.popup-builder {
  background-color: #ffffff;
}
.cid-sxMFNqzZuw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxMFNqzZuw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxMFNqzZuw .modal-content,
.cid-sxMFNqzZuw .modal-dialog {
  height: auto;
}
.cid-sxMFNqzZuw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxMFNqzZuw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxMFNqzZuw .form-wrapper .mbr-form .form-group,
  .cid-sxMFNqzZuw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxMFNqzZuw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxMFNqzZuw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxMFNqzZuw .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sxMFNqzZuw .pt-0 {
  padding-top: 0 !important;
}
.cid-sxMFNqzZuw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxMFNqzZuw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxMFNqzZuw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxMFNqzZuw .modal-open {
  overflow: hidden;
}
.cid-sxMFNqzZuw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxMFNqzZuw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxMFNqzZuw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxMFNqzZuw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxMFNqzZuw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxMFNqzZuw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxMFNqzZuw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxMFNqzZuw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxMFNqzZuw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxMFNqzZuw .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxMFNqzZuw .modal-backdrop.show {
  opacity: .5;
}
.cid-sxMFNqzZuw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxMFNqzZuw .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxMFNqzZuw .modal-header .close:hover {
  opacity: 1;
}
.cid-sxMFNqzZuw .modal-header .close:focus {
  outline: none;
}
.cid-sxMFNqzZuw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sxMFNqzZuw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxMFNqzZuw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxMFNqzZuw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxMFNqzZuw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxMFNqzZuw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxMFNqzZuw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxMFNqzZuw .modal-sm {
    max-width: 300px;
  }
  .cid-sxMFNqzZuw .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxMFNqzZuw .modal-lg,
  .cid-sxMFNqzZuw .modal-xl {
    max-width: 800px;
  }
  .cid-sxMFNqzZuw .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxMFNqzZuw .modal-xl {
    max-width: 1140px;
  }
  .cid-sxMFNqzZuw .container {
    max-width: 1140px;
  }
}
.cid-sxMFNqzZuw .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxMFNqzZuw .container {
    max-width: 720px;
  }
}
.cid-sxMFNqzZuw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxMFNqzZuw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxMFNqzZuw .form-group {
  margin-bottom: 1rem;
}
.cid-sxMFNqzZuw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxMFNqzZuw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxMFNqzZuw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-suGs9hKNy0 {
  padding-top: 0.5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-suGs9hKNy0 .container-fluid {
  max-width: 100%;
  padding: 0;
}
.cid-suGs9hKNy0 MARQUEE {
  color: #FF0000;
  text-align: left;
}
.cid-slvw0ADcbw.popup-builder {
  background-color: #ffffff;
}
.cid-slvw0ADcbw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slvw0ADcbw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slvw0ADcbw .modal-content,
.cid-slvw0ADcbw .modal-dialog {
  height: auto;
}
.cid-slvw0ADcbw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slvw0ADcbw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slvw0ADcbw .form-wrapper .mbr-form .form-group,
  .cid-slvw0ADcbw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slvw0ADcbw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slvw0ADcbw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slvw0ADcbw .mbr-text {
  text-align: left;
  color: #606060;
}
.cid-slvw0ADcbw .pt-0 {
  padding-top: 0 !important;
}
.cid-slvw0ADcbw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slvw0ADcbw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slvw0ADcbw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slvw0ADcbw .modal-open {
  overflow: hidden;
}
.cid-slvw0ADcbw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slvw0ADcbw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slvw0ADcbw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slvw0ADcbw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slvw0ADcbw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slvw0ADcbw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slvw0ADcbw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slvw0ADcbw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slvw0ADcbw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slvw0ADcbw .modal-backdrop.fade {
  opacity: 0;
}
.cid-slvw0ADcbw .modal-backdrop.show {
  opacity: .5;
}
.cid-slvw0ADcbw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slvw0ADcbw .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slvw0ADcbw .modal-header .close:hover {
  opacity: 1;
}
.cid-slvw0ADcbw .modal-header .close:focus {
  outline: none;
}
.cid-slvw0ADcbw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-slvw0ADcbw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slvw0ADcbw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slvw0ADcbw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slvw0ADcbw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slvw0ADcbw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slvw0ADcbw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slvw0ADcbw .modal-sm {
    max-width: 300px;
  }
  .cid-slvw0ADcbw .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slvw0ADcbw .modal-lg,
  .cid-slvw0ADcbw .modal-xl {
    max-width: 800px;
  }
  .cid-slvw0ADcbw .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slvw0ADcbw .modal-xl {
    max-width: 1140px;
  }
  .cid-slvw0ADcbw .container {
    max-width: 1140px;
  }
}
.cid-slvw0ADcbw .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slvw0ADcbw .container {
    max-width: 720px;
  }
}
.cid-slvw0ADcbw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slvw0ADcbw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slvw0ADcbw .form-group {
  margin-bottom: 1rem;
}
.cid-slvw0ADcbw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slvw0ADcbw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slvw0ADcbw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sxSxYg1FZm {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f9fafb;
}
.cid-sxSxYg1FZm .container-fluid {
  padding: 0 3rem;
}
.cid-sxSxYg1FZm .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #848abd, #0e569e);
  display: inline-block;
}
.cid-sxSxYg1FZm .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-sxSxYg1FZm .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sxSxYg1FZm .card .card-wrapper {
  height: 1%;
}
.cid-sxSxYg1FZm .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.cid-sxSxYg1FZm .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sxSxYg1FZm .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-sxSxYg1FZm .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sxSxYg1FZm .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-sxSxYg1FZm .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sxSxYg1FZm .mbr-section-title,
.cid-sxSxYg1FZm .underline {
  text-align: center;
  color: #4f5b5f;
}
.cid-sxSxYg1FZm .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sxSxYg1FZm .mbr-card-text,
.cid-sxSxYg1FZm .mbr-section-btn {
  color: #4f5b5f;
}
.cid-svdvKyovk9 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/tap-water-glass-1-1920x600.jpg");
}
.cid-svdvKyovk9 .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 0;
  color: #404040;
  text-align: left;
}
.cid-svdvKyovk9 .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-svdvKyovk9 .mbr-section-btn {
  margin-top: 45px;
}
.cid-svdvKyovk9 .mbr-section-btn .btn {
  height: 60px;
  font-weight: 500;
}
.cid-svdvKyovk9 img {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-svdvKyovk9 .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-svdvKyovk9 .mbr-section-btn .btn {
    height: 50px;
  }
  .cid-svdvKyovk9 .mbr-text {
    margin-top: 10px;
  }
}
.cid-svdvKyovk9 .mbr-text,
.cid-svdvKyovk9 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-svdvKyovk9 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwxxQxCSy.popup-builder {
  background-color: #ffffff;
}
.cid-slwxxQxCSy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxxQxCSy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxxQxCSy .modal-content,
.cid-slwxxQxCSy .modal-dialog {
  height: auto;
}
.cid-slwxxQxCSy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxxQxCSy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxxQxCSy .form-wrapper .mbr-form .form-group,
  .cid-slwxxQxCSy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxxQxCSy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxxQxCSy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxxQxCSy .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQxCSy .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxxQxCSy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxxQxCSy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxxQxCSy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxxQxCSy .modal-open {
  overflow: hidden;
}
.cid-slwxxQxCSy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxxQxCSy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxxQxCSy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxxQxCSy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxxQxCSy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxxQxCSy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxxQxCSy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxxQxCSy .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxxQxCSy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxxQxCSy .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxxQxCSy .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxxQxCSy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxxQxCSy .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxxQxCSy .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxxQxCSy .modal-header .close:focus {
  outline: none;
}
.cid-slwxxQxCSy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxxQxCSy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxxQxCSy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxxQxCSy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxxQxCSy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxxQxCSy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxxQxCSy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxxQxCSy .modal-sm {
    max-width: 300px;
  }
  .cid-slwxxQxCSy .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxxQxCSy .modal-lg,
  .cid-slwxxQxCSy .modal-xl {
    max-width: 800px;
  }
  .cid-slwxxQxCSy .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxxQxCSy .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxxQxCSy .container {
    max-width: 1140px;
  }
}
.cid-slwxxQxCSy .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxxQxCSy .container {
    max-width: 720px;
  }
}
.cid-slwxxQxCSy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxxQxCSy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxxQxCSy .form-group {
  margin-bottom: 1rem;
}
.cid-slwxxQxCSy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxxQxCSy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxxQxCSy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxxQxCSy .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwygMNN01.popup-builder {
  background-color: #ffffff;
}
.cid-slwygMNN01.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwygMNN01.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwygMNN01 .modal-content,
.cid-slwygMNN01 .modal-dialog {
  height: auto;
}
.cid-slwygMNN01 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwygMNN01 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwygMNN01 .form-wrapper .mbr-form .form-group,
  .cid-slwygMNN01 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwygMNN01 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwygMNN01 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwygMNN01 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwygMNN01 .pt-0 {
  padding-top: 0 !important;
}
.cid-slwygMNN01 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwygMNN01 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwygMNN01 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwygMNN01 .modal-open {
  overflow: hidden;
}
.cid-slwygMNN01 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwygMNN01 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwygMNN01 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwygMNN01 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwygMNN01 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwygMNN01 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwygMNN01 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwygMNN01 .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwygMNN01 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwygMNN01 .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwygMNN01 .modal-backdrop.show {
  opacity: .5;
}
.cid-slwygMNN01 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwygMNN01 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwygMNN01 .modal-header .close:hover {
  opacity: 1;
}
.cid-slwygMNN01 .modal-header .close:focus {
  outline: none;
}
.cid-slwygMNN01 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwygMNN01 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwygMNN01 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwygMNN01 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwygMNN01 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwygMNN01 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwygMNN01 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwygMNN01 .modal-sm {
    max-width: 300px;
  }
  .cid-slwygMNN01 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwygMNN01 .modal-lg,
  .cid-slwygMNN01 .modal-xl {
    max-width: 800px;
  }
  .cid-slwygMNN01 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwygMNN01 .modal-xl {
    max-width: 1140px;
  }
  .cid-slwygMNN01 .container {
    max-width: 1140px;
  }
}
.cid-slwygMNN01 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwygMNN01 .container {
    max-width: 720px;
  }
}
.cid-slwygMNN01 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwygMNN01 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwygMNN01 .form-group {
  margin-bottom: 1rem;
}
.cid-slwygMNN01 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwygMNN01 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwygMNN01 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwygMNN01 .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slAQBfVi41 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAQBfVi41 ul {
  padding: 0;
  margin: 0;
}
.cid-slAQBfVi41 ul li {
  list-style: none;
}
.cid-slAQBfVi41 ul li h4 {
  margin: 0;
}
.cid-slAQBfVi41 ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAQBfVi41 .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAQBfVi41 .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAQBfVi41 .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAQBfVi41 .col-title1 {
  margin-bottom: 40px;
}
.cid-slAQBfVi41 .form-group,
.cid-slAQBfVi41 .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAQBfVi41 .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAQBfVi41 .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAQBfVi41 .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAQBfVi41 .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAQBfVi41 .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAQBfVi41 .col + .mbr-section-btn .btn,
.cid-slAQBfVi41 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAQBfVi41 .col + .mbr-section-btn .btn.display-4,
.cid-slAQBfVi41 .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAQBfVi41 .col + .mbr-section-btn .btn:hover,
.cid-slAQBfVi41 .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAQBfVi41 .dragArea > *:nth-last-child(2).col,
.cid-slAQBfVi41 .dragArea > *:nth-last-child(2).col-auto,
.cid-slAQBfVi41 .col + .mbr-section-btn,
.cid-slAQBfVi41 .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAQBfVi41 .form1 {
  margin-top: 30px;
}
.cid-slAQBfVi41 .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAQBfVi41 .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAQBfVi41 .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sXe9Lt42vY.popup-builder {
  background-color: #ffffff;
}
.cid-sXe9Lt42vY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sXe9Lt42vY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sXe9Lt42vY .modal-content,
.cid-sXe9Lt42vY .modal-dialog {
  height: auto;
}
.cid-sXe9Lt42vY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sXe9Lt42vY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sXe9Lt42vY .form-wrapper .mbr-form .form-group,
  .cid-sXe9Lt42vY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sXe9Lt42vY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sXe9Lt42vY .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sXe9Lt42vY .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-sXe9Lt42vY .pt-0 {
  padding-top: 0 !important;
}
.cid-sXe9Lt42vY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sXe9Lt42vY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sXe9Lt42vY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sXe9Lt42vY .modal-open {
  overflow: hidden;
}
.cid-sXe9Lt42vY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sXe9Lt42vY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sXe9Lt42vY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sXe9Lt42vY .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sXe9Lt42vY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sXe9Lt42vY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sXe9Lt42vY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sXe9Lt42vY .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sXe9Lt42vY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sXe9Lt42vY .modal-backdrop.fade {
  opacity: 0;
}
.cid-sXe9Lt42vY .modal-backdrop.show {
  opacity: .5;
}
.cid-sXe9Lt42vY .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sXe9Lt42vY .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sXe9Lt42vY .modal-header .close:hover {
  opacity: 1;
}
.cid-sXe9Lt42vY .modal-header .close:focus {
  outline: none;
}
.cid-sXe9Lt42vY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sXe9Lt42vY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sXe9Lt42vY .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sXe9Lt42vY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sXe9Lt42vY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sXe9Lt42vY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sXe9Lt42vY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sXe9Lt42vY .modal-sm {
    max-width: 300px;
  }
  .cid-sXe9Lt42vY .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sXe9Lt42vY .modal-lg,
  .cid-sXe9Lt42vY .modal-xl {
    max-width: 800px;
  }
  .cid-sXe9Lt42vY .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sXe9Lt42vY .modal-xl {
    max-width: 1140px;
  }
  .cid-sXe9Lt42vY .container {
    max-width: 1140px;
  }
}
.cid-sXe9Lt42vY .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sXe9Lt42vY .container {
    max-width: 720px;
  }
}
.cid-sXe9Lt42vY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sXe9Lt42vY .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sXe9Lt42vY .form-group {
  margin-bottom: 1rem;
}
.cid-sXe9Lt42vY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sXe9Lt42vY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sXe9Lt42vY .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-sjUcGTVSRL .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sjUcGTVSRL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sjUcGTVSRL .navbar.collapsed {
  flex-direction: row !important;
}
.cid-sjUcGTVSRL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sjUcGTVSRL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-sjUcGTVSRL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sjUcGTVSRL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sjUcGTVSRL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sjUcGTVSRL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjUcGTVSRL .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sjUcGTVSRL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sjUcGTVSRL .dropdown-item.active,
.cid-sjUcGTVSRL .dropdown-item:active {
  background-color: transparent;
}
.cid-sjUcGTVSRL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sjUcGTVSRL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjUcGTVSRL ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sjUcGTVSRL .navbar-buttons {
  text-align: left;
}
.cid-sjUcGTVSRL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sjUcGTVSRL a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-sjUcGTVSRL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-link:hover,
.cid-sjUcGTVSRL .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-spuzkRHYNm {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-spuzkRHYNm .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spuzkRHYNm .section-text {
  padding: 2rem 0;
}
.cid-spuzkRHYNm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-spuzkRHYNm .inner-container {
    width: 100% !important;
  }
}
.cid-sxijW2Gxnb .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 3px;
  background: #ffffff;
  top: 0px;
}
.cid-sxijW2Gxnb .progress-bar {
  height: 3px;
  background: #3b67d9;
  width: 0%;
}
.cid-sxijW2Gxnb .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-sxijW2Gxnb .hidden {
  display: none;
}
.cid-sxijW2Gxnb H10 {
  color: #767676;
}
.cid-spuAx6CmNS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-spuAx6CmNS .mbr-text,
.cid-spuAx6CmNS blockquote {
  color: #767676;
}
.cid-spuzzM7ulA {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-spuzzM7ulA .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spuzzM7ulA .section-text {
  padding: 2rem 0;
}
.cid-spuzzM7ulA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-spuzzM7ulA .inner-container {
    width: 100% !important;
  }
}
.cid-spuzwKux1Q {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-spuzwKux1Q .mbr-text,
.cid-spuzwKux1Q blockquote {
  color: #767676;
}
.cid-spuzy8irum {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-spuzy8irum .counter-container {
  color: #767676;
}
.cid-spuzy8irum .counter-container ul {
  margin-bottom: 0;
}
.cid-spuzy8irum .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-spuzy8irum .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-spuzyYg20h {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-spuzyYg20h .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spuzyYg20h .section-text {
  padding: 2rem 0;
}
.cid-spuzyYg20h .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-spuzyYg20h .inner-container {
    width: 100% !important;
  }
}
.cid-spuzAxepTN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-spuzAxepTN .mbr-text,
.cid-spuzAxepTN blockquote {
  color: #767676;
}
.cid-spuA3BUSdg {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-spuA3BUSdg .mbr-text {
  color: #767676;
}
.cid-spuA3BUSdg .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-spuA3BUSdg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-spuA3BUSdg .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #188ef4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ef4, #5eeebb);
}
.cid-slAP42DaCm {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAP42DaCm ul {
  padding: 0;
  margin: 0;
}
.cid-slAP42DaCm ul li {
  list-style: none;
}
.cid-slAP42DaCm ul li h4 {
  margin: 0;
}
.cid-slAP42DaCm ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAP42DaCm .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAP42DaCm .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAP42DaCm .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAP42DaCm .col-title1 {
  margin-bottom: 40px;
}
.cid-slAP42DaCm .form-group,
.cid-slAP42DaCm .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAP42DaCm .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAP42DaCm .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .col + .mbr-section-btn .btn,
.cid-slAP42DaCm .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAP42DaCm .col + .mbr-section-btn .btn.display-4,
.cid-slAP42DaCm .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAP42DaCm .col + .mbr-section-btn .btn:hover,
.cid-slAP42DaCm .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAP42DaCm .dragArea > *:nth-last-child(2).col,
.cid-slAP42DaCm .dragArea > *:nth-last-child(2).col-auto,
.cid-slAP42DaCm .col + .mbr-section-btn,
.cid-slAP42DaCm .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAP42DaCm .form1 {
  margin-top: 30px;
}
.cid-slAP42DaCm .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAP42DaCm .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAP42DaCm .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-sjUcGTVSRL .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sjUcGTVSRL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sjUcGTVSRL .navbar.collapsed {
  flex-direction: row !important;
}
.cid-sjUcGTVSRL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sjUcGTVSRL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-sjUcGTVSRL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sjUcGTVSRL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sjUcGTVSRL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sjUcGTVSRL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjUcGTVSRL .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sjUcGTVSRL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sjUcGTVSRL .dropdown-item.active,
.cid-sjUcGTVSRL .dropdown-item:active {
  background-color: transparent;
}
.cid-sjUcGTVSRL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sjUcGTVSRL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjUcGTVSRL ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sjUcGTVSRL .navbar-buttons {
  text-align: left;
}
.cid-sjUcGTVSRL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sjUcGTVSRL a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-sjUcGTVSRL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-link:hover,
.cid-sjUcGTVSRL .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sCLds4mLxV {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #f9fafb;
}
.cid-sCLds4mLxV .container-fluid {
  padding: 0 .04rem;
}
.cid-sCLds4mLxV .mbr-section-subtitle {
  color: #767676;
}
.cid-sCLds4mLxV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sCLds4mLxV .table-wrapper {
  margin: 0 auto;
}
.cid-sCLds4mLxV table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sCLds4mLxV table thead tr {
  border: none !important;
}
.cid-sCLds4mLxV table th {
  padding: 1.2rem .02rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #fcfcfc;
}
.cid-sCLds4mLxV table tr td {
  border-color: #eceeef;
}
.cid-sCLds4mLxV table td {
  padding: 1.08rem 1.08rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sCLds4mLxV table.table {
  background: #fcfcfc;
}
.cid-sCLds4mLxV tr:hover {
  background-color: #eddae3 !important;
}
.cid-sCLds4mLxV .dataTables_scrollHead th:after,
.cid-sCLds4mLxV .dataTables_scrollHead th:before {
  bottom: auto !important;
  top: 50% !important;
  transform: translateY(-60%);
}
.cid-sCLds4mLxV .dataTables_scrollHead th:before {
  right: 0.1px !important;
}
.cid-sCLds4mLxV .dataTables_scrollHead th:after {
  right: .01px !important;
}
.cid-sCLds4mLxV .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sCLds4mLxV .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sCLds4mLxV table th,
  .cid-sCLds4mLxV table td {
    padding: .09rem;
  }
}
.cid-sCLds4mLxV .body-item {
  text-align: left;
}
.cid-sCLds4mLxV .mbr-text {
  color: #767676;
}
.cid-sCLds4mLxV .head-item {
  color: #232323;
}
.cid-sCLds4mLxV .dataTables_info {
  padding-bottom: .02rem;
  padding-top: .02rem;
}
.cid-sCLds4mLxV LABEL {
  text-align: left;
}
.cid-sCLds4mLxV .mbr-section-title,
.cid-sCLds4mLxV .head-item {
  color: #d75959;
}
.cid-slAP42DaCm {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAP42DaCm ul {
  padding: 0;
  margin: 0;
}
.cid-slAP42DaCm ul li {
  list-style: none;
}
.cid-slAP42DaCm ul li h4 {
  margin: 0;
}
.cid-slAP42DaCm ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAP42DaCm .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAP42DaCm .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAP42DaCm .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAP42DaCm .col-title1 {
  margin-bottom: 40px;
}
.cid-slAP42DaCm .form-group,
.cid-slAP42DaCm .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAP42DaCm .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAP42DaCm .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .col + .mbr-section-btn .btn,
.cid-slAP42DaCm .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAP42DaCm .col + .mbr-section-btn .btn.display-4,
.cid-slAP42DaCm .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAP42DaCm .col + .mbr-section-btn .btn:hover,
.cid-slAP42DaCm .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAP42DaCm .dragArea > *:nth-last-child(2).col,
.cid-slAP42DaCm .dragArea > *:nth-last-child(2).col-auto,
.cid-slAP42DaCm .col + .mbr-section-btn,
.cid-slAP42DaCm .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAP42DaCm .form1 {
  margin-top: 30px;
}
.cid-slAP42DaCm .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAP42DaCm .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAP42DaCm .item DIV {
  text-align: right;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-sjUcGTVSRL .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.opened {
  transition: all 0.3s;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item {
  transition: all 0.3s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #0a3c6f;
  background: #0e569e !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sjUcGTVSRL .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sjUcGTVSRL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #848abd;
}
.cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sjUcGTVSRL .navbar.collapsed {
  flex-direction: row !important;
}
.cid-sjUcGTVSRL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sjUcGTVSRL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
  border-bottom: none !important;
  background: transparent !important;
}
.cid-sjUcGTVSRL .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: 1px;
}
@media (max-width: 991px) {
  .cid-sjUcGTVSRL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    padding: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sjUcGTVSRL .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sjUcGTVSRL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px !important;
    background: transparent !important;
  }
  .cid-sjUcGTVSRL .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sjUcGTVSRL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sjUcGTVSRL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjUcGTVSRL .navbar.navbar-short {
  background: #0e569e !important;
  min-height: 60px;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sjUcGTVSRL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sjUcGTVSRL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: left;
  align-items: left;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjUcGTVSRL .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sjUcGTVSRL .dropdown-item.active,
.cid-sjUcGTVSRL .dropdown-item:active {
  background-color: transparent;
}
.cid-sjUcGTVSRL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e569e;
}
.cid-sjUcGTVSRL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sjUcGTVSRL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjUcGTVSRL ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sjUcGTVSRL .navbar-buttons {
  text-align: left;
}
.cid-sjUcGTVSRL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: left;
  align-self: center;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjUcGTVSRL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sjUcGTVSRL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjUcGTVSRL .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sjUcGTVSRL a.nav-link {
  display: flex;
  -webkit-align-items: left;
  align-items: center;
  -webkit-justify-content: left;
  justify-content: left;
  outline: none;
  letter-spacing: 2px;
}
.cid-sjUcGTVSRL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sjUcGTVSRL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  padding: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sjUcGTVSRL .nav-link:hover,
.cid-sjUcGTVSRL .dropdown-item:hover {
  color: #c8ced9 !important;
}
.cid-sjO8BXFJkL {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f5fffa;
}
.cid-sjO8BXFJkL .mbr-section-title {
  color: #404040;
}
.cid-sjO8BXFJkL .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sjO8BXFJkL .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sjO8BXFJkL .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sjO9em8tRk {
  position: relative;
  overflow: hidden;
}
.cid-sjO9em8tRk svg {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  bottom: -1rem;
  left: 50%;
  transform: translate(-50%) scale(1.9, 1.6);
}
.cid-sjO9em8tRk #e2_shape {
  fill: #f9fafb !important;
}
.cid-sjO9em8tRk .main-text {
  color: #606060;
}
.cid-sjO9em8tRk .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 36rem;
}
.cid-sjO9em8tRk .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: brightness(100%);
}
.cid-sjO9em8tRk .content-block {
  padding: 0.75rem 1rem;
  top: -50%;
  position: relative;
  z-index: 1;
  transform: translateY(50%);
}
.cid-sjO9em8tRk .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 21px;
}
.cid-sjO9em8tRk .btn.display-4 {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 16px 24px;
}
.cid-sjO9em8tRk .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sjO9em8tRk .carousel-item.active,
.cid-sjO9em8tRk .carousel-item-next,
.cid-sjO9em8tRk .carousel-item-prev {
  display: flex;
}
.cid-sjO9em8tRk .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  bottom: 50px;
}
.cid-sjO9em8tRk .carousel-indicators .active {
  transform: scale(1);
  border: 0;
  background-color: #1e232d;
  transition: all 200ms ease-in-out;
}
.cid-sjO9em8tRk .carousel-indicators li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: opacity 0.5s;
  background-color: #ffffff;
  font-size: 2rem;
  border-width: 0px;
  transform: scale(0.6);
  opacity: 1;
}
.cid-sjO9em8tRk .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-sjO9em8tRk .carousel-controls {
    display: block;
  }
  .cid-sjO9em8tRk .carousel-controls a {
    transition: opacity 0.5s;
    font-size: 2rem;
  }
  .cid-sjO9em8tRk .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: 0.9;
  }
  .cid-sjO9em8tRk .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-sjO9em8tRk .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-sjO9em8tRk .text-element {
    padding: 1rem;
  }
  .cid-sjO9em8tRk .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sjO9em8tRk .image-element {
    min-width: 50%;
  }
  .cid-sjO9em8tRk .media-container-row {
    width: 100%;
  }
}
.cid-sjO9em8tRk .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-sjO9em8tRk .wrapper .content-block .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sGBQszHGL4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9fafb;
}
.cid-sGBQszHGL4 .icon-transition span {
  padding: 0.1rem 0.3rem;
  border-radius: 20%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #f5eef2 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 18px;
}
.cid-sGBQszHGL4 .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sGBQszHGL4 .photo-split {
  padding: 0px 0px 10px 50px;
  align: right;
}
.cid-sGBQszHGL4 .photo-split img {
  width: 60%;
  height: 50%;
}
.cid-sGBQszHGL4 .icon-transition span:hover {
  background-color: #e2d5d5;
}
.cid-sGBQszHGL4 .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGBQszHGL4 .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-sGBQszHGL4 .counter-container ul li:before {
  color: #0e569e;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-sGBQszHGL4 .wrap-block {
  padding: 2rem 2rem;
}
.cid-sGBQszHGL4 .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sGBQszHGL4 .wrap-block ul li {
  display: inline-block;
}
.cid-sGBQszHGL4 .wrap-block ul li span {
  text-align: center;
}
.cid-sGBQszHGL4 .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-sGBQszHGL4 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGBQszHGL4 .social-media ul li {
  padding: 2px;
  display: inline-block;
}
.cid-sGBQszHGL4 .mbr-list,
.cid-sGBQszHGL4 .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-sGBQszHGL4 .wrap-block {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sGBQszHGL4 .mbr-section-title,
  .cid-sGBQszHGL4 .mbr-section-subtitle,
  .cid-sGBQszHGL4 .mbr-text {
    text-align: center !important;
  }
  .cid-sGBQszHGL4 .social-list {
    text-align: center !important;
  }
}
.cid-sGBQszHGL4 .mbr-list,
.cid-sGBQszHGL4 .social-media {
  color: #606060;
}
.cid-sGBQszHGL4 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-sGBQszHGL4 .mbr-text {
  color: #000000;
}
.cid-sGBQszHGL4 .mbr-section-title {
  color: #404040;
}
.cid-gYMLjBcD9J .progress-container {
  z-index: 20000;
  position: fixed;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0px;
}
.cid-gYMLjBcD9J .progress-bar {
  height: 2px;
  background: #3b67d9;
  width: 0%;
}
.cid-gYMLjBcD9J .sticky2 {
  position: fixed;
  top: 0px;
  width: 100%;
}
.cid-gYMLjBcD9J .hidden {
  display: none;
}
.cid-gYMLjBcD9J H10 {
  color: #767676;
}
.cid-sWj0KVJK6F {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sWj0KVJK6F .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-sWj0KVJK6F .container {
    max-width: 1400px;
  }
}
.cid-sWj0KVJK6F .card {
  margin: auto;
  min-height: 180px;
  transition: all 0.3s;
}
.cid-sWj0KVJK6F .card:hover {
  transform: translateY(-10px);
}
.cid-sWj0KVJK6F .card:hover .card-wrapper {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.cid-sWj0KVJK6F .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #999999;
  margin-bottom: 2rem;
}
.cid-sWj0KVJK6F .card-wrapper {
  background-position: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWj0M6mjsf {
  background-color: #ffffff;
}
.cid-sWj0M6mjsf .wave1 {
  fill: #f3f4f7;
}
.cid-sWj0M6mjsf .wave2 {
  fill: #f3f4f7;
  opacity: 0.5;
}
.cid-sWj0M6mjsf .wave3,
.cid-sWj0M6mjsf .wave4 {
  fill: #f3f4f7;
  opacity: 0.35;
}
.cid-sWj0Nwa0CW {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f3f4f7;
}
.cid-sWj0Nwa0CW .card {
  background: #ffffff;
  border-radius: 10px;
}
.cid-sWj0Nwa0CW img {
  width: 100%;
  border-radius: 10px;
}
.cid-sWj0Nwa0CW .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-sWj0Nwa0CW .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sWj0Nwa0CW .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-sWj0Nwa0CW img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-sWj0Nwa0CW .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-sWj0Nwa0CW img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sWj0Nwa0CW img {
    width: 100%;
  }
}
.cid-sWj0Nwa0CW .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-sWj0Nwa0CW .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWj0Nwa0CW .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ecedee;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: "✓";
}
.cid-sWj0Nwa0CW .mbr-text,
.cid-sWj0Nwa0CW .mbr-section-btn {
  color: #464646;
}
.cid-sWj0Nwa0CW .mbr-section-subtitle {
  color: #000000;
}
.cid-sWj0Nwa0CW .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWj0Nwa0CW .mbr-section-title {
  color: #4f5b5f;
}
.cid-sGDi0768rp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/tap-water-running-1-920x1471.png");
}
.cid-sGDi0768rp .mbr-overlay {
  background: #ffffff;
}
.cid-sGDi0768rp .title_block {
  margin-bottom: 50px;
}
.cid-sGDi0768rp .mbr-section-subtitle {
  letter-spacing: 1.6px;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 600;
  color: #000000;
}
.cid-sGDi0768rp .mbr-section-title {
  margin-bottom: 36px;
  color: #7b7b7b;
}
.cid-sGDi0768rp .mbr-text {
  margin-bottom: 30px;
}
.cid-sGDi0768rp .mbr-section-btn .btn-white {
  color: #f3f4f7 !important;
}
.cid-sGDi0768rp .mbr-section-btn .btn-white:before {
  background: #f3f4f7 !important;
}
.cid-sGDi0768rp .mbr-section-btn .btn-white:hover {
  border-color: #fff !important;
  color: #fff !important;
}
.cid-sGDi0768rp .mbr-section-btn .btn-white:hover::before {
  background: #f3f4f7 !important;
}
.cid-sGDi0768rp .mbr-section-btn .btn-white-outline:hover {
  color: #f3f4f7 !important;
}
.cid-sGDi0768rp .mbr-section-btn .mbr-iconfont {
  order: 0;
  margin-right: 4px;
  margin-bottom: 2px;
  font-size: 16px;
}
.cid-sGDi0768rp .image_block {
  width: 460px;
  margin: 0 auto;
}
.cid-sGDi0768rp .image_block img {
  width: 70%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sGDi0768rp .title_block {
    text-align: center;
  }
  .cid-sGDi0768rp .image_block {
    margin-bottom: 40px;
    width: auto;
    max-width: 370px;
  }
  .cid-sGDi0768rp .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-sGDi0768rp .btn {
    padding: 14px 26px;
  }
}
.cid-sGDi0768rp .mbr-text,
.cid-sGDi0768rp .mbr-section-btn {
  color: #232323;
}
.cid-sGDi0768rp .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-sWj1kYqnqI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fb3131;
}
.cid-sWj1kYqnqI .mbr-iconfont {
  font-size: 50px;
  color: #ffffff;
}
.cid-sWj1kYqnqI .mbr-section-title {
  color: #ffffff;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 20px;
}
.cid-sWj1kYqnqI .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
  position: relative;
  padding-top: 25px;
}
.cid-sWj1kYqnqI .mbr-section-subtitle::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-sWj1kYqnqI .mbr-text {
  color: #ffffff;
  width: 100;
}
.cid-sWj1kYqnqI .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0e569e;
  margin-left: 0.6rem;
}
.cid-sWj1kYqnqI .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sWj1kYqnqI .mbr-section-btn .btn {
  border-radius: 3px;
  padding: 12px 40px !important;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .cid-sWj1kYqnqI .separator,
  .cid-sWj1kYqnqI .sep-holder,
  .cid-sWj1kYqnqI .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sWj1kYqnqI .buttons-wrap {
    flex-direction: column;
  }
}
.cid-sWj1kYqnqI .items {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-top: 25px;
}
.cid-sWj1kYqnqI .items::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #ffffff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-sWj1kYqnqI .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
}
.cid-sWj1kYqnqI .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
  margin: auto;
  color: #ffffff;
}
.cid-sWj1kYqnqI .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sWj1kYqnqI .items .list-item:last-child .listico {
  display: none;
}
.cid-uQt7Fxkey2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-color: #e6eaf1;
}
.cid-uQt7Fxkey2::before {
  content: '';
  position: absolute;
  right: -3%;
  top: 0;
  width: 210px;
  height: 210px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #f9fafb -10%, transparent 80%);
  z-index: 1;
}
.cid-uQt7Fxkey2 .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uQt7Fxkey2 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uQt7Fxkey2 .container {
    padding: 0 16px;
  }
}
.cid-uQt7Fxkey2 .row {
  position: relative;
  z-index: 1;
}
.cid-uQt7Fxkey2 .title-wrapper {
  margin-bottom: 80px;
}
.cid-uQt7Fxkey2 .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uQt7Fxkey2 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQt7Fxkey2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uQt7Fxkey2 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uQt7Fxkey2 .embla__slide .slide-content {
  width: 100%;
}
.cid-uQt7Fxkey2 .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #fafafa;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQt7Fxkey2 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uQt7Fxkey2 .embla__button--next,
.cid-uQt7Fxkey2 .embla__button--prev {
  display: flex;
}
.cid-uQt7Fxkey2 .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #848abd !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uQt7Fxkey2 .embla__button {
    display: none;
  }
}
.cid-uQt7Fxkey2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uQt7Fxkey2 .embla__button:hover {
  opacity: .7 !important;
}
.cid-uQt7Fxkey2 .embla__button.embla__button--prev {
  left: 0;
}
.cid-uQt7Fxkey2 .embla__button.embla__button--next {
  right: 0;
}
.cid-uQt7Fxkey2 .embla {
  position: relative;
  width: 100%;
}
.cid-uQt7Fxkey2 .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uQt7Fxkey2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQt7Fxkey2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQt7Fxkey2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uQt7Fxkey2 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQt7Fxkey2 .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uQnNfqmHNj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #e6eaf1;
}
.cid-uQnNfqmHNj .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uQnNfqmHNj .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uQnNfqmHNj .container {
    padding: 0 16px;
  }
}
.cid-uQnNfqmHNj .row {
  position: relative;
  z-index: 1;
}
.cid-uQnNfqmHNj .title-wrapper {
  margin-bottom: 80px;
}
.cid-uQnNfqmHNj .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uQnNfqmHNj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQnNfqmHNj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uQnNfqmHNj .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uQnNfqmHNj .embla__slide .slide-content {
  width: 100%;
}
.cid-uQnNfqmHNj .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #fafafa;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQnNfqmHNj .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uQnNfqmHNj .embla__button--next,
.cid-uQnNfqmHNj .embla__button--prev {
  display: flex;
}
.cid-uQnNfqmHNj .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #848abd !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uQnNfqmHNj .embla__button {
    display: none;
  }
}
.cid-uQnNfqmHNj .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uQnNfqmHNj .embla__button:hover {
  opacity: .7 !important;
}
.cid-uQnNfqmHNj .embla__button.embla__button--prev {
  left: 0;
}
.cid-uQnNfqmHNj .embla__button.embla__button--next {
  right: 0;
}
.cid-uQnNfqmHNj .embla {
  position: relative;
  width: 100%;
}
.cid-uQnNfqmHNj .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uQnNfqmHNj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQnNfqmHNj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQnNfqmHNj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uQnNfqmHNj .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQnNfqmHNj .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-tKEtL6BwcR {
  background-color: #ffffff;
}
.cid-tKEtL6BwcR .wave1 {
  fill: #f9fafb;
}
.cid-tKEtL6BwcR .wave2 {
  fill: #f9fafb;
  opacity: 0.5;
}
.cid-tKEtL6BwcR .wave3,
.cid-tKEtL6BwcR .wave4 {
  fill: #f9fafb;
  opacity: 0.35;
}
.cid-sGsH8hWhSU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
@media (min-width: 992px) {
  .cid-sGsH8hWhSU .content {
    max-width: 600px;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-sGsH8hWhSU .content {
    padding: 0 2rem;
  }
}
.cid-sGsH8hWhSU .img-col {
  padding: 0;
  margin: auto 0;
}
@media (max-width: 992px) {
  .cid-sGsH8hWhSU .content {
    margin: auto;
  }
}
.cid-sGsH8hWhSU li {
  list-style: none;
}
.cid-sGsH8hWhSU .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-sGsH8hWhSU .item-wrap:hover .mbr-iconfont {
  color: #0e569e !important;
}
.cid-sGsH8hWhSU .mbr-iconfont {
  font-size: 18px !important;
  padding-right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #d698b5 !important;
}
.cid-sGsH8hWhSU h4 {
  margin: 0;
}
.cid-sGsH8hWhSU ul {
  padding: 0;
  margin: 0;
}
.cid-sGsH8hWhSU H2 {
  color: #ed6436;
}
.cid-sGsH8hWhSU .lineheight {
  line-height: 35px;
}
.cid-sVJZlIECIc {
  background-color: #f9fafb;
}
.cid-sVJZlIECIc .wave1 {
  fill: #ffffff;
}
.cid-sVJZlIECIc .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-sVJZlIECIc .wave3,
.cid-sVJZlIECIc .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-sGCZ3fOBQF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGCZ3fOBQF .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: fit-content;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
  box-shadow: 0px 16px 32px 0px #0000000a;
  transition: all 0.3s;
}
.cid-sGCZ3fOBQF .item-wrapper:hover {
  transform: translateY(-10px);
}
.cid-sGCZ3fOBQF .item-wrapper:hover:hover {
  box-shadow: 0 15px 35px 15px rgba(0, 67, 211, 0.2);
}
.cid-sGCZ3fOBQF .item-content {
  background: #0c4bb3;
  transition: all 0.3s;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 3rem 0.7rem;
}
@media (max-width: 767px) {
  .cid-sGCZ3fOBQF .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-sGCZ3fOBQF .mbr-iconfont {
  position: absolute;
  bottom: -1.9rem;
  font-size: 1.4rem;
  right: 2rem;
  padding: 1.2rem 1.2rem;
  box-shadow: 0px 16px 32px 0px #0000000a;
  background: #fcfcfc;
  border-radius: 10px;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sGCZ3fOBQF .mbr-iconfont {
    right: 1rem;
  }
}
.cid-sGCZ3fOBQF img,
.cid-sGCZ3fOBQF .item-img {
  position: relative;
  width: 100%;
  height: 225px;
  object-fit: cover;
}
.cid-sGCZ3fOBQF .item:focus,
.cid-sGCZ3fOBQF span:focus {
  outline: none;
}
.cid-sGCZ3fOBQF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sGCZ3fOBQF .mbr-section-title {
  color: #4f5b5f;
}
.cid-sGCZ3fOBQF .mbr-text,
.cid-sGCZ3fOBQF .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-sGCZ3fOBQF .item-title {
  text-align: center;
  color: #efefef;
  font-weight: 900;
}
.cid-sGCZ3fOBQF .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-sGCZ3fOBQF .mbr-section-subtitle {
  color: #777777;
}
.cid-sGD0zkKwQo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sGD0zkKwQo .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: fit-content;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
  box-shadow: 0px 16px 32px 0px #0000000a;
  transition: all 0.3s;
}
.cid-sGD0zkKwQo .item-wrapper:hover {
  transform: translateY(-10px);
}
.cid-sGD0zkKwQo .item-wrapper:hover:hover {
  box-shadow: 0 15px 35px 15px rgba(255, 255, 255, 0.9);
}
.cid-sGD0zkKwQo .item-content {
  background: #0c4bb3;
  transition: all 0.3s;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 3rem 0.7rem;
}
@media (max-width: 767px) {
  .cid-sGD0zkKwQo .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-sGD0zkKwQo .mbr-iconfont {
  position: absolute;
  bottom: -1.9rem;
  font-size: 1.4rem;
  right: 2rem;
  padding: 1.2rem 1.2rem;
  box-shadow: 0px 16px 32px 0px #0000000a;
  background: #fcfcfc;
  border-radius: 10px;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sGD0zkKwQo .mbr-iconfont {
    right: 1rem;
  }
}
.cid-sGD0zkKwQo img,
.cid-sGD0zkKwQo .item-img {
  position: relative;
  width: 100%;
  height: 225px;
  object-fit: cover;
}
.cid-sGD0zkKwQo .item:focus,
.cid-sGD0zkKwQo span:focus {
  outline: none;
}
.cid-sGD0zkKwQo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sGD0zkKwQo .mbr-section-title {
  color: #232323;
}
.cid-sGD0zkKwQo .mbr-text,
.cid-sGD0zkKwQo .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-sGD0zkKwQo .item-title {
  text-align: center;
  color: #efefef;
  font-weight: 900;
}
.cid-sGD0zkKwQo .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-sGD0zkKwQo .mbr-section-subtitle {
  color: #777777;
}
.cid-sG4RoLlDLA {
  background-color: #ffffff;
}
.cid-sG4RoLlDLA .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-sG4RoLlDLA .container-nopadding {
  padding: 0px;
}
.cid-sG4RoLlDLA .contactBtn {
  position: absolute;
  right: 80px;
  bottom: 10px;
  z-index: 5000;
}
.cid-sG4RoLlDLA .contactBtnFixed {
  position: fixed;
}
.cid-sG4RoLlDLA .btn-circle {
  background-color: #0070c0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(60, 113, 211, 0.65);
  border-width: 1px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5) !important;
}
.cid-sG4RoLlDLA .btnIconcol {
  color: #ffffff;
}
.cid-sG4RoLlDLA .btn-circle:hover {
  background-color: #232323;
}
.cid-sG4RoLlDLA .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-sG4RoLlDLA .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-sG4RoLlDLA .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-sG4RoLlDLA .contactwindow {
  display: inline-block;
  text-align: left;
  width: 400px;
  background-color: #ecedee;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 4.5px !important;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4) !important;
  z-index: 5000;
}
.cid-sG4RoLlDLA .windowFixed {
  display: none;
  position: fixed;
  right: 70px;
  bottom: 60px;
  overflow: auto;
}
.cid-sG4RoLlDLA .windowBar {
  width: 100%;
  background-color: #3c71d3;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 4.5px !important;
  border-top-right-radius: 4.5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-sG4RoLlDLA .form-control {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-sG4RoLlDLA .close {
  color: #f9fafb;
  text-shadow: none;
  opacity: 1;
  padding-right: 3px;
  outline: none !important;
}
@media (max-width: 610px) {
  .cid-sG4RoLlDLA .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-sG4RoLlDLA .windowBar,
  .cid-sG4RoLlDLA .contentwindow,
  .cid-sG4RoLlDLA .contactwindow {
    border-radius: 0;
  }
}
.cid-sG4RoLlDLA .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-sG4RoLlDLA .windowBarText {
  display: inline;
  color: #ffffff;
  text-align: left;
}
.cid-sG4RoLlDLA .btn-form {
  display: revert !important;
}
.cid-sG4RoLlDLA .recaptcha-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
}
.cid-sG4RoLlDLA .gdpr-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-sG4RoLlDLA .send-copy-div {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.cid-sG4RoLlDLA .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}
.cid-sG4RoLlDLA .alert-success {
  background-color: #3d6fca;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .alert-danger {
  background-color: #fd000b;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.cid-sG4RoLlDLA .mbr-alert-success {
  text-align: center;
}
.cid-sG4RoLlDLA .mbr-alert-danger {
  text-align: center;
}
.cid-sG4RoLlDLA .message-div {
  margin-bottom: 5px;
}
.cid-sG4RoLlDLA .form-control {
  border: 1px solid #ADD8E6 !important;
}
.cid-sG4RoLlDLA .showAlerts {
  display: block !important;
}
.cid-sG4RoLlDLA .sendBtnCornerRadius {
  border-radius: 5px;
}
.cid-sG4RoLlDLA .hidden {
  display: none;
}
.cid-sG4RoLlDLA .mbr-section-terms {
  color: #999999;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-autorespond {
  color: #000000;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-alerterror {
  text-align: left;
}
.cid-sG4RoLlDLA .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-sG4RoLlDLA .mbr-section-labels {
  color: #232323;
}
.cid-sG4RoLlDLA .sub-btn-config {
  margin-top: 10px !important;
  margin-bottom: 9px !important;
}
.cid-sG4RoLlDLA P {
  color: #878787;
}
.cid-sZ2wHBtUqv #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  opacity: 0.5;
  z-index: 100;
  -webkit-box-shadow: 0 2px 8px -2px #000000;
  -moz-box-shadow: 0 2px 8px -2px #000000;
  box-shadow: 0 2px 8px -2px #000000;
}
@media (max-width: 768px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 769px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
@media (min-width: 992px) {
  .cid-sZ2wHBtUqv #dentauraBttB {
    right: 50%;
    margin-right: -25px !important;
    bottom: 15px;
  }
}
.cid-sZ2wHBtUqv #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 50px;
  width: 50px;
  opacity: 1;
  background-image: url("../../../assets/images/bttb-dentaura-btn1-80x80.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  border-style: solid;
  border-width: 5px;
  border-color: #ffffff;
}
.cid-sZ2wHBtUqv #dentauraBttB:hover {
  opacity: 0.92;
}
.cid-sZ2wHBtUqv .hidden {
  display: none;
}
.cid-slwwSQ23hA.popup-builder {
  background-color: #ffffff;
}
.cid-slwwSQ23hA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwwSQ23hA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwwSQ23hA .modal-content,
.cid-slwwSQ23hA .modal-dialog {
  height: auto;
}
.cid-slwwSQ23hA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwwSQ23hA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwwSQ23hA .form-wrapper .mbr-form .form-group,
  .cid-slwwSQ23hA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwwSQ23hA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwwSQ23hA .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwwSQ23hA .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwwSQ23hA .pt-0 {
  padding-top: 0 !important;
}
.cid-slwwSQ23hA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwwSQ23hA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwwSQ23hA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwwSQ23hA .modal-open {
  overflow: hidden;
}
.cid-slwwSQ23hA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwwSQ23hA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwwSQ23hA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwwSQ23hA .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwwSQ23hA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwwSQ23hA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwwSQ23hA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwwSQ23hA .modal-content {
  background: #0070c0;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwwSQ23hA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwwSQ23hA .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwwSQ23hA .modal-backdrop.show {
  opacity: .5;
}
.cid-slwwSQ23hA .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwwSQ23hA .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwwSQ23hA .modal-header .close:hover {
  opacity: 1;
}
.cid-slwwSQ23hA .modal-header .close:focus {
  outline: none;
}
.cid-slwwSQ23hA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwwSQ23hA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwwSQ23hA .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwwSQ23hA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwwSQ23hA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwwSQ23hA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwwSQ23hA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwwSQ23hA .modal-sm {
    max-width: 300px;
  }
  .cid-slwwSQ23hA .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwwSQ23hA .modal-lg,
  .cid-slwwSQ23hA .modal-xl {
    max-width: 800px;
  }
  .cid-slwwSQ23hA .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwwSQ23hA .modal-xl {
    max-width: 1140px;
  }
  .cid-slwwSQ23hA .container {
    max-width: 1140px;
  }
}
.cid-slwwSQ23hA .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwwSQ23hA .container {
    max-width: 720px;
  }
}
.cid-slwwSQ23hA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwwSQ23hA .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwwSQ23hA .form-group {
  margin-bottom: 1rem;
}
.cid-slwwSQ23hA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwwSQ23hA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwwSQ23hA .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwwSQ23hA .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slwxL9BbTO.popup-builder {
  background-color: #ffffff;
}
.cid-slwxL9BbTO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-slwxL9BbTO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-slwxL9BbTO .modal-content,
.cid-slwxL9BbTO .modal-dialog {
  height: auto;
}
.cid-slwxL9BbTO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-slwxL9BbTO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-slwxL9BbTO .form-wrapper .mbr-form .form-group,
  .cid-slwxL9BbTO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-slwxL9BbTO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-slwxL9BbTO .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-slwxL9BbTO .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-slwxL9BbTO .pt-0 {
  padding-top: 0 !important;
}
.cid-slwxL9BbTO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-slwxL9BbTO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-slwxL9BbTO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-slwxL9BbTO .modal-open {
  overflow: hidden;
}
.cid-slwxL9BbTO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-slwxL9BbTO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-slwxL9BbTO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-slwxL9BbTO .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-slwxL9BbTO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-slwxL9BbTO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-slwxL9BbTO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-slwxL9BbTO .modal-content {
  background: #3c71d3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-slwxL9BbTO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-slwxL9BbTO .modal-backdrop.fade {
  opacity: 0;
}
.cid-slwxL9BbTO .modal-backdrop.show {
  opacity: .5;
}
.cid-slwxL9BbTO .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-slwxL9BbTO .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-slwxL9BbTO .modal-header .close:hover {
  opacity: 1;
}
.cid-slwxL9BbTO .modal-header .close:focus {
  outline: none;
}
.cid-slwxL9BbTO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-slwxL9BbTO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-slwxL9BbTO .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-slwxL9BbTO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-slwxL9BbTO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-slwxL9BbTO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-slwxL9BbTO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-slwxL9BbTO .modal-sm {
    max-width: 300px;
  }
  .cid-slwxL9BbTO .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-slwxL9BbTO .modal-lg,
  .cid-slwxL9BbTO .modal-xl {
    max-width: 800px;
  }
  .cid-slwxL9BbTO .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-slwxL9BbTO .modal-xl {
    max-width: 1140px;
  }
  .cid-slwxL9BbTO .container {
    max-width: 1140px;
  }
}
.cid-slwxL9BbTO .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-slwxL9BbTO .container {
    max-width: 720px;
  }
}
.cid-slwxL9BbTO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-slwxL9BbTO .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-slwxL9BbTO .form-group {
  margin-bottom: 1rem;
}
.cid-slwxL9BbTO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-slwxL9BbTO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-slwxL9BbTO .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-slwxL9BbTO .btn {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-slAP42DaCm {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #3b67d9;
  background: linear-gradient(0deg, #3b67d9, #5f86be);
}
.cid-slAP42DaCm ul {
  padding: 0;
  margin: 0;
}
.cid-slAP42DaCm ul li {
  list-style: none;
}
.cid-slAP42DaCm ul li h4 {
  margin: 0;
}
.cid-slAP42DaCm ul li h4.display-4 {
  line-height: 1.75;
}
.cid-slAP42DaCm .item {
  color: #f9fafb;
  text-align: left;
}
.cid-slAP42DaCm .col-title {
  color: #ffffff;
  text-align: left;
}
.cid-slAP42DaCm .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-slAP42DaCm .col-title1 {
  margin-bottom: 40px;
}
.cid-slAP42DaCm .form-group,
.cid-slAP42DaCm .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-slAP42DaCm .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.07);
  color: #232323;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-slAP42DaCm .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .form-control::-moz-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .form-control:-moz-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-slAP42DaCm .col + .mbr-section-btn .btn,
.cid-slAP42DaCm .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-slAP42DaCm .col + .mbr-section-btn .btn.display-4,
.cid-slAP42DaCm .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-slAP42DaCm .col + .mbr-section-btn .btn:hover,
.cid-slAP42DaCm .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-slAP42DaCm .dragArea > *:nth-last-child(2).col,
.cid-slAP42DaCm .dragArea > *:nth-last-child(2).col-auto,
.cid-slAP42DaCm .col + .mbr-section-btn,
.cid-slAP42DaCm .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-slAP42DaCm .form1 {
  margin-top: 30px;
}
.cid-slAP42DaCm .fill-light-wrapper {
  fill: #3b67d9;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-slAP42DaCm .md-pb {
    margin-bottom: 30px;
  }
}
.cid-slAP42DaCm .item DIV {
  text-align: right;
}
