body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Viaoda Libre', display;
  font-size: 4.625rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.78125rem;
}
.display-2 {
  font-family: 'Viaoda Libre', display;
  font-size: 3.125rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Viaoda Libre', display;
  font-size: 1.875rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.7rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2375rem;
    font-size: calc( 2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-sm {
  padding: 12px 31px;
  border-radius: 0;
}
.btn-md {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 40px;
  border-radius: 0;
}
.bg-primary {
  background-color: #272727 !important;
}
.bg-success {
  background-color: #272727 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #5b5b5b !important;
}
.bg-danger {
  background-color: #1b1b1b !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #272727 !important;
  border-color: #272727 !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #f7bd50;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  border-color: #f7bd50 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
  color: #ffffff !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #f7bd50;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  border-color: #f7bd50 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #272727 !important;
  border-color: #272727 !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #5b5b5b !important;
  border-color: #5b5b5b !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #1b1b1b !important;
  border-color: #1b1b1b !important;
  color: #ffffff !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-white,
.btn-white:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cac8bc;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  border-color: #cac8bc !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #cac8bc !important;
  border-color: #cac8bc !important;
}
.btn-black,
.btn-black:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #282727 !important;
  border-color: #282727 !important;
  color: #ffffff !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn[class*="outline"] {
  border: 0;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
}
.btn[class*="outline"].btn-lg {
  padding: 0 0 5px 0;
}
.btn-primary-outline {
  border-color: #272727;
  color: #272727;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f7bd50;
  color: #f7bd50;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #f0a00b;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #d9d9d9;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #272727;
  color: #272727;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #5b5b5b;
  color: #5b5b5b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #353535;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5b5b5b !important;
  border-color: #5b5b5b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #1b1b1b;
  color: #1b1b1b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #000000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1b1b !important;
  border-color: #1b1b1b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #282727;
  color: #282727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #282727 !important;
  border-color: #282727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  background-color: transparent !important;
  color: #d4d4d4;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #272727 !important;
}
.text-secondary {
  color: #f7bd50 !important;
}
.text-success {
  color: #272727 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #5b5b5b !important;
}
.text-danger {
  color: #1b1b1b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d7900a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #282828 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #272727;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #5b5b5b;
}
.alert-danger {
  background-color: #1b1b1b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #272727;
  border-color: #272727;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #272727;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dadada;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dadada;
}
.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: #9b9b9b;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cdcdcd;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #272727;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #272727;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #272727;
}
.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: #272727;
  border-bottom-color: #272727;
}
.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: #272727 !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: #f7bd50 !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='%23272727' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sKsnqO9J7F P {
  color: #ffffff;
  text-align: left;
  background-color: #012641;
}
.cid-sKuIfZn8kN {
  background: #012641;
}
.cid-sKuIfZn8kN .container-fluid {
  padding: 0 3rem;
}
.cid-sKuIfZn8kN .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-sKuIfZn8kN .image-block img {
  width: 100%;
}
.cid-sKuIfZn8kN .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-sKuIfZn8kN .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-sKuIfZn8kN .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-sKuIfZn8kN .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sOyNBQ4HCi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: linear-gradient(135deg, #e43f3f 10%, #4479d9 100%) !important;
}
.cid-sOyNBQ4HCi .mbr-text,
.cid-sOyNBQ4HCi .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sJNLOrd0p2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cac8bc;
}
.cid-sJNLOrd0p2 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sJNLOrd0p2 .card-wrapper {
  background-color: #e9ebee;
  border-radius: 16px;
}
.cid-sJNLOrd0p2 .image-wrapper {
  height: 100%;
}
.cid-sJNLOrd0p2 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sJNLOrd0p2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-sJNLOrd0p2 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sJNLOrd0p2 .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-sJNLOrd0p2 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-sJNLOrd0p2 .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-sJNLOrd0p2 .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sJNLOrd0p2 .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-sJNLOrd0p2 .mbr-text,
.cid-sJNLOrd0p2 .social-row {
  color: #060424;
}
.cid-sJNLOrd0p2 .card-title {
  color: #060424;
}
.cid-se3MVcevFk .nav-item:focus,
.cid-se3MVcevFk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se3MVcevFk .nav-item {
    position: relative;
  }
}
.cid-se3MVcevFk .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-se3MVcevFk .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffe65f;
  background: linear-gradient(#f2f1eb, #ffe65f);
}
.cid-se3MVcevFk .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffe65f !important;
  background: linear-gradient(#f2f1eb, #ffe65f) !important;
}
.cid-se3MVcevFk .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se3MVcevFk .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se3MVcevFk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se3MVcevFk .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se3MVcevFk .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se3MVcevFk .navbar.collapsed .right-menu,
.cid-se3MVcevFk .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar .navbar-collapse.show,
  .cid-se3MVcevFk .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-se3MVcevFk .navbar .navbar-collapse.show .brand-container,
  .cid-se3MVcevFk .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se3MVcevFk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se3MVcevFk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se3MVcevFk .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se3MVcevFk .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se3MVcevFk .navbar .right-menu,
  .cid-se3MVcevFk .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se3MVcevFk .navbar.navbar-short {
  min-height: 60px;
}
.cid-se3MVcevFk .navbar.navbar-short .mbr-overlay {
  background: #ffe65f !important;
  background: linear-gradient(#f2f1eb, #ffe65f) !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se3MVcevFk .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se3MVcevFk .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-se3MVcevFk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se3MVcevFk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se3MVcevFk .dropdown-item.active,
.cid-se3MVcevFk .dropdown-item:active {
  background-color: transparent;
}
.cid-se3MVcevFk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se3MVcevFk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe65f;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se3MVcevFk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se3MVcevFk ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se3MVcevFk .navbar-buttons {
  margin-left: auto;
}
.cid-se3MVcevFk button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler:hover {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler:active {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282727;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk .navbar-dropdown {
  position: fixed;
}
.cid-se3MVcevFk a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-se3MVcevFk a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-se3MVcevFk a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se3MVcevFk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se3MVcevFk .right-menu,
.cid-se3MVcevFk .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se3MVcevFk .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se3MVcevFk .card-wrapper {
  z-index: 3;
}
.cid-se3MVcevFk .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se3MVcevFk .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se3MVcevFk .navbar-brand img {
  width: auto !important;
}
.cid-sLRMGtWfoz {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #012641;
}
.cid-sLRMGtWfoz .social-media {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  padding-right: 4rem;
}
.cid-sLRMGtWfoz .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sLRMGtWfoz .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sLRMGtWfoz .social-media ul li:first-child {
  padding-left: 0;
}
.cid-sLRMGtWfoz .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #282e4b;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sLRMGtWfoz .icon-transition span:hover {
  background-color: #ff8f00;
}
@media (max-width: 767px) {
  .cid-sLRMGtWfoz .align-left {
    text-align: left !important;
  }
}
.cid-sLRMGtWfoz .mbr-section-title {
  color: #ffffff;
}
.cid-sLRMGtWfoz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJLhmB2mME {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8e4e0;
}
.cid-sJLhmB2mME .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sJLhmB2mME .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sJLhmB2mME .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #232323;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-sJLhmB2mME .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-sJLhmB2mME .mbr-text {
  color: #232323;
}
.cid-sKt6dCfL1Y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #03122b;
}
.cid-sKt6dCfL1Y img {
  width: 100%;
  transition: 0.3s ease-out;
}
.cid-sKt6dCfL1Y .card-footer {
  border-top: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 300px) {
  .cid-sKt6dCfL1Y .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-sKt6dCfL1Y .mbr-iconfont-social {
  font-size: 20px;
}
.cid-sKt6dCfL1Y .icon {
  display: flex;
  width: 34px;
  height: 34px;
  color: #ffffff;
  padding: 0.5rem;
  transition: 0.3s ease-out;
}
.cid-sKt6dCfL1Y .panel-item {
  position: relative;
  background-color: rgba(3, 18, 43, 0.85);
}
.cid-sKt6dCfL1Y .mbr-section-title {
  color: #101010;
  margin-bottom: 1.3rem;
}
.cid-sKt6dCfL1Y .mbr-author-name {
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.cid-sKt6dCfL1Y .mbr-author-desc {
  color: #ffffff;
}
.cid-sKt6dCfL1Y .social-list {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sKt6dCfL1Y .panel-item:hover img {
  opacity: 0.1;
}
.cid-sKt6dCfL1Y .panel-item:hover .card-footer {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sKt6dCfL1Y .title {
    padding: 0;
  }
  .cid-sKt6dCfL1Y .align-center {
    text-align: center;
  }
}
@media (min-width: 767px) {
  .cid-sKt6dCfL1Y .mbr-section-subtitle {
    margin-bottom: 3.5rem;
  }
  .cid-sKt6dCfL1Y .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-sKt6dCfL1Y .panel-item {
    margin-bottom: 2rem;
  }
}
.cid-sKt4r4ovLI {
  padding-top: 1rem;
  padding-bottom: 5rem;
  position: relative;
  background-color: #03122b;
}
.cid-sKt4r4ovLI .mbr-section-title {
  margin-bottom: 35px;
}
.cid-sKt4r4ovLI .image {
  margin-bottom: 10px;
}
.cid-sKt4r4ovLI .image img {
  border-radius: 10px;
  object-fit: cover;
  width: 70px;
}
.cid-sKt4r4ovLI .content__block {
  margin-bottom: 60px;
}
.cid-sKt4r4ovLI .mbr-text {
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}
.cid-sKt4r4ovLI .signature {
  margin-bottom: 0;
  opacity: .3;
  letter-spacing: 2px;
}
.cid-sKt4r4ovLI .company {
  margin-bottom: 0;
}
.cid-sKt4r4ovLI .card__block {
  display: flex;
  margin-bottom: 30px;
}
.cid-sKt4r4ovLI .card__wrapper {
  display: flex;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.cid-sKt4r4ovLI .card__inner {
  padding: 35px 20px 25px 35px;
}
.cid-sKt4r4ovLI .card__info {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-sKt4r4ovLI .card__inner {
    padding-left: 20px;
    padding-bottom: 35px;
    text-align: center;
  }
  .cid-sKt4r4ovLI .card__info {
    margin-left: 0;
  }
}
.cid-sOs97xFGY2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-sOs97xFGY2 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sOs97xFGY2 form .mbr-section-btn .btn {
  display: inline-flex;
  border-radius: 2rem;
}
.cid-sOs97xFGY2 input,
.cid-sOs97xFGY2 textarea {
  border-radius: 0.5rem;
}
.cid-sOs97xFGY2 textarea {
  min-height: 10rem;
}
.cid-sOs97xFGY2 .mbr-form {
  background: #03122b;
  border-radius: 2rem;
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-sOs97xFGY2 .mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-sOs97xFGY2 .form-control:hover,
.cid-sOs97xFGY2 .form-control:focus {
  border-color: transparent !important;
}
.cid-sOs97xFGY2 .mbr-section-title {
  color: #060424;
}
.cid-sJoTNpVFZJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffe65f;
}
.cid-sJoTNpVFZJ .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-sJoTNpVFZJ section {
  position: relative;
}
.cid-sJoTNpVFZJ h4 {
  margin: 0;
}
.cid-sJoTNpVFZJ a {
  font-weight: 300;
}
.cid-sJoTNpVFZJ .row {
  align-items: center;
}
.cid-sJoTNpVFZJ .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sJoTNpVFZJ .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sJoTNpVFZJ .img1 {
  color: #060424;
}
@media (max-width: 992px) {
  .cid-sJoTNpVFZJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sJoTNpVFZJ .align-left {
    text-align: center;
  }
  .cid-sJoTNpVFZJ .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sJoTNpVFZJ .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sJoTNpVFZJ .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sJoTNpVFZJ .item-title {
  color: #c1c1c1;
}
.cid-sJoTNpVFZJ H4 {
  color: #060424;
  text-align: left;
}
