body {
  font-family: 'Geist', sans-serif;
}
.display-1 {
  font-family: 'Geist', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Geist', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Geist', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Geist', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 3.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #a148ff !important;
}
.bg-success {
  background-color: #263d5a !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  background-color: #a148ff !important;
  background: linear-gradient(90deg, #a148ff 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-primary,
.btn-primary:active {
  background-color: #a148ff;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: #ff6f45 !important;
  background: linear-gradient(90deg, #ff6f45 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6f45;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary:hover {
  transform: translateY(-3px);
}
.btn-info {
  background-color: #47b5ed !important;
  background: linear-gradient(90deg, #47b5ed 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info:hover {
  transform: translateY(-3px);
}
.btn-success {
  background-color: #263d5a !important;
  background: linear-gradient(90deg, #263d5a 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-success,
.btn-success:active {
  background-color: #263d5a;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success:hover {
  transform: translateY(-3px);
}
.btn-warning {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}
.btn-warning:hover {
  transform: translateY(-3px);
}
.btn-danger {
  background-color: #ff9966 !important;
  background: linear-gradient(90deg, #ff9966 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger:hover {
  transform: translateY(-3px);
}
.btn-white {
  background-color: #fafafa !important;
  background: linear-gradient(90deg, #fafafa 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf;
}
.btn-white:hover {
  transform: translateY(-3px);
}
.btn-black {
  background-color: #232323 !important;
  background: linear-gradient(90deg, #232323 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-black,
.btn-black:active {
  background-color: #232323;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black:hover {
  transform: translateY(-3px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a148ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #7500f0 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a148ff !important;
  border-color: #a148ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6f45;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ed3600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6f45 !important;
  border-color: #ff6f45 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #263d5a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0c141d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #263d5a !important;
  border-color: #263d5a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #a148ff !important;
}
.text-secondary {
  color: #ff6f45 !important;
}
.text-success {
  color: #263d5a !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #6d00e1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #de3200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #080c12 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #a148ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a148ff;
  border-color: #a148ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a148ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4c7ab3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #a148ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #a148ff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a148ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a148ff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #a148ff;
  border-bottom-color: #a148ff;
}
.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: #a148ff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6f45 !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='%23a148ff' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.new-font {
  font-family: 'Geist', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.new-font > .mbr-iconfont {
  font-size: 2rem;
}
.new-font-1 {
  font-family: 'FontsFree-Net-SHOWG';
  font-size: 2rem;
  line-height: 1.5;
}
.new-font-1 > .mbr-iconfont {
  font-size: 2rem;
}
.cid-vqFNqiw9iM {
  padding-top: 9rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ff8900;
  background-image: radial-gradient(at 100% -70%, #f6fafc, #69aa00, #ff8900);
}
.cid-vqFNqiw9iM .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-vqFNqiw9iM img {
  width: 100%;
  transform: scale(2);
  height: 230px;
  z-index: 0;
  border-radius: 30px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqFNqiw9iM img {
    transform: scale(1) translateX(0);
  }
}
.cid-vqFNqiw9iM .card-wrapper {
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-vqFNqiw9iM .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-vqFNqiw9iM .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid #ffffff;
  border-radius: 30px;
}
.cid-vqFNqiw9iM .card-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vqFNqiw9iM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vqFNqiw9iM .mbr-section-title,
.cid-vqFNqiw9iM .mbr-section-subtitle,
.cid-vqFNqiw9iM .mbr-text,
.cid-vqFNqiw9iM .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-vqFNqiw9iM .col-12 {
  position: relative;
}
.cid-vqFNqiw9iM .mbr-section-title {
  color: #000000;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
}
.cid-vqFNqiw9iM .mbr-text,
.cid-vqFNqiw9iM .mbr-section-btn {
  color: #000000;
}
.cid-vqFNqiw9iM .mbr-section-subtitle {
  color: #263d5a;
}
.cid-vquLwl5UmH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vquLwl5UmH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vquLwl5UmH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vquLwl5UmH .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #deeff8;
}
.cid-vquLwl5UmH .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .cid-vquLwl5UmH .content-wrapper .title-wrapper .mbr-section-title {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-vquLwl5UmH .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vquLwl5UmH .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vquLwl5UmH .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-vquLwl5UmH .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vquLwl5UmH .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vquLwl5UmH .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vquLwl5UmH .mbr-label,
.cid-vquLwl5UmH .label-wrapper {
  color: #116e99;
  text-align: center;
}
.cid-vquLwl5UmH .mbr-section-title {
  color: #000000;
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
}
.cid-vquLwl5UmH .mbr-text,
.cid-vquLwl5UmH .text-wrapper {
  color: #000000;
  text-align: justify;
}
.cid-vquLwl5UmH .mbr-section-title,
.cid-vquLwl5UmH .mbr-section-btn,
.cid-vquLwl5UmH .title-wrapper {
  text-align: center;
}
.cid-vquMsfEC7A {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vquMsfEC7A .mbr-fallback-image.disabled {
  display: none;
}
.cid-vquMsfEC7A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vquMsfEC7A .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #deeff8;
}
.cid-vquMsfEC7A .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .cid-vquMsfEC7A .content-wrapper .title-wrapper .mbr-section-title {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-vquMsfEC7A .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vquMsfEC7A .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vquMsfEC7A .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-vquMsfEC7A .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vquMsfEC7A .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vquMsfEC7A .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vquMsfEC7A .mbr-label,
.cid-vquMsfEC7A .label-wrapper {
  color: #116e99;
  text-align: center;
}
.cid-vquMsfEC7A .mbr-section-title {
  color: #000000;
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
}
.cid-vquMsfEC7A .mbr-text,
.cid-vquMsfEC7A .text-wrapper {
  color: #000000;
  text-align: justify;
}
.cid-vquMsfEC7A .mbr-section-title,
.cid-vquMsfEC7A .mbr-section-btn,
.cid-vquMsfEC7A .title-wrapper {
  text-align: center;
}
.cid-vquDbWvm40 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f1d7;
}
.cid-vquDbWvm40 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vquDbWvm40 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vquDbWvm40 .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vquDbWvm40 .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vquDbWvm40 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vquDbWvm40 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vquDbWvm40 .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vquDbWvm40 .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vquDbWvm40 .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vquDbWvm40 .image-wrapper img {
    height: 300px;
  }
}
.cid-vquDbWvm40 .mbr-label,
.cid-vquDbWvm40 .label-wrapper {
  color: #116e99;
}
.cid-vquDbWvm40 .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vquDbWvm40 .mbr-text,
.cid-vquDbWvm40 .text-wrapper {
  color: #116e99;
}
.cid-vquDbWvm40 ul li {
  font-size: 1.0rem;
  color: black;
  text-align: justify;
}
.cid-vquFnyzf7D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ebf2f6;
}
.cid-vquFnyzf7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-vquFnyzf7D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vquFnyzf7D .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vquFnyzf7D .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vquFnyzf7D .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vquFnyzf7D .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vquFnyzf7D .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vquFnyzf7D .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vquFnyzf7D .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vquFnyzf7D .image-wrapper img {
    height: 300px;
  }
}
.cid-vquFnyzf7D .mbr-label,
.cid-vquFnyzf7D .label-wrapper {
  color: #116e99;
}
.cid-vquFnyzf7D .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vquFnyzf7D .mbr-text,
.cid-vquFnyzf7D .text-wrapper {
  color: #116e99;
}
.cid-vquFnyzf7D ul li {
  font-size: 1.0rem;
  color: black;
  text-align: justify;
}
.cid-vquG3orIkq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f1d7;
}
.cid-vquG3orIkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vquG3orIkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vquG3orIkq .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vquG3orIkq .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vquG3orIkq .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vquG3orIkq .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vquG3orIkq .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vquG3orIkq .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vquG3orIkq .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vquG3orIkq .image-wrapper img {
    height: 300px;
  }
}
.cid-vquG3orIkq .mbr-label,
.cid-vquG3orIkq .label-wrapper {
  color: #116e99;
}
.cid-vquG3orIkq .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vquG3orIkq .mbr-text,
.cid-vquG3orIkq .text-wrapper {
  color: #116e99;
}
.cid-vquG3orIkq ul li {
  font-size: 1.0rem;
  color: black;
  text-align: justify;
}
.cid-vqFPr6isXS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vqFPr6isXS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-vqFPr6isXS img {
  width: 80px;
  height: 70px;
  margin-right: 0.8rem;
}
.cid-vqFPr6isXS h3 {
  margin: 0;
}
.cid-vqFPr6isXS .btn {
  width: 100%;
  border-radius: 30px;
  border-top-right-radius: 0;
  padding: 0.4rem 1rem;
}
.cid-vqFPr6isXS .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-vqFPr6isXS .text-wrap {
  width: 100%;
}
.cid-vqFPr6isXS .item-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-vqFPr6isXS .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-vqFPr6isXS .socicon-wrap .mbr-iconfont {
  font-size: 1.2rem;
  color: #ffffff !important;
  background: #88a900;
  padding: 10px;
  margin-right: 0.6rem;
  border: 2px solid #88a900;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-vqFPr6isXS .socicon-wrap .mbr-iconfont:hover {
  background: #ffffff;
  color: #88a900 !important;
  border: 2px solid #88a900;
}
.cid-vqFPr6isXS .socicon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vqFPr6isXS .jq-selectbox__dropdown,
.cid-vqFPr6isXS ul {
  border-radius: 20px!important;
}
.cid-vqFPr6isXS .jq-selectbox {
  border-radius: 30px;
}
.cid-vqFPr6isXS .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-vqFPr6isXS .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-vqFPr6isXS input,
.cid-vqFPr6isXS textarea,
.cid-vqFPr6isXS .select {
  border-radius: 30px;
}
.cid-vqFPr6isXS input,
.cid-vqFPr6isXS textarea {
  padding: 1rem 2rem;
}
.cid-vqFPr6isXS textarea {
  min-height: 10rem;
}
.cid-vqFPr6isXS .form-control,
.cid-vqFPr6isXS .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #181818;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vqFPr6isXS .form-control::-webkit-input-placeholder,
.cid-vqFPr6isXS .field-input::-webkit-input-placeholder,
.cid-vqFPr6isXS .form-control::-webkit-input-placeholder,
.cid-vqFPr6isXS .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-vqFPr6isXS .form-control:-moz-placeholder,
.cid-vqFPr6isXS .field-input:-moz-placeholder,
.cid-vqFPr6isXS .form-control:-moz-placeholder,
.cid-vqFPr6isXS .field-input:-moz-placeholder {
  color: #383838;
}
.cid-vqFPr6isXS .form-control:hover,
.cid-vqFPr6isXS .field-input:hover,
.cid-vqFPr6isXS .form-control:focus,
.cid-vqFPr6isXS .field-input:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-vqFPr6isXS .form-control:hover::-webkit-input-placeholder,
.cid-vqFPr6isXS .field-input:hover::-webkit-input-placeholder,
.cid-vqFPr6isXS .form-control:focus::-webkit-input-placeholder,
.cid-vqFPr6isXS .field-input:focus::-webkit-input-placeholder,
.cid-vqFPr6isXS .form-control:hover::-webkit-input-placeholder,
.cid-vqFPr6isXS .field-input:hover::-webkit-input-placeholder,
.cid-vqFPr6isXS .form-control:focus::-webkit-input-placeholder,
.cid-vqFPr6isXS .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-vqFPr6isXS .form-control:hover:-moz-placeholder,
.cid-vqFPr6isXS .field-input:hover:-moz-placeholder,
.cid-vqFPr6isXS .form-control:focus:-moz-placeholder,
.cid-vqFPr6isXS .field-input:focus:-moz-placeholder,
.cid-vqFPr6isXS .form-control:hover:-moz-placeholder,
.cid-vqFPr6isXS .field-input:hover:-moz-placeholder,
.cid-vqFPr6isXS .form-control:focus:-moz-placeholder,
.cid-vqFPr6isXS .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-vqFPr6isXS .jq-number__spin:hover,
.cid-vqFPr6isXS .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vqFPr6isXS .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #181818;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vqFPr6isXS .jq-selectbox li,
.cid-vqFPr6isXS .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vqFPr6isXS .jq-selectbox li:hover,
.cid-vqFPr6isXS .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-vqFPr6isXS .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vqFPr6isXS .jq-number__spin.minus:hover:after,
.cid-vqFPr6isXS .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vqFPr6isXS .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vqFPr6isXS .jq-number__spin.minus:after,
.cid-vqFPr6isXS .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vqFPr6isXS input::-webkit-clear-button {
  display: none;
}
.cid-vqFPr6isXS input::-webkit-inner-spin-button {
  display: none;
}
.cid-vqFPr6isXS input::-webkit-outer-spin-button {
  display: none;
}
.cid-vqFPr6isXS input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vqFPr6isXS .col-md-6 {
  margin-bottom: 2rem;
}
.cid-vqFPr6isXS .form-group {
  margin-bottom: 0.4rem;
}
.cid-vqFPr6isXS .form-control {
  min-height: 2em;
  font-size: 1rem;
  text-align: center;
}
.cid-vqFPr6isXS .title1 {
  margin: 0;
}
.cid-vqFPr6isXS .align-wrap {
  display: block;
}
.cid-vqFPr6isXS .mbr-iconfont {
  font-size: 1.2rem;
  color: #181818 !important;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-vqFPr6isXS form {
    padding: 0;
  }
  .cid-vqFPr6isXS .socicon-wrap {
    margin: auto;
  }
}
.cid-vqFPr6isXS .title {
  color: #ed6436;
}
.cid-vqFPr6isXS .title1,
.cid-vqFPr6isXS .title-col {
  color: #ff6600;
}
.cid-vqFPr6isXS .links-title {
  color: #ff6600;
}
.cid-vqFPr6isXS .logo01 {
  font-family: Showcard Gothic;
  font-colour: #ff6600;
  font-size: 1.4rem;
  font-style: italic;
}
.cid-vqFPo4YOTA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff6600;
}
.cid-vqFPo4YOTA .media-container-row .mbr-text {
  font-size: 0.9rem;
  color: #000000;
}
.cid-vqGQNRxUnB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-vqGQNRxUnB nav.navbar {
  position: fixed;
}
.cid-vqGQNRxUnB .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vqGQNRxUnB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vqGQNRxUnB .dropdown-item {
  border: none !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-weight: 300;
}
.cid-vqGQNRxUnB .dropdown-item:hover,
.cid-vqGQNRxUnB .dropdown-item:focus {
  background: #000000 !important;
  color: #ffffff !important;
}
.cid-vqGQNRxUnB .dropdown-item:hover span {
  color: white;
}
.cid-vqGQNRxUnB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqGQNRxUnB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqGQNRxUnB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqGQNRxUnB .nav-link {
  position: relative;
}
.cid-vqGQNRxUnB .container {
  display: flex;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .container {
    max-width: 1100px;
  }
}
.cid-vqGQNRxUnB .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-vqGQNRxUnB .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vqGQNRxUnB .dropdown-menu,
.cid-vqGQNRxUnB .navbar.opened {
  background: #ffffff !important;
}
.cid-vqGQNRxUnB .nav-item:focus,
.cid-vqGQNRxUnB .nav-link:focus {
  outline: none;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqGQNRxUnB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px 14px 14px 14px!important;
  transition: none;
  margin: 0 0 5px 0 !important;
}
.cid-vqGQNRxUnB .navbar {
  min-height: 86px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-vqGQNRxUnB .navbar.opened {
  transition: all 0.3s;
}
.cid-vqGQNRxUnB .navbar .dropdown-item {
  padding: 8px 2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
  width: fit-content !important;
}
.cid-vqGQNRxUnB .navbar .navbar-logo {
  margin-right: 10px;
}
.cid-vqGQNRxUnB .navbar .navbar-logo img {
  width: auto;
}
.cid-vqGQNRxUnB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqGQNRxUnB .navbar.collapsed {
  justify-content: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqGQNRxUnB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  text-align: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item {
  width: 100% !important;
  justify-content: center;
  align-items: center;
  padding: 14px !important;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: 12px;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
  position: static;
}
.cid-vqGQNRxUnB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqGQNRxUnB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu {
    width: auto !important;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-item:after {
    right: 12px;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
    position: static;
    margin-bottom: -0.2rem;
  }
  .cid-vqGQNRxUnB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqGQNRxUnB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-item {
    padding: 14px 14px 14px 14px!important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
    width: 100% !important;
  }
  .cid-vqGQNRxUnB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vqGQNRxUnB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqGQNRxUnB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqGQNRxUnB .navbar.navbar-short {
  min-height: 86px;
}
.cid-vqGQNRxUnB .navbar.navbar-short .navbar-brand {
  min-height: 86px;
}
.cid-vqGQNRxUnB .navbar-brand {
  min-height: 86px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-caption:hover,
.cid-vqGQNRxUnB .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqGQNRxUnB .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vqGQNRxUnB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vqGQNRxUnB .dropdown-item.active,
.cid-vqGQNRxUnB .dropdown-item:active {
  background-color: transparent;
}
.cid-vqGQNRxUnB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 2.6rem;
  border-radius: 30px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
    text-align: center;
  }
}
.cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vqGQNRxUnB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqGQNRxUnB ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0 10px;
  border: 1px solid #ff6f45;
}
@media (min-width: 991px) {
  .cid-vqGQNRxUnB ul.navbar-nav {
    background-color: transparent;
  }
}
@media (max-width: 992px) {
  .cid-vqGQNRxUnB ul.navbar-nav {
    padding: 10px;
  }
  .cid-vqGQNRxUnB ul.navbar-nav .nav-item:last-child .nav-link {
    margin-bottom: 0;
  }
}
.cid-vqGQNRxUnB .collapsed ul.navbar-nav {
  padding: 10px;
}
.cid-vqGQNRxUnB .collapsed ul.navbar-nav .nav-item:last-child .nav-link {
  margin-bottom: 0;
}
.cid-vqGQNRxUnB .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-vqGQNRxUnB .navbar-buttons {
    text-align: left;
    margin-left: 22px;
  }
}
.cid-vqGQNRxUnB .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-vqGQNRxUnB .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vqGQNRxUnB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 86px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqGQNRxUnB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqGQNRxUnB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vqGQNRxUnB .navbar {
    height: 70px;
  }
  .cid-vqGQNRxUnB .navbar.opened {
    height: auto;
  }
  .cid-vqGQNRxUnB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqGQNRxUnB .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.cid-vqGQNRxUnB .nav-item {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  font-weigth: bold;
}
.cid-vqGQNRxUnB .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 6px 2px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-vqGQNRxUnB .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vqGQNRxUnB .nav-item .nav-link:hover {
  background-color: #caf31d;
  color: #000000;
}
.cid-vqGQNRxUnB .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-vqGQNRxUnB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vqGQNRxUnB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vqGQNRxUnB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .navbar {
    justify-content: flex-start !important;
  }
  .cid-vqGQNRxUnB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vqGQNRxUnB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vqGQNRxUnB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vqGQNRxUnB .content-wrap {
  min-height: 86px;
}
.cid-vqGQNRxUnB .dropdown {
  width: fit-content;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .dropdown {
    width: auto;
    text-align: center;
  }
}
.cid-vqGQNRxUnB .navbar-caption {
  font-family: Showcard Gothic;
  font-colour: #ff6600;
  font-size: 1.4rem;
  font-style: italic;
}
.cid-vqAzKp3AZH {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/03-ajustements-m.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.cid-vqAzKp3AZH .mbr-section-title {
  color: #000000;
  font-size: 2.5rem;
  font-weight: bolder;
}
.cid-vqAzKp3AZH .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 2.0rem;
}
.cid-vqAzKp3AZH .mbr-section-btn {
  color: #000000;
  text-align: justify;
}
.cid-vqACYXIIwK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ff8900;
  background-image: radial-gradient(at 100% -70%, #69aa00, #fcf6dd, #ff8900);
}
.cid-vqACYXIIwK .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vqACYXIIwK .row {
  max-width: 900px;
  margin: auto;
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-vqACYXIIwK .row {
    padding: 2rem 1rem;
  }
}
.cid-vqACYXIIwK .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 30px;
  pointer-events: none;
}
.cid-vqACYXIIwK .row:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-vqACYXIIwK .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-vqACYXIIwK span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-vqACYXIIwK .collapsed span {
  transform: rotate(0deg);
}
.cid-vqACYXIIwK .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-vqACYXIIwK .panel-group {
  width: 100%;
}
.cid-vqACYXIIwK .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-vqACYXIIwK .card {
  border-radius: 0px;
}
.cid-vqACYXIIwK .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-vqACYXIIwK .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-vqACYXIIwK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vqACYXIIwK .card .card-header a.panel-title .header-text {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-vqACYXIIwK .mbr-section-title,
.cid-vqACYXIIwK .mbr-section-subtitle,
.cid-vqACYXIIwK .content-block {
  position: relative;
  z-index: 1;
}
.cid-vqACYXIIwK .panel-text {
  color: #263d5a;
}
.cid-vqACYXIIwK .header-text,
.cid-vqACYXIIwK .sign {
  color: #263d5a;
  text-align: right;
}
.cid-vqACYXIIwK .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqACYXIIwK .header-text,
.cid-vqACYXIIwK .sign,
.cid-vqACYXIIwK .card-header {
  color: #263d5a;
  text-align: justify;
}
.cid-vqACYXIIwK .mbr-section-subtitle {
  color: #263d5a;
}
.cid-vqACYXIIwK .mbr-text {
  color: black;
  text-align: justify;
  font-size: 1.2rem;
}
.cid-vqAzKpWXiQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqAzKpWXiQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAzKpWXiQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAzKpWXiQ .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAzKpWXiQ .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAzKpWXiQ .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAzKpWXiQ .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAzKpWXiQ .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAzKpWXiQ .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAzKpWXiQ .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAzKpWXiQ .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAzKpWXiQ .mbr-label,
.cid-vqAzKpWXiQ .label-wrapper {
  color: #116e99;
}
.cid-vqAzKpWXiQ .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAzKpWXiQ .mbr-section-title-3 {
  color: #16526e;
  font-size: 1.3rem;
  font-weight: bold;
}
.cid-vqAzKpWXiQ .mbr-text,
.cid-vqAzKpWXiQ .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqAzKpWXiQ ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAzKpWXiQ blockquote {
  background-color: orange;
}
.cid-vqAzKpWXiQ ol li {
  font-size: 1.3rem;
}
.cid-vqAzKpWXiQ mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAzKpWXiQ .mbr-section-title,
.cid-vqAzKpWXiQ .mbr-section-btn,
.cid-vqAzKpWXiQ .title-wrapper {
  color: #16526e;
}
.cid-vqAzKpWXiQ .mbr-section-title-3,
.cid-vqAzKpWXiQ .title-wrapper {
  color: #820cfe;
}
.cid-vqAzKr0zX8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqAzKr0zX8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAzKr0zX8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAzKr0zX8 .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAzKr0zX8 .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAzKr0zX8 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAzKr0zX8 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAzKr0zX8 .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAzKr0zX8 .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAzKr0zX8 .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAzKr0zX8 .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAzKr0zX8 .mbr-label,
.cid-vqAzKr0zX8 .label-wrapper {
  color: #116e99;
}
.cid-vqAzKr0zX8 .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAzKr0zX8 .mbr-text,
.cid-vqAzKr0zX8 .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqAzKr0zX8 ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAzKr0zX8 blockquote {
  background-color: orange;
}
.cid-vqAzKrWIcC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqAzKrWIcC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAzKrWIcC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAzKrWIcC .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAzKrWIcC .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAzKrWIcC .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAzKrWIcC .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAzKrWIcC .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAzKrWIcC .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAzKrWIcC .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAzKrWIcC .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAzKrWIcC .mbr-label,
.cid-vqAzKrWIcC .label-wrapper {
  color: #116e99;
}
.cid-vqAzKrWIcC .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAzKrWIcC .mbr-text,
.cid-vqAzKrWIcC .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqAzKrWIcC ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAzKrWIcC blockquote {
  background-color: orange;
  font-style: italic;
}
.cid-vqAzKH0Cml {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqAzKH0Cml .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAzKH0Cml .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAzKH0Cml .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAzKH0Cml .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAzKH0Cml .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAzKH0Cml .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAzKH0Cml .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAzKH0Cml .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAzKH0Cml .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAzKH0Cml .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAzKH0Cml .mbr-label,
.cid-vqAzKH0Cml .label-wrapper {
  color: #116e99;
}
.cid-vqAzKH0Cml .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAzKH0Cml .mbr-text,
.cid-vqAzKH0Cml .text-wrapper {
  color: #000000;
  text-align: justify;
}
.cid-vqAzKH0Cml ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAzKH0Cml .container img {
  object-fit: contain;
  margin: auto;
  display: block;
}
.cid-vqAzKH0Cml blockquote {
  background-color: red;
  font-style: italic;
}
.cid-vqAzKH0Cml blockquote2 {
  background-color: orange;
  font-style: italic;
}
.cid-vqAzKH0Cml .mbr-text-y {
  color: yellow;
  text-align: justify;
  font-style: italic;
  font-weight: bold;
}
.cid-vqAzKH0Cml .mbr-text-w {
  color: white;
  text-align: justify;
  font-style: italic;
  font-weight: bold;
}
.cid-vqAzKH0Cml .mbr-section-title-3,
.cid-vqAzKH0Cml .title-wrapper {
  color: #820cfe;
  font-weight: bold;
  font-size: 1.3rem;
}
.cid-vqGMzFJqrq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vqGMzFJqrq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-vqGMzFJqrq img {
  width: 80px;
  height: 70px;
  margin-right: 0.8rem;
}
.cid-vqGMzFJqrq h3 {
  margin: 0;
}
.cid-vqGMzFJqrq .btn {
  width: 100%;
  border-radius: 30px;
  border-top-right-radius: 0;
  padding: 0.4rem 1rem;
}
.cid-vqGMzFJqrq .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-vqGMzFJqrq .text-wrap {
  width: 100%;
}
.cid-vqGMzFJqrq .item-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-vqGMzFJqrq .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-vqGMzFJqrq .socicon-wrap .mbr-iconfont {
  font-size: 1.2rem;
  color: #ffffff !important;
  background: #88a900;
  padding: 10px;
  margin-right: 0.6rem;
  border: 2px solid #88a900;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-vqGMzFJqrq .socicon-wrap .mbr-iconfont:hover {
  background: #ffffff;
  color: #88a900 !important;
  border: 2px solid #88a900;
}
.cid-vqGMzFJqrq .socicon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vqGMzFJqrq .jq-selectbox__dropdown,
.cid-vqGMzFJqrq ul {
  border-radius: 20px!important;
}
.cid-vqGMzFJqrq .jq-selectbox {
  border-radius: 30px;
}
.cid-vqGMzFJqrq .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-vqGMzFJqrq .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-vqGMzFJqrq input,
.cid-vqGMzFJqrq textarea,
.cid-vqGMzFJqrq .select {
  border-radius: 30px;
}
.cid-vqGMzFJqrq input,
.cid-vqGMzFJqrq textarea {
  padding: 1rem 2rem;
}
.cid-vqGMzFJqrq textarea {
  min-height: 10rem;
}
.cid-vqGMzFJqrq .form-control,
.cid-vqGMzFJqrq .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #181818;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vqGMzFJqrq .form-control::-webkit-input-placeholder,
.cid-vqGMzFJqrq .field-input::-webkit-input-placeholder,
.cid-vqGMzFJqrq .form-control::-webkit-input-placeholder,
.cid-vqGMzFJqrq .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-vqGMzFJqrq .form-control:-moz-placeholder,
.cid-vqGMzFJqrq .field-input:-moz-placeholder,
.cid-vqGMzFJqrq .form-control:-moz-placeholder,
.cid-vqGMzFJqrq .field-input:-moz-placeholder {
  color: #383838;
}
.cid-vqGMzFJqrq .form-control:hover,
.cid-vqGMzFJqrq .field-input:hover,
.cid-vqGMzFJqrq .form-control:focus,
.cid-vqGMzFJqrq .field-input:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-vqGMzFJqrq .form-control:hover::-webkit-input-placeholder,
.cid-vqGMzFJqrq .field-input:hover::-webkit-input-placeholder,
.cid-vqGMzFJqrq .form-control:focus::-webkit-input-placeholder,
.cid-vqGMzFJqrq .field-input:focus::-webkit-input-placeholder,
.cid-vqGMzFJqrq .form-control:hover::-webkit-input-placeholder,
.cid-vqGMzFJqrq .field-input:hover::-webkit-input-placeholder,
.cid-vqGMzFJqrq .form-control:focus::-webkit-input-placeholder,
.cid-vqGMzFJqrq .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-vqGMzFJqrq .form-control:hover:-moz-placeholder,
.cid-vqGMzFJqrq .field-input:hover:-moz-placeholder,
.cid-vqGMzFJqrq .form-control:focus:-moz-placeholder,
.cid-vqGMzFJqrq .field-input:focus:-moz-placeholder,
.cid-vqGMzFJqrq .form-control:hover:-moz-placeholder,
.cid-vqGMzFJqrq .field-input:hover:-moz-placeholder,
.cid-vqGMzFJqrq .form-control:focus:-moz-placeholder,
.cid-vqGMzFJqrq .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-vqGMzFJqrq .jq-number__spin:hover,
.cid-vqGMzFJqrq .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vqGMzFJqrq .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #181818;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vqGMzFJqrq .jq-selectbox li,
.cid-vqGMzFJqrq .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vqGMzFJqrq .jq-selectbox li:hover,
.cid-vqGMzFJqrq .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-vqGMzFJqrq .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vqGMzFJqrq .jq-number__spin.minus:hover:after,
.cid-vqGMzFJqrq .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vqGMzFJqrq .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vqGMzFJqrq .jq-number__spin.minus:after,
.cid-vqGMzFJqrq .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vqGMzFJqrq input::-webkit-clear-button {
  display: none;
}
.cid-vqGMzFJqrq input::-webkit-inner-spin-button {
  display: none;
}
.cid-vqGMzFJqrq input::-webkit-outer-spin-button {
  display: none;
}
.cid-vqGMzFJqrq input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vqGMzFJqrq .col-md-6 {
  margin-bottom: 2rem;
}
.cid-vqGMzFJqrq .form-group {
  margin-bottom: 0.4rem;
}
.cid-vqGMzFJqrq .form-control {
  min-height: 2em;
  font-size: 1rem;
  text-align: center;
}
.cid-vqGMzFJqrq .title1 {
  margin: 0;
}
.cid-vqGMzFJqrq .align-wrap {
  display: block;
}
.cid-vqGMzFJqrq .mbr-iconfont {
  font-size: 1.2rem;
  color: #181818 !important;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-vqGMzFJqrq form {
    padding: 0;
  }
  .cid-vqGMzFJqrq .socicon-wrap {
    margin: auto;
  }
}
.cid-vqGMzFJqrq .title {
  color: #ed6436;
}
.cid-vqGMzFJqrq .title1,
.cid-vqGMzFJqrq .title-col {
  color: #ff6600;
}
.cid-vqGMzFJqrq .links-title {
  color: #ff6600;
}
.cid-vqGMzFJqrq .logo01 {
  font-family: Showcard Gothic;
  font-colour: #ff6600;
  font-size: 1.4rem;
  font-style: italic;
}
.cid-vqFPo4YOTA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff6600;
}
.cid-vqFPo4YOTA .media-container-row .mbr-text {
  font-size: 0.9rem;
  color: #000000;
}
.cid-vqGQNRxUnB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-vqGQNRxUnB nav.navbar {
  position: fixed;
}
.cid-vqGQNRxUnB .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vqGQNRxUnB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vqGQNRxUnB .dropdown-item {
  border: none !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-weight: 300;
}
.cid-vqGQNRxUnB .dropdown-item:hover,
.cid-vqGQNRxUnB .dropdown-item:focus {
  background: #000000 !important;
  color: #ffffff !important;
}
.cid-vqGQNRxUnB .dropdown-item:hover span {
  color: white;
}
.cid-vqGQNRxUnB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqGQNRxUnB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqGQNRxUnB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqGQNRxUnB .nav-link {
  position: relative;
}
.cid-vqGQNRxUnB .container {
  display: flex;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .container {
    max-width: 1100px;
  }
}
.cid-vqGQNRxUnB .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-vqGQNRxUnB .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vqGQNRxUnB .dropdown-menu,
.cid-vqGQNRxUnB .navbar.opened {
  background: #ffffff !important;
}
.cid-vqGQNRxUnB .nav-item:focus,
.cid-vqGQNRxUnB .nav-link:focus {
  outline: none;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqGQNRxUnB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px 14px 14px 14px!important;
  transition: none;
  margin: 0 0 5px 0 !important;
}
.cid-vqGQNRxUnB .navbar {
  min-height: 86px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-vqGQNRxUnB .navbar.opened {
  transition: all 0.3s;
}
.cid-vqGQNRxUnB .navbar .dropdown-item {
  padding: 8px 2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
  width: fit-content !important;
}
.cid-vqGQNRxUnB .navbar .navbar-logo {
  margin-right: 10px;
}
.cid-vqGQNRxUnB .navbar .navbar-logo img {
  width: auto;
}
.cid-vqGQNRxUnB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqGQNRxUnB .navbar.collapsed {
  justify-content: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqGQNRxUnB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  text-align: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item {
  width: 100% !important;
  justify-content: center;
  align-items: center;
  padding: 14px !important;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: 12px;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
  position: static;
}
.cid-vqGQNRxUnB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqGQNRxUnB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu {
    width: auto !important;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-item:after {
    right: 12px;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
    position: static;
    margin-bottom: -0.2rem;
  }
  .cid-vqGQNRxUnB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqGQNRxUnB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-item {
    padding: 14px 14px 14px 14px!important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
    width: 100% !important;
  }
  .cid-vqGQNRxUnB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vqGQNRxUnB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqGQNRxUnB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqGQNRxUnB .navbar.navbar-short {
  min-height: 86px;
}
.cid-vqGQNRxUnB .navbar.navbar-short .navbar-brand {
  min-height: 86px;
}
.cid-vqGQNRxUnB .navbar-brand {
  min-height: 86px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-caption:hover,
.cid-vqGQNRxUnB .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqGQNRxUnB .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vqGQNRxUnB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vqGQNRxUnB .dropdown-item.active,
.cid-vqGQNRxUnB .dropdown-item:active {
  background-color: transparent;
}
.cid-vqGQNRxUnB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 2.6rem;
  border-radius: 30px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
    text-align: center;
  }
}
.cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vqGQNRxUnB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqGQNRxUnB ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0 10px;
  border: 1px solid #ff6f45;
}
@media (min-width: 991px) {
  .cid-vqGQNRxUnB ul.navbar-nav {
    background-color: transparent;
  }
}
@media (max-width: 992px) {
  .cid-vqGQNRxUnB ul.navbar-nav {
    padding: 10px;
  }
  .cid-vqGQNRxUnB ul.navbar-nav .nav-item:last-child .nav-link {
    margin-bottom: 0;
  }
}
.cid-vqGQNRxUnB .collapsed ul.navbar-nav {
  padding: 10px;
}
.cid-vqGQNRxUnB .collapsed ul.navbar-nav .nav-item:last-child .nav-link {
  margin-bottom: 0;
}
.cid-vqGQNRxUnB .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-vqGQNRxUnB .navbar-buttons {
    text-align: left;
    margin-left: 22px;
  }
}
.cid-vqGQNRxUnB .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-vqGQNRxUnB .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vqGQNRxUnB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 86px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqGQNRxUnB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqGQNRxUnB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vqGQNRxUnB .navbar {
    height: 70px;
  }
  .cid-vqGQNRxUnB .navbar.opened {
    height: auto;
  }
  .cid-vqGQNRxUnB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqGQNRxUnB .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.cid-vqGQNRxUnB .nav-item {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  font-weigth: bold;
}
.cid-vqGQNRxUnB .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 6px 2px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-vqGQNRxUnB .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vqGQNRxUnB .nav-item .nav-link:hover {
  background-color: #caf31d;
  color: #000000;
}
.cid-vqGQNRxUnB .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-vqGQNRxUnB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vqGQNRxUnB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vqGQNRxUnB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .navbar {
    justify-content: flex-start !important;
  }
  .cid-vqGQNRxUnB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vqGQNRxUnB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vqGQNRxUnB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vqGQNRxUnB .content-wrap {
  min-height: 86px;
}
.cid-vqGQNRxUnB .dropdown {
  width: fit-content;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .dropdown {
    width: auto;
    text-align: center;
  }
}
.cid-vqGQNRxUnB .navbar-caption {
  font-family: Showcard Gothic;
  font-colour: #ff6600;
  font-size: 1.4rem;
  font-style: italic;
}
.cid-vqyFQwZu0b {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/02-preparation-m.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.cid-vqyFQwZu0b .mbr-section-title {
  color: #000000;
  font-size: 2.5rem;
  font-weight: bolder;
}
.cid-vqyFQwZu0b .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 2.0rem;
}
.cid-vqyFQwZu0b .mbr-section-btn {
  color: #000000;
  text-align: justify;
}
.cid-vqyFQxKWwl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqyFQxKWwl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqyFQxKWwl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqyFQxKWwl .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqyFQxKWwl .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqyFQxKWwl .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqyFQxKWwl .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqyFQxKWwl .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqyFQxKWwl .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqyFQxKWwl .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqyFQxKWwl .image-wrapper img {
    height: 300px;
  }
}
.cid-vqyFQxKWwl .mbr-label,
.cid-vqyFQxKWwl .label-wrapper {
  color: #116e99;
}
.cid-vqyFQxKWwl .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqyFQxKWwl .mbr-text,
.cid-vqyFQxKWwl .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqyFQxKWwl ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqyFQxKWwl blockquote {
  background-color: orange;
}
.cid-vqyFQxKWwl mark {
  background-color: yellow;
  color: red;
}
.cid-vqz8Ih8OQa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqz8Ih8OQa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqz8Ih8OQa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqz8Ih8OQa .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqz8Ih8OQa .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqz8Ih8OQa .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqz8Ih8OQa .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqz8Ih8OQa .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqz8Ih8OQa .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqz8Ih8OQa .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqz8Ih8OQa .image-wrapper img {
    height: 300px;
  }
}
.cid-vqz8Ih8OQa .mbr-label,
.cid-vqz8Ih8OQa .label-wrapper {
  color: #116e99;
}
.cid-vqz8Ih8OQa .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqz8Ih8OQa .mbr-text,
.cid-vqz8Ih8OQa .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqz8Ih8OQa ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqz8Ih8OQa blockquote {
  background-color: orange;
}
.cid-vqz8Ih8OQa mark {
  background-color: yellow;
  color: red;
  font-style: italic;
}
.cid-vqHuRJRBtd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqHuRJRBtd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqHuRJRBtd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqHuRJRBtd .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqHuRJRBtd .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqHuRJRBtd .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqHuRJRBtd .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqHuRJRBtd .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqHuRJRBtd .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqHuRJRBtd .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqHuRJRBtd .image-wrapper img {
    height: 300px;
  }
}
.cid-vqHuRJRBtd .mbr-label,
.cid-vqHuRJRBtd .label-wrapper {
  color: #116e99;
}
.cid-vqHuRJRBtd .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqHuRJRBtd .mbr-text,
.cid-vqHuRJRBtd .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqHuRJRBtd ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqHuRJRBtd blockquote {
  background-color: orange;
}
.cid-vqHuRJRBtd mark {
  background-color: yellow;
  color: red;
  font-style: italic;
}
.cid-vqz9YS6AB0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqz9YS6AB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqz9YS6AB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqz9YS6AB0 .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqz9YS6AB0 .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqz9YS6AB0 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqz9YS6AB0 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqz9YS6AB0 .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqz9YS6AB0 .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqz9YS6AB0 .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqz9YS6AB0 .image-wrapper img {
    height: 300px;
  }
}
.cid-vqz9YS6AB0 .mbr-label,
.cid-vqz9YS6AB0 .label-wrapper {
  color: #116e99;
}
.cid-vqz9YS6AB0 .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqz9YS6AB0 .mbr-text,
.cid-vqz9YS6AB0 .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqz9YS6AB0 ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqz9YS6AB0 blockquote {
  background-color: orange;
}
.cid-vqzbCQhojM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fad6bc;
}
.cid-vqzbCQhojM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqzbCQhojM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqzbCQhojM .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqzbCQhojM .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqzbCQhojM .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqzbCQhojM .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqzbCQhojM .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqzbCQhojM .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqzbCQhojM .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqzbCQhojM .image-wrapper img {
    height: 300px;
  }
}
.cid-vqzbCQhojM .mbr-label,
.cid-vqzbCQhojM .label-wrapper {
  color: #116e99;
}
.cid-vqzbCQhojM .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqzbCQhojM .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqzbCQhojM .mbr-text,
.cid-vqzbCQhojM .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqzbCQhojM ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqzbCQhojM ol li {
  font-size: 1.3rem;
}
.cid-vqzbCQhojM blockquote {
  background-color: orange;
}
.cid-vqzbCQhojM mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqzkHDdQXf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0ccac;
}
.cid-vqzkHDdQXf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqzkHDdQXf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqzkHDdQXf .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqzkHDdQXf .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqzkHDdQXf .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqzkHDdQXf .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqzkHDdQXf .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqzkHDdQXf .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqzkHDdQXf .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqzkHDdQXf .image-wrapper img {
    height: 300px;
  }
}
.cid-vqzkHDdQXf .mbr-label,
.cid-vqzkHDdQXf .label-wrapper {
  color: #116e99;
}
.cid-vqzkHDdQXf .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqzkHDdQXf .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqzkHDdQXf .mbr-text,
.cid-vqzkHDdQXf .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqzkHDdQXf ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqzkHDdQXf ol li {
  font-size: 1.3rem;
}
.cid-vqzkHDdQXf blockquote {
  background-color: orange;
}
.cid-vqzkHDdQXf mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqA2pvhMkR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fad6bc;
}
.cid-vqA2pvhMkR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqA2pvhMkR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqA2pvhMkR .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqA2pvhMkR .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqA2pvhMkR .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqA2pvhMkR .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqA2pvhMkR .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqA2pvhMkR .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqA2pvhMkR .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqA2pvhMkR .image-wrapper img {
    height: 300px;
  }
}
.cid-vqA2pvhMkR .mbr-label,
.cid-vqA2pvhMkR .label-wrapper {
  color: #116e99;
}
.cid-vqA2pvhMkR .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqA2pvhMkR .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqA2pvhMkR .mbr-text,
.cid-vqA2pvhMkR .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqA2pvhMkR ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqA2pvhMkR ol li {
  font-size: 1.3rem;
}
.cid-vqA2pvhMkR blockquote {
  background-color: orange;
}
.cid-vqA2pvhMkR mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqA2pvhMkR mark-02 {
  color: green;
  font-weight: bold;
  font-style: italic;
}
.cid-vqA5EaQeLo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0ccac;
}
.cid-vqA5EaQeLo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqA5EaQeLo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqA5EaQeLo .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqA5EaQeLo .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqA5EaQeLo .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqA5EaQeLo .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqA5EaQeLo .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqA5EaQeLo .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqA5EaQeLo .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqA5EaQeLo .image-wrapper img {
    height: 300px;
  }
}
.cid-vqA5EaQeLo .mbr-label,
.cid-vqA5EaQeLo .label-wrapper {
  color: #116e99;
}
.cid-vqA5EaQeLo .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqA5EaQeLo .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqA5EaQeLo .mbr-text,
.cid-vqA5EaQeLo .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqA5EaQeLo ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqA5EaQeLo ol li {
  font-size: 1.3rem;
}
.cid-vqA5EaQeLo blockquote {
  background-color: orange;
}
.cid-vqA5EaQeLo mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqA5EaQeLo mark-02 {
  color: green;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAaPb5WvM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fad6bc;
}
.cid-vqAaPb5WvM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAaPb5WvM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAaPb5WvM .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAaPb5WvM .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAaPb5WvM .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAaPb5WvM .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAaPb5WvM .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAaPb5WvM .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAaPb5WvM .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAaPb5WvM .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAaPb5WvM .mbr-label,
.cid-vqAaPb5WvM .label-wrapper {
  color: #116e99;
}
.cid-vqAaPb5WvM .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAaPb5WvM .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqAaPb5WvM .mbr-text,
.cid-vqAaPb5WvM .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqAaPb5WvM ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAaPb5WvM ol li {
  font-size: 1.3rem;
}
.cid-vqAaPb5WvM blockquote {
  background-color: orange;
}
.cid-vqAaPb5WvM mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAaPb5WvM mark-02 {
  color: green;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAd73USrE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0ccac;
}
.cid-vqAd73USrE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAd73USrE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAd73USrE .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAd73USrE .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAd73USrE .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAd73USrE .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAd73USrE .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAd73USrE .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAd73USrE .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAd73USrE .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAd73USrE .mbr-label,
.cid-vqAd73USrE .label-wrapper {
  color: #116e99;
}
.cid-vqAd73USrE .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAd73USrE .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqAd73USrE .mbr-text,
.cid-vqAd73USrE .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqAd73USrE ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAd73USrE ol li {
  font-size: 1.3rem;
}
.cid-vqAd73USrE blockquote {
  background-color: orange;
  font-style: italic;
}
.cid-vqAd73USrE mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAd73USrE mark-02 {
  color: green;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAjJWroXA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fad6bc;
}
.cid-vqAjJWroXA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAjJWroXA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAjJWroXA .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAjJWroXA .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAjJWroXA .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAjJWroXA .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAjJWroXA .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAjJWroXA .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAjJWroXA .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAjJWroXA .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAjJWroXA .mbr-label,
.cid-vqAjJWroXA .label-wrapper {
  color: #116e99;
}
.cid-vqAjJWroXA .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAjJWroXA .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqAjJWroXA .mbr-text,
.cid-vqAjJWroXA .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqAjJWroXA ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAjJWroXA ol li {
  font-size: 1.3rem;
}
.cid-vqAjJWroXA blockquote {
  background-color: orange;
}
.cid-vqAjJWroXA mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAjJWroXA mark-02 {
  color: green;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAlOSaquP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0ccac;
}
.cid-vqAlOSaquP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAlOSaquP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAlOSaquP .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAlOSaquP .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAlOSaquP .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAlOSaquP .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAlOSaquP .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAlOSaquP .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAlOSaquP .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAlOSaquP .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAlOSaquP .mbr-label,
.cid-vqAlOSaquP .label-wrapper {
  color: #116e99;
}
.cid-vqAlOSaquP .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAlOSaquP .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqAlOSaquP .mbr-text,
.cid-vqAlOSaquP .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqAlOSaquP ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAlOSaquP ol li {
  font-size: 1.3rem;
}
.cid-vqAlOSaquP blockquote {
  background-color: orange;
}
.cid-vqAlOSaquP mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAlOSaquP mark-02 {
  color: green;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAnO8nj8T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fad6bc;
}
.cid-vqAnO8nj8T .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAnO8nj8T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAnO8nj8T .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAnO8nj8T .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAnO8nj8T .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAnO8nj8T .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAnO8nj8T .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAnO8nj8T .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAnO8nj8T .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAnO8nj8T .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAnO8nj8T .mbr-label,
.cid-vqAnO8nj8T .label-wrapper {
  color: #116e99;
}
.cid-vqAnO8nj8T .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAnO8nj8T .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqAnO8nj8T .mbr-text,
.cid-vqAnO8nj8T .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqAnO8nj8T ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAnO8nj8T ol li {
  font-size: 1.3rem;
}
.cid-vqAnO8nj8T blockquote {
  background-color: orange;
}
.cid-vqAnO8nj8T mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAnO8nj8T mark-02 {
  color: green;
  font-weight: bold;
  font-style: italic;
}
.cid-vqApfONAKz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0ccac;
}
.cid-vqApfONAKz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqApfONAKz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqApfONAKz .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqApfONAKz .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqApfONAKz .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqApfONAKz .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqApfONAKz .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqApfONAKz .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqApfONAKz .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqApfONAKz .image-wrapper img {
    height: 300px;
  }
}
.cid-vqApfONAKz .mbr-label,
.cid-vqApfONAKz .label-wrapper {
  color: #116e99;
}
.cid-vqApfONAKz .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqApfONAKz .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqApfONAKz .mbr-text,
.cid-vqApfONAKz .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqApfONAKz ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqApfONAKz ol li {
  font-size: 1.3rem;
}
.cid-vqApfONAKz blockquote {
  background-color: orange;
}
.cid-vqApfONAKz mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqApfONAKz mark-02 {
  color: green;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAqNPOR3k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fad6bc;
}
.cid-vqAqNPOR3k .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqAqNPOR3k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqAqNPOR3k .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqAqNPOR3k .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqAqNPOR3k .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqAqNPOR3k .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqAqNPOR3k .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqAqNPOR3k .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqAqNPOR3k .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqAqNPOR3k .image-wrapper img {
    height: 300px;
  }
}
.cid-vqAqNPOR3k .mbr-label,
.cid-vqAqNPOR3k .label-wrapper {
  color: #116e99;
}
.cid-vqAqNPOR3k .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqAqNPOR3k .mbr-section-title-3 {
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
}
.cid-vqAqNPOR3k .mbr-text,
.cid-vqAqNPOR3k .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqAqNPOR3k ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqAqNPOR3k ol li {
  font-size: 1.3rem;
}
.cid-vqAqNPOR3k blockquote {
  background-color: orange;
}
.cid-vqAqNPOR3k mark-01 {
  background-color: yellow;
  color: red;
  font-weight: bold;
  font-style: italic;
}
.cid-vqAqNPOR3k mark-02 {
  color: green;
  font-weight: bold;
  font-style: italic;
}
.cid-vqz98Yac2g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqz98Yac2g .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqz98Yac2g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqz98Yac2g .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqz98Yac2g .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqz98Yac2g .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqz98Yac2g .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqz98Yac2g .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqz98Yac2g .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqz98Yac2g .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqz98Yac2g .image-wrapper img {
    height: 300px;
  }
}
.cid-vqz98Yac2g .mbr-label,
.cid-vqz98Yac2g .label-wrapper {
  color: #116e99;
}
.cid-vqz98Yac2g .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqz98Yac2g .mbr-text,
.cid-vqz98Yac2g .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqz98Yac2g ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqz98Yac2g blockquote {
  background-color: orange;
}
.cid-vqGMukJj42 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vqGMukJj42 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-vqGMukJj42 img {
  width: 80px;
  height: 70px;
  margin-right: 0.8rem;
}
.cid-vqGMukJj42 h3 {
  margin: 0;
}
.cid-vqGMukJj42 .btn {
  width: 100%;
  border-radius: 30px;
  border-top-right-radius: 0;
  padding: 0.4rem 1rem;
}
.cid-vqGMukJj42 .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-vqGMukJj42 .text-wrap {
  width: 100%;
}
.cid-vqGMukJj42 .item-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-vqGMukJj42 .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-vqGMukJj42 .socicon-wrap .mbr-iconfont {
  font-size: 1.2rem;
  color: #ffffff !important;
  background: #88a900;
  padding: 10px;
  margin-right: 0.6rem;
  border: 2px solid #88a900;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-vqGMukJj42 .socicon-wrap .mbr-iconfont:hover {
  background: #ffffff;
  color: #88a900 !important;
  border: 2px solid #88a900;
}
.cid-vqGMukJj42 .socicon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vqGMukJj42 .jq-selectbox__dropdown,
.cid-vqGMukJj42 ul {
  border-radius: 20px!important;
}
.cid-vqGMukJj42 .jq-selectbox {
  border-radius: 30px;
}
.cid-vqGMukJj42 .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-vqGMukJj42 .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-vqGMukJj42 input,
.cid-vqGMukJj42 textarea,
.cid-vqGMukJj42 .select {
  border-radius: 30px;
}
.cid-vqGMukJj42 input,
.cid-vqGMukJj42 textarea {
  padding: 1rem 2rem;
}
.cid-vqGMukJj42 textarea {
  min-height: 10rem;
}
.cid-vqGMukJj42 .form-control,
.cid-vqGMukJj42 .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #181818;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vqGMukJj42 .form-control::-webkit-input-placeholder,
.cid-vqGMukJj42 .field-input::-webkit-input-placeholder,
.cid-vqGMukJj42 .form-control::-webkit-input-placeholder,
.cid-vqGMukJj42 .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-vqGMukJj42 .form-control:-moz-placeholder,
.cid-vqGMukJj42 .field-input:-moz-placeholder,
.cid-vqGMukJj42 .form-control:-moz-placeholder,
.cid-vqGMukJj42 .field-input:-moz-placeholder {
  color: #383838;
}
.cid-vqGMukJj42 .form-control:hover,
.cid-vqGMukJj42 .field-input:hover,
.cid-vqGMukJj42 .form-control:focus,
.cid-vqGMukJj42 .field-input:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-vqGMukJj42 .form-control:hover::-webkit-input-placeholder,
.cid-vqGMukJj42 .field-input:hover::-webkit-input-placeholder,
.cid-vqGMukJj42 .form-control:focus::-webkit-input-placeholder,
.cid-vqGMukJj42 .field-input:focus::-webkit-input-placeholder,
.cid-vqGMukJj42 .form-control:hover::-webkit-input-placeholder,
.cid-vqGMukJj42 .field-input:hover::-webkit-input-placeholder,
.cid-vqGMukJj42 .form-control:focus::-webkit-input-placeholder,
.cid-vqGMukJj42 .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-vqGMukJj42 .form-control:hover:-moz-placeholder,
.cid-vqGMukJj42 .field-input:hover:-moz-placeholder,
.cid-vqGMukJj42 .form-control:focus:-moz-placeholder,
.cid-vqGMukJj42 .field-input:focus:-moz-placeholder,
.cid-vqGMukJj42 .form-control:hover:-moz-placeholder,
.cid-vqGMukJj42 .field-input:hover:-moz-placeholder,
.cid-vqGMukJj42 .form-control:focus:-moz-placeholder,
.cid-vqGMukJj42 .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-vqGMukJj42 .jq-number__spin:hover,
.cid-vqGMukJj42 .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vqGMukJj42 .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #181818;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vqGMukJj42 .jq-selectbox li,
.cid-vqGMukJj42 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vqGMukJj42 .jq-selectbox li:hover,
.cid-vqGMukJj42 .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-vqGMukJj42 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vqGMukJj42 .jq-number__spin.minus:hover:after,
.cid-vqGMukJj42 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vqGMukJj42 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vqGMukJj42 .jq-number__spin.minus:after,
.cid-vqGMukJj42 .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vqGMukJj42 input::-webkit-clear-button {
  display: none;
}
.cid-vqGMukJj42 input::-webkit-inner-spin-button {
  display: none;
}
.cid-vqGMukJj42 input::-webkit-outer-spin-button {
  display: none;
}
.cid-vqGMukJj42 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vqGMukJj42 .col-md-6 {
  margin-bottom: 2rem;
}
.cid-vqGMukJj42 .form-group {
  margin-bottom: 0.4rem;
}
.cid-vqGMukJj42 .form-control {
  min-height: 2em;
  font-size: 1rem;
  text-align: center;
}
.cid-vqGMukJj42 .title1 {
  margin: 0;
}
.cid-vqGMukJj42 .align-wrap {
  display: block;
}
.cid-vqGMukJj42 .mbr-iconfont {
  font-size: 1.2rem;
  color: #181818 !important;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-vqGMukJj42 form {
    padding: 0;
  }
  .cid-vqGMukJj42 .socicon-wrap {
    margin: auto;
  }
}
.cid-vqGMukJj42 .title {
  color: #ed6436;
}
.cid-vqGMukJj42 .title1,
.cid-vqGMukJj42 .title-col {
  color: #ff6600;
}
.cid-vqGMukJj42 .links-title {
  color: #ff6600;
}
.cid-vqGMukJj42 .logo01 {
  font-family: Showcard Gothic;
  font-colour: #ff6600;
  font-size: 1.4rem;
  font-style: italic;
}
.cid-vqFPo4YOTA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff6600;
}
.cid-vqFPo4YOTA .media-container-row .mbr-text {
  font-size: 0.9rem;
  color: #000000;
}
.cid-vqGQNRxUnB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-vqGQNRxUnB nav.navbar {
  position: fixed;
}
.cid-vqGQNRxUnB .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vqGQNRxUnB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vqGQNRxUnB .dropdown-item {
  border: none !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-weight: 300;
}
.cid-vqGQNRxUnB .dropdown-item:hover,
.cid-vqGQNRxUnB .dropdown-item:focus {
  background: #000000 !important;
  color: #ffffff !important;
}
.cid-vqGQNRxUnB .dropdown-item:hover span {
  color: white;
}
.cid-vqGQNRxUnB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqGQNRxUnB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqGQNRxUnB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqGQNRxUnB .nav-link {
  position: relative;
}
.cid-vqGQNRxUnB .container {
  display: flex;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .container {
    max-width: 1100px;
  }
}
.cid-vqGQNRxUnB .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-vqGQNRxUnB .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vqGQNRxUnB .dropdown-menu,
.cid-vqGQNRxUnB .navbar.opened {
  background: #ffffff !important;
}
.cid-vqGQNRxUnB .nav-item:focus,
.cid-vqGQNRxUnB .nav-link:focus {
  outline: none;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqGQNRxUnB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px 14px 14px 14px!important;
  transition: none;
  margin: 0 0 5px 0 !important;
}
.cid-vqGQNRxUnB .navbar {
  min-height: 86px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-vqGQNRxUnB .navbar.opened {
  transition: all 0.3s;
}
.cid-vqGQNRxUnB .navbar .dropdown-item {
  padding: 8px 2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
  width: fit-content !important;
}
.cid-vqGQNRxUnB .navbar .navbar-logo {
  margin-right: 10px;
}
.cid-vqGQNRxUnB .navbar .navbar-logo img {
  width: auto;
}
.cid-vqGQNRxUnB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqGQNRxUnB .navbar.collapsed {
  justify-content: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqGQNRxUnB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  text-align: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item {
  width: 100% !important;
  justify-content: center;
  align-items: center;
  padding: 14px !important;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: 12px;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
  position: static;
}
.cid-vqGQNRxUnB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqGQNRxUnB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu {
    width: auto !important;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-item:after {
    right: 12px;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
    position: static;
    margin-bottom: -0.2rem;
  }
  .cid-vqGQNRxUnB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqGQNRxUnB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-item {
    padding: 14px 14px 14px 14px!important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
    width: 100% !important;
  }
  .cid-vqGQNRxUnB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vqGQNRxUnB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqGQNRxUnB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqGQNRxUnB .navbar.navbar-short {
  min-height: 86px;
}
.cid-vqGQNRxUnB .navbar.navbar-short .navbar-brand {
  min-height: 86px;
}
.cid-vqGQNRxUnB .navbar-brand {
  min-height: 86px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-caption:hover,
.cid-vqGQNRxUnB .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqGQNRxUnB .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vqGQNRxUnB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vqGQNRxUnB .dropdown-item.active,
.cid-vqGQNRxUnB .dropdown-item:active {
  background-color: transparent;
}
.cid-vqGQNRxUnB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 2.6rem;
  border-radius: 30px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
    text-align: center;
  }
}
.cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vqGQNRxUnB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqGQNRxUnB ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0 10px;
  border: 1px solid #ff6f45;
}
@media (min-width: 991px) {
  .cid-vqGQNRxUnB ul.navbar-nav {
    background-color: transparent;
  }
}
@media (max-width: 992px) {
  .cid-vqGQNRxUnB ul.navbar-nav {
    padding: 10px;
  }
  .cid-vqGQNRxUnB ul.navbar-nav .nav-item:last-child .nav-link {
    margin-bottom: 0;
  }
}
.cid-vqGQNRxUnB .collapsed ul.navbar-nav {
  padding: 10px;
}
.cid-vqGQNRxUnB .collapsed ul.navbar-nav .nav-item:last-child .nav-link {
  margin-bottom: 0;
}
.cid-vqGQNRxUnB .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-vqGQNRxUnB .navbar-buttons {
    text-align: left;
    margin-left: 22px;
  }
}
.cid-vqGQNRxUnB .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-vqGQNRxUnB .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vqGQNRxUnB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 86px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqGQNRxUnB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqGQNRxUnB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vqGQNRxUnB .navbar {
    height: 70px;
  }
  .cid-vqGQNRxUnB .navbar.opened {
    height: auto;
  }
  .cid-vqGQNRxUnB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqGQNRxUnB .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.cid-vqGQNRxUnB .nav-item {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  font-weigth: bold;
}
.cid-vqGQNRxUnB .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 6px 2px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-vqGQNRxUnB .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vqGQNRxUnB .nav-item .nav-link:hover {
  background-color: #caf31d;
  color: #000000;
}
.cid-vqGQNRxUnB .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-vqGQNRxUnB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vqGQNRxUnB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vqGQNRxUnB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .navbar {
    justify-content: flex-start !important;
  }
  .cid-vqGQNRxUnB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vqGQNRxUnB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vqGQNRxUnB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vqGQNRxUnB .content-wrap {
  min-height: 86px;
}
.cid-vqGQNRxUnB .dropdown {
  width: fit-content;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .dropdown {
    width: auto;
    text-align: center;
  }
}
.cid-vqGQNRxUnB .navbar-caption {
  font-family: Showcard Gothic;
  font-colour: #ff6600;
  font-size: 1.4rem;
  font-style: italic;
}
.cid-vqGQNRxUnB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-vqGQNRxUnB nav.navbar {
  position: fixed;
}
.cid-vqGQNRxUnB .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vqGQNRxUnB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vqGQNRxUnB .dropdown-item {
  border: none !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-weight: 300;
}
.cid-vqGQNRxUnB .dropdown-item:hover,
.cid-vqGQNRxUnB .dropdown-item:focus {
  background: #000000 !important;
  color: #ffffff !important;
}
.cid-vqGQNRxUnB .dropdown-item:hover span {
  color: white;
}
.cid-vqGQNRxUnB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqGQNRxUnB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqGQNRxUnB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqGQNRxUnB .nav-link {
  position: relative;
}
.cid-vqGQNRxUnB .container {
  display: flex;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .container {
    max-width: 1100px;
  }
}
.cid-vqGQNRxUnB .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-vqGQNRxUnB .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vqGQNRxUnB .dropdown-menu,
.cid-vqGQNRxUnB .navbar.opened {
  background: #ffffff !important;
}
.cid-vqGQNRxUnB .nav-item:focus,
.cid-vqGQNRxUnB .nav-link:focus {
  outline: none;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqGQNRxUnB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqGQNRxUnB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqGQNRxUnB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px 14px 14px 14px!important;
  transition: none;
  margin: 0 0 5px 0 !important;
}
.cid-vqGQNRxUnB .navbar {
  min-height: 86px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-vqGQNRxUnB .navbar.opened {
  transition: all 0.3s;
}
.cid-vqGQNRxUnB .navbar .dropdown-item {
  padding: 8px 2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
  width: fit-content !important;
}
.cid-vqGQNRxUnB .navbar .navbar-logo {
  margin-right: 10px;
}
.cid-vqGQNRxUnB .navbar .navbar-logo img {
  width: auto;
}
.cid-vqGQNRxUnB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqGQNRxUnB .navbar.collapsed {
  justify-content: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqGQNRxUnB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqGQNRxUnB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  text-align: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item {
  width: 100% !important;
  justify-content: center;
  align-items: center;
  padding: 14px !important;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: 12px;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
  position: static;
}
.cid-vqGQNRxUnB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqGQNRxUnB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqGQNRxUnB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqGQNRxUnB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu {
    width: auto !important;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-item:after {
    right: 12px;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
    position: static;
    margin-bottom: -0.2rem;
  }
  .cid-vqGQNRxUnB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqGQNRxUnB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqGQNRxUnB .navbar .dropdown-menu .dropdown-item {
    padding: 14px 14px 14px 14px!important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
    width: 100% !important;
  }
  .cid-vqGQNRxUnB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vqGQNRxUnB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqGQNRxUnB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqGQNRxUnB .navbar.navbar-short {
  min-height: 86px;
}
.cid-vqGQNRxUnB .navbar.navbar-short .navbar-brand {
  min-height: 86px;
}
.cid-vqGQNRxUnB .navbar-brand {
  min-height: 86px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-caption:hover,
.cid-vqGQNRxUnB .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vqGQNRxUnB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqGQNRxUnB .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vqGQNRxUnB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vqGQNRxUnB .dropdown-item.active,
.cid-vqGQNRxUnB .dropdown-item:active {
  background-color: transparent;
}
.cid-vqGQNRxUnB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqGQNRxUnB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 2.6rem;
  border-radius: 30px;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
    text-align: center;
  }
}
.cid-vqGQNRxUnB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vqGQNRxUnB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqGQNRxUnB ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0 10px;
  border: 1px solid #ff6f45;
}
@media (min-width: 991px) {
  .cid-vqGQNRxUnB ul.navbar-nav {
    background-color: transparent;
  }
}
@media (max-width: 992px) {
  .cid-vqGQNRxUnB ul.navbar-nav {
    padding: 10px;
  }
  .cid-vqGQNRxUnB ul.navbar-nav .nav-item:last-child .nav-link {
    margin-bottom: 0;
  }
}
.cid-vqGQNRxUnB .collapsed ul.navbar-nav {
  padding: 10px;
}
.cid-vqGQNRxUnB .collapsed ul.navbar-nav .nav-item:last-child .nav-link {
  margin-bottom: 0;
}
.cid-vqGQNRxUnB .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-vqGQNRxUnB .navbar-buttons {
    text-align: left;
    margin-left: 22px;
  }
}
.cid-vqGQNRxUnB .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-vqGQNRxUnB .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vqGQNRxUnB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 86px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 30px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 36px;
  transition: all 0.15s;
}
.cid-vqGQNRxUnB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 42px;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqGQNRxUnB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqGQNRxUnB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqGQNRxUnB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqGQNRxUnB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vqGQNRxUnB .navbar {
    height: 70px;
  }
  .cid-vqGQNRxUnB .navbar.opened {
    height: auto;
  }
  .cid-vqGQNRxUnB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqGQNRxUnB .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.cid-vqGQNRxUnB .nav-item {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  font-weigth: bold;
}
.cid-vqGQNRxUnB .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 6px 2px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-vqGQNRxUnB .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vqGQNRxUnB .nav-item .nav-link:hover {
  background-color: #caf31d;
  color: #000000;
}
.cid-vqGQNRxUnB .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-vqGQNRxUnB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vqGQNRxUnB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vqGQNRxUnB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .navbar {
    justify-content: flex-start !important;
  }
  .cid-vqGQNRxUnB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vqGQNRxUnB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vqGQNRxUnB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vqGQNRxUnB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vqGQNRxUnB .content-wrap {
  min-height: 86px;
}
.cid-vqGQNRxUnB .dropdown {
  width: fit-content;
}
@media (max-width: 991px) {
  .cid-vqGQNRxUnB .dropdown {
    width: auto;
    text-align: center;
  }
}
.cid-vqGQNRxUnB .navbar-caption {
  font-family: Showcard Gothic;
  font-colour: #ff6600;
  font-size: 1.4rem;
  font-style: italic;
}
.cid-vquPD864eJ {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/01-cadretheorique-m.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.cid-vquPD864eJ .mbr-section-title {
  color: #000000;
  font-size: 2.5rem;
  font-weight: bolder;
}
.cid-vquPD864eJ .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 2.0rem;
}
.cid-vquPD864eJ .mbr-section-btn {
  color: #000000;
  text-align: justify;
}
.cid-vquPDcJvZs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vquPDcJvZs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vquPDcJvZs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vquPDcJvZs .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vquPDcJvZs .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vquPDcJvZs .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vquPDcJvZs .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vquPDcJvZs .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vquPDcJvZs .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vquPDcJvZs .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vquPDcJvZs .image-wrapper img {
    height: 300px;
  }
}
.cid-vquPDcJvZs .mbr-label,
.cid-vquPDcJvZs .label-wrapper {
  color: #116e99;
}
.cid-vquPDcJvZs .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vquPDcJvZs .mbr-text,
.cid-vquPDcJvZs .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vquPDcJvZs ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vquVQaxpXW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vquVQaxpXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vquVQaxpXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vquVQaxpXW .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vquVQaxpXW .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vquVQaxpXW .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vquVQaxpXW .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vquVQaxpXW .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vquVQaxpXW .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vquVQaxpXW .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vquVQaxpXW .image-wrapper img {
    height: 300px;
  }
}
.cid-vquVQaxpXW .mbr-label,
.cid-vquVQaxpXW .label-wrapper {
  color: #116e99;
}
.cid-vquVQaxpXW .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vquVQaxpXW .mbr-text,
.cid-vquVQaxpXW .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vquVQaxpXW ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vquVQaxpXW .container img {
  object-fit: contain;
  margin: auto;
  display: block;
}
.cid-vqyuWYGS7C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqyuWYGS7C .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqyuWYGS7C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqyuWYGS7C .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqyuWYGS7C .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqyuWYGS7C .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqyuWYGS7C .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqyuWYGS7C .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqyuWYGS7C .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqyuWYGS7C .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqyuWYGS7C .image-wrapper img {
    height: 300px;
  }
}
.cid-vqyuWYGS7C .mbr-label,
.cid-vqyuWYGS7C .label-wrapper {
  color: #116e99;
}
.cid-vqyuWYGS7C .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqyuWYGS7C .mbr-text,
.cid-vqyuWYGS7C .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqyuWYGS7C ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqyzuUXn0I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqyzuUXn0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqyzuUXn0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vqyzuUXn0I .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vqyzuUXn0I .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.cid-vqyzuUXn0I .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vqyzuUXn0I .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqyzuUXn0I .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vqyzuUXn0I .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vqyzuUXn0I .image-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vqyzuUXn0I .image-wrapper img {
    height: 300px;
  }
}
.cid-vqyzuUXn0I .mbr-label,
.cid-vqyzuUXn0I .label-wrapper {
  color: #116e99;
}
.cid-vqyzuUXn0I .mbr-section-title {
  color: #16526e;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-vqyzuUXn0I .mbr-text,
.cid-vqyzuUXn0I .text-wrapper {
  color: black;
  text-align: justify;
}
.cid-vqyzuUXn0I ul li {
  font-size: 1.3rem;
  color: black;
  text-align: justify;
}
.cid-vqGMoJ1P4x {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vqGMoJ1P4x .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-vqGMoJ1P4x img {
  width: 80px;
  height: 70px;
  margin-right: 0.8rem;
}
.cid-vqGMoJ1P4x h3 {
  margin: 0;
}
.cid-vqGMoJ1P4x .btn {
  width: 100%;
  border-radius: 30px;
  border-top-right-radius: 0;
  padding: 0.4rem 1rem;
}
.cid-vqGMoJ1P4x .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-vqGMoJ1P4x .text-wrap {
  width: 100%;
}
.cid-vqGMoJ1P4x .item-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-vqGMoJ1P4x .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-vqGMoJ1P4x .socicon-wrap .mbr-iconfont {
  font-size: 1.2rem;
  color: #ffffff !important;
  background: #88a900;
  padding: 10px;
  margin-right: 0.6rem;
  border: 2px solid #88a900;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-vqGMoJ1P4x .socicon-wrap .mbr-iconfont:hover {
  background: #ffffff;
  color: #88a900 !important;
  border: 2px solid #88a900;
}
.cid-vqGMoJ1P4x .socicon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-vqGMoJ1P4x .jq-selectbox__dropdown,
.cid-vqGMoJ1P4x ul {
  border-radius: 20px!important;
}
.cid-vqGMoJ1P4x .jq-selectbox {
  border-radius: 30px;
}
.cid-vqGMoJ1P4x .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-vqGMoJ1P4x .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-vqGMoJ1P4x input,
.cid-vqGMoJ1P4x textarea,
.cid-vqGMoJ1P4x .select {
  border-radius: 30px;
}
.cid-vqGMoJ1P4x input,
.cid-vqGMoJ1P4x textarea {
  padding: 1rem 2rem;
}
.cid-vqGMoJ1P4x textarea {
  min-height: 10rem;
}
.cid-vqGMoJ1P4x .form-control,
.cid-vqGMoJ1P4x .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #181818;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vqGMoJ1P4x .form-control::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .field-input::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .form-control::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-vqGMoJ1P4x .form-control:-moz-placeholder,
.cid-vqGMoJ1P4x .field-input:-moz-placeholder,
.cid-vqGMoJ1P4x .form-control:-moz-placeholder,
.cid-vqGMoJ1P4x .field-input:-moz-placeholder {
  color: #383838;
}
.cid-vqGMoJ1P4x .form-control:hover,
.cid-vqGMoJ1P4x .field-input:hover,
.cid-vqGMoJ1P4x .form-control:focus,
.cid-vqGMoJ1P4x .field-input:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-vqGMoJ1P4x .form-control:hover::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .field-input:hover::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .form-control:focus::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .field-input:focus::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .form-control:hover::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .field-input:hover::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .form-control:focus::-webkit-input-placeholder,
.cid-vqGMoJ1P4x .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-vqGMoJ1P4x .form-control:hover:-moz-placeholder,
.cid-vqGMoJ1P4x .field-input:hover:-moz-placeholder,
.cid-vqGMoJ1P4x .form-control:focus:-moz-placeholder,
.cid-vqGMoJ1P4x .field-input:focus:-moz-placeholder,
.cid-vqGMoJ1P4x .form-control:hover:-moz-placeholder,
.cid-vqGMoJ1P4x .field-input:hover:-moz-placeholder,
.cid-vqGMoJ1P4x .form-control:focus:-moz-placeholder,
.cid-vqGMoJ1P4x .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-vqGMoJ1P4x .jq-number__spin:hover,
.cid-vqGMoJ1P4x .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vqGMoJ1P4x .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #181818;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vqGMoJ1P4x .jq-selectbox li,
.cid-vqGMoJ1P4x .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vqGMoJ1P4x .jq-selectbox li:hover,
.cid-vqGMoJ1P4x .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-vqGMoJ1P4x .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vqGMoJ1P4x .jq-number__spin.minus:hover:after,
.cid-vqGMoJ1P4x .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vqGMoJ1P4x .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vqGMoJ1P4x .jq-number__spin.minus:after,
.cid-vqGMoJ1P4x .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vqGMoJ1P4x input::-webkit-clear-button {
  display: none;
}
.cid-vqGMoJ1P4x input::-webkit-inner-spin-button {
  display: none;
}
.cid-vqGMoJ1P4x input::-webkit-outer-spin-button {
  display: none;
}
.cid-vqGMoJ1P4x input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vqGMoJ1P4x .col-md-6 {
  margin-bottom: 2rem;
}
.cid-vqGMoJ1P4x .form-group {
  margin-bottom: 0.4rem;
}
.cid-vqGMoJ1P4x .form-control {
  min-height: 2em;
  font-size: 1rem;
  text-align: center;
}
.cid-vqGMoJ1P4x .title1 {
  margin: 0;
}
.cid-vqGMoJ1P4x .align-wrap {
  display: block;
}
.cid-vqGMoJ1P4x .mbr-iconfont {
  font-size: 1.2rem;
  color: #181818 !important;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-vqGMoJ1P4x form {
    padding: 0;
  }
  .cid-vqGMoJ1P4x .socicon-wrap {
    margin: auto;
  }
}
.cid-vqGMoJ1P4x .title {
  color: #ed6436;
}
.cid-vqGMoJ1P4x .title1,
.cid-vqGMoJ1P4x .title-col {
  color: #ff6600;
}
.cid-vqGMoJ1P4x .links-title {
  color: #ff6600;
}
.cid-vqGMoJ1P4x .logo01 {
  font-family: Showcard Gothic;
  font-colour: #ff6600;
  font-size: 1.4rem;
  font-style: italic;
}
.cid-vqFPo4YOTA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff6600;
}
.cid-vqFPo4YOTA .media-container-row .mbr-text {
  font-size: 0.9rem;
  color: #000000;
}
