body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #365c9a !important;
}
.bg-success {
  background-color: #4289a7 !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #ffd617 !important;
}
.bg-danger {
  background-color: #50c227 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ffd617 !important;
  border-color: #ffd617 !important;
  color: #171300 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #171300 !important;
  background-color: #c9a600 !important;
  border-color: #c9a600 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #171300 !important;
  background-color: #c9a600 !important;
  border-color: #c9a600 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #50c227 !important;
  border-color: #50c227 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #36821a !important;
  border-color: #36821a !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #36821a !important;
  border-color: #36821a !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #254d5e;
  color: #254d5e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4289a7;
  border-color: #4289a7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #b09100;
  color: #b09100 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #171300 !important;
  background-color: #ffd617;
  border-color: #ffd617;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #171300 !important;
  background-color: #ffd617 !important;
  border-color: #ffd617 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #2d6d16;
  color: #2d6d16 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #50c227;
  border-color: #50c227;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #50c227 !important;
  border-color: #50c227 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #365c9a !important;
}
.text-secondary {
  color: #365c9a !important;
}
.text-success {
  color: #4289a7 !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #ffd617 !important;
}
.text-danger {
  color: #50c227 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1c2f4e !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #1c2f4e !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #254d5e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b09100 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #2d6d16 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #4289a7;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #ffd617;
}
.alert-danger {
  background-color: #50c227;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #365c9a;
  border-color: #365c9a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #365c9a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #94c1d5;
}
.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: #fffae3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #9de683;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
blockquote {
  border-color: #365c9a;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #365c9a;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #365c9a;
  border-bottom-color: #365c9a;
}
.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: #365c9a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #365c9a !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23365c9a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sF3Wc1UhcP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ff1600;
}
.cid-sF3Wc1UhcP .mbr-section-subtitle {
  color: #767676;
}
.cid-sF3Wc1UhcP .mbr-section-title {
  color: #ffffff;
}
.cid-soy6IN0O4x {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #05b1d7;
}
.cid-soy6IN0O4x .mbr-section-title {
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}
.cid-soy6IN0O4x .block__left {
  margin-bottom: 50px;
}
.cid-soy6IN0O4x .text__left {
  margin-top: 85px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}
