body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.08rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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.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: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 2.2rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #255085 !important;
}
.bg-success {
  background-color: #f1894c !important;
}
.bg-info {
  background-color: #c1c1c1 !important;
}
.bg-warning {
  background-color: #36404c !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #255085 !important;
  border-color: #255085 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #255085 !important;
  background-color: transparent !important;
  border-color: #255085 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #142c49 !important;
  border-color: #142c49 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #c1c1c1 !important;
  background-color: transparent !important;
  border-color: #c1c1c1 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f1894c !important;
  border-color: #f1894c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #f1894c !important;
  background-color: transparent !important;
  border-color: #f1894c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #df5d11 !important;
  border-color: #df5d11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #36404c !important;
  border-color: #36404c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #36404c !important;
  background-color: transparent !important;
  border-color: #36404c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #161a1f !important;
  border-color: #161a1f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #b1a374 !important;
  background-color: transparent !important;
  border-color: #b1a374 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #333333 !important;
  background-color: transparent !important;
  border-color: #333333 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0f2035;
  color: #0f2035;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #255085;
  border-color: #255085;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #255085 !important;
  border-color: #255085 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #c75410;
  color: #c75410;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #f1894c;
  border-color: #f1894c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f1894c !important;
  border-color: #f1894c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #0c0e10;
  color: #0c0e10;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #36404c;
  border-color: #36404c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #36404c !important;
  border-color: #36404c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #255085 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #f1894c !important;
}
.text-info {
  color: #c1c1c1 !important;
}
.text-warning {
  color: #36404c !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ffffff !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffffff !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ffffff !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #ffffff !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ffffff !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #c1c1c1;
}
.alert-warning {
  background-color: #36404c;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #255085;
  border-color: #255085;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #255085;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #598ed1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a7b3c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
  -webkit-transform: rotate(45deg);
}
.form-control {
  background-color: #ffffff;
  box-shadow: none;
  color: #767676;
  border: 3px solid #ebeced;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 46px;
  padding: 0.5rem 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
.form-control:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
blockquote {
  border-color: #255085;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #255085;
  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-number__spin {
  background-color: #ffffff;
  border: 3px solid #ebeced;
}
.jq-number__spin:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #255085;
  border-bottom-color: #255085;
}
.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: #255085 !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: #ffffff !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='%23255085' %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-tQpgD9QxNY .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQpgD9QxNY .nav-item:focus,
.cid-tQpgD9QxNY .nav-link:focus {
  outline: none;
}
.cid-tQpgD9QxNY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.3rem 1.5rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQpgD9QxNY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQpgD9QxNY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tQpgD9QxNY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQpgD9QxNY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQpgD9QxNY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQpgD9QxNY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQpgD9QxNY .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;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tQpgD9QxNY .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #255085;
}
.cid-tQpgD9QxNY .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #255085 !important;
}
.cid-tQpgD9QxNY .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tQpgD9QxNY .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tQpgD9QxNY .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tQpgD9QxNY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQpgD9QxNY .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tQpgD9QxNY .navbar.collapsed .navbar-collapse.show,
.cid-tQpgD9QxNY .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQpgD9QxNY .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tQpgD9QxNY .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tQpgD9QxNY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQpgD9QxNY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQpgD9QxNY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQpgD9QxNY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tQpgD9QxNY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQpgD9QxNY .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQpgD9QxNY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQpgD9QxNY .navbar.collapsed .right-menu,
.cid-tQpgD9QxNY .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tQpgD9QxNY .navbar .navbar-collapse.show,
  .cid-tQpgD9QxNY .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tQpgD9QxNY .navbar .navbar-collapse.show .brand-container,
  .cid-tQpgD9QxNY .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tQpgD9QxNY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQpgD9QxNY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQpgD9QxNY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQpgD9QxNY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQpgD9QxNY .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tQpgD9QxNY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQpgD9QxNY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQpgD9QxNY .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-tQpgD9QxNY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tQpgD9QxNY .navbar .right-menu,
  .cid-tQpgD9QxNY .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tQpgD9QxNY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQpgD9QxNY .navbar.navbar-short .mbr-overlay {
  background: #255085 !important;
}
.cid-tQpgD9QxNY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQpgD9QxNY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQpgD9QxNY .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQpgD9QxNY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQpgD9QxNY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQpgD9QxNY .dropdown-item.active,
.cid-tQpgD9QxNY .dropdown-item:active {
  background-color: transparent;
}
.cid-tQpgD9QxNY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQpgD9QxNY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQpgD9QxNY .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQpgD9QxNY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #255085;
}
.cid-tQpgD9QxNY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQpgD9QxNY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQpgD9QxNY ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQpgD9QxNY ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tQpgD9QxNY .navbar-buttons {
  margin-left: auto;
}
.cid-tQpgD9QxNY button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tQpgD9QxNY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQpgD9QxNY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQpgD9QxNY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQpgD9QxNY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQpgD9QxNY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQpgD9QxNY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQpgD9QxNY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-tQpgD9QxNY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-tQpgD9QxNY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQpgD9QxNY .navbar-dropdown {
  position: fixed;
}
.cid-tQpgD9QxNY a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tQpgD9QxNY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tQpgD9QxNY .right-menu,
.cid-tQpgD9QxNY .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tQpgD9QxNY .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQpgD9QxNY .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tQpgD9QxNY .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tQpgD9QxNY .menu-top {
  text-align: center;
  width: 100%;
  background-color: #123259;
  padding: 0.5rem 0;
}
.cid-tQpgD9QxNY .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tQpgD9QxNY .card-wrapper {
  z-index: 3;
}
.cid-tQpgD9QxNY .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tQpgD9QxNY .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQpgD9QxNY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQqk48P7u6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQqk48P7u6 .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-tQqk48P7u6 .content_block:hover .mbr-section-title a {
  color: #ffffff !important;
}
.cid-tQqk48P7u6 .card_topic,
.cid-tQqk48P7u6 .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-tQqk48P7u6 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tQqk48P7u6 .image {
  position: relative;
}
.cid-tQqk48P7u6 .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  z-index: 1;
  pointer-events: none;
}
.cid-tQqk48P7u6 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQqk48P7u6 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tQqk48P7u6 .mbr-section-btn .btn-secondary-outline:hover,
.cid-tQqk48P7u6 .mbr-section-btn .btn-secondary-outline .active,
.cid-tQqk48P7u6 .mbr-section-btn .btn-secondary-outline:focus {
  color: #255085 !important;
}
.cid-tQqk48P7u6 .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-tQqk48P7u6 .content_block {
    padding: 30px 15px;
  }
  .cid-tQqk48P7u6 .mbr-figure {
    padding: 0;
  }
  .cid-tQqk48P7u6 .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.99));
  }
}
.cid-ro4H58KCbO {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ro4H58KCbO .card-img {
  position: relative;
  overflow: hidden;
}
.cid-ro4H58KCbO section {
  position: relative;
}
.cid-ro4H58KCbO a {
  font-weight: 600;
}
.cid-ro4H58KCbO .btn-sm {
  padding: 0.6rem 2.2rem;
}
.cid-ro4H58KCbO .box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64%;
  background: #255085;
}
.cid-ro4H58KCbO .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  height: 100%;
  left: 0;
  background-color: #232323;
  opacity: 0;
  transform-origin: right center 0;
  transform: perspective(100px) rotateY(-120deg);
  transform-style: flat;
  transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
}
.cid-ro4H58KCbO .card-box {
  padding: 1rem;
  background-color: #ffffff;
  width: 85%;
  margin: auto;
  margin-top: -40px;
  position: relative;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  height: 80px;
  display: flex;
  align-items: center;
}
.cid-ro4H58KCbO .card-box h3 {
  font-weight: 600;
  width: 100%;
  display: inline-block;
  margin: 0;
}
.cid-ro4H58KCbO .card-wrapper {
  height: 100%;
}
.cid-ro4H58KCbO .card-wrapper:hover .card-img:before {
  opacity: 0.3;
  transform: perspective(100px) rotateY(0deg);
}
.cid-ro4H58KCbO .card-wrapper:hover .card-title a {
  color: #ffffff !important;
}
.cid-ro4H58KCbO .text {
  color: #ffffff;
}
.cid-ro4H58KCbO .card-title {
  color: #36404c;
}
.cid-ro4H58KCbO .title {
  text-align: center;
}
.cid-tR6IZn2wVI {
  background-color: #d6d3d3;
}
.cid-tR6IZn2wVI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0;
}
.cid-tR6IZn2wVI .container-fluid {
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}
.cid-tR6IZn2wVI form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tR6IZn2wVI form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tR6IZn2wVI form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tR6IZn2wVI .form {
  background-color: #e8eaec;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .cid-tR6IZn2wVI .form {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tR6IZn2wVI .form {
    padding-left: 290px;
    padding-right: 290px;
  }
}
.cid-tR6IZn2wVI .text {
  padding-top: 7rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .cid-tR6IZn2wVI .text {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tR6IZn2wVI .text {
    padding-left: 193px;
    padding-right: 193px;
  }
}
.cid-tR6IZn2wVI .mbr-section-title {
  text-align: left;
}
.cid-tR6IZn2wVI .mbr-section-subtitle {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tR6IZn2wVI .display-1 {
    font-size: 65px;
  }
  .cid-tR6IZn2wVI .display-5 {
    font-size: 29px;
  }
  .cid-tR6IZn2wVI .display-7 {
    font-size: 24px;
  }
  .cid-tR6IZn2wVI .display-4 {
    font-weight: 300;
  }
}
.cid-tR6IZn2wVI .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
}
.cid-tR6IZn2wVI .btn:hover {
  background: #EeFF42 !important;
  border-color: #EeFF42 !important;
  color: #18293D !important;
}
.cid-tR6IZn2wVI .btn-primary-outline {
  color: #18293D !important;
}
.cid-tR6IZn2wVI .form-control,
.cid-tR6IZn2wVI .field-input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none !important;
  box-shadow: none;
  border-bottom: 2px solid #253C57 !important;
  padding: 0;
  color: #18293D;
  margin: 0;
  font-weight: 300;
}
.cid-tR6IZn2wVI .form-control:hover {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #253C57 !important;
}
.cid-tR6IZn2wVI .form-control:focus {
  box-shadow: none;
  outline: none;
  background-color: inherit;
}
.cid-tR6IZn2wVI .form-check-input:checked {
  background-color: #255085;
  border-color: #255085;
}
.cid-tR6IZn2wVI .form-control::placeholder {
  color: #18293D;
  margin: 0;
  font-weight: 300;
}
.cid-tR6IZn2wVI .form-group {
  margin-bottom: 41px;
}
.cid-ro4HkiPJUA {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ro4HkiPJUA .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
}
.cid-ro4HkiPJUA H2 {
  color: #232323;
  text-align: left;
}
.cid-ro4HkiPJUA H3 {
  color: #232323;
}
.cid-ro4HkiPJUA .mbr-text,
.cid-ro4HkiPJUA .mbr-section-btn {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-ro4HkiPJUA .md-pb {
    padding-bottom: 2rem;
  }
}
.cid-ro4H7rqkSh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f5f5f7;
}
.cid-ro4H7rqkSh .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-ro4H7rqkSh H2 {
  color: #36404c;
}
.cid-ro4H7rqkSh H3 {
  color: #36404c;
}
.cid-ro4H7rqkSh .mbr-text,
.cid-ro4H7rqkSh .mbr-section-btn {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-ro4H7rqkSh .md-pb {
    padding-bottom: 2rem;
  }
}
.cid-ro4H7rqkSh img {
  filter: invert(0.5);
}
.cid-tR6QdVlFFW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #255085;
}
.cid-tR6QdVlFFW .item:focus,
.cid-tR6QdVlFFW span:focus {
  outline: none;
}
.cid-tR6QdVlFFW .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tR6QdVlFFW .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tR6QdVlFFW .container {
    padding: 0 24px;
  }
}
.cid-tR6QdVlFFW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 400px;
  max-width: 400px;
  padding: 40px;
  border-radius: 40px;
  background-color: #d6d3d3;
}
@media (max-width: 992px) {
  .cid-tR6QdVlFFW .embla__slide {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .cid-tR6QdVlFFW .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-tR6QdVlFFW .embla__slide .slide-content {
  width: 100%;
}
.cid-tR6QdVlFFW .embla__slide .slide-content .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.cid-tR6QdVlFFW .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tR6QdVlFFW .embla__slide .slide-content .item-wrapper .rating-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tR6QdVlFFW .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tR6QdVlFFW .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-rating {
  margin: 0 2px 0 0;
}
.cid-tR6QdVlFFW .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-tR6QdVlFFW .embla__slide .slide-content .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-tR6QdVlFFW .embla__slide .slide-content .item-wrapper .item-content .mbr-name {
  margin: 40px 0 0;
}
@media (max-width: 992px) {
  .cid-tR6QdVlFFW .embla__slide .slide-content .item-wrapper .item-content .mbr-name {
    margin: 24px 0 0;
  }
}
.cid-tR6QdVlFFW .embla__button--next,
.cid-tR6QdVlFFW .embla__button--prev {
  display: flex;
}
.cid-tR6QdVlFFW .embla__button {
  bottom: -4.5rem;
  width: 64px;
  height: 64px;
  margin-top: -1.5rem;
  font-size: 48px;
  background-color: transparent !important;
  color: #255085 !important;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-tR6QdVlFFW .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tR6QdVlFFW .embla__button:hover {
  background: transparent;
  color: #ffffff !important;
}
.cid-tR6QdVlFFW .embla__button.embla__button--prev {
  left: 0;
  margin-left: 32px;
}
.cid-tR6QdVlFFW .embla__button.embla__button--next {
  right: 0;
  margin-right: 32px;
}
.cid-tR6QdVlFFW .embla {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-tR6QdVlFFW .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-tR6QdVlFFW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tR6QdVlFFW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tR6QdVlFFW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tR6QdVlFFW .mbr-text {
  color: #262642;
}
.cid-tR6QdVlFFW .mbr-name {
  color: #262642;
}
.cid-tR6QdVlFFW .mbr-rating {
  color: #d6d3d3;
}
.cid-ro5mqKOC1l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/46a1c933-81c9-4c06-b05a-25d00f93be93-1366x768.webp");
}
.cid-ro5mqKOC1l .mbr-overlay {
  background-color: #255085;
  opacity: 0.3;
}
.cid-ro5mqKOC1l textarea {
  min-height: 150px;
}
.cid-ro5mqKOC1l .form-col {
  background: #c1c1c1;
  padding: 3rem 1rem;
}
.cid-ro5mqKOC1l .form-wrap {
  max-width: 520px;
  margin: auto;
}
.cid-ro5mqKOC1l .text-wrap {
  max-width: 400px;
  border: 2px solid #ffffff;
  padding: 3rem;
  margin: 4rem auto!important;
}
@media (max-width: 992px) {
  .cid-ro5mqKOC1l .form-wrap {
    max-width: 690px;
  }
  .cid-ro5mqKOC1l .md-pb {
    padding-bottom: 3rem;
  }
  .cid-ro5mqKOC1l .text-wrap {
    max-width: 690px;
  }
}
.cid-ro5mqKOC1l .mbr-section-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-ro5mqKOC1l .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #255085;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-ro5mqKOC1l .form-control,
.cid-ro5mqKOC1l .field-input {
  padding: 0.5rem 1.2rem;
  background-color: #ffffff;
  border: 3px solid #ebeced;
  color: #767676;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  outline: none;
}
.cid-ro5mqKOC1l .form-control:hover,
.cid-ro5mqKOC1l .field-input:hover,
.cid-ro5mqKOC1l .form-control:focus,
.cid-ro5mqKOC1l .field-input:focus {
  background-color: #f5f5f7;
  border: 3px solid #ebeced;
  box-shadow: none;
  outline: none;
}
.cid-ro5mqKOC1l input::-webkit-input-placeholder,
.cid-ro5mqKOC1l textarea::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-ro5mqKOC1l input:-moz-placeholder,
.cid-ro5mqKOC1l textarea:-moz-placeholder {
  color: #c1c1c1;
}
.cid-ro5mqKOC1l .jq-selectbox li,
.cid-ro5mqKOC1l .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-ro5mqKOC1l .jq-selectbox li:hover,
.cid-ro5mqKOC1l .jq-selectbox li.selected {
  background-color: #f5f5f7;
  color: #000000;
}
.cid-ro5mqKOC1l .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-ro5mqKOC1l .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f7;
}
.cid-ro5mqKOC1l H2 {
  color: #36404c;
}
@media (max-width: 767px) {
  .cid-ro5mqKOC1l .col-auto {
    margin: auto;
  }
}
.cid-ro5mqKOC1l H3 {
  color: #ffffff;
}
.cid-ro5mqKOC1l H4 {
  color: #36404c;
}
.cid-tRadkF3TN8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2c333c;
}
.cid-tRadkF3TN8 .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-tRadkF3TN8 section {
  position: relative;
}
.cid-tRadkF3TN8 h4 {
  margin: 0;
}
.cid-tRadkF3TN8 a {
  font-weight: 300;
}
.cid-tRadkF3TN8 .row {
  align-items: center;
}
.cid-tRadkF3TN8 .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-tRadkF3TN8 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tRadkF3TN8 .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tRadkF3TN8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tRadkF3TN8 .align-left {
    text-align: center;
  }
  .cid-tRadkF3TN8 .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tRadkF3TN8 .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-tRadkF3TN8 .item {
    padding-bottom: 0.5rem;
  }
}
.cid-tRadkF3TN8 .item-title {
  color: #c1c1c1;
}
.cid-tRadkF3TN8 H4 {
  color: #c1c1c1;
}
