body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-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: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ef464f !important;
  border-color: #ef464f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #cd121c !important;
  border-color: #cd121c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #cd121c !important;
  border-color: #cd121c !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ef464f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #cd121c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ef464f !important;
  border-color: #ef464f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ef464f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #bf101a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #ef464f !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='%236592e6' %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-sXEGNdcfuK {
  background-image: url("../../../assets/images/background-1193x843.jpeg");
}
.cid-sXEGNdcfuK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sXEGNdcfuK .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
  color: #e43f3f;
}
.cid-sXEGNdcfuK .social-row .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-sXEGNdcfuK .mbr-section-title {
  color: #000000;
}
.cid-sXEGNdcfuK .mbr-section-subtitle {
  color: #000000;
}
.cid-sXEGNdcfuK .mbr-text,
.cid-sXEGNdcfuK .mbr-section-btn,
.cid-sXEGNdcfuK .social-row {
  color: #000000;
}
.cid-t20NqODiBl {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-t20NqODiBl .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-t20NqODiBl .mbr-section-subtitle {
  color: #6c7577;
}
.cid-t20M5yfvA6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-t20M5yfvA6 .mbr-section-title {
  color: #2e6b75;
}
.cid-t20M5yfvA6 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-t3CQEdEsE5 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-t3CQEdEsE5 .col-lg-6 {
  padding: 0 2rem;
}
.cid-t3CQEdEsE5 .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-t3CQEdEsE5 .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-t3CQEdEsE5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t3CQEdEsE5 .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-t3CQEdEsE5 .card-wrapper:hover {
  background: #f2f3f7;
}
.cid-t3CQEdEsE5 .mbr-iconfont {
  font-size: 3rem;
  color: #ef464f;
  padding: 2.5rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
}
.cid-t3CQEdEsE5 .card-box {
  margin: auto;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .cid-t3CQEdEsE5 .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t3CQEdEsE5 .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-t3CQEdEsE5 .card-text {
  color: #ff6666;
}
.cid-t3CQEdEsE5 .card-title {
  color: #ef464f;
}
.cid-t06NMeb6KT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t06NMeb6KT .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-t06NMeb6KT .mbr-section-subtitle {
  color: #fafafa;
  text-align: center;
}
.cid-t2KKGIUn65 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-t2KKGIUn65 .card {
  -webkit-align-items: center;
  align-items: center;
}
.cid-t2KKGIUn65 .card-box {
  width: 100%;
}
.cid-t2KKGIUn65 .card-img {
  padding: 1rem;
  border: 2px solid #232323;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-t2KKGIUn65 .card-img span {
  color: #ef464f;
  font-size: 3.8rem;
}
.cid-t2KKGIUn65 p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-t2KKGIUn65 .card {
    margin-bottom: 2rem;
  }
}
.cid-t2KKGIUn65 .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-t2KKGIUn65 .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-t2KKGIUn65 .mbr-section-title b:last-child,
.cid-t2KKGIUn65 .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-t2KKGIUn65 .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-t2KKGIUn65 .card-title,
.cid-t2KKGIUn65 .card-img {
  color: #ef464f;
}
.cid-t2KKGIUn65 .mbr-text {
  color: #fafafa;
}
.cid-sXF0ZvfDPD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-sXF0ZvfDPD .item-img {
  position: relative;
}
.cid-sXF0ZvfDPD .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-sXF0ZvfDPD .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-sXF0ZvfDPD .btn-tag:hover,
.cid-sXF0ZvfDPD .btn-tag:focus {
  box-shadow: none;
}
.cid-sXF0ZvfDPD img,
.cid-sXF0ZvfDPD .item-img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sXF0ZvfDPD .item:focus,
.cid-sXF0ZvfDPD span:focus {
  outline: none;
}
.cid-sXF0ZvfDPD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sXF0ZvfDPD .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-sXF0ZvfDPD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sXF0ZvfDPD .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-sXF0ZvfDPD .mbr-text,
.cid-sXF0ZvfDPD .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
.cid-sXF0ZvfDPD .item-title {
  color: #fafafa;
  text-align: center;
}
.cid-sXF0ZvfDPD .item-subtitle {
  color: #ef464f;
  text-align: center;
}
.cid-sXF0ZvfDPD .item-subtitle DIV {
  text-align: center;
}
.cid-t0BfZbCTzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-t0BfZbCTzv .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-t0BfZbCTzv .list {
  color: #fafafa;
  text-align: left;
}
.cid-t0BfZbCTzv ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t0BfZbCTzv li {
  padding-bottom: 0.5rem;
}
.cid-t0BfZbCTzv .mbr-section-subtitle {
  color: #fafafa;
  text-align: center;
}
.cid-t07pStJ9iI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t07pStJ9iI .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-t07pStJ9iI .mbr-section-subtitle {
  color: #6ed28f;
  text-align: center;
}
.cid-t0fYr4S5i9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-t0fYr4S5i9 img,
.cid-t0fYr4S5i9 .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t0fYr4S5i9 .item:focus,
.cid-t0fYr4S5i9 span:focus {
  outline: none;
}
.cid-t0fYr4S5i9 .item-wrapper {
  position: relative;
}
.cid-t0fYr4S5i9 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t0fYr4S5i9 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t0fYr4S5i9 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-t0fYr4S5i9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t0fYr4S5i9 .mbr-section-title {
  color: #232323;
}
.cid-t0fYr4S5i9 .mbr-text,
.cid-t0fYr4S5i9 .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-t0fYr4S5i9 .item-title {
  text-align: center;
  color: #fafafa;
}
.cid-t0fYr4S5i9 .item-subtitle {
  text-align: center;
  color: #ef464f;
}
.cid-t0fYr4S5i9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-t0fYr4S5i9 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t0fYr4S5i9 .embla__button--next,
.cid-t0fYr4S5i9 .embla__button--prev {
  display: flex;
}
.cid-t0fYr4S5i9 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-t0fYr4S5i9 .embla__button {
    display: none;
  }
}
.cid-t0fYr4S5i9 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t0fYr4S5i9 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t0fYr4S5i9 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t0fYr4S5i9 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t0fYr4S5i9 .embla__button {
    top: auto;
  }
}
.cid-t0fYr4S5i9 .embla {
  position: relative;
  width: 100%;
}
.cid-t0fYr4S5i9 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t0fYr4S5i9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t0fYr4S5i9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t0fYr4S5i9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t0zN79MPvD {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #000000;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-t0zN79MPvD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t0zN79MPvD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t0zN79MPvD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t0zN79MPvD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t0zN79MPvD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t0zN79MPvD .mbr-gallery-item > div:hover::before {
  opacity: 0.6 !important;
}
.cid-t0zN79MPvD .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #fafafa !important;
}
.cid-t0zN79MPvD .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-t0zN79MPvD .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #fafafa !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-t0zN79MPvD .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ef464f !important;
}
.cid-t0zN79MPvD .mbr-gallery-filter ul {
  display: block;
}
.cid-t0zN79MPvD .mbr-gallery-filter ul li {
  position: relative;
}
.cid-t0zN79MPvD .mbr-gallery-filter li.active .btn {
  color: #ef464f !important;
  background: transparent;
}
.cid-t0zN79MPvD .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ef464f !important;
}
.cid-t0zN79MPvD .mbr-gallery-filter li.active::after,
.cid-t0zN79MPvD .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ef464f !important;
}
.cid-t0zN79MPvD .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-t0zN79MPvD .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-t0zN79MPvD .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-t0zN79MPvD .icon-focus:before {
  content: '\e95e';
}
.cid-t0zN79MPvD .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-t0zN79MPvD .mbr-section-title {
  margin: 0;
}
.cid-t0zN79MPvD .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-t0zN79MPvD .underline .line {
  width: 3rem;
  height: 2px;
  background: #ef464f;
  display: inline-block;
}
.cid-t0zN79MPvD .mbr-section-subtitle {
  color: #fafafa;
}
.cid-t0zN79MPvD .mbr-section-title,
.cid-t0zN79MPvD .underline {
  color: #fafafa;
}
.cid-t0zN79MPvD .mbr-gallery-item > div > span {
  color: #ff6666;
}
.cid-t06DoR4Vn8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-t06DoR4Vn8 .video-wrapper iframe {
  width: 100%;
}
.cid-t06DoR4Vn8 .mbr-section-title,
.cid-t06DoR4Vn8 .mbr-section-subtitle,
.cid-t06DoR4Vn8 .mbr-text {
  text-align: center;
}
.cid-t06DoR4Vn8 .mbr-text {
  color: #fafafa;
}
.cid-t06DoR4Vn8 .mbr-section-title {
  color: #fafafa;
}
.cid-t06FGxikYZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t06FGxikYZ .video-wrapper iframe {
  width: 100%;
}
.cid-t06FGxikYZ .mbr-section-title,
.cid-t06FGxikYZ .mbr-section-subtitle,
.cid-t06FGxikYZ .mbr-text {
  text-align: center;
}
.cid-t06FGxikYZ .mbr-text {
  color: #fafafa;
}
.cid-t1qhOTrQNt {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t1qhOTrQNt .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-t1qhOTrQNt .mbr-section-subtitle {
  color: #6c7577;
}
.cid-sXF5GCIIVW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-sXF5GCIIVW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sXF5GCIIVW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sXF5GCIIVW .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXF5GCIIVW .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-sXF5GCIIVW .mbr-text {
  color: #fafafa;
}
.cid-sXF5GCIIVW .mbr-description {
  color: #6c757d;
  text-align: left;
}
.cid-sXFpbDW6pq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: linear-gradient(to bottom, #000000 50%, #000000 50%);
}
@media (min-width: 1400px) {
  .cid-sXFpbDW6pq .container {
    max-width: 1162px;
  }
}
.cid-sXFpbDW6pq .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-t06oUTxXKC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-t06oUTxXKC .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #000000;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-t06oUTxXKC H2 {
  color: #ef464f;
}
.cid-t06oUTxXKC H3 {
  color: #fafafa;
}
.cid-t06oUTxXKC .mbr-text,
.cid-t06oUTxXKC .mbr-section-btn {
  color: #fafafa;
}
.cid-t06oUTxXKC .photo {
  width: 90%;
}
@media (max-width: 992px) {
  .cid-t06oUTxXKC .md-pb {
    padding-bottom: 2rem;
  }
  .cid-t06oUTxXKC .photo {
    width: 100%;
  }
}
.cid-t06oUTxXKC .signature {
  filter: invert(0.5);
  width: auto;
}
.cid-t3rWCOHVvx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-t3rWCOHVvx .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-t3rWCOHVvx .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-t3rWCOHVvx img,
.cid-t3rWCOHVvx .item-img {
  width: 100%;
}
.cid-t3rWCOHVvx .item:focus,
.cid-t3rWCOHVvx span:focus {
  outline: none;
}
.cid-t3rWCOHVvx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t3rWCOHVvx .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t3rWCOHVvx img {
  border-radius: 30px;
}
.cid-t3rWCOHVvx .item-subtitle {
  color: #ef464f;
  text-align: center;
}
.cid-t3rWCOHVvx .item-title {
  text-align: center;
  color: #fafafa;
}
.cid-t3rWCOHVvx .item-subtitle DIV {
  text-align: center;
}
.cid-t08V1SocJB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t08V1SocJB .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-t08V1SocJB .mbr-section-subtitle {
  color: #fafafa;
  text-align: center;
}
.cid-t3B2C9ITuY {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (min-width: 1500px) {
  .cid-t3B2C9ITuY .container {
    max-width: 1400px;
  }
}
.cid-t3B2C9ITuY .card-wrapper {
  background: none;
  display: inline-flex;
  margin: 25px 0;
}
.cid-t3B2C9ITuY .card-wrapper .image-wrap img {
  width: 100%;
}
.cid-t3B2C9ITuY .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ff2b09;
  margin-right: 30px;
  height: 100%;
}
.cid-t3B2C9ITuY .row {
  align-items: center;
}
.cid-t3B2C9ITuY .card-box {
  display: inline-flex;
  text-align: left;
  margin: 0;
}
.cid-t3B2C9ITuY .card-text {
  color: #fafafa;
}
.cid-t3B2C9ITuY .col {
  padding: 0;
}
.cid-t3B2C9ITuY .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 70px;
  text-align: center;
}
.cid-t3B2C9ITuY .mbr-section-subtitle {
  padding: 0;
  margin: 0;
  padding-bottom: 20px;
}
.cid-t3B2C9ITuY .card-title,
.cid-t3B2C9ITuY .iconfont-wrapper {
  color: #fafafa;
}
.cid-sXFTuO92Qx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sXFTuO92Qx .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sXFTuO92Qx .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sXFTuO92Qx .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-sXFTuO92Qx .panel-body,
.cid-sXFTuO92Qx .card-header {
  padding: 1rem 0;
}
.cid-sXFTuO92Qx .panel-title-edit {
  color: #fafafa;
}
.cid-sXFTuO92Qx H3 {
  color: #fafafa;
}
.cid-sXFTuO92Qx .panel-text {
  color: #bbbbbb;
}
.cid-t06Rw8pcsQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-t06Rw8pcsQ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t06Rw8pcsQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t06Rw8pcsQ .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-t06Rw8pcsQ .panel-body,
.cid-t06Rw8pcsQ .card-header {
  padding: 1rem 0;
}
.cid-t06Rw8pcsQ .panel-title-edit {
  color: #fafafa;
}
.cid-t06Rw8pcsQ .panel-text {
  color: #bbbbbb;
}
.cid-t3stGnxnqi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3stGnxnqi .item-wrapper:hover .item-title a {
  color: #ef464f !important;
}
.cid-t3stGnxnqi .item-title,
.cid-t3stGnxnqi .card_topic {
  margin-bottom: 12px;
}
.cid-t3stGnxnqi .category_content {
  opacity: .8;
}
.cid-t3stGnxnqi .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ef464f;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-t3stGnxnqi .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #ef464f;
}
.cid-t3stGnxnqi .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-t3stGnxnqi .mbr-section-btn .btn-secondary-outline:hover,
.cid-t3stGnxnqi .mbr-section-btn .btn-secondary-outline .active,
.cid-t3stGnxnqi .mbr-section-btn .btn-secondary-outline:focus {
  color: #6592e6 !important;
}
.cid-t3stGnxnqi H5 {
  color: #fafafa;
  text-align: center;
}
.cid-t3stGnxnqi .mbr-text,
.cid-t3stGnxnqi .mbr-section-btn {
  color: #fafafa;
}
.cid-t3suCuwjp1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3suCuwjp1 .item-wrapper:hover .item-title a {
  color: #ef464f !important;
}
.cid-t3suCuwjp1 .item-title,
.cid-t3suCuwjp1 .card_topic {
  margin-bottom: 12px;
}
.cid-t3suCuwjp1 .category_content {
  opacity: .8;
}
.cid-t3suCuwjp1 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ef464f;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-t3suCuwjp1 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #ef464f;
}
.cid-t3suCuwjp1 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-t3suCuwjp1 .mbr-section-btn .btn-secondary-outline:hover,
.cid-t3suCuwjp1 .mbr-section-btn .btn-secondary-outline .active,
.cid-t3suCuwjp1 .mbr-section-btn .btn-secondary-outline:focus {
  color: #6592e6 !important;
}
.cid-t3suCuwjp1 H5 {
  color: #fafafa;
  text-align: center;
}
.cid-t3suCuwjp1 .mbr-text,
.cid-t3suCuwjp1 .mbr-section-btn {
  color: #fafafa;
}
.cid-t3suDBFMt0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3suDBFMt0 .item-wrapper:hover .item-title a {
  color: #ef464f !important;
}
.cid-t3suDBFMt0 .item-title,
.cid-t3suDBFMt0 .card_topic {
  margin-bottom: 12px;
}
.cid-t3suDBFMt0 .category_content {
  opacity: .8;
}
.cid-t3suDBFMt0 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ef464f;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-t3suDBFMt0 .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #ef464f;
}
.cid-t3suDBFMt0 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-t3suDBFMt0 .mbr-section-btn .btn-secondary-outline:hover,
.cid-t3suDBFMt0 .mbr-section-btn .btn-secondary-outline .active,
.cid-t3suDBFMt0 .mbr-section-btn .btn-secondary-outline:focus {
  color: #6592e6 !important;
}
.cid-t3suDBFMt0 H5 {
  color: #fafafa;
  text-align: center;
}
.cid-t3suDBFMt0 .mbr-text,
.cid-t3suDBFMt0 .mbr-section-btn {
  color: #fafafa;
}
.cid-t0gLxoSbnc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-t0gLxoSbnc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t0gLxoSbnc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t0gLxoSbnc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t0gLxoSbnc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t0gLxoSbnc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t0gLxoSbnc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t0gLxoSbnc .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t0gLxoSbnc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t0gLxoSbnc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t0gLxoSbnc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t0gLxoSbnc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t0gLxoSbnc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0gLxoSbnc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t0gLxoSbnc .media-container-row .row-copirayt p {
  width: 100%;
}