.cid-soy6IN0O4x .image img {
  max-width: 95%;
  border-radius: 20px;
  object-fit: cover;
}
.cid-soy6IN0O4x .title__right {
  margin-bottom: 15px;
}
.cid-soy6IN0O4x .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-soy6IN0O4x .item__right {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-soy6IN0O4x .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-soy6IN0O4x .text__left {
    margin-top: 0;
  }
  .cid-soy6IN0O4x .item__right {
    margin-bottom: 0;
    margin-top: 50px;
  }
}
.cid-tbLpI5gN51 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #05b1d7;
}
.cid-tbLpI5gN51 .mbr-section-title {
  text-align: center;
}
#custom-html-2v {
  /* Type valid CSS here */
}
#custom-html-2v div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2v p {
  font-size: 60px;
  color: #777;
}
.cid-soyNRKSJtf {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-soyNRKSJtf .mbr-section-subtitle {
  color: #000000;
}
.cid-soyNRKSJtf .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-so4in13gYP {
  background: #ffffff;
}
.cid-so4in13gYP .container-fluid {
  padding: 0 3rem;
}
.cid-so4in13gYP .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-so4in13gYP .image-block img {
  width: 100%;
}
.cid-so4in13gYP .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-so4in13gYP .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-so4in13gYP .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-so4in13gYP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-so4in13gYP P {
  color: #ffffff;
}
.cid-tmCs9pevz8 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tmCs9pevz8 .mbr-section-title {
  text-align: center;
}
.cid-tbvvXgvKK9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbvvXgvKK9 img,
.cid-tbvvXgvKK9 .item-img {
  width: 100%;
}
.cid-tbvvXgvKK9 .item:focus,
.cid-tbvvXgvKK9 span:focus {
  outline: none;
}
.cid-tbvvXgvKK9 .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tbvvXgvKK9 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #f7f7f7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tbvvXgvKK9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tbvvXgvKK9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tbvvXgvKK9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tbvvXgvKK9 .mbr-section-title {
  color: #232323;
}
.cid-tmCs3xI883 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tmCs3xI883 .mbr-section-title {
  text-align: center;
}
.cid-tmvMU3wkzN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmvMU3wkzN img,
.cid-tmvMU3wkzN .item-img {
  width: 100%;
}
.cid-tmvMU3wkzN .item:focus,
.cid-tmvMU3wkzN span:focus {
  outline: none;
}
.cid-tmvMU3wkzN .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tmvMU3wkzN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #f7f7f7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmvMU3wkzN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmvMU3wkzN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tmvMU3wkzN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmvMU3wkzN .mbr-section-title {
  color: #232323;
}
.cid-tov5JX7DXk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tov5JX7DXk img,
.cid-tov5JX7DXk .item-img {
  width: 100%;
}
.cid-tov5JX7DXk .item:focus,
.cid-tov5JX7DXk span:focus {
  outline: none;
}
.cid-tov5JX7DXk .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tov5JX7DXk .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tov5JX7DXk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tov5JX7DXk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tov5JX7DXk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tov5JX7DXk .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tbLwEFgdMS {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #05b1d7;
}
.cid-tbLwEFgdMS .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sobq4qcinW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sobq4qcinW .mbr-section-subtitle {
  color: #000000;
}
.cid-sobq4qcinW .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sobq4qcinW .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tmyhcUDfag {
  padding-top: 0px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tmyhcUDfag .mbr-section-subtitle {
  color: #767676;
}
.cid-tmyhcUDfag .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmyhcUDfag .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmyhcUDfag .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmyhcUDfag .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmyhcUDfag .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #59585d;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tmyhcUDfag .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmyhcUDfag .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmyhcUDfag .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tmyhcUDfag .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmyhcUDfag .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tmyhcUDfag ul {
  font-size: 0;
}
.cid-tmyhcUDfag .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tmyhcUDfag .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tmyhcUDfag .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tmyhcUDfag .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tmyhcUDfag .mbr-gallery-filter ul li:first-child,
.cid-tmyhcUDfag .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tmyhcUDfag .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tmyhcUDfag .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tmyhcUDfag .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tmyhcUDfag .btn.active:after {
  animation: none;
}
.cid-tmyhcUDfag .btn:active {
  box-shadow: none !important;
}
.cid-tmyhcUDfag .btn:hover {
  background: transparent !important;
}
.cid-tmyhcUDfag .btn:hover:before {
  background: transparent !important;
}
.cid-tmyhcUDfag .btn:before {
  background-color: transparent !important;
}
.cid-tmyhcUDfag .btn:focus {
  box-shadow: none !important;
}
.cid-tmyhcUDfag .mbr-section-title,
.cid-tmyhcUDfag .mbr-gallery-filter ul {
  text-align: center;
}
.cid-u3ByXZ2Nlg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ff1600;
}
.cid-u3ByXZ2Nlg .mbr-section-subtitle {
  color: #767676;
}
.cid-u3ByXZ2Nlg .mbr-section-title {
  color: #ffffff;
}
#custom-html-2o {
  /* Type valid CSS here */
}
#custom-html-2o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2o p {
  font-size: 60px;
  color: #777;
}
.cid-tbLyfyl92U {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ff1600;
}
.cid-tbLyfyl92U .mbr-section-subtitle {
  color: #767676;
}
.cid-tbLyfyl92U .mbr-section-title {
  color: #ffffff;
}
.cid-tmCj9jXGAB {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #05b1d7;
}
.cid-tmCj9jXGAB .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tmCj9jXGAB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tmCj9jXGAB .table-wrapper {
  margin: 0 auto;
}
.cid-tmCj9jXGAB table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tmCj9jXGAB table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #fac769;
  color: white;
  vertical-align: middle;
}
.cid-tmCj9jXGAB table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-tmCj9jXGAB table.table {
  background: #ffffff;
}
.cid-tmCj9jXGAB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tmCj9jXGAB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tmCj9jXGAB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tmCj9jXGAB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-tmCj9jXGAB .dataTables_wrapper {
  display: block;
}
.cid-tmCj9jXGAB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tmCj9jXGAB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tmCj9jXGAB .head-item:after,
.cid-tmCj9jXGAB .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-tmCj9jXGAB .dataTables_filter {
    text-align: center;
  }
  .cid-tmCj9jXGAB .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-tmCj9jXGAB .dataTables_filter {
    text-align: center;
  }
  .cid-tmCj9jXGAB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-tmCj9jXGAB table th,
  .cid-tmCj9jXGAB table td {
    padding: .75rem;
  }
}
.cid-tmCj9jXGAB .head-item {
  color: #000000;
}
.cid-tmCj9jXGAB .mbr-section-title,
.cid-tmCj9jXGAB .underline {
  color: #ffffff;
}
.cid-tmCj9jXGAB .body-item {
  color: #000000;
}
.cid-tmCs0UIwVU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tmCs0UIwVU .mbr-section-title {
  text-align: center;
}
.cid-so1e9vr8I7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-so1e9vr8I7 .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-so1e9vr8I7 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-so1e9vr8I7 .mbr-section-subtitle {
  color: #767676;
}
.cid-so1e9vr8I7 .panel-group {
  width: 100%;
}
.cid-so1e9vr8I7 .panel-text {
  color: #000000;
  text-align: left;
}
.cid-so1e9vr8I7 .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-so1e9vr8I7 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f7f7f7;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-so1e9vr8I7 .card .panel-body {
  background: #ffffff;
}
.cid-so1e9vr8I7 .sign {
  color: #232323;
}
.cid-tbM4JTW0iO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tbM4JTW0iO .mbr-section-title {
  text-align: center;
}
.cid-so1r0hFUE0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #05b1d7;
}
.cid-so1r0hFUE0 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-so1r0hFUE0 .mbr-section-btn,
  .cid-so1r0hFUE0 .mbr-section-subtitle,
  .cid-so1r0hFUE0 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-so1r0hFUE0 .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-so1sa4EZzX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-so1sa4EZzX .nav-tabs .nav-item.open .nav-link:focus,
