body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Spartan', sans-serif;
  font-size: 4.0625rem;
  line-height: 1.2;
}
.display-1 > .mbr-iconfont {
  font-size: 5.078125rem;
}
.display-2 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.1875rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.984375rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.2625rem;
  line-height: 1.2;
}
.display-7 > .mbr-iconfont {
  font-size: 1.578125rem;
}
/* ---- 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.25rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.84375rem;
    font-size: calc( 2.071875rem + (4.0625 - 2.071875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.071875rem + (4.0625 - 2.071875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.55rem;
    font-size: calc( 1.765625rem + (3.1875 - 1.765625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.765625rem + (3.1875 - 1.765625) * ((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.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-7 {
    font-size: 1.01rem;
    font-size: calc( 1.091875rem + (1.2625 - 1.091875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.091875rem + (1.2625 - 1.091875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 7px 15px;
  border-radius: 4px;
}
.btn-sm {
  padding: 7px 15px;
  border-radius: 4px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 4px;
}
.btn-lg {
  padding: 18px 25px;
  border-radius: 4px;
}
.bg-primary {
  background-color: #010a44 !important;
}
.bg-success {
  background-color: #34b794 !important;
}
.bg-info {
  background-color: #f24d94 !important;
}
.bg-warning {
  background-color: #e53712 !important;
}
.bg-danger {
  background-color: #983a37 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #010a44 !important;
  border-color: #010a44 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000312 !important;
  border-color: #000312 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000312 !important;
  border-color: #000312 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f14105 !important;
  border-color: #f14105 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #bf3404 !important;
  border-color: #bf3404 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #bf3404 !important;
  border-color: #bf3404 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #ef1d77 !important;
  border-color: #ef1d77 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ef1d77 !important;
  border-color: #ef1d77 !important;
}
.btn-success,
.btn-success:active {
  background-color: #34b794 !important;
  border-color: #34b794 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #298f74 !important;
  border-color: #298f74 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #298f74 !important;
  border-color: #298f74 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e53712 !important;
  border-color: #e53712 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b62c0e !important;
  border-color: #b62c0e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b62c0e !important;
  border-color: #b62c0e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #983a37 !important;
  border-color: #983a37 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #732c29 !important;
  border-color: #732c29 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #732c29 !important;
  border-color: #732c29 !important;
}
.btn-white {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:hover {
  color: #cccccc !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-white:hover,
.btn-white:hover:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover:hover,
.btn-white:hover:focus,
.btn-white:hover.focus,
.btn-white:hover.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:hover.disabled,
.btn-white:hover:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-black {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black,
.btn-black:active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #4d4d4d !important;
  border-color: #4d4d4d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #010a44;
  color: #010a44;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #010a44 !important;
  border-color: #010a44 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #010a44 !important;
  border-color: #010a44 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f14105;
  color: #f14105;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #f14105 !important;
  border-color: #f14105 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f14105 !important;
  border-color: #f14105 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #f24d94;
  color: #f24d94;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #34b794;
  color: #34b794;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #34b794 !important;
  border-color: #34b794 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #34b794 !important;
  border-color: #34b794 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #e53712;
  color: #e53712;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #e53712 !important;
  border-color: #e53712 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e53712 !important;
  border-color: #e53712 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #983a37;
  color: #983a37;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff !important;
  background-color: #983a37 !important;
  border-color: #983a37 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #983a37 !important;
  border-color: #983a37 !important;
}
.btn-black-outline {
  border-color: #1a1a1a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #1a1a1a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #4d4d4d !important;
  background-color: transparent;
  border-color: #4d4d4d !important;
}
.btn-white-outline {
  border-color: #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #cccccc !important;
  background-color: transparent;
  border-color: #cccccc !important;
}
.text-primary {
  color: #010a44 !important;
}
.text-secondary {
  color: #f14105 !important;
}
.text-success {
  color: #34b794 !important;
}
.text-info {
  color: #f24d94 !important;
}
.text-warning {
  color: #e53712 !important;
}
.text-danger {
  color: #983a37 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1a1a1a !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: #8d2603 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1d6854 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ca0f5f !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #86200b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4d1d1c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #010a44;
}
.nav-tabs .nav-link:not(.active) {
  color: #1a1a1a;
}
.alert-success {
  background-color: #34b794;
}
.alert-info {
  background-color: #f24d94;
}
.alert-warning {
  background-color: #e53712;
}
.alert-danger {
  background-color: #983a37;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #010a44;
  border-color: #010a44;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #010a44;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2f4afc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #8cdec8;
}
.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: #fbd1c8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d0817e;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
blockquote {
  border-color: #010a44;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #010a44;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #010a44;
}
.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: #010a44;
  border-bottom-color: #010a44;
}
.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: #010a44 !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: #f14105 !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='%23010a44' %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.4s;
}
.cid-ttqoHUG5LC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-ttqoHUG5LC .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-ttqoHUG5LC .content_block:hover .mbr-section-title a {
  color: #f14105 !important;
}
.cid-ttqoHUG5LC .card_topic,
.cid-ttqoHUG5LC .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-ttqoHUG5LC .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #f14105;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ttqoHUG5LC .image {
  position: relative;
}
.cid-ttqoHUG5LC .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fef8f5);
  z-index: 1;
  pointer-events: none;
}
.cid-ttqoHUG5LC .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ttqoHUG5LC .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ttqoHUG5LC .mbr-section-btn .btn-secondary-outline:hover,
.cid-ttqoHUG5LC .mbr-section-btn .btn-secondary-outline .active,
.cid-ttqoHUG5LC .mbr-section-btn .btn-secondary-outline:focus {
  color: #010a44 !important;
}
.cid-ttqoHUG5LC .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-ttqoHUG5LC .content_block {
    padding: 30px 15px;
  }
  .cid-ttqoHUG5LC .mbr-figure {
    padding: 0;
  }
  .cid-ttqoHUG5LC .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(254, 248, 245, 0.99));
  }
}
.cid-ttqoH876t0 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fef8f5;
}
.cid-ttqoH876t0 .pos_rel {
  position: relative;
}
.cid-ttqoH876t0 .main_section_title {
  display: flex;
}
.cid-ttqoH876t0 .main_title {
  padding: 0 8.333%;
}
.cid-ttqoH876t0 .empty_content {
  width: 72%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-ttqoH876t0 .card_title {
    font-size: 2rem;
  }
}
.cid-ttqoH876t0 .text-wrapper {
  width: 48%;
  background: #010a44;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-ttqoH876t0 .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ttqoH876t0 .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ttqoH876t0 .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-ttqoH876t0 .text-wrapper:hover .card_title a {
  color: #f14105 !important;
}
.cid-ttqoH876t0 .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ttqoH876t0 .block-content,
.cid-ttqoH876t0 .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-ttqoH876t0 .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ttqoH876t0 .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ttqoH876t0 .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-ttqoH876t0 .block-content {
  display: flex;
  align-items: center;
}
.cid-ttqoH876t0 .image-wrapper,
.cid-ttqoH876t0 img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-ttqoH876t0 .mbr-section-subtitle {
  margin-bottom: 12px;
  text-align: left;
}
.cid-ttqoH876t0 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ttqoH876t0 .mbr-section-btn .btn-secondary-outline:hover,
.cid-ttqoH876t0 .mbr-section-btn .btn-secondary-outline .active,
.cid-ttqoH876t0 .mbr-section-btn .btn-secondary-outline:focus {
  color: #010a44 !important;
}
@media (max-width: 991px) {
  .cid-ttqoH876t0 .block-content {
    flex-direction: column;
  }
  .cid-ttqoH876t0 .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-ttqoH876t0 .empty_content {
    display: none;
  }
  .cid-ttqoH876t0 .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ttqoH876t0 .text-wrapper,
  .cid-ttqoH876t0 .main_title {
    padding: 30px 1rem;
  }
}
.cid-ttqxwVMmCM {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fef8f5;
}
.cid-ttqxwVMmCM .pos_rel {
  position: relative;
}
.cid-ttqxwVMmCM .main_section_title {
  display: flex;
}
.cid-ttqxwVMmCM .main_title {
  padding: 0 8.333%;
}
.cid-ttqxwVMmCM .empty_content {
  width: 72%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-ttqxwVMmCM .card_title {
    font-size: 2rem;
  }
}
.cid-ttqxwVMmCM .text-wrapper {
  width: 48%;
  background: #010a44;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-ttqxwVMmCM .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-ttqxwVMmCM .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-ttqxwVMmCM .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-ttqxwVMmCM .text-wrapper:hover .card_title a {
  color: #f14105 !important;
}
.cid-ttqxwVMmCM .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ttqxwVMmCM .block-content {
  display: flex;
  align-items: center;
}
.cid-ttqxwVMmCM .image-wrapper,
.cid-ttqxwVMmCM img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-ttqxwVMmCM .mbr-section-subtitle {
  margin-bottom: 12px;
  text-align: left;
}
.cid-ttqxwVMmCM .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ttqxwVMmCM .mbr-section-btn .btn-secondary-outline:hover,
.cid-ttqxwVMmCM .mbr-section-btn .btn-secondary-outline .active,
.cid-ttqxwVMmCM .mbr-section-btn .btn-secondary-outline:focus {
  color: #010a44 !important;
}
@media (max-width: 991px) {
  .cid-ttqxwVMmCM .block-content {
    flex-direction: column;
  }
  .cid-ttqxwVMmCM .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-ttqxwVMmCM .empty_content {
    display: none;
  }
  .cid-ttqxwVMmCM .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ttqxwVMmCM .text-wrapper,
  .cid-ttqxwVMmCM .main_title {
    padding: 30px 1rem;
  }
}
.cid-tEHmccd7WS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fef8f5;
}
.cid-tEHmccd7WS .post_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-tEHmccd7WS .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-tEHmccd7WS .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tEHmccd7WS .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tEHmccd7WS .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tEHmccd7WS .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-tEHmccd7WS .text-wrapper {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .cid-tEHmccd7WS .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tEHmccd7WS .text-wrapper {
    padding: 20px;
  }
}
.cid-tEHmccd7WS .content-wrapper {
  overflow: hidden;
  border-radius: 4px;
  background: #f8f8f8;
}
.cid-tEHmccd7WS .content-wrapper:hover .post_wrap {
  opacity: 1;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
  transform: translateY(0);
}
.cid-tEHmccd7WS .content-wrapper:hover .image-wrapper > img,
.cid-tEHmccd7WS .content-wrapper:hover .image-wrapper > a img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-tEHmccd7WS .content-wrapper:hover .item-title a {
  color: #f14105 !important;
}
.cid-tEHmccd7WS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEHmccd7WS .image-wrapper,
.cid-tEHmccd7WS img {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tEHmccd7WS .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
}
@media (max-width: 767px) {
  .cid-tEHmccd7WS .card_post {
    padding: 20px;
  }
}
.cid-tEHmccd7WS .image_post {
  display: inline-block;
  height: 46px;
  width: 46px;
  min-width: 46px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-tEHmccd7WS .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: transform;
}
.cid-tEHmccd7WS .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-tEHmccd7WS .item-title,
.cid-tEHmccd7WS .card_topic {
  margin-bottom: 12px;
}
.cid-tEHmccd7WS .category_content {
  opacity: .8;
}
.cid-tEHmccd7WS .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #f14105;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tEHmccd7WS .mbr-section-btn .btn-secondary-outline {
  background-color: transparent !important;
  padding: 3px 0;
  border: none !important;
}
.cid-tEHmccd7WS .mbr-section-btn .btn-secondary-outline:hover {
  color: #010a44 !important;
}
.cid-ttqOJ29dUw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fef8f5;
}
.cid-ttqOJ29dUw .post_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-ttqOJ29dUw .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-ttqOJ29dUw .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-ttqOJ29dUw .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttqOJ29dUw .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-ttqOJ29dUw .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-ttqOJ29dUw .text-wrapper {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .cid-ttqOJ29dUw .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttqOJ29dUw .text-wrapper {
    padding: 20px;
  }
}
.cid-ttqOJ29dUw .content-wrapper {
  overflow: hidden;
  border-radius: 4px;
  background: #f8f8f8;
}
.cid-ttqOJ29dUw .content-wrapper:hover .post_wrap {
  opacity: 1;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
  transform: translateY(0);
}
.cid-ttqOJ29dUw .content-wrapper:hover .image-wrapper > img,
.cid-ttqOJ29dUw .content-wrapper:hover .image-wrapper > a img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-ttqOJ29dUw .content-wrapper:hover .item-title a {
  color: #f14105 !important;
}
.cid-ttqOJ29dUw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttqOJ29dUw .image-wrapper,
.cid-ttqOJ29dUw img {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-ttqOJ29dUw .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
}
@media (max-width: 767px) {
  .cid-ttqOJ29dUw .card_post {
    padding: 20px;
  }
}
.cid-ttqOJ29dUw .image_post {
  display: inline-block;
  height: 46px;
  width: 46px;
  min-width: 46px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ttqOJ29dUw .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: transform;
}
.cid-ttqOJ29dUw .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-ttqOJ29dUw .item-title,
.cid-ttqOJ29dUw .card_topic {
  margin-bottom: 12px;
}
.cid-ttqOJ29dUw .category_content {
  opacity: .8;
}
.cid-ttqOJ29dUw .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #f14105;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ttqOJ29dUw .mbr-section-btn .btn-secondary-outline {
  background-color: transparent !important;
  padding: 3px 0;
  border: none !important;
}
.cid-ttqOJ29dUw .mbr-section-btn .btn-secondary-outline:hover {
  color: #010a44 !important;
}
.cid-ttqWMO34Kb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fef8f5;
}
.cid-ttqWMO34Kb .post_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-ttqWMO34Kb .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-ttqWMO34Kb .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-ttqWMO34Kb .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttqWMO34Kb .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-ttqWMO34Kb .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-ttqWMO34Kb .text-wrapper {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .cid-ttqWMO34Kb .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttqWMO34Kb .text-wrapper {
    padding: 20px;
  }
}
.cid-ttqWMO34Kb .content-wrapper {
  overflow: hidden;
  border-radius: 4px;
  background: #f8f8f8;
}
.cid-ttqWMO34Kb .content-wrapper:hover .post_wrap {
  opacity: 1;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
  transform: translateY(0);
}
.cid-ttqWMO34Kb .content-wrapper:hover .image-wrapper > img,
.cid-ttqWMO34Kb .content-wrapper:hover .image-wrapper > a img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-ttqWMO34Kb .content-wrapper:hover .item-title a {
  color: #f14105 !important;
}
.cid-ttqWMO34Kb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttqWMO34Kb .image-wrapper,
.cid-ttqWMO34Kb img {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-ttqWMO34Kb .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
}
@media (max-width: 767px) {
  .cid-ttqWMO34Kb .card_post {
    padding: 20px;
  }
}
.cid-ttqWMO34Kb .image_post {
  display: inline-block;
  height: 46px;
  width: 46px;
  min-width: 46px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ttqWMO34Kb .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: transform;
}
.cid-ttqWMO34Kb .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-ttqWMO34Kb .item-title,
.cid-ttqWMO34Kb .card_topic {
  margin-bottom: 12px;
}
.cid-ttqWMO34Kb .category_content {
  opacity: .8;
}
.cid-ttqWMO34Kb .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #f14105;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ttqWMO34Kb .mbr-section-btn .btn-secondary-outline {
  background-color: transparent !important;
  padding: 3px 0;
  border: none !important;
}
.cid-ttqWMO34Kb .mbr-section-btn .btn-secondary-outline:hover {
  color: #010a44 !important;
}
.cid-ttr2srQVHg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fef8f5;
}
.cid-ttr2srQVHg .post_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-ttr2srQVHg .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-ttr2srQVHg .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-ttr2srQVHg .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttr2srQVHg .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-ttr2srQVHg .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-ttr2srQVHg .text-wrapper {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .cid-ttr2srQVHg .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttr2srQVHg .text-wrapper {
    padding: 20px;
  }
}
.cid-ttr2srQVHg .content-wrapper {
  overflow: hidden;
  border-radius: 4px;
  background: #f8f8f8;
}
.cid-ttr2srQVHg .content-wrapper:hover .post_wrap {
  opacity: 1;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
  transform: translateY(0);
}
.cid-ttr2srQVHg .content-wrapper:hover .image-wrapper > img,
.cid-ttr2srQVHg .content-wrapper:hover .image-wrapper > a img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-ttr2srQVHg .content-wrapper:hover .item-title a {
  color: #f14105 !important;
}
.cid-ttr2srQVHg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttr2srQVHg .image-wrapper,
.cid-ttr2srQVHg img {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-ttr2srQVHg .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
}
@media (max-width: 767px) {
  .cid-ttr2srQVHg .card_post {
    padding: 20px;
  }
}
.cid-ttr2srQVHg .image_post {
  display: inline-block;
  height: 46px;
  width: 46px;
  min-width: 46px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ttr2srQVHg .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: transform;
}
.cid-ttr2srQVHg .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-ttr2srQVHg .item-title,
.cid-ttr2srQVHg .card_topic {
  margin-bottom: 12px;
}
.cid-ttr2srQVHg .category_content {
  opacity: .8;
}
.cid-ttr2srQVHg .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #f14105;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ttr2srQVHg .mbr-section-btn .btn-secondary-outline {
  background-color: transparent !important;
  padding: 3px 0;
  border: none !important;
}
.cid-ttr2srQVHg .mbr-section-btn .btn-secondary-outline:hover {
  color: #010a44 !important;
}
.cid-ttr7JUcvZR {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fef8f5;
}
.cid-ttr7JUcvZR .post_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-ttr7JUcvZR .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-ttr7JUcvZR .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-ttr7JUcvZR .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttr7JUcvZR .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-ttr7JUcvZR .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-ttr7JUcvZR .text-wrapper {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .cid-ttr7JUcvZR .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttr7JUcvZR .text-wrapper {
    padding: 20px;
  }
}
.cid-ttr7JUcvZR .content-wrapper {
  overflow: hidden;
  border-radius: 4px;
  background: #f8f8f8;
}
.cid-ttr7JUcvZR .content-wrapper:hover .post_wrap {
  opacity: 1;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
  transform: translateY(0);
}
.cid-ttr7JUcvZR .content-wrapper:hover .image-wrapper > img,
.cid-ttr7JUcvZR .content-wrapper:hover .image-wrapper > a img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-ttr7JUcvZR .content-wrapper:hover .item-title a {
  color: #f14105 !important;
}
.cid-ttr7JUcvZR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttr7JUcvZR .image-wrapper,
.cid-ttr7JUcvZR img {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-ttr7JUcvZR .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
}
@media (max-width: 767px) {
  .cid-ttr7JUcvZR .card_post {
    padding: 20px;
  }
}
.cid-ttr7JUcvZR .image_post {
  display: inline-block;
  height: 46px;
  width: 46px;
  min-width: 46px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ttr7JUcvZR .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: transform;
}
.cid-ttr7JUcvZR .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-ttr7JUcvZR .item-title,
.cid-ttr7JUcvZR .card_topic {
  margin-bottom: 12px;
}
.cid-ttr7JUcvZR .category_content {
  opacity: .8;
}
.cid-ttr7JUcvZR .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #f14105;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ttr7JUcvZR .mbr-section-btn .btn-secondary-outline {
  background-color: transparent !important;
  padding: 3px 0;
  border: none !important;
}
.cid-ttr7JUcvZR .mbr-section-btn .btn-secondary-outline:hover {
  color: #010a44 !important;
}
.cid-ttt53rTWkY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fef8f5;
}
.cid-ttt53rTWkY .post_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-ttt53rTWkY .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-ttt53rTWkY .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-ttt53rTWkY .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttt53rTWkY .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-ttt53rTWkY .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-ttt53rTWkY .text-wrapper {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .cid-ttt53rTWkY .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttt53rTWkY .text-wrapper {
    padding: 20px;
  }
}
.cid-ttt53rTWkY .content-wrapper {
  overflow: hidden;
  border-radius: 4px;
  background: #f8f8f8;
}
.cid-ttt53rTWkY .content-wrapper:hover .post_wrap {
  opacity: 1;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
  transform: translateY(0);
}
.cid-ttt53rTWkY .content-wrapper:hover .image-wrapper > img,
.cid-ttt53rTWkY .content-wrapper:hover .image-wrapper > a img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-ttt53rTWkY .content-wrapper:hover .item-title a {
  color: #f14105 !important;
}
.cid-ttt53rTWkY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttt53rTWkY .image-wrapper,
.cid-ttt53rTWkY img {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-ttt53rTWkY .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
}
@media (max-width: 767px) {
  .cid-ttt53rTWkY .card_post {
    padding: 20px;
  }
}
.cid-ttt53rTWkY .image_post {
  display: inline-block;
  height: 46px;
  width: 46px;
  min-width: 46px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ttt53rTWkY .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: transform;
}
.cid-ttt53rTWkY .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-ttt53rTWkY .item-title,
.cid-ttt53rTWkY .card_topic {
  margin-bottom: 12px;
}
.cid-ttt53rTWkY .category_content {
  opacity: .8;
}
.cid-ttt53rTWkY .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #f14105;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ttt53rTWkY .mbr-section-btn .btn-secondary-outline {
  background-color: transparent !important;
  padding: 3px 0;
  border: none !important;
}
.cid-ttt53rTWkY .mbr-section-btn .btn-secondary-outline:hover {
  color: #010a44 !important;
}
.cid-ttt52gvEOl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fef8f5;
}
.cid-ttt52gvEOl .post_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-ttt52gvEOl .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-ttt52gvEOl .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-ttt52gvEOl .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttt52gvEOl .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-ttt52gvEOl .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-ttt52gvEOl .text-wrapper {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .cid-ttt52gvEOl .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-ttt52gvEOl .text-wrapper {
    padding: 20px;
  }
}
.cid-ttt52gvEOl .content-wrapper {
  overflow: hidden;
  border-radius: 4px;
  background: #f8f8f8;
}
.cid-ttt52gvEOl .content-wrapper:hover .post_wrap {
  opacity: 1;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
  transform: translateY(0);
}
.cid-ttt52gvEOl .content-wrapper:hover .image-wrapper > img,
.cid-ttt52gvEOl .content-wrapper:hover .image-wrapper > a img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-ttt52gvEOl .content-wrapper:hover .item-title a {
  color: #f14105 !important;
}
.cid-ttt52gvEOl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttt52gvEOl .image-wrapper,
.cid-ttt52gvEOl img {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-ttt52gvEOl .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
}
@media (max-width: 767px) {
  .cid-ttt52gvEOl .card_post {
    padding: 20px;
  }
}
.cid-ttt52gvEOl .image_post {
  display: inline-block;
  height: 46px;
  width: 46px;
  min-width: 46px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-ttt52gvEOl .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  will-change: transform;
}
.cid-ttt52gvEOl .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-ttt52gvEOl .item-title,
.cid-ttt52gvEOl .card_topic {
  margin-bottom: 12px;
}
.cid-ttt52gvEOl .category_content {
  opacity: .8;
}
.cid-ttt52gvEOl .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #f14105;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-ttt52gvEOl .mbr-section-btn .btn-secondary-outline {
  background-color: transparent !important;
  padding: 3px 0;
  border: none !important;
}
.cid-ttt52gvEOl .mbr-section-btn .btn-secondary-outline:hover {
  color: #010a44 !important;
}
.cid-ttt6Qfup4H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fef8f5;
}
.cid-ttt6Qfup4H .item:focus,
.cid-ttt6Qfup4H span:focus {
  outline: none;
}
.cid-ttt6Qfup4H .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-ttt6Qfup4H .item:last-child {
    margin-bottom: 0;
  }
}
.cid-ttt6Qfup4H .item-subtitle {
  margin-bottom: 12px;
}
.cid-ttt6Qfup4H .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  will-change: transform;
  height: 500px;
}
.cid-ttt6Qfup4H .item-wrapper:hover .item-img img {
  transform: scale(1.2);
}
.cid-ttt6Qfup4H .item-content {
  padding: 0 1.5rem;
  position: absolute;
  max-width: 50%;
  height: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}
.cid-ttt6Qfup4H .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-ttt6Qfup4H .mbr-section-btn .btn-secondary-outline:hover,
.cid-ttt6Qfup4H .mbr-section-btn .btn-secondary-outline .active,
.cid-ttt6Qfup4H .mbr-section-btn .btn-secondary-outline:focus {
  color: #010a44 !important;
}
.cid-ttt6Qfup4H .item-img {
  overflow: hidden;
  width: calc(100% - 120px);
  height: 100%;
  float: right;
  position: relative;
  border-radius: 4px;
}
.cid-ttt6Qfup4H .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ttt6Qfup4H .item-content {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .cid-ttt6Qfup4H .wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .cid-ttt6Qfup4H .item-img {
    width: 100%;
    float: none;
    margin-bottom: 1rem;
  }
  .cid-ttt6Qfup4H .item-img img {
    max-height: 300px;
  }
  .cid-ttt6Qfup4H .item-content {
    position: static;
    padding: 0;
    width: 100%;
    max-width: none ;
    height: auto;
  }
  .cid-ttt6Qfup4H .item-wrapper {
    height: auto;
  }
}
.cid-ttqJPf45eP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/20220423-133724-2000x900.jpg");
}
.cid-ttqJPf45eP .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-ttqJPf45eP .icon_wrapper {
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}
.cid-ttqJPf45eP .icon_wrapper .mbr-iconfont {
  transition: all .4s;
  color: #ffffff;
}
.cid-ttqJPf45eP .item_wrapper {
  padding: 0 20px 40px;
}
@media (max-width: 767px) {
  .cid-ttqJPf45eP .item_wrapper {
    padding-bottom: 20px;
  }
}
.cid-ttqJPf45eP .item_wrapper:hover .item_title a {
  color: #f14105 !important;
}
.cid-ttqJPf45eP .item_wrapper:hover .icon_wrapper a span {
  color: #f14105 !important;
}
.cid-ttqJPf45eP .item_content {
  margin-top: 20px;
  width: 100%;
}
.cid-ttqJPf45eP .item_title {
  margin-bottom: 10px;
  transition: all .4s;
}
.cid-ttqJPf45eP .item_text {
  margin-bottom: 0;
  text-align: left;
}
.cid-ttqJPf45eP .divider {
  border-left: 1px solid #ffffff;
}
.cid-ttqJPf45eP .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-ttqJPf45eP .icons__block {
    margin-top: 40px;
  }
}
.cid-ttqt2bhoLu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.cid-ttqt2bhoLu .mbr-text1 {
  color: #2a3ba2;
}
.cid-ttqt2bhoLu .mbr-text2 {
  color: #2a3ba2;
}
.cid-ttqt2bhoLu p {
  margin: 0;
}