.cid-so1sa4EZzX .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-so1sa4EZzX .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #05b1d7;
}
@media (max-width: 767px) {
  .cid-so1sa4EZzX .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-so1sa4EZzX .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-so1sa4EZzX .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-so1sa4EZzX .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-so1sa4EZzX .nav-link,
.cid-so1sa4EZzX .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-so1sa4EZzX .nav-tabs .nav-link.active {
  color: #05b1d7;
  border-bottom: 3px solid #05b1d7;
}
.cid-so1sa4EZzX H4 {
  text-align: center;
}
.cid-so1sa4EZzX H3 {
  text-align: center;
}
.cid-tmyz3djXjH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #05b1d7;
}
.cid-tmyz3djXjH .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tmCrUfHQod {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tmCrUfHQod .mbr-section-title {
  text-align: center;
}
.cid-qIjKmBgNqd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fac769;
}
.cid-qIjKmBgNqd .mbr-section-subtitle {
  color: #000000;
}
.cid-qIjKmBgNqd .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-qIjMDc36tP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fac769;
}
.cid-qIjMDc36tP .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qIjMDc36tP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qIjMDc36tP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qIjMDc36tP .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qIjMDc36tP .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #ca4336;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qIjMDc36tP .icon-transition span:hover {
  background-color: #acfde1;
}
.cid-qIjMDc36tP .mbr-text {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-qIjMDc36tP .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qIjMDc36tP .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qIjMDc36tP .mbr-text {
    margin-bottom: 1.5rem;
  }
}
